PHP_STREAM_FLAG_NO_SEEK  953 ext/standard/proc_open.c 					stream->flags |= PHP_STREAM_FLAG_NO_SEEK;
PHP_STREAM_FLAG_NO_SEEK  525 ext/standard/streamsfuncs.c 	add_assoc_bool(return_value, "seekable", (stream->ops->seek) && (stream->flags & PHP_STREAM_FLAG_NO_SEEK) == 0);
PHP_STREAM_FLAG_NO_SEEK  208 main/streams/cast.c 		if (stream->ops->seek && (stream->flags & PHP_STREAM_FLAG_NO_SEEK) == 0) {
PHP_STREAM_FLAG_NO_SEEK  253 main/streams/plain_wrapper.c 			stream->flags |= PHP_STREAM_FLAG_NO_SEEK;
PHP_STREAM_FLAG_NO_SEEK  259 main/streams/plain_wrapper.c 				stream->flags |= PHP_STREAM_FLAG_NO_SEEK;
PHP_STREAM_FLAG_NO_SEEK  292 main/streams/plain_wrapper.c 			stream->flags |= PHP_STREAM_FLAG_NO_SEEK;
PHP_STREAM_FLAG_NO_SEEK  316 main/streams/plain_wrapper.c 	stream->flags |= PHP_STREAM_FLAG_NO_SEEK;
PHP_STREAM_FLAG_NO_SEEK 1117 main/streams/streams.c 	if (stream->ops->seek && (stream->flags & PHP_STREAM_FLAG_NO_SEEK) == 0 && stream->readpos != stream->writepos) {
PHP_STREAM_FLAG_NO_SEEK 1139 main/streams/streams.c 			if (stream->ops->seek && (stream->flags & PHP_STREAM_FLAG_NO_SEEK) == 0) {
PHP_STREAM_FLAG_NO_SEEK 1300 main/streams/streams.c 	if (stream->ops->seek && (stream->flags & PHP_STREAM_FLAG_NO_SEEK) == 0) {
PHP_STREAM_FLAG_NO_SEEK 1315 main/streams/streams.c 		if (((stream->flags & PHP_STREAM_FLAG_NO_SEEK) == 0) || ret == 0) {
PHP_STREAM_FLAG_NO_SEEK 2121 main/streams/streams.c 	if (stream && stream->ops->seek && (stream->flags & PHP_STREAM_FLAG_NO_SEEK) == 0 && strchr(mode, 'a') && stream->position == 0) {
PHP_STREAM_FLAG_NO_SEEK  831 main/streams/userspace.c 		stream->flags |= PHP_STREAM_FLAG_NO_SEEK;