Searched refs:newoffset (Results 1 – 10 of 10) sorted by relevance
/PHP-8.2/ext/phar/ |
H A D | dirstream.h | 32 …ic int phar_dir_seek( php_stream *stream, zend_off_t offset, int whence, zend_off_t *newoffset);
|
H A D | stream.h | 35 …int phar_stream_seek( php_stream *stream, zend_off_t offset, int whence, zend_off_t *newoffset);
|
H A D | dirstream.c | 58 static int phar_dir_seek(php_stream *stream, zend_off_t offset, int whence, zend_off_t *newoffset) … in phar_dir_seek() argument 78 *newoffset = 0; in phar_dir_seek() 79 while (*newoffset < offset && zend_hash_move_forward(data) == SUCCESS) { in phar_dir_seek() 80 ++(*newoffset); in phar_dir_seek()
|
H A D | stream.c | 403 …har_stream_seek(php_stream *stream, zend_off_t offset, int whence, zend_off_t *newoffset) /* {{{ */ in phar_stream_seek() argument 430 *newoffset = -1; in phar_stream_seek() 434 *newoffset = -1; in phar_stream_seek() 438 *newoffset = php_stream_tell(data->fp) - data->zero; in phar_stream_seek() 439 data->position = *newoffset; in phar_stream_seek()
|
/PHP-8.2/ext/zip/ |
H A D | zip_stream.c | 202 …atic int php_zip_ops_seek(php_stream *stream, zend_off_t offset, int whence, zend_off_t *newoffset) in php_zip_ops_seek() argument 209 *newoffset = zip_ftell(self->zf); in php_zip_ops_seek()
|
/PHP-8.2/ext/standard/ |
H A D | php_fopen_wrapper.c | 123 …ream_input_seek(php_stream *stream, zend_off_t offset, int whence, zend_off_t *newoffset) /* {{{ */ in php_stream_input_seek() argument 129 *newoffset = input->position = (input->body)->position; in php_stream_input_seek()
|
/PHP-8.2/main/streams/ |
H A D | plain_wrapper.c | 570 static int php_stdiop_seek(php_stream *stream, zend_off_t offset, int whence, zend_off_t *newoffset) in php_stdiop_seek() argument 589 *newoffset = result; in php_stdiop_seek() 594 *newoffset = zend_ftell(data->file); in php_stdiop_seek()
|
/PHP-8.2/ext/pdo_pgsql/ |
H A D | pgsql_driver.c | 161 zend_off_t *newoffset) in pgsql_lob_seek() argument 169 *newoffset = pos; in pgsql_lob_seek()
|
/PHP-8.2/main/ |
H A D | php_streams.h | 124 int (*seek)(php_stream *stream, zend_off_t offset, int whence, zend_off_t *newoffset);
|
/PHP-8.2/ext/pdo_oci/ |
H A D | oci_statement.c | 701 static int oci_blob_seek(php_stream *stream, zend_off_t offset, int whence, zend_off_t *newoffset) in oci_blob_seek() argument
|
Completed in 101 milliseconds