Lines Matching refs:is_null
1603 #define Z_PARAM_BOOL_EX(dest, is_null, check_null, deref) \ argument
1605 if (UNEXPECTED(!zend_parse_arg_bool(_arg, &dest, &is_null, check_null, _i))) { \
1614 #define Z_PARAM_BOOL_OR_NULL(dest, is_null) \ argument
1615 Z_PARAM_BOOL_EX(dest, is_null, 1, 0)
1680 #define Z_PARAM_DOUBLE_EX(dest, is_null, check_null, deref) \ argument
1682 if (UNEXPECTED(!zend_parse_arg_double(_arg, &dest, &is_null, check_null, _i))) { \
1691 #define Z_PARAM_DOUBLE_OR_NULL(dest, is_null) \ argument
1692 Z_PARAM_DOUBLE_EX(dest, is_null, 1, 0)
1735 #define Z_PARAM_ARRAY_HT_OR_LONG_EX(dest_ht, dest_long, is_null, allow_null) \ argument
1737 …if (UNEXPECTED(!zend_parse_arg_array_ht_or_long(_arg, &dest_ht, &dest_long, &is_null, allow_null, …
1746 #define Z_PARAM_ARRAY_HT_OR_LONG_OR_NULL(dest_ht, dest_long, is_null) \ argument
1747 Z_PARAM_ARRAY_HT_OR_LONG_EX(dest_ht, dest_long, is_null, 1)
1765 #define Z_PARAM_LONG_EX(dest, is_null, check_null, deref) \ argument
1767 if (UNEXPECTED(!zend_parse_arg_long(_arg, &dest, &is_null, check_null, _i))) { \
1776 #define Z_PARAM_LONG_OR_NULL(dest, is_null) \ argument
1777 Z_PARAM_LONG_EX(dest, is_null, 1, 0)
1866 #define Z_PARAM_OBJ_OF_CLASS_OR_LONG_EX(dest_obj, _ce, dest_long, is_null, allow_null) \ argument
1868 …if (UNEXPECTED(!zend_parse_arg_obj_or_long(_arg, &dest_obj, _ce, &dest_long, &is_null, allow_null,…
1877 #define Z_PARAM_OBJ_OF_CLASS_OR_LONG_OR_NULL(dest_obj, _ce, dest_long, is_null) \ argument
1878 Z_PARAM_OBJ_OF_CLASS_OR_LONG_EX(dest_obj, _ce, dest_long, is_null, 1)
2020 #define Z_PARAM_STR_OR_LONG_EX(dest_str, dest_long, is_null, allow_null) \ argument
2022 …if (UNEXPECTED(!zend_parse_arg_str_or_long(_arg, &dest_str, &dest_long, &is_null, allow_null, _i))…
2031 #define Z_PARAM_STR_OR_LONG_OR_NULL(dest_str, dest_long, is_null) \ argument
2032 Z_PARAM_STR_OR_LONG_EX(dest_str, dest_long, is_null, 1);
2050 static zend_always_inline bool zend_parse_arg_bool(zval *arg, bool *dest, bool *is_null, bool check… in zend_parse_arg_bool() argument
2053 *is_null = 0; in zend_parse_arg_bool()
2060 *is_null = 1; in zend_parse_arg_bool()
2068 static zend_always_inline bool zend_parse_arg_long(zval *arg, zend_long *dest, bool *is_null, bool … in zend_parse_arg_long() argument
2071 *is_null = 0; in zend_parse_arg_long()
2076 *is_null = 1; in zend_parse_arg_long()
2084 static zend_always_inline bool zend_parse_arg_double(zval *arg, double *dest, bool *is_null, bool c… in zend_parse_arg_double() argument
2087 *is_null = 0; in zend_parse_arg_double()
2092 *is_null = 1; in zend_parse_arg_double()
2219 …zval *arg, HashTable **dest_ht, zend_long *dest_long, bool *is_null, bool allow_null, uint32_t arg… in zend_parse_arg_array_ht_or_long() argument
2222 *is_null = 0; in zend_parse_arg_array_ht_or_long()
2232 *is_null = 1; in zend_parse_arg_array_ht_or_long()
2268 …zval *arg, zend_object **dest_obj, zend_class_entry *ce, zend_long *dest_long, bool *is_null, bool… in zend_parse_arg_obj_or_long() argument
2271 *is_null = 0; in zend_parse_arg_obj_or_long()
2281 *is_null = 1; in zend_parse_arg_obj_or_long()
2351 bool *is_null, bool allow_null, uint32_t arg_num) in zend_parse_arg_str_or_long() argument
2354 *is_null = 0; in zend_parse_arg_str_or_long()
2363 *is_null = 1; in zend_parse_arg_str_or_long()