Lines Matching refs:is_pipe
128 unsigned is_pipe:1; /* don't try and seek */ member
175 self->is_pipe = 0; in _php_stream_fopen_from_fd_int()
194 self->is_pipe = 0; in _php_stream_fopen_from_file_int()
254 self->is_pipe = (do_fstat(self, 0) == 0 && S_ISFIFO(self->sb.st_mode)) ? 1 : 0; in _php_stream_fopen_from_fd()
261 self->is_pipe = GetFileType((HANDLE)handle) == FILE_TYPE_PIPE; in _php_stream_fopen_from_fd()
266 if (self->is_pipe) { in _php_stream_fopen_from_fd()
274 self->is_pipe = 1; in _php_stream_fopen_from_fd()
293 self->is_pipe = (do_fstat(self, 0) == 0 && S_ISFIFO(self->sb.st_mode)) ? 1 : 0; in _php_stream_fopen_from_file()
300 self->is_pipe = GetFileType((HANDLE)handle) == FILE_TYPE_PIPE; in _php_stream_fopen_from_file()
305 if (self->is_pipe) { in _php_stream_fopen_from_file()
323 self->is_pipe = 1; in _php_stream_fopen_from_pipe()
358 if (!data->is_pipe && data->last_op == 'r') { in php_stdiop_write()
379 if ((self->is_pipe || self->is_process_pipe) && !self->is_pipe_blocking) { in php_stdiop_read()
417 if (!data->is_pipe && data->last_op == 'w') in php_stdiop_read()
518 if (data->is_pipe) { in php_stdiop_seek()