Lines Matching refs:stream
622 static ssize_t oci_blob_write(php_stream *stream, const char *buf, size_t count) in oci_blob_write() argument
624 struct oci_lob_self *self = (struct oci_lob_self*)stream->abstract; in oci_blob_write()
642 static ssize_t oci_blob_read(php_stream *stream, char *buf, size_t count) in oci_blob_read() argument
644 struct oci_lob_self *self = (struct oci_lob_self*)stream->abstract; in oci_blob_read()
670 stream->eof = 1; in oci_blob_read()
675 static int oci_blob_close(php_stream *stream, int close_handle) in oci_blob_close() argument
677 struct oci_lob_self *self = (struct oci_lob_self *)stream->abstract; in oci_blob_close()
694 static int oci_blob_flush(php_stream *stream) in oci_blob_flush() argument
696 struct oci_lob_self *self = (struct oci_lob_self*)stream->abstract; in oci_blob_flush()
701 static int oci_blob_seek(php_stream *stream, zend_off_t offset, int whence, zend_off_t *newoffset) in oci_blob_seek() argument
703 struct oci_lob_self *self = (struct oci_lob_self*)stream->abstract; in oci_blob_seek()
770 …php_stream *stream = oci_create_lob_stream(&stmt->database_object_handle, stmt, (OCILobLocator*)C-… in oci_stmt_get_col() local
772 php_stream_to_zval(stream, result); in oci_stmt_get_col()