Lines Matching refs:data_len
254 size_t data_len; in PHP_FUNCTION() local
258 …S(), getThis(), "Os|l", &z_descriptor, oci_lob_class_entry_ptr, &data, &data_len, &offset) == FAIL… in PHP_FUNCTION()
274 if (php_oci_lob_write(descriptor, (ub4) offset, data, (ub4) data_len, &bytes_written)) { in PHP_FUNCTION()
529 size_t data_len; in PHP_FUNCTION() local
535 …(), getThis(), "Os|l!", &z_descriptor, oci_lob_class_entry_ptr, &data, &data_len, &write_len, &wri… in PHP_FUNCTION()
540 data_len = MIN((zend_long) data_len, write_len); in PHP_FUNCTION()
550 if (data_len <= 0) { in PHP_FUNCTION()
554 …if (php_oci_lob_write(descriptor, descriptor->lob_current_position, data, (ub4) data_len, &bytes_w… in PHP_FUNCTION()
924 size_t data_len; in PHP_METHOD() local
927 …S(), getThis(), "Os|l", &z_descriptor, oci_lob_class_entry_ptr, &data, &data_len, &type) == FAILUR… in PHP_METHOD()
938 if (php_oci_lob_write_tmp(descriptor, type, data, (int) data_len)) { in PHP_METHOD()