Lines Matching refs:boolean_t
63 static boolean_t rustv0_valid_sym(const strview_t *);
65 static boolean_t rustv0_parse_hex_num(rust_state_t *restrict,
67 static boolean_t rustv0_parse_base62(rust_state_t *restrict,
70 static boolean_t rustv0_parse_undisambiguated_identifier(
71 rust_state_t *restrict, strview_t *restrict, boolean_t);
72 static boolean_t rustv0_parse_disambiguator(rust_state_t *restrict,
75 static boolean_t rustv0_parse_path(rust_state_t *restrict, strview_t *restrict,
76 boolean_t);
77 static boolean_t rustv0_parse_impl_path(rust_state_t *restrict,
78 strview_t *restrict, boolean_t);
79 static boolean_t rustv0_parse_nested_path(rust_state_t *restrict,
80 strview_t *restrict, boolean_t);
81 static boolean_t rustv0_parse_basic_type(rust_state_t *restrict,
83 static boolean_t rustv0_parse_backref(rust_state_t *restrict,
85 boolean_t (*)(rust_state_t *restrict, strview_t *restrict, boolean_t),
86 boolean_t);
87 static boolean_t rustv0_parse_lifetime(rust_state_t *restrict,
89 static boolean_t rustv0_parse_const(rust_state_t *restrict,
90 strview_t *restrict, boolean_t);
91 static boolean_t rustv0_parse_fnsig(rust_state_t *restrict,
93 static boolean_t rustv0_parse_dynbounds(rust_state_t *restrict,
95 static boolean_t rustv0_parse_generic_arg(rust_state_t *restrict,
96 strview_t *restrict, boolean_t);
98 boolean_t
101 boolean_t save_skip; in rust_demangle_v0()
102 boolean_t ret; in rust_demangle_v0()
159 static boolean_t
161 boolean_t (*fn)(rust_state_t *restrict, strview_t *restrict, boolean_t), in rustv0_parse_opt_list() argument
162 const char *restrict sep, boolean_t bval, size_t *restrict countp) in rustv0_parse_opt_list()
191 static boolean_t
231 static boolean_t
301 static boolean_t
303 boolean_t dummy __unused) in rustv0_parse_type()
307 boolean_t ret; in rustv0_parse_type()
429 static boolean_t
431 boolean_t in_value) in rustv0_parse_path()
436 boolean_t ret = B_FALSE; in rustv0_parse_path()
437 boolean_t save_skip; in rustv0_parse_path()
438 boolean_t args_stay_save = st->rs_args_stay_open; in rustv0_parse_path()
439 boolean_t args_open_save = st->rs_args_is_open; in rustv0_parse_path()
545 static boolean_t
547 boolean_t in_value) in rustv0_parse_impl_path()
561 static boolean_t
563 boolean_t *has_namep) in rustv0_has_name()
594 static boolean_t
596 boolean_t in_value) in rustv0_parse_nested_path()
601 boolean_t ret = B_FALSE; in rustv0_parse_nested_path()
602 boolean_t has_name; in rustv0_parse_nested_path()
670 static boolean_t
703 static boolean_t
705 strview_t *restrict sv, boolean_t repl_underscore) in rustv0_parse_undisambiguated_identifier()
708 boolean_t puny = B_FALSE; in rustv0_parse_undisambiguated_identifier()
778 static boolean_t
780 boolean_t (*fn)(rust_state_t *restrict, strview_t *restrict, boolean_t b), in rustv0_parse_backref()
781 boolean_t bval) in rustv0_parse_backref()
861 static boolean_t
897 static boolean_t
911 static boolean_t
917 boolean_t neg = B_FALSE; in rustv0_parse_const_data()
918 boolean_t ret = B_FALSE; in rustv0_parse_const_data()
976 static boolean_t
978 boolean_t dummy __unused) in rustv0_parse_const()
984 boolean_t save_skip; in rustv0_parse_const()
985 boolean_t ret; in rustv0_parse_const()
1055 static boolean_t
1066 static boolean_t
1103 static boolean_t
1149 static boolean_t
1151 strview_t *restrict sv, boolean_t open) in rustv0_parse_dyn_trait_assoc_binding()
1188 static boolean_t
1190 boolean_t dummy __unused) in rustv0_parse_dyn_trait()
1192 boolean_t stay_save = st->rs_args_stay_open; in rustv0_parse_dyn_trait()
1193 boolean_t open_save = st->rs_args_is_open; in rustv0_parse_dyn_trait()
1194 boolean_t open = B_FALSE; in rustv0_parse_dyn_trait()
1250 static boolean_t
1277 static boolean_t
1279 boolean_t dummy __unused) in rustv0_parse_generic_arg()
1296 static boolean_t
1346 static boolean_t
1424 static boolean_t
1428 boolean_t check_rust = B_TRUE; in rustv0_valid_sym()