Lines Matching refs:destination_object
1747 #define Z_PARAM_OBJ_OR_STR_EX(destination_object, destination_string, allow_null) \ argument
1749 …if (UNEXPECTED(!zend_parse_arg_obj_or_str(_arg, &destination_object, NULL, &destination_string, al…
1755 #define Z_PARAM_OBJ_OR_STR(destination_object, destination_string) \ argument
1756 Z_PARAM_OBJ_OR_STR_EX(destination_object, destination_string, 0);
1758 #define Z_PARAM_OBJ_OR_STR_OR_NULL(destination_object, destination_string) \ argument
1759 Z_PARAM_OBJ_OR_STR_EX(destination_object, destination_string, 1);
1761 #define Z_PARAM_OBJ_OF_CLASS_OR_STR_EX(destination_object, base_ce, destination_string, allow_null)… argument
1763 …if (UNEXPECTED(!zend_parse_arg_obj_or_str(_arg, &destination_object, base_ce, &destination_string,…
1775 #define Z_PARAM_OBJ_OF_CLASS_OR_STR(destination_object, base_ce, destination_string) \ argument
1776 Z_PARAM_OBJ_OF_CLASS_OR_STR_EX(destination_object, base_ce, destination_string, 0);
1778 #define Z_PARAM_OBJ_OF_CLASS_OR_STR_OR_NULL(destination_object, base_ce, destination_string) \ argument
1779 Z_PARAM_OBJ_OF_CLASS_OR_STR_EX(destination_object, base_ce, destination_string, 1);
2518 …zval *arg, zend_object **destination_object, zend_class_entry *base_ce, zend_string **destination_… in zend_parse_arg_obj_or_str() argument
2522 *destination_object = Z_OBJ_P(arg); in zend_parse_arg_obj_or_str()
2528 *destination_object = NULL; in zend_parse_arg_obj_or_str()