binds             162 ext/oci8/oci8_statement.c 		statement2->binds = NULL;
binds             531 ext/oci8/oci8_statement.c 		if (statement->binds) {
binds             533 ext/oci8/oci8_statement.c 			zend_hash_apply_with_argument(statement->binds, php_oci_bind_pre_exec, (void *)&result);
binds             548 ext/oci8/oci8_statement.c 		if (statement->binds) {
binds             549 ext/oci8/oci8_statement.c 			zend_hash_apply(statement->binds, php_oci_bind_post_exec);
binds             878 ext/oci8/oci8_statement.c 	if (statement->binds) {
binds             879 ext/oci8/oci8_statement.c 		zend_hash_destroy(statement->binds);
binds             880 ext/oci8/oci8_statement.c 		efree(statement->binds);
binds            1231 ext/oci8/oci8_statement.c 	if (!statement->binds) {
binds            1232 ext/oci8/oci8_statement.c 		ALLOC_HASHTABLE(statement->binds);
binds            1233 ext/oci8/oci8_statement.c 		zend_hash_init(statement->binds, 13, NULL, php_oci_bind_hash_dtor, 0);
binds            1236 ext/oci8/oci8_statement.c 	if ((old_bind = zend_hash_str_find_ptr(statement->binds, name, name_len)) != NULL) {
binds            1242 ext/oci8/oci8_statement.c 		bindp = zend_hash_update_ptr(statement->binds, zvtmp, bindp);
binds            1667 ext/oci8/oci8_statement.c 	if (!statement->binds) {
binds            1668 ext/oci8/oci8_statement.c 		ALLOC_HASHTABLE(statement->binds);
binds            1669 ext/oci8/oci8_statement.c 		zend_hash_init(statement->binds, 13, NULL, php_oci_bind_hash_dtor, 0);
binds            1673 ext/oci8/oci8_statement.c 	bindp = zend_hash_update_ptr(statement->binds, zvtmp, bind);
binds             233 ext/oci8/php_oci8_int.h 	HashTable			*binds;					/* binds hash */