bound_params      496 ext/pdo/pdo_sql_parser.c 	params = stmt->bound_params;
bound_params      754 ext/pdo/pdo_sql_parser.c 	HashTable *params = stmt->bound_params;
bound_params      178 ext/pdo/pdo_stmt.c 	ht = stmt->bound_params;
bound_params      234 ext/pdo/pdo_stmt.c 		if (stmt->bound_params) {
bound_params      237 ext/pdo/pdo_stmt.c 			if (SUCCESS == zend_hash_find(stmt->bound_params, stmt->columns[col].name,
bound_params      302 ext/pdo/pdo_stmt.c 	hash = is_param ? stmt->bound_params : stmt->bound_columns;
bound_params      309 ext/pdo/pdo_stmt.c 			stmt->bound_params = hash;
bound_params      453 ext/pdo/pdo_stmt.c 		if (stmt->bound_params) {
bound_params      454 ext/pdo/pdo_stmt.c 			zend_hash_destroy(stmt->bound_params);
bound_params      455 ext/pdo/pdo_stmt.c 			FREE_HASHTABLE(stmt->bound_params);
bound_params      456 ext/pdo/pdo_stmt.c 			stmt->bound_params = NULL;
bound_params     2115 ext/pdo/pdo_stmt.c 		stmt->bound_params ? zend_hash_num_elements(stmt->bound_params) : 0);
bound_params     2117 ext/pdo/pdo_stmt.c 	if (stmt->bound_params) {
bound_params     2120 ext/pdo/pdo_stmt.c 		ZEND_HASH_FOREACH_KEY_PTR(stmt->bound_params, num, key, param) {
bound_params     2299 ext/pdo/pdo_stmt.c 	if (stmt->bound_params) {
bound_params     2300 ext/pdo/pdo_stmt.c 		zend_hash_destroy(stmt->bound_params);
bound_params     2301 ext/pdo/pdo_stmt.c 		FREE_HASHTABLE(stmt->bound_params);
bound_params     2302 ext/pdo/pdo_stmt.c 		stmt->bound_params = NULL;
bound_params      586 ext/pdo/php_pdo_driver.h 	HashTable *bound_params;
bound_params       69 ext/pdo_oci/oci_statement.c 	HashTable *BP = stmt->bound_params;
bound_params       96 ext/pdo_oci/oci_statement.c 		FREE_HASHTABLE(stmt->bound_params);
bound_params       97 ext/pdo_oci/oci_statement.c 		stmt->bound_params = NULL;
bound_params      165 ext/pdo_pgsql/pgsql_statement.c 						stmt->bound_params ? zend_hash_num_elements(stmt->bound_params) : 0,
bound_params      200 ext/pdo_pgsql/pgsql_statement.c 				stmt->bound_params ?
bound_params      201 ext/pdo_pgsql/pgsql_statement.c 					zend_hash_num_elements(stmt->bound_params) :
bound_params      210 ext/pdo_pgsql/pgsql_statement.c 				stmt->bound_params ? zend_hash_num_elements(stmt->bound_params) : 0,
bound_params      304 ext/pdo_pgsql/pgsql_statement.c 					if (param->paramno >= zend_hash_num_elements(stmt->bound_params)) {
bound_params      132 ext/sqlite3/php_sqlite3_structs.h 	HashTable *bound_params;
bound_params     1367 ext/sqlite3/sqlite3.c 	hash = stmt->bound_params;
bound_params     1372 ext/sqlite3/sqlite3.c 		stmt->bound_params = hash;
bound_params     1497 ext/sqlite3/sqlite3.c 	if (stmt_obj->bound_params) {
bound_params     1498 ext/sqlite3/sqlite3.c 		ZEND_HASH_FOREACH_PTR(stmt_obj->bound_params, param) {
bound_params     2092 ext/sqlite3/sqlite3.c 	if (intern->bound_params) {
bound_params     2093 ext/sqlite3/sqlite3.c 		zend_hash_destroy(intern->bound_params);
bound_params     2094 ext/sqlite3/sqlite3.c 		FREE_HASHTABLE(intern->bound_params);
bound_params     2095 ext/sqlite3/sqlite3.c 		intern->bound_params = NULL;