Home
last modified time | relevance | path

Searched refs:seek (Results 51 – 75 of 92) sorted by relevance

1234

/PHP-8.3/ext/spl/
H A Dspl_iterators.stub.php199 public function seek(int $offset): void; function
216 public function seek(int $offset): int {} function in LimitIterator
H A Dspl_array.stub.php238 public function seek(int $offset): void {} function in ArrayIterator
H A Dspl_directory_arginfo.h316 ZEND_METHOD(DirectoryIterator, seek);
363 ZEND_METHOD(SplFileObject, seek);
415 ZEND_ME(DirectoryIterator, seek, arginfo_class_DirectoryIterator_seek, ZEND_ACC_PUBLIC)
481 ZEND_ME(SplFileObject, seek, arginfo_class_SplFileObject_seek, ZEND_ACC_PUBLIC)
H A Dspl_array_arginfo.h188 ZEND_METHOD(ArrayIterator, seek);
249 ZEND_ME(ArrayIterator, seek, arginfo_class_ArrayIterator_seek, ZEND_ACC_PUBLIC)
H A Dspl_iterators_arginfo.h360 ZEND_METHOD(LimitIterator, seek);
515 …ZEND_ABSTRACT_ME_WITH_FLAGS(SeekableIterator, seek, arginfo_class_SeekableIterator_seek, ZEND_ACC_…
525 ZEND_ME(LimitIterator, seek, arginfo_class_LimitIterator_seek, ZEND_ACC_PUBLIC)
/PHP-8.3/ext/standard/tests/file/
H A Duserstreams.phpt7 * user streams and also gives the seek/gets/buffer
57 * to seek around... */
195 /* end up at BOF so that randomly generated seek offsets
211 /* generate some random seek offsets */
H A Dfgetc_variation1.phpt28 // seek to end of the file and try fgetc()
/PHP-8.3/ext/oci8/tests/
H A Dlob_003.phpt33 var_dump($blob->seek(10, OCI_SEEK_CUR));
H A Dlob_004.phpt34 var_dump($blob->seek(10, OCI_SEEK_SET));
H A Dlob_006.phpt34 var_dump($blob->seek(0, OCI_SEEK_SET));
H A Dlob_023.phpt30 var_dump($blob->seek(10, OCI_SEEK_CUR));
H A Dlob_001.phpt37 var_dump($blob->seek(10, OCI_SEEK_CUR));
/PHP-8.3/sapi/phpdbg/
H A Dphpdbg_prompt.c615 zend_hash_index_update_ptr(&PHPDBG_G(seek), (zend_ulong) opline, (void *) opline); in phpdbg_skip_line_helper()
658 zend_hash_index_update_ptr(&PHPDBG_G(seek), (zend_ulong) opline, (void *) opline); in phpdbg_seek_to_end()
672 …if (zend_hash_index_exists(&PHPDBG_G(seek), (zend_ulong) phpdbg_user_execute_data(EG(current_execu… in PHPDBG_COMMAND()
673 zend_hash_clean(&PHPDBG_G(seek)); in PHPDBG_COMMAND()
689 …if (zend_hash_index_exists(&PHPDBG_G(seek), (zend_ulong) phpdbg_user_execute_data(EG(current_execu… in PHPDBG_COMMAND()
690 zend_hash_clean(&PHPDBG_G(seek)); in PHPDBG_COMMAND()
876 zend_hash_clean(&PHPDBG_G(seek)); in PHPDBG_COMMAND()
1737 #define INDEX_EXISTS_CHECK (zend_hash_index_exists(&PHPDBG_G(seek), address) || (exception && phpdb… in phpdbg_execute_ex()
1743 zend_hash_clean(&PHPDBG_G(seek)); in phpdbg_execute_ex()
1754 zend_hash_clean(&PHPDBG_G(seek)); in phpdbg_execute_ex()
[all …]
H A Dphpdbg.h233 HashTable seek; /* seek oplines */ variable
/PHP-8.3/ext/pgsql/tests/
H A D05large_object.phpt24 echo "open/read/tell/seek/close LO\n";
108 open/read/tell/seek/close LO
/PHP-8.3/ext/zip/tests/
H A Doo_stream_seek.phpt2 getStream and seek
/PHP-8.3/ext/spl/tests/
H A Diterator_039.phpt58 $it->seek(2);
H A Dbug55701.phpt221 echo "->seek()... ";
224 $o->seek(0);
327 ->seek()... ran normally (expected)
/PHP-8.3/ext/standard/tests/streams/
H A Dstream_get_meta_data_file_variation2.phpt18 //seek to start of file
/PHP-8.3/ext/gd/libgd/
H A Dgd_io.c196 return ((ctx->seek) (ctx, pos)); in gdSeek()
H A Dgd_io_dp.c87 ctx->ctx.seek = dynamicSeek; in gdNewDynamicCtxEx()
/PHP-8.3/docs/
H A Dstreams.md61 * `STREAM_MUST_SEEK` - If you really need to be able to seek the stream and
64 seek()ed.
131 If you have an existing stream and need to be able to `seek()` it, you can use
132 this function to copy the contents into a new stream that can be `seek()ed`:
150 NOTE: If you only need to seek forward, there is no need to call this function,
252 read, write, close, flush, seek, gets and cast operations. Of these, an
/PHP-8.3/ext/phar/tests/
H A Dfgc_edgecases.phpt95 Warning: file_get_contents(): Failed to seek to position 50000 in the stream in phar://%sfgc_edgeca…
/PHP-8.3/ext/mysqli/tests/
H A Dmysqli_stmt_get_result_seek.phpt41 printf("[007] Cannot seek to position %d, [%d] %s\n",
/PHP-8.3/main/streams/
H A Dstreams.c1159 …if (stream->ops->seek && (stream->flags & PHP_STREAM_FLAG_NO_SEEK) == 0 && stream->readpos != stre… in _php_stream_write_buffer()
1162 stream->ops->seek(stream, stream->position, SEEK_SET, &stream->position); in _php_stream_write_buffer()
1376 if (stream->ops->seek && (stream->flags & PHP_STREAM_FLAG_NO_SEEK) == 0) { in _php_stream_seek()
1394 ret = stream->ops->seek(stream, offset, whence, &stream->position); in _php_stream_seek()
2312 …if (stream && stream->ops->seek && (stream->flags & PHP_STREAM_FLAG_NO_SEEK) == 0 && strchr(mode, …
2316 if (0 == stream->ops->seek(stream, 0, SEEK_CUR, &newpos)) {

Completed in 55 milliseconds

1234