Searched refs:lob_length (Results 1 – 3 of 3) sorted by relevance
/PHP-7.2/ext/oci8/ |
H A D | oci8_lob.c | 403 ub4 lob_length; in php_oci_lob_write() local 407 if (php_oci_lob_get_length(descriptor, &lob_length)) { in php_oci_lob_write() 799 ub4 lob_length; in php_oci_lob_truncate() local 802 if (php_oci_lob_get_length(descriptor, &lob_length)) { in php_oci_lob_truncate() 806 if (lob_length <= 0) { in php_oci_lob_truncate() 815 if (new_lob_length > lob_length) { in php_oci_lob_truncate() 841 ub4 lob_length; in php_oci_lob_erase() local 846 if (php_oci_lob_get_length(descriptor, &lob_length)) { in php_oci_lob_erase() 855 length = lob_length; in php_oci_lob_erase()
|
H A D | oci8_interface.c | 453 ub4 lob_length; in PHP_FUNCTION() local 468 if (!php_oci_lob_get_length(descriptor, &lob_length)) { in PHP_FUNCTION() 469 if (lob_length == descriptor->lob_current_position) { in PHP_FUNCTION() 534 ub4 lob_length; in PHP_FUNCTION() local 554 if (php_oci_lob_get_length(descriptor, &lob_length)) { in PHP_FUNCTION() 589 ub4 lob_length; in PHP_FUNCTION() local 604 if (php_oci_lob_get_length(descriptor, &lob_length)) { in PHP_FUNCTION() 607 RETURN_LONG(lob_length); in PHP_FUNCTION() 979 ub4 lob_length; in PHP_FUNCTION() local 1017 if (php_oci_lob_get_length(descriptor, &lob_length)) { in PHP_FUNCTION() [all …]
|
H A D | oci8.c | 2453 ub4 lob_length; in php_oci_column_to_zval() local 2488 lob_fetch_status = php_oci_lob_read(descriptor, -1, 0, &lob_buffer, &lob_length); in php_oci_column_to_zval() 2496 if (lob_length > 0) { in php_oci_column_to_zval() 2497 ZVAL_STRINGL(value, lob_buffer, lob_length); in php_oci_column_to_zval()
|
Completed in 21 milliseconds