Home
last modified time | relevance | path

Searched refs:st_size (Results 1 – 25 of 31) sorted by relevance

12

/PHP-7.2/ext/session/
H A Dmod_files.c98 size_t st_size; member
244 if (ZSTR_LEN(val) < data->st_size) { in ps_files_write()
491 data->st_size = sbuf.st_size; in PS_READ_FUNC()
493 if (sbuf.st_size == 0) { in PS_READ_FUNC()
498 *val = zend_string_alloc(sbuf.st_size, 0); in PS_READ_FUNC()
525 if (n != (zend_long)sbuf.st_size) { in PS_READ_FUNC()
/PHP-7.2/ext/standard/
H A Diptc.c224 spoolbuf = zend_string_safe_alloc(1, iptcdata_len + sizeof(psheader) + 1024 + 1, sb.st_size, 0); in PHP_FUNCTION()
226 memset(poi, 0, iptcdata_len + sizeof(psheader) + sb.st_size + 1024 + 1); in PHP_FUNCTION()
H A Dftp_fopen_wrapper.c826 ssb->sb.st_size = 0; in php_stream_ftp_url_stat()
831 ssb->sb.st_size = atoi(tmp_line + 4); in php_stream_ftp_url_stat()
890 ssb->sb.st_blocks = (int)((4095 + ssb->sb.st_size) / ssb->sb.st_blksize); /* emulate ceil */ in php_stream_ftp_url_stat()
H A Dfilestat.c876 RETURN_LONG((zend_long)ssb.sb.st_size); in php_stat()
944 ZVAL_LONG(&stat_size, stat_sb->st_size); in php_stat()
H A Dfile.c1607 ZVAL_LONG(&stat_size, stat_ssb.sb.st_size); in PHP_NAMED_FUNCTION()
/PHP-7.2/ext/dba/
H A Ddba_db4.c83 if (!s && !check_stat.st_size) {
97 if (!s && !check_stat.st_size) {
H A Ddba_db2.c56 if (!s && !check_stat.st_size) { in DBA_OPEN_FUNC()
H A Ddba_db3.c68 if (!s && !check_stat.st_size) {
/PHP-7.2/ext/zip/
H A Dzip_stream.c179 ssb->sb.st_size = sb.size; in php_zip_ops_stat()
182 ssb->sb.st_size = 0; in php_zip_ops_stat()
/PHP-7.2/ext/fileinfo/libmagic/
H A Dfsmagic.c242 if ((ms->flags & MAGIC_DEVICES) == 0 && sb->st_size == 0) { in file_fsmagic()
H A Dapprentice.c2923 if (st.sb.st_size < 8 || st.sb.st_size > MAXMAGIC_SIZE) { in apprentice_map()
2925 st.sb.st_size < 8 ? "small" : "large"); in apprentice_map()
2929 map->len = (size_t)st.sb.st_size; in apprentice_map()
2934 if (php_stream_read(stream, map->p, (size_t)st.sb.st_size) != (size_t)st.sb.st_size) { in apprentice_map()
2974 nentries = (uint32_t)(st.sb.st_size / sizeof(struct magic)); in apprentice_map()
2975 entries = (uint32_t)(st.sb.st_size / sizeof(struct magic)); in apprentice_map()
2976 if ((zend_off_t)(entries * sizeof(struct magic)) != st.sb.st_size) { in apprentice_map()
2978 dbname, (unsigned long long)st.sb.st_size, in apprentice_map()
H A Dder.c399 l = (size_t)st.st_size; in main()
/PHP-7.2/ext/phar/
H A Dfunc_interceptors.c485 RETURN_LONG((zend_long)stat_sb->st_size); in phar_fancy_stat()
536 ZVAL_LONG(&stat_size, stat_sb->st_size); in phar_fancy_stat()
649 sb.st_size = 0; in phar_file_stat()
689 sb.st_size = 0; in phar_file_stat()
710 sb.st_size = data->uncompressed_filesize; in phar_file_stat()
722 sb.st_size = 0; in phar_file_stat()
H A Dstream.c490 ssb->sb.st_size = data->uncompressed_filesize; in phar_dostat()
498 ssb->sb.st_size = 0; in phar_dostat()
506 ssb->sb.st_size = 0; in phar_dostat()
/PHP-7.2/Zend/
H A Dzend_stream.c73 return buf.st_size; in zend_stream_stdio_fsizer()
122 return buf.st_size; in zend_stream_fsize()
H A Dzend_virtual_cwd.c357 buf->st_size = (zend_long)t.QuadPart; in php_sys_stat_ex()
/PHP-7.2/main/streams/
H A Dplain_wrapper.c702 if (range->offset > data->sb.st_size) { in php_stdiop_set_option()
703 range->offset = data->sb.st_size; in php_stdiop_set_option()
706 range->length > data->sb.st_size - range->offset) { in php_stdiop_set_option()
707 range->length = data->sb.st_size - range->offset; in php_stdiop_set_option()
H A Dstreams.c1443 if (php_stream_stat(src, &ssbuf) == 0 && ssbuf.sb.st_size > 0) { in _php_stream_copy_to_mem()
1444 max_len = ssbuf.sb.st_size + step; in _php_stream_copy_to_mem()
1497 if (ssbuf.sb.st_size == 0 in _php_stream_copy_to_stream_ex()
H A Dmemory.c211 ssb->sb.st_size = ms->fsize; in php_stream_memory_stat()
/PHP-7.2/ext/fileinfo/
H A Dlibmagic.patch702 - if (st.st_size < 8 || st.st_size > MAXMAGIC_SIZE) {
703 + if (st.sb.st_size < 8 || st.sb.st_size > MAXMAGIC_SIZE) {
705 - st.st_size < 8 ? "small" : "large");
706 + st.sb.st_size < 8 ? "small" : "large");
710 - map->len = (size_t)st.st_size;
721 + map->len = (size_t)st.sb.st_size;
727 + if (php_stream_read(stream, map->p, (size_t)st.sb.st_size) != (size_t)st.sb.st_size) {
763 - if (mprotect(map->p, (size_t)st.st_size, PROT_READ) == -1) {
775 + nentries = (uint32_t)(st.sb.st_size / sizeof(struct magic));
776 + entries = (uint32_t)(st.sb.st_size / sizeof(struct magic));
[all …]
/PHP-7.2/ext/zip/lib/
H A Dzip_source_filep.c435 st->size = (zip_uint64_t)fst.st_size; in read_file()
/PHP-7.2/sapi/apache2handler/
H A Dsapi_apache2.c225 ctx->finfo.st_size = ctx->r->finfo.size; in php_apache_sapi_get_stat()
/PHP-7.2/ext/pdo_odbc/
H A Dodbc_stmt.c438 P->len = SQL_LEN_DATA_AT_EXEC(sb.sb.st_size); in odbc_stmt_param_hook()
/PHP-7.2/ext/opcache/
H A DZendAccelerator.c866 *size = tmpbuf->st_size; in zend_get_file_handle_timestamp()
944 *size = statbuf.st_size; in zend_get_file_handle_timestamp()
/PHP-7.2/ext/soap/
H A Dphp_sdl.c1552 buf = in = emalloc(st.st_size); in get_sdl_from_cache()
1553 if (read(f, in, st.st_size) != st.st_size) { in get_sdl_from_cache()

Completed in 112 milliseconds

12