binds             347 ext/mssql/php_mssql.c 	if (statement->binds) {
binds             348 ext/mssql/php_mssql.c 		zend_hash_destroy(statement->binds);
binds             349 ext/mssql/php_mssql.c 		efree(statement->binds);
binds            1152 ext/mssql/php_mssql.c 			if (statement->binds != NULL) {	/*	Maybe a non-parameter sp	*/
binds            1153 ext/mssql/php_mssql.c 				if (zend_hash_find(statement->binds, parameter, strlen(parameter), (void**)&bind)==SUCCESS) {
binds            1195 ext/mssql/php_mssql.c 	if (statement->binds != NULL) {	/*	Maybe a non-parameter sp	*/
binds            1196 ext/mssql/php_mssql.c 		if (zend_hash_find(statement->binds, "RETVAL", 6, (void**)&bind)==SUCCESS) {
binds            2086 ext/mssql/php_mssql.c 	if (! statement->binds) {
binds            2087 ext/mssql/php_mssql.c 		ALLOC_HASHTABLE(statement->binds);
binds            2088 ext/mssql/php_mssql.c 		zend_hash_init(statement->binds, 13, NULL, _mssql_bind_hash_dtor, 0);
binds            2091 ext/mssql/php_mssql.c 	if (zend_hash_exists(statement->binds, param_name, param_name_len)) {
binds            2096 ext/mssql/php_mssql.c 		zend_hash_add(statement->binds, param_name, param_name_len, &bind, sizeof(mssql_bind), (void **)&bindp);
binds             146 ext/mssql/php_mssql.h 	HashTable *binds;
binds             161 ext/oci8/oci8_statement.c 		statement2->binds = NULL;
binds             532 ext/oci8/oci8_statement.c 		if (statement->binds) {
binds             534 ext/oci8/oci8_statement.c 			zend_hash_apply_with_argument(statement->binds, (apply_func_arg_t) php_oci_bind_pre_exec, (void *)&result TSRMLS_CC);
binds             549 ext/oci8/oci8_statement.c 		if (statement->binds) {
binds             550 ext/oci8/oci8_statement.c 			zend_hash_apply(statement->binds, (apply_func_t) php_oci_bind_post_exec TSRMLS_CC);
binds             883 ext/oci8/oci8_statement.c 	if (statement->binds) {
binds             884 ext/oci8/oci8_statement.c 		zend_hash_destroy(statement->binds);
binds             885 ext/oci8/oci8_statement.c 		efree(statement->binds);
binds            1217 ext/oci8/oci8_statement.c 	if (!statement->binds) {
binds            1218 ext/oci8/oci8_statement.c 		ALLOC_HASHTABLE(statement->binds);
binds            1219 ext/oci8/oci8_statement.c 		zend_hash_init(statement->binds, 13, NULL, php_oci_bind_hash_dtor, 0);
binds            1223 ext/oci8/oci8_statement.c 	if (zend_hash_find(statement->binds, name, name_len + 1, (void **)&old_bind) == SUCCESS) {
binds            1229 ext/oci8/oci8_statement.c 		zend_hash_update(statement->binds, name, name_len + 1, &bind, sizeof(php_oci_bind), (void **)&bindp);
binds            1583 ext/oci8/oci8_statement.c 	if (!statement->binds) {
binds            1584 ext/oci8/oci8_statement.c 		ALLOC_HASHTABLE(statement->binds);
binds            1585 ext/oci8/oci8_statement.c 		zend_hash_init(statement->binds, 13, NULL, php_oci_bind_hash_dtor, 0);
binds            1588 ext/oci8/oci8_statement.c 	zend_hash_update(statement->binds, name, name_len + 1, bind, sizeof(php_oci_bind), (void **)&bindp);
binds             226 ext/oci8/php_oci8_int.h 	HashTable			*binds;					/* binds hash */