Lines Matching refs:binds
452 if (statement->binds) { in php_oci_statement_execute()
454 …zend_hash_apply_with_argument(statement->binds, (apply_func_arg_t) php_oci_bind_pre_exec, (void *)… in php_oci_statement_execute()
469 if (statement->binds) { in php_oci_statement_execute()
470 zend_hash_apply(statement->binds, (apply_func_t) php_oci_bind_post_exec TSRMLS_CC); in php_oci_statement_execute()
787 if (statement->binds) { in php_oci_statement_free()
788 zend_hash_destroy(statement->binds); in php_oci_statement_free()
789 efree(statement->binds); in php_oci_statement_free()
1098 if (!statement->binds) { in php_oci_bind_by_name()
1099 ALLOC_HASHTABLE(statement->binds); in php_oci_bind_by_name()
1100 zend_hash_init(statement->binds, 13, NULL, php_oci_bind_hash_dtor, 0); in php_oci_bind_by_name()
1104 if (zend_hash_find(statement->binds, name, name_len + 1, (void **)&old_bind) == SUCCESS) { in php_oci_bind_by_name()
1110 …zend_hash_update(statement->binds, name, name_len + 1, &bind, sizeof(php_oci_bind), (void **)&bind… in php_oci_bind_by_name()
1455 if (!statement->binds) { in php_oci_bind_array_by_name()
1456 ALLOC_HASHTABLE(statement->binds); in php_oci_bind_array_by_name()
1457 zend_hash_init(statement->binds, 13, NULL, php_oci_bind_hash_dtor, 0); in php_oci_bind_array_by_name()
1460 …zend_hash_update(statement->binds, name, name_len + 1, bind, sizeof(php_oci_bind), (void **)&bindp… in php_oci_bind_array_by_name()