seek              137 ext/gd/libgd/gd_io.c 	return ((ctx->seek) (ctx, pos));
seek               17 ext/gd/libgd/gd_io.h 	int	(*seek)(struct gdIOCtx*, const int);
seek               87 ext/gd/libgd/gd_io_dp.c 	ctx->ctx.seek = dynamicSeek;
seek               64 ext/gd/libgd/gd_io_file.c 	ctx->ctx.seek = fileSeek;
seek               66 ext/gd/libgd/gd_io_ss.c 	ctx->ctx.seek = NULL;
seek              340 ext/oci8/oci8.c 	PHP_FALIAS(seek,        oci_lob_seek,           NULL)	
seek             1491 ext/spl/spl_array.c 	SPL_ME(Array, seek,             arginfo_array_seek,             ZEND_ACC_PUBLIC)
seek             2313 ext/spl/spl_directory.c 	SPL_ME(SplFileObject, seek,           arginfo_file_object_seek,          ZEND_ACC_PUBLIC)
seek             1834 ext/spl/spl_iterators.c 	SPL_ABSTRACT_ME(SeekableIterator, seek, arginfo_seekable_it_seek)
seek             1857 ext/spl/spl_iterators.c 	SPL_ME(LimitIterator,   seek,             arginfo_limit_it_seek, ZEND_ACC_PUBLIC)
seek              250 ext/sqlite/sqlite.c 	PHP_ME_MAPPING(seek, sqlite_seek, NULL, 0)
seek              500 ext/standard/streamsfuncs.c 	add_assoc_bool(return_value, "seekable", (stream->ops->seek) && (stream->flags & PHP_STREAM_FLAG_NO_SEEK) == 0);
seek              126 main/php_streams.h 	int (*seek)(php_stream *stream, off_t offset, int whence, off_t *newoffset TSRMLS_DC);
seek              149 main/streams/cast.c 		if (stream->ops->seek && (stream->flags & PHP_STREAM_FLAG_NO_SEEK) == 0) {
seek              152 main/streams/cast.c 			stream->ops->seek(stream, stream->position, SEEK_SET, &dummy TSRMLS_CC);
seek              315 main/streams/cast.c 	if (((flags & PHP_STREAM_FORCE_CONVERSION) == 0) && origstream->ops->seek != NULL) {
seek              907 main/streams/streams.c 	if (stream->ops->seek && (stream->flags & PHP_STREAM_FLAG_NO_SEEK) == 0 && stream->readpos != stream->writepos) {
seek              910 main/streams/streams.c 		stream->ops->seek(stream, stream->position, SEEK_SET, &stream->position TSRMLS_CC);
seek              929 main/streams/streams.c 			if (stream->ops->seek && (stream->flags & PHP_STREAM_FLAG_NO_SEEK) == 0) {
seek             1085 main/streams/streams.c 	if (stream->ops->seek && (stream->flags & PHP_STREAM_FLAG_NO_SEEK) == 0) {
seek             1098 main/streams/streams.c 		ret = stream->ops->seek(stream, offset, whence, &stream->position TSRMLS_CC);
seek             1823 main/streams/streams.c 	if (stream && stream->ops->seek && (stream->flags & PHP_STREAM_FLAG_NO_SEEK) == 0 && strchr(mode, 'a') && stream->position == 0) {
seek             1827 main/streams/streams.c 		if (0 == stream->ops->seek(stream, 0, SEEK_CUR, &newpos TSRMLS_CC)) {