Home
last modified time | relevance | path

Searched refs:newoffset (Results 1 – 9 of 9) sorted by relevance

/php-src/ext/phar/
H A Ddirstream.h34 …ic int phar_dir_seek( php_stream *stream, zend_off_t offset, int whence, zend_off_t *newoffset);
H A Dstream.h36 …int phar_stream_seek( php_stream *stream, zend_off_t offset, int whence, zend_off_t *newoffset);
H A Ddirstream.c58 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 Dstream.c401 …har_stream_seek(php_stream *stream, zend_off_t offset, int whence, zend_off_t *newoffset) /* {{{ */ in phar_stream_seek() argument
428 *newoffset = -1; in phar_stream_seek()
432 *newoffset = -1; in phar_stream_seek()
436 *newoffset = php_stream_tell(data->fp) - data->zero; in phar_stream_seek()
437 data->position = *newoffset; in phar_stream_seek()
/php-src/ext/zip/
H A Dzip_stream.c200 …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
207 *newoffset = zip_ftell(self->zf); in php_zip_ops_seek()
/php-src/ext/standard/
H A Dphp_fopen_wrapper.c123 …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-src/main/streams/
H A Dplain_wrapper.c570 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-src/ext/pdo_pgsql/
H A Dpgsql_driver.c178 zend_off_t *newoffset) in pgsql_lob_seek() argument
186 *newoffset = pos; in pgsql_lob_seek()
/php-src/main/
H A Dphp_streams.h125 int (*seek)(php_stream *stream, zend_off_t offset, int whence, zend_off_t *newoffset);

Completed in 41 milliseconds