Lines Matching refs:zval

181 	zval		*zval;			/* zval used in define */  member
208 zval *zval; /* value */ member
332 #define PHP_OCI_ZVAL_TO_CONNECTION(zval, connection) \ argument
333 …ZEND_FETCH_RESOURCE2(connection, php_oci_connection *, &zval, -1, "oci8 connection", le_connection…
335 #define PHP_OCI_ZVAL_TO_STATEMENT(zval, statement) \ argument
336 ZEND_FETCH_RESOURCE(statement, php_oci_statement *, &zval, -1, "oci8 statement", le_statement)
338 #define PHP_OCI_ZVAL_TO_DESCRIPTOR(zval, descriptor) \ argument
339 ZEND_FETCH_RESOURCE(descriptor, php_oci_descriptor *, &zval, -1, "oci8 descriptor", le_descriptor)
341 #define PHP_OCI_ZVAL_TO_COLLECTION(zval, collection) \ argument
342 ZEND_FETCH_RESOURCE(collection, php_oci_collection *, &zval, -1, "oci8 collection", le_collection)
344 #define PHP_OCI_FETCH_RESOURCE_EX(zval, var, type, name, resource_type) \ argument
346 var = (type) zend_fetch_resource(&zval TSRMLS_CC, -1, name, NULL, 1, resource_type); \
352 #define PHP_OCI_ZVAL_TO_CONNECTION_EX(zval, connection) \ argument
353 PHP_OCI_FETCH_RESOURCE_EX(zval, connection, php_oci_connection *, "oci8 connection", le_connection)
355 #define PHP_OCI_ZVAL_TO_STATEMENT_EX(zval, statement) \ argument
356 PHP_OCI_FETCH_RESOURCE_EX(zval, statement, php_oci_statement *, "oci8 statement", le_statement)
358 #define PHP_OCI_ZVAL_TO_DESCRIPTOR_EX(zval, descriptor) \ argument
359 PHP_OCI_FETCH_RESOURCE_EX(zval, descriptor, php_oci_descriptor *, "oci8 descriptor", le_descriptor)
361 #define PHP_OCI_ZVAL_TO_COLLECTION_EX(zval, collection) \ argument
362 PHP_OCI_FETCH_RESOURCE_EX(zval, collection, php_oci_collection *, "oci8 collection", le_collection)
393 int php_oci_column_to_zval(php_oci_out_column *, zval *, int TSRMLS_DC);
430 int php_oci_collection_element_get(php_oci_collection *, long, zval** TSRMLS_DC);
457 int php_oci_bind_by_name(php_oci_statement *, char *, int, zval*, long, ub2 TSRMLS_DC);
465 int php_oci_bind_array_by_name(php_oci_statement *statement, char *name, int name_len, zval* var, l…
466 php_oci_bind *php_oci_bind_array_helper_number(zval* var, long max_table_length TSRMLS_DC);
467 php_oci_bind *php_oci_bind_array_helper_double(zval* var, long max_table_length TSRMLS_DC);
468 php_oci_bind *php_oci_bind_array_helper_string(zval* var, long max_table_length, long maxlength TSR…
469 php_oci_bind *php_oci_bind_array_helper_date(zval* var, long max_table_length, php_oci_connection *…