Lines Matching refs:is_null

1712 #define Z_PARAM_BOOL_EX(dest, is_null, check_null, deref) \  argument
1714 if (UNEXPECTED(!zend_parse_arg_bool(_arg, &dest, &is_null, check_null, _i))) { \
1723 #define Z_PARAM_BOOL_OR_NULL(dest, is_null) \ argument
1724 Z_PARAM_BOOL_EX(dest, is_null, 1, 0)
1789 #define Z_PARAM_DOUBLE_EX(dest, is_null, check_null, deref) \ argument
1791 if (UNEXPECTED(!zend_parse_arg_double(_arg, &dest, &is_null, check_null, _i))) { \
1800 #define Z_PARAM_DOUBLE_OR_NULL(dest, is_null) \ argument
1801 Z_PARAM_DOUBLE_EX(dest, is_null, 1, 0)
1852 #define Z_PARAM_ARRAY_HT_OR_LONG_EX(dest_ht, dest_long, is_null, allow_null) \ argument
1854 …if (UNEXPECTED(!zend_parse_arg_array_ht_or_long(_arg, &dest_ht, &dest_long, &is_null, allow_null, …
1863 #define Z_PARAM_ARRAY_HT_OR_LONG_OR_NULL(dest_ht, dest_long, is_null) \ argument
1864 Z_PARAM_ARRAY_HT_OR_LONG_EX(dest_ht, dest_long, is_null, 1)
1882 #define Z_PARAM_LONG_EX(dest, is_null, check_null, deref) \ argument
1884 if (UNEXPECTED(!zend_parse_arg_long(_arg, &dest, &is_null, check_null, _i))) { \
1893 #define Z_PARAM_LONG_OR_NULL(dest, is_null) \ argument
1894 Z_PARAM_LONG_EX(dest, is_null, 1, 0)
1997 #define Z_PARAM_OBJ_OF_CLASS_OR_LONG_EX(dest_obj, _ce, dest_long, is_null, allow_null) \ argument
1999 …if (UNEXPECTED(!zend_parse_arg_obj_or_long(_arg, &dest_obj, _ce, &dest_long, &is_null, allow_null,…
2008 #define Z_PARAM_OBJ_OF_CLASS_OR_LONG_OR_NULL(dest_obj, _ce, dest_long, is_null) \ argument
2009 Z_PARAM_OBJ_OF_CLASS_OR_LONG_EX(dest_obj, _ce, dest_long, is_null, 1)
2151 #define Z_PARAM_STR_OR_LONG_EX(dest_str, dest_long, is_null, allow_null) \ argument
2153 …if (UNEXPECTED(!zend_parse_arg_str_or_long(_arg, &dest_str, &dest_long, &is_null, allow_null, _i))…
2162 #define Z_PARAM_STR_OR_LONG_OR_NULL(dest_str, dest_long, is_null) \ argument
2163 Z_PARAM_STR_OR_LONG_EX(dest_str, dest_long, is_null, 1);
2186 static zend_always_inline bool zend_parse_arg_bool_ex(const zval *arg, bool *dest, bool *is_null, b… in zend_parse_arg_bool_ex() argument
2189 *is_null = 0; in zend_parse_arg_bool_ex()
2196 *is_null = 1; in zend_parse_arg_bool_ex()
2208 static zend_always_inline bool zend_parse_arg_bool(const zval *arg, bool *dest, bool *is_null, bool… in zend_parse_arg_bool() argument
2210 return zend_parse_arg_bool_ex(arg, dest, is_null, check_null, arg_num, /* frameless */ false); in zend_parse_arg_bool()
2213 static zend_always_inline bool zend_parse_arg_long_ex(zval *arg, zend_long *dest, bool *is_null, bo… in zend_parse_arg_long_ex() argument
2216 *is_null = 0; in zend_parse_arg_long_ex()
2221 *is_null = 1; in zend_parse_arg_long_ex()
2233 static zend_always_inline bool zend_parse_arg_long(zval *arg, zend_long *dest, bool *is_null, bool … in zend_parse_arg_long() argument
2235 return zend_parse_arg_long_ex(arg, dest, is_null, check_null, arg_num, /* frameless */ false); in zend_parse_arg_long()
2238 static zend_always_inline bool zend_parse_arg_double(const zval *arg, double *dest, bool *is_null, … in zend_parse_arg_double() argument
2241 *is_null = 0; in zend_parse_arg_double()
2246 *is_null = 1; in zend_parse_arg_double()
2394 …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
2397 *is_null = 0; in zend_parse_arg_array_ht_or_long()
2407 *is_null = 1; in zend_parse_arg_array_ht_or_long()
2443 …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
2446 *is_null = 0; in zend_parse_arg_obj_or_long()
2456 *is_null = 1; in zend_parse_arg_obj_or_long()
2528 bool *is_null, bool allow_null, uint32_t arg_num) in zend_parse_arg_str_or_long() argument
2531 *is_null = 0; in zend_parse_arg_str_or_long()
2540 *is_null = 1; in zend_parse_arg_str_or_long()