Home
last modified time | relevance | path

Searched refs:from_id (Results 1 – 2 of 2) sorted by relevance

/freebsd/sys/security/mac_do/
H A Dmac_do.c157 u_int from_id; member
865 const char *from_type, *from_id, *p; in parse_single_rule() local
894 from_id = strsep_noblanks(&rule, ":"); in parse_single_rule()
895 if (is_null_or_empty(from_id)) { in parse_single_rule()
900 error = strtoui_strict(from_id, &p, 10, &new->from_id); in parse_single_rule()
902 make_parse_error(parse_error, from_id - start, in parse_single_rule()
1914 if (rule->from_type == IT_UID && rule->from_id == cred->cr_ruid) in rule_applies()
1916 if (rule->from_type == IT_GID && realgroupmember(rule->from_id, cred)) in rule_applies()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangASTImporter.cpp1250 RemapModule(OptionalClangModuleID from_id, in RemapModule() argument
1253 if (!from_id.HasValue()) in RemapModule()
1255 clang::Module *module = from_source.getModule(from_id.GetValue()); in RemapModule()
1279 OptionalClangModuleID from_id(from->getOwningModuleID()); in Imported() local
1281 RemapModule(from_id, *from_source, *to_source); in Imported()