buffering        1605 ext/oci8/oci8.c 	if (descriptor && descriptor->buffering == PHP_OCI_LOB_BUFFER_USED && (descriptor->type == OCI_DTYPE_LOB || descriptor->type == OCI_DTYPE_FILE)) {
buffering        1607 ext/oci8/oci8.c 		descriptor->buffering = PHP_OCI_LOB_BUFFER_ENABLED;
buffering        2577 ext/oci8/oci8.c 			descriptor->buffering = 0;
buffering         722 ext/oci8/oci8_interface.c 	if (descriptor->buffering == PHP_OCI_LOB_BUFFER_DISABLED) {
buffering         787 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         455 ext/oci8/oci8_lob.c 	if (descriptor->buffering == PHP_OCI_LOB_BUFFER_ENABLED) {
buffering         456 ext/oci8/oci8_lob.c 		descriptor->buffering = PHP_OCI_LOB_BUFFER_USED;
buffering         471 ext/oci8/oci8_lob.c 	if (!on_off && descriptor->buffering == PHP_OCI_LOB_BUFFER_DISABLED) {
buffering         476 ext/oci8/oci8_lob.c 	if (on_off && descriptor->buffering != PHP_OCI_LOB_BUFFER_DISABLED) {
buffering         492 ext/oci8/oci8_lob.c 	descriptor->buffering = on_off ? PHP_OCI_LOB_BUFFER_ENABLED : PHP_OCI_LOB_BUFFER_DISABLED;
buffering         502 ext/oci8/oci8_lob.c 	if (descriptor->buffering != PHP_OCI_LOB_BUFFER_DISABLED) {
buffering         642 ext/oci8/oci8_lob.c 	if (descriptor->buffering != PHP_OCI_LOB_BUFFER_USED) {
buffering         655 ext/oci8/oci8_lob.c 	descriptor->buffering = PHP_OCI_LOB_BUFFER_ENABLED;
buffering         693 ext/oci8/oci8_lob.c 	if ((descriptor->type == OCI_DTYPE_FILE || descriptor->type == OCI_DTYPE_LOB) && descriptor->buffering == PHP_OCI_LOB_BUFFER_USED) {
buffering         174 ext/oci8/php_oci8_int.h 	int					 buffering;				/* cached buffering flag. 0 - off, 1 - on, 2 - on and buffer was used */