Lines Matching refs:lob_current_position
86 descriptor->lob_current_position = 0; in php_oci_lob_create()
361 offset = descriptor->lob_current_position + chars_read; in php_oci_lob_read()
363 offset = descriptor->lob_current_position + bytes_read; in php_oci_lob_read()
390 offset = descriptor->lob_current_position + bytes_read; in php_oci_lob_read()
405 descriptor->lob_current_position = (int)offset; in php_oci_lob_read()
446 if (offset > descriptor->lob_current_position) { in php_oci_lob_write()
447 offset = descriptor->lob_current_position; in php_oci_lob_write()
474 descriptor->lob_current_position += data_len; in php_oci_lob_write()
476 if (descriptor->lob_current_position > descriptor->lob_size) { in php_oci_lob_write()
477 descriptor->lob_size = descriptor->lob_current_position; in php_oci_lob_write()
546 copy_len = length_from - descriptor_from->lob_current_position; in php_oci_lob_copy()
563 descriptor_dest->lob_current_position+1, in php_oci_lob_copy()
564 descriptor_from->lob_current_position+1 in php_oci_lob_copy()
857 offset = descriptor->lob_current_position;