Searched refs:caller_frees (Results 1 - 9 of 9) sorted by relevance
| /PHP_5_5/ext/pdo/ |
| H A D | php_pdo_driver.h | 339 * If the driver sets caller_frees, ptr should point to emalloc'd memory 342 typedef int (*pdo_stmt_get_col_data_func)(pdo_stmt_t *stmt, int colno, char **ptr, unsigned long *len, int *caller_frees TSRMLS_DC);
|
| H A D | pdo_stmt.c | 551 int caller_frees = 0; local 561 stmt->methods->get_col(stmt, colno, &value, &value_len, &caller_frees TSRMLS_CC); 616 if (caller_frees) { 619 caller_frees = 0; 632 ZVAL_STRINGL(dest, value, value_len, !caller_frees); 633 if (caller_frees) { 634 caller_frees = 0; 641 ZVAL_STRINGL(dest, value, value_len, !caller_frees); 642 if (caller_frees) { 643 caller_frees [all...] |
| /PHP_5_5/ext/pdo_dblib/ |
| H A D | dblib_stmt.c | 188 unsigned long *len, int *caller_frees TSRMLS_DC) 258 *caller_frees = 1;
|
| /PHP_5_5/ext/pdo_firebird/ |
| H A D | firebird_statement.c | 301 unsigned long *len, int *caller_frees TSRMLS_DC) 502 int caller_frees; local 593 caller_frees = 0; 595 if (firebird_stmt_get_col(stmt, param->paramno, &value, &value_len, &caller_frees TSRMLS_CC)) { 619 if (value && caller_frees) {
|
| /PHP_5_5/ext/pdo_odbc/ |
| H A D | odbc_stmt.c | 609 static int odbc_stmt_get_col(pdo_stmt_t *stmt, int colno, char **ptr, unsigned long *len, int *caller_frees TSRMLS_DC) 680 *caller_frees = 1; 725 if (*caller_frees) { 731 *caller_frees = 1;
|
| /PHP_5_5/ext/pdo_pgsql/ |
| H A D | pgsql_statement.c | 492 static int pgsql_stmt_get_col(pdo_stmt_t *stmt, int colno, char **ptr, unsigned long *len, int *caller_frees TSRMLS_DC) 554 *caller_frees = 1;
|
| /PHP_5_5/ext/pdo_sqlite/ |
| H A D | sqlite_statement.c | 249 static int pdo_sqlite_stmt_get_col(pdo_stmt_t *stmt, int colno, char **ptr, unsigned long *len, int *caller_frees TSRMLS_DC)
|
| /PHP_5_5/ext/pdo_oci/ |
| H A D | oci_statement.c | 715 static int oci_stmt_get_col(pdo_stmt_t *stmt, int colno, char **ptr, unsigned long *len, int *caller_frees TSRMLS_DC) /* {{{ */
|
| /PHP_5_5/ext/pdo_mysql/ |
| H A D | mysql_statement.c | 705 static int pdo_mysql_stmt_get_col(pdo_stmt_t *stmt, int colno, char **ptr, unsigned long *len, int *caller_frees TSRMLS_DC) /* {{{ */
|
Completed in 18 milliseconds