bound_params      492 ext/pdo/pdo_sql_parser.c 	params = stmt->bound_params;
bound_params      736 ext/pdo/pdo_sql_parser.c 	HashTable *params = stmt->bound_params;
bound_params      181 ext/pdo/pdo_stmt.c 	ht = stmt->bound_params;
bound_params      240 ext/pdo/pdo_stmt.c 		if (stmt->bound_params) {
bound_params      243 ext/pdo/pdo_stmt.c 			if (SUCCESS == zend_hash_find(stmt->bound_params, stmt->columns[col].name,
bound_params      307 ext/pdo/pdo_stmt.c 	hash = is_param ? stmt->bound_params : stmt->bound_columns;
bound_params      314 ext/pdo/pdo_stmt.c 			stmt->bound_params = hash;
bound_params      452 ext/pdo/pdo_stmt.c 		if (stmt->bound_params) {	
bound_params      453 ext/pdo/pdo_stmt.c 			zend_hash_destroy(stmt->bound_params);
bound_params      454 ext/pdo/pdo_stmt.c 			FREE_HASHTABLE(stmt->bound_params);
bound_params      455 ext/pdo/pdo_stmt.c 			stmt->bound_params = NULL;
bound_params     2144 ext/pdo/pdo_stmt.c 		stmt->bound_params ? zend_hash_num_elements(stmt->bound_params) : 0);
bound_params     2146 ext/pdo/pdo_stmt.c 	if (stmt->bound_params) {
bound_params     2147 ext/pdo/pdo_stmt.c 		zend_hash_internal_pointer_reset_ex(stmt->bound_params, &pos);
bound_params     2148 ext/pdo/pdo_stmt.c 		while (SUCCESS == zend_hash_get_current_data_ex(stmt->bound_params,
bound_params     2155 ext/pdo/pdo_stmt.c 			res = zend_hash_get_current_key_ex(stmt->bound_params, &str, &len, &num, 0, &pos);
bound_params     2167 ext/pdo/pdo_stmt.c 			zend_hash_move_forward_ex(stmt->bound_params, &pos);
bound_params     2350 ext/pdo/pdo_stmt.c 	if (stmt->bound_params) {
bound_params     2351 ext/pdo/pdo_stmt.c 		zend_hash_destroy(stmt->bound_params);
bound_params     2352 ext/pdo/pdo_stmt.c 		FREE_HASHTABLE(stmt->bound_params);
bound_params     2353 ext/pdo/pdo_stmt.c 		stmt->bound_params = NULL;
bound_params      588 ext/pdo/php_pdo_driver.h 	HashTable *bound_params;
bound_params       60 ext/pdo_oci/oci_statement.c 	HashTable *BP = stmt->bound_params;
bound_params       87 ext/pdo_oci/oci_statement.c 		FREE_HASHTABLE(stmt->bound_params);
bound_params       88 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      300 ext/pdo_pgsql/pgsql_statement.c 					if (param->paramno >= zend_hash_num_elements(stmt->bound_params)) {
bound_params      123 ext/sqlite3/php_sqlite3_structs.h 	HashTable *bound_params;
bound_params     1411 ext/sqlite3/sqlite3.c 	hash = stmt->bound_params;
bound_params     1416 ext/sqlite3/sqlite3.c 		stmt->bound_params = hash;
bound_params     1543 ext/sqlite3/sqlite3.c 	if (stmt_obj->bound_params) {
bound_params     1544 ext/sqlite3/sqlite3.c 		zend_hash_internal_pointer_reset(stmt_obj->bound_params);
bound_params     1545 ext/sqlite3/sqlite3.c 		while (zend_hash_get_current_data(stmt_obj->bound_params, (void **)&param) == SUCCESS) {
bound_params     1549 ext/sqlite3/sqlite3.c 				zend_hash_move_forward(stmt_obj->bound_params);
bound_params     1607 ext/sqlite3/sqlite3.c 			zend_hash_move_forward(stmt_obj->bound_params);
bound_params     2140 ext/sqlite3/sqlite3.c 	if (intern->bound_params) {
bound_params     2141 ext/sqlite3/sqlite3.c 		zend_hash_destroy(intern->bound_params);
bound_params     2142 ext/sqlite3/sqlite3.c 		FREE_HASHTABLE(intern->bound_params);
bound_params     2143 ext/sqlite3/sqlite3.c 		intern->bound_params = NULL;