Home
last modified time | relevance | path

Searched refs:php_stream_tell (Results 1 – 23 of 23) sorted by relevance

/PHP-8.0/ext/dba/libinifile/
H A Dinifile.c181 ln->pos = php_stream_tell(dba->fp); in inifile_read()
201 ln->pos = php_stream_tell(dba->fp); in inifile_read()
266 dba->next.pos = php_stream_tell(dba->fp); in inifile_fetch()
278 dba->next.pos = php_stream_tell(dba->fp); in inifile_fetch()
341 *pos_grp_start = php_stream_tell(dba->fp); in inifile_find_group()
349 *pos_grp_start = php_stream_tell(dba->fp); in inifile_find_group()
364 *pos_grp_start = php_stream_tell(dba->fp); in inifile_next_group()
371 *pos_grp_start = php_stream_tell(dba->fp); in inifile_next_group()
423 pos_curr = php_stream_tell(from->fp); in inifile_filter()
435 pos_next = php_stream_tell(from->fp); in inifile_filter()
[all …]
/PHP-8.0/ext/dba/libflatfile/
H A Dflatfile.c120 pos = php_stream_tell(dba->fp); in flatfile_delete()
213 dba->CurrentFlatFilePos = php_stream_tell(dba->fp); in flatfile_firstkey()
265 dba->CurrentFlatFilePos = php_stream_tell(dba->fp); in flatfile_nextkey()
/PHP-8.0/ext/dba/libcdb/
H A Dcdb_make.c69 return php_stream_tell(c->fp); in cdb_make_start()
230 if (php_stream_tell(c->fp) != 0) in cdb_make_finish()
/PHP-8.0/ext/phar/
H A Dtar.c164 size_t save = php_stream_tell(fp), read; in phar_tar_process_metadata()
226 totalsize = php_stream_tell(fp); in phar_parse_tarfile()
262 pos = php_stream_tell(fp); in phar_parse_tarfile()
302 curloc = php_stream_tell(fp); in phar_parse_tarfile()
320 …if (FAILURE == phar_verify_signature(fp, php_stream_tell(fp) - size - 512, myphar->sig_flags, buf … in phar_parse_tarfile()
334 if ((uint32_t)php_stream_tell(fp) > totalsize) { in phar_parse_tarfile()
402 if ((uint32_t)php_stream_tell(fp) > totalsize) { in phar_parse_tarfile()
589 if ((uint32_t)php_stream_tell(fp) > totalsize) { in phar_parse_tarfile()
802 entry->header_offset = php_stream_tell(fp->new); in phar_tar_writeheaders_int()
811 pos = php_stream_tell(fp->new); /* save start of file within tar */ in phar_tar_writeheaders_int()
H A Dzip.c207 size = php_stream_tell(fp); in phar_parse_zipfile()
362 zend_off_t beforeus = php_stream_tell(fp); in phar_parse_zipfile()
431 php_stream_tell(fp); in phar_parse_zipfile()
483 zend_off_t loc = php_stream_tell(fp); in phar_parse_zipfile()
570 saveloc = php_stream_tell(fp); in phar_parse_zipfile()
881 PHAR_SET_32(central.offset, php_stream_tell(p->filefp)); in phar_zip_changed_apply_int()
1003 entry->header_offset = php_stream_tell(p->filefp); in phar_zip_changed_apply_int()
1142 tell = php_stream_tell(pass->filefp); in phar_zip_applysignature()
1146 tell = php_stream_tell(pass->centralfp); in phar_zip_applysignature()
1458 cdir_size = php_stream_tell(pass.centralfp); in phar_zip_flush()
[all …]
H A Dphar.c858 || (read_len = php_stream_tell(fp)) < 20 in phar_parse_pharfile()
895 || !(end_of_phar = php_stream_tell(fp)) in phar_parse_pharfile()
924 read_len = php_stream_tell(fp); in phar_parse_pharfile()
951 read_len = php_stream_tell(fp); in phar_parse_pharfile()
978 read_len = php_stream_tell(fp); in phar_parse_pharfile()
1005 read_len = php_stream_tell(fp); in phar_parse_pharfile()
2727 manifest_ftell = php_stream_tell(newfile); in phar_flush()
2868 entry->header_offset = php_stream_tell(entry->cfp); in phar_flush()
2895 entry->compressed_filesize = ((uint32_t) php_stream_tell(entry->cfp)) - entry->header_offset; in phar_flush()
2978 manifest_ftell = php_stream_tell(newfile); in phar_flush()
[all …]
H A Dstream.c382 data->position = php_stream_tell(data->fp) - data->zero; in phar_stream_read()
427 *newoffset = php_stream_tell(data->fp) - data->zero; in phar_stream_seek()
445 data->position = php_stream_tell(data->fp); in phar_stream_write()
H A Dutil.c766 loc = php_stream_tell(ufp); in phar_open_entry_fp()
782 if (php_stream_tell(ufp) - loc != (zend_off_t) entry->uncompressed_filesize) { in phar_open_entry_fp()
1886 …if (FAILURE == phar_call_openssl_signverify(1, fp, php_stream_tell(fp), PHAR_G(openssl_privatekey)… in phar_create_signature()
H A Dphar_object.c1655 data->internal_file->offset_abs = data->internal_file->offset = php_stream_tell(p_obj->fp); in phar_build()
1659 php_stream_tell(p_obj->fp) - data->internal_file->offset; in phar_build()
1951 offset = php_stream_tell(fp); in phar_copy_file_contents()
/PHP-8.0/main/streams/
H A Dmemory.c378 zend_off_t pos = php_stream_tell(ts->innerstream); in php_stream_temp_write()
472 *newoffs = php_stream_tell(ts->innerstream); in php_stream_temp_seek()
520 pos = php_stream_tell(ts->innerstream); in php_stream_temp_cast()
H A Dcast.c244 pos = php_stream_tell(stream); in _php_stream_cast()
H A Dstreams.c1419 …p = php_stream_mmap_range(stream, php_stream_tell(stream), PHP_STREAM_MMAP_ALL, PHP_STREAM_MAP_MOD… in _php_stream_passthru()
1558 …p = php_stream_mmap_range(src, php_stream_tell(src), chunk_size, PHP_STREAM_MAP_MODE_SHARED_READON… in _php_stream_copy_to_stream_ex()
/PHP-8.0/ext/dba/
H A Ddba_cdb.c226 return php_stream_tell(fp); in cdb_file_lseek()
/PHP-8.0/ext/ftp/
H A Dphp_ftp.c607 resumepos = php_stream_tell(stream); in PHP_FUNCTION()
654 resumepos = php_stream_tell(stream); in PHP_FUNCTION()
736 resumepos = php_stream_tell(outstream); in PHP_FUNCTION()
801 resumepos = php_stream_tell(outstream); in PHP_FUNCTION()
/PHP-8.0/ext/fileinfo/
H A Dfileinfo.c430 streampos = php_stream_tell(stream); /* remember stream position for restoration */ in _php_finfo_get_type()
/PHP-8.0/ext/exif/
H A Dexif.c3301 fpos = php_stream_tell(ImageInfo->infile); in exif_process_IFD_TAG_impl()
3303 fgot = php_stream_tell(ImageInfo->infile); in exif_process_IFD_TAG_impl()
3776 fpos = php_stream_tell(ImageInfo->infile); in exif_scan_JPEG_header()
3806 fpos = php_stream_tell(ImageInfo->infile); in exif_scan_JPEG_header()
3856 fpos = php_stream_tell(ImageInfo->infile); in exif_scan_JPEG_header()
4405 ImageInfo->FileSize = php_stream_tell(ImageInfo->infile); in exif_read_from_impl()
4437 off_t old_pos = php_stream_tell(stream); in exif_read_from_stream()
/PHP-8.0/main/
H A Dphp_streams.h308 #define php_stream_tell(stream) _php_stream_tell((stream)) macro
/PHP-8.0/docs/
H A Dstreams.md35 PHPAPI off_t php_stream_tell(php_stream * stream);
/PHP-8.0/ext/standard/
H A Dstreamsfuncs.c457 position = php_stream_tell(stream); in PHP_FUNCTION()
H A Dfilters.c1647 data->offset = php_stream_tell(stream); in consumed_filter_filter()
H A Dfile.c1222 ret = php_stream_tell(stream); in PHP_FUNCTION()
/PHP-8.0/ext/gd/
H A Dgd.c672 i = php_stream_tell(stream); in PHP_FUNCTION()
674 body_size_check = php_stream_tell(stream) - hdr_size; in PHP_FUNCTION()
/PHP-8.0/ext/spl/
H A Dspl_directory.c2540 ret = php_stream_tell(intern->u.file.stream); in PHP_METHOD()

Completed in 145 milliseconds