prefetch 186 ext/oci8/oci8_statement.c int php_oci_statement_set_prefetch(php_oci_statement *statement, ub4 prefetch TSRMLS_DC) prefetch 190 ext/oci8/oci8_statement.c if (prefetch > 20000) { prefetch 191 ext/oci8/oci8_statement.c prefetch = 20000; /* keep it somewhat sane */ prefetch 194 ext/oci8/oci8_statement.c PHP_OCI_CALL_RETURN(errstatus, OCIAttrSet, (statement->stmt, OCI_HTYPE_STMT, &prefetch, 0, OCI_ATTR_PREFETCH_ROWS, statement->err)); prefetch 202 ext/oci8/oci8_statement.c statement->prefetch_count = prefetch; prefetch 472 ext/oci8/php_oci8_int.h int php_oci_statement_set_prefetch(php_oci_statement *statement, ub4 prefetch TSRMLS_DC); prefetch 34 ext/pdo_oci/oci_driver.c static inline ub4 pdo_oci_sanitize_prefetch(long prefetch); prefetch 255 ext/pdo_oci/oci_driver.c ub4 prefetch; prefetch 305 ext/pdo_oci/oci_driver.c prefetch = pdo_oci_sanitize_prefetch(pdo_attr_lval(driver_options, PDO_ATTR_PREFETCH, PDO_OCI_PREFETCH_DEFAULT TSRMLS_CC)); prefetch 306 ext/pdo_oci/oci_driver.c if (prefetch) { prefetch 307 ext/pdo_oci/oci_driver.c H->last_err = OCIAttrSet(S->stmt, OCI_HTYPE_STMT, &prefetch, 0, prefetch 310 ext/pdo_oci/oci_driver.c prefetch *= PDO_OCI_PREFETCH_ROWSIZE; prefetch 311 ext/pdo_oci/oci_driver.c H->last_err = OCIAttrSet(S->stmt, OCI_HTYPE_STMT, &prefetch, 0, prefetch 723 ext/pdo_oci/oci_driver.c static inline ub4 pdo_oci_sanitize_prefetch(long prefetch) /* {{{ */ prefetch 725 ext/pdo_oci/oci_driver.c if (prefetch < 0) { prefetch 726 ext/pdo_oci/oci_driver.c prefetch = 0; prefetch 727 ext/pdo_oci/oci_driver.c } else if (prefetch > UB4MAXVAL / PDO_OCI_PREFETCH_ROWSIZE) { prefetch 728 ext/pdo_oci/oci_driver.c prefetch = PDO_OCI_PREFETCH_DEFAULT; prefetch 730 ext/pdo_oci/oci_driver.c return ((ub4)prefetch);