Home
last modified time | relevance | path

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

1234

/PHP-8.0/ext/zlib/tests/
H A Dgzseek_variation7.phpt19 //seek to the end which is not sensible of course.
/PHP-8.0/ext/gd/libgd/
H A Dgd_io_file.c64 ctx->ctx.seek = fileSeek; in gdNewFileCtx()
H A Dgd_io_ss.c66 ctx->ctx.seek = NULL; in gdNewSSCtx()
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.0/ext/oci8/tests/
H A Dlob_009.phpt27 var_dump($blob->seek(10, OCI_SEEK_CUR));
H A Dlob_003.phpt30 var_dump($blob->seek(10, OCI_SEEK_CUR));
H A Dlob_004.phpt31 var_dump($blob->seek(10, OCI_SEEK_SET));
H A Dlob_006.phpt31 var_dump($blob->seek(0, OCI_SEEK_SET));
H A Dlob_023.phpt27 var_dump($blob->seek(10, OCI_SEEK_CUR));
H A Dlob_001.phpt34 var_dump($blob->seek(10, OCI_SEEK_CUR));
/PHP-8.0/ext/standard/tests/file/
H A Duserstreams.phpt7 * user streams and also gives the seek/gets/buffer
57 * to seek around... */
194 /* end up at BOF so that randomly generated seek offsets
210 /* generate some random seek offsets */
H A Dfgetc_variation1.phpt28 // seek to end of the file and try fgetc()
/PHP-8.0/sapi/phpdbg/
H A Dphpdbg_prompt.c618 zend_hash_index_update_ptr(&PHPDBG_G(seek), (zend_ulong) opline, (void *) opline); in phpdbg_skip_line_helper()
661 zend_hash_index_update_ptr(&PHPDBG_G(seek), (zend_ulong) opline, (void *) opline); in phpdbg_seek_to_end()
675 …if (zend_hash_index_exists(&PHPDBG_G(seek), (zend_ulong) phpdbg_user_execute_data(EG(current_execu… in PHPDBG_COMMAND()
676 zend_hash_clean(&PHPDBG_G(seek)); in PHPDBG_COMMAND()
692 …if (zend_hash_index_exists(&PHPDBG_G(seek), (zend_ulong) phpdbg_user_execute_data(EG(current_execu… in PHPDBG_COMMAND()
693 zend_hash_clean(&PHPDBG_G(seek)); in PHPDBG_COMMAND()
879 zend_hash_clean(&PHPDBG_G(seek)); in PHPDBG_COMMAND()
1772 #define INDEX_EXISTS_CHECK (zend_hash_index_exists(&PHPDBG_G(seek), address) || (exception && phpdb… in phpdbg_execute_ex()
1778 zend_hash_clean(&PHPDBG_G(seek)); in phpdbg_execute_ex()
1789 zend_hash_clean(&PHPDBG_G(seek)); in phpdbg_execute_ex()
[all …]
H A Dphpdbg.h242 HashTable seek; /* seek oplines */ variable
/PHP-8.0/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.0/ext/spl/
H A Dspl_directory_arginfo.h297 ZEND_METHOD(DirectoryIterator, seek);
344 ZEND_METHOD(SplFileObject, seek);
395 ZEND_ME(DirectoryIterator, seek, arginfo_class_DirectoryIterator_seek, ZEND_ACC_PUBLIC)
463 ZEND_ME(SplFileObject, seek, arginfo_class_SplFileObject_seek, ZEND_ACC_PUBLIC)
H A Dspl_array_arginfo.h175 ZEND_METHOD(ArrayIterator, seek);
236 ZEND_ME(ArrayIterator, seek, arginfo_class_ArrayIterator_seek, ZEND_ACC_PUBLIC)
H A Dspl_iterators_arginfo.h334 ZEND_METHOD(LimitIterator, seek);
489 …ZEND_ABSTRACT_ME_WITH_FLAGS(SeekableIterator, seek, arginfo_class_SeekableIterator_seek, ZEND_ACC_…
499 ZEND_ME(LimitIterator, seek, arginfo_class_LimitIterator_seek, ZEND_ACC_PUBLIC)
/PHP-8.0/ext/standard/tests/streams/
H A Dstream_get_meta_data_file_variation2.phpt18 //seek to start of file
/PHP-8.0/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.0/ext/phar/tests/
H A Dfgc_edgecases.phpt97 Warning: file_get_contents(): Failed to seek to position 50000 in the stream in phar://%sfgc_edgeca…
/PHP-8.0/ext/mysqli/tests/
H A Dmysqli_stmt_get_result_seek.phpt40 printf("[007] Cannot seek to position %d, [%d] %s\n",
/PHP-8.0/main/streams/
H A Dstreams.c1127 …if (stream->ops->seek && (stream->flags & PHP_STREAM_FLAG_NO_SEEK) == 0 && stream->readpos != stre… in _php_stream_write_buffer()
1130 stream->ops->seek(stream, stream->position, SEEK_SET, &stream->position); in _php_stream_write_buffer()
1322 if (stream->ops->seek && (stream->flags & PHP_STREAM_FLAG_NO_SEEK) == 0) { in _php_stream_seek()
1335 ret = stream->ops->seek(stream, offset, whence, &stream->position); in _php_stream_seek()
2169 …if (stream && stream->ops->seek && (stream->flags & PHP_STREAM_FLAG_NO_SEEK) == 0 && strchr(mode, …
2173 if (0 == stream->ops->seek(stream, 0, SEEK_CUR, &newpos)) {

Completed in 45 milliseconds

1234