Home
last modified time | relevance | path

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

1234

/php-src/ext/spl/
H A Dspl_iterators.stub.php187 public function seek(int $offset): void; function
204 public function seek(int $offset): int {} function in LimitIterator
H A Dspl_array.stub.php226 public function seek(int $offset): void {} function in ArrayIterator
H A Dspl_observer_arginfo.h154 ZEND_METHOD(SplObjectStorage, seek);
202 ZEND_ME(SplObjectStorage, seek, arginfo_class_SplObjectStorage_seek, ZEND_ACC_PUBLIC)
H A Dspl_array_arginfo.h187 ZEND_METHOD(ArrayIterator, seek);
246 ZEND_ME(ArrayIterator, seek, arginfo_class_ArrayIterator_seek, ZEND_ACC_PUBLIC)
H A Dspl_directory_arginfo.h315 ZEND_METHOD(DirectoryIterator, seek);
362 ZEND_METHOD(SplFileObject, seek);
412 ZEND_ME(DirectoryIterator, seek, arginfo_class_DirectoryIterator_seek, ZEND_ACC_PUBLIC)
474 ZEND_ME(SplFileObject, seek, arginfo_class_SplFileObject_seek, ZEND_ACC_PUBLIC)
H A Dspl_iterators_arginfo.h359 ZEND_METHOD(LimitIterator, seek);
512 ZEND_ME(LimitIterator, seek, arginfo_class_LimitIterator_seek, ZEND_ACC_PUBLIC)
/php-src/ext/pgsql/tests/
H A D05large_object.phpt24 echo "open/read/tell/seek/close LO\n";
108 open/read/tell/seek/close LO
/php-src/ext/zip/tests/
H A Doo_stream_seek.phpt2 getStream and seek
/php-src/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-src/ext/standard/tests/streams/
H A Dstream_get_meta_data_file_variation2.phpt18 //seek to start of file
/php-src/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()
H A Dgd_avif.c187 if (!ctx->seek(ctx, (int) offset)) in readFromCtx()
/php-src/docs-old/
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-src/ext/standard/tests/file/
H A Dfgetc_variation1.phpt28 // seek to end of the file and try fgetc()
H A Dfgets_variation6-win32.phpt40 // seek to end of the file and try fgets()
H A Dfgets_variation6.phpt40 // seek to end of the file and try fgets()
/php-src/sapi/phpdbg/
H A Dphpdbg.h233 HashTable seek; /* seek oplines */ variable
H A Dphpdbg.c165 zend_hash_init(&PHPDBG_G(seek), 8, NULL, NULL, 0); in PHP_MINIT_FUNCTION()
801 zend_hash_destroy(&PHPDBG_G(seek)); in php_sapi_phpdbg_deactivate()
/php-src/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-src/ext/mysqli/tests/
H A Dmysqli_stmt_get_result_seek.phpt38 printf("[007] Cannot seek to position %d, [%d] %s\n",
H A Dmysqli_store_result_copy.phpt62 printf("[010] Brute force seek %d returned %d\n", $idx, var_export($row, true));
/php-src/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()
1389 ret = stream->ops->seek(stream, offset, whence, &stream->position); in _php_stream_seek()
2304 …if (stream && stream->ops->seek && (stream->flags & PHP_STREAM_FLAG_NO_SEEK) == 0 && strchr(mode, …
2308 if (0 == stream->ops->seek(stream, 0, SEEK_CUR, &newpos)) {
/php-src/main/
H A Dphp_streams.h129 int (*seek)(php_stream *stream, zend_off_t offset, int whence, zend_off_t *newoffset); member

Completed in 68 milliseconds

1234