Lines Matching refs:zval

72 typedef zval *(*mysqli_read_t)(mysqli_object *obj, zval *rv);
73 typedef int (*mysqli_write_t)(mysqli_object *obj, zval *newval);
83 static void free_prop_handler(zval *el) { in free_prop_handler()
282 static zval *mysqli_read_na(mysqli_object *obj, zval *retval) in mysqli_read_na()
290 static int mysqli_write_na(mysqli_object *obj, zval *newval) in mysqli_write_na()
298 zval *mysqli_read_property(zval *object, zval *member, int type, void **cache_slot, zval *rv) in mysqli_read_property()
300 zval tmp_member; in mysqli_read_property()
301 zval *retval; in mysqli_read_property()
334 void mysqli_write_property(zval *object, zval *member, zval *value, void **cache_slot) in mysqli_write_property()
336 zval tmp_member; in mysqli_write_property()
375 static int mysqli_object_has_property(zval *object, zval *member, int has_set_exists, void **cache_… in mysqli_object_has_property()
387 zval rv; in mysqli_object_has_property()
388 zval *value = mysqli_read_property(object, member, BP_VAR_IS, cache_slot, &rv); in mysqli_object_has_property()
396 zval rv; in mysqli_object_has_property()
397 zval *value = mysqli_read_property(object, member, BP_VAR_IS, cache_slot, &rv); in mysqli_object_has_property()
414 HashTable *mysqli_object_get_debug_info(zval *object, int *is_temp) in mysqli_object_get_debug_info()
423 zval rv, member; in mysqli_object_get_debug_info()
424 zval *value; in mysqli_object_get_debug_info()
479 static MYSQLND *mysqli_convert_zv_to_mysqlnd(zval * zv) in mysqli_convert_zv_to_mysqlnd()
1028 zval *mysql_link; in ZEND_GET_MODULE()
1088 zval *mysql_link; in PHP_FUNCTION()
1134 void php_mysqli_fetch_into_hash_aux(zval *return_value, MYSQL_RES * result, zend_long fetchtype) in php_mysqli_fetch_into_hash_aux()
1156 zval res; in php_mysqli_fetch_into_hash_aux()
1214 zval *mysql_result; in php_mysqli_fetch_into_hash()
1216 zval *ctor_params = NULL; in php_mysqli_fetch_into_hash()
1262 zval dataset, retval; in php_mysqli_fetch_into_hash()