buffering        1609 ext/oci8/oci8.c 	if (descriptor && descriptor->buffering == PHP_OCI_LOB_BUFFER_USED && (descriptor->type == OCI_DTYPE_LOB || descriptor->type == OCI_DTYPE_FILE)) {
buffering        1611 ext/oci8/oci8.c 		descriptor->buffering = PHP_OCI_LOB_BUFFER_ENABLED;
buffering        2588 ext/oci8/oci8.c 			descriptor->buffering = 0;
buffering         738 ext/oci8/oci8_interface.c 	if (descriptor->buffering == PHP_OCI_LOB_BUFFER_DISABLED) {
buffering         803 ext/oci8/oci8_interface.c 	if (descriptor->buffering != PHP_OCI_LOB_BUFFER_DISABLED) {
buffering          91 ext/oci8/oci8_lob.c 	descriptor->buffering = PHP_OCI_LOB_BUFFER_DISABLED;				/* buffering is off by default */
buffering         454 ext/oci8/oci8_lob.c 	if (descriptor->buffering == PHP_OCI_LOB_BUFFER_ENABLED) {
buffering         455 ext/oci8/oci8_lob.c 		descriptor->buffering = PHP_OCI_LOB_BUFFER_USED;
buffering         470 ext/oci8/oci8_lob.c 	if (!on_off && descriptor->buffering == PHP_OCI_LOB_BUFFER_DISABLED) {
buffering         475 ext/oci8/oci8_lob.c 	if (on_off && descriptor->buffering != PHP_OCI_LOB_BUFFER_DISABLED) {
buffering         491 ext/oci8/oci8_lob.c 	descriptor->buffering = on_off ? PHP_OCI_LOB_BUFFER_ENABLED : PHP_OCI_LOB_BUFFER_DISABLED;
buffering         501 ext/oci8/oci8_lob.c 	if (descriptor->buffering != PHP_OCI_LOB_BUFFER_DISABLED) {
buffering         641 ext/oci8/oci8_lob.c 	if (descriptor->buffering != PHP_OCI_LOB_BUFFER_USED) {
buffering         654 ext/oci8/oci8_lob.c 	descriptor->buffering = PHP_OCI_LOB_BUFFER_ENABLED;
buffering         692 ext/oci8/oci8_lob.c 	if ((descriptor->type == OCI_DTYPE_FILE || descriptor->type == OCI_DTYPE_LOB) && descriptor->buffering == PHP_OCI_LOB_BUFFER_USED) {
buffering         181 ext/oci8/php_oci8_int.h 	int					 buffering;				/* cached buffering flag. 0 - off, 1 - on, 2 - on and buffer was used */