Lines Matching refs:zval

168 	zval		    taf_callback;				/* The Oracle TAF callback function in the userspace */
212 zval val; /* zval used in define */
247 zval val; /* value */
372 #define PHP_OCI_ZVAL_TO_CONNECTION(zval, connection) \ argument
373 …if ((connection = (php_oci_connection *)zend_fetch_resource2(Z_RES_P(zval), "oci8 connection", le_…
377 #define PHP_OCI_ZVAL_TO_STATEMENT(zval, statement) \ argument
378 …if ((statement = (php_oci_statement *)zend_fetch_resource(Z_RES_P(zval), "oci8 statement", le_stat…
382 #define PHP_OCI_ZVAL_TO_DESCRIPTOR(zval, descriptor) \ argument
383 …if ((descriptor = (php_oci_descriptor *)zend_fetch_resource(Z_RES_P(zval), "oci8 descriptor", le_d…
387 #define PHP_OCI_ZVAL_TO_COLLECTION(zval, collection) \ argument
388 …if ((collection = (php_oci_collection *)zend_fetch_resource(Z_RES_P(zval), "oci8 collection", le_c…
392 #define PHP_OCI_FETCH_RESOURCE_EX(zval, var, type, name, resource_type) \ argument
394 var = (type) zend_fetch_resource(Z_RES_P(zval), name, resource_type); \
400 #define PHP_OCI_ZVAL_TO_CONNECTION_EX(zval, connection) \ argument
401 PHP_OCI_FETCH_RESOURCE_EX(zval, connection, php_oci_connection *, "oci8 connection", le_connection)
403 #define PHP_OCI_ZVAL_TO_STATEMENT_EX(zval, statement) \ argument
404 PHP_OCI_FETCH_RESOURCE_EX(zval, statement, php_oci_statement *, "oci8 statement", le_statement)
406 #define PHP_OCI_ZVAL_TO_DESCRIPTOR_EX(zval, descriptor) \ argument
407 PHP_OCI_FETCH_RESOURCE_EX(zval, descriptor, php_oci_descriptor *, "oci8 descriptor", le_descriptor)
409 #define PHP_OCI_ZVAL_TO_COLLECTION_EX(zval, collection) \ argument
410 PHP_OCI_FETCH_RESOURCE_EX(zval, collection, php_oci_collection *, "oci8 collection", le_collection)
418 void php_oci_column_hash_dtor(zval *data);
419 void php_oci_define_hash_dtor(zval *data);
420 void php_oci_bind_hash_dtor(zval *data);
421 void php_oci_descriptor_flush_hash_dtor(zval *data);
435 int php_oci_column_to_zval(php_oci_out_column *column, zval *value, int mode);
469 int php_oci_collection_element_get(php_oci_collection *collection, zend_long index, zval *result_el…
495 int php_oci_bind_pre_exec(zval *data, void *result);
496 int php_oci_bind_post_exec(zval *data);
497 int php_oci_bind_by_name(php_oci_statement *statement, char *name, size_t name_len, zval *var, zend…
501 int php_oci_cleanup_pre_fetch(zval *data);
504 int php_oci_bind_array_by_name(php_oci_statement *statement, char *name, size_t name_len, zval *var…
505 php_oci_bind *php_oci_bind_array_helper_number(zval *var, zend_long max_table_length);
506 php_oci_bind *php_oci_bind_array_helper_double(zval *var, zend_long max_table_length);
507 php_oci_bind *php_oci_bind_array_helper_string(zval *var, zend_long max_table_length, zend_long max…
508 php_oci_bind *php_oci_bind_array_helper_date(zval *var, zend_long max_table_length, php_oci_connect…
539 int php_oci_register_taf_callback(php_oci_connection *connection, zval *callback);