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              986 ext/oci8/oci8.c 	PHP_FALIAS(seek,		oci_lob_seek,			arginfo_oci_lob_seek_method)
seek             1934 ext/spl/spl_array.c 	SPL_ME(Array, seek,             arginfo_array_seek,             ZEND_ACC_PUBLIC)
seek             2007 ext/spl/spl_directory.c 	SPL_ME(DirectoryIterator, seek,          arginfo_dir_it_seek, ZEND_ACC_PUBLIC)
seek             3027 ext/spl/spl_directory.c 	SPL_ME(SplFileObject, seek,           arginfo_file_object_seek,          ZEND_ACC_PUBLIC)
seek             2583 ext/spl/spl_iterators.c 	SPL_ABSTRACT_ME(SeekableIterator, seek, arginfo_seekable_it_seek)
seek             2604 ext/spl/spl_iterators.c 	SPL_ME(LimitIterator,   seek,             arginfo_limit_it_seek, ZEND_ACC_PUBLIC)
seek              529 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              208 main/streams/cast.c 		if (stream->ops->seek && (stream->flags & PHP_STREAM_FLAG_NO_SEEK) == 0) {
seek              211 main/streams/cast.c 			stream->ops->seek(stream, stream->position, SEEK_SET, &dummy TSRMLS_CC);
seek              384 main/streams/cast.c 	if (((flags & PHP_STREAM_FORCE_CONVERSION) == 0) && origstream->ops->seek != NULL) {
seek             1121 main/streams/streams.c 	if (stream->ops->seek && (stream->flags & PHP_STREAM_FLAG_NO_SEEK) == 0 && stream->readpos != stream->writepos) {
seek             1124 main/streams/streams.c 		stream->ops->seek(stream, stream->position, SEEK_SET, &stream->position TSRMLS_CC);
seek             1143 main/streams/streams.c 			if (stream->ops->seek && (stream->flags & PHP_STREAM_FLAG_NO_SEEK) == 0) {
seek             1304 main/streams/streams.c 	if (stream->ops->seek && (stream->flags & PHP_STREAM_FLAG_NO_SEEK) == 0) {
seek             1317 main/streams/streams.c 		ret = stream->ops->seek(stream, offset, whence, &stream->position TSRMLS_CC);
seek             2134 main/streams/streams.c 	if (stream && stream->ops->seek && (stream->flags & PHP_STREAM_FLAG_NO_SEEK) == 0 && strchr(mode, 'a') && stream->position == 0) {
seek             2138 main/streams/streams.c 		if (0 == stream->ops->seek(stream, 0, SEEK_CUR, &newpos TSRMLS_CC)) {