Searched refs:lname (Results 1 – 3 of 3) sorted by relevance
/Linux-v4.19/include/linux/ |
D | page-flags.h | 206 #define TESTPAGEFLAG(uname, lname, policy) \ argument 208 { return test_bit(PG_##lname, &policy(page, 0)->flags); } 210 #define SETPAGEFLAG(uname, lname, policy) \ argument 212 { set_bit(PG_##lname, &policy(page, 1)->flags); } 214 #define CLEARPAGEFLAG(uname, lname, policy) \ argument 216 { clear_bit(PG_##lname, &policy(page, 1)->flags); } 218 #define __SETPAGEFLAG(uname, lname, policy) \ argument 220 { __set_bit(PG_##lname, &policy(page, 1)->flags); } 222 #define __CLEARPAGEFLAG(uname, lname, policy) \ argument 224 { __clear_bit(PG_##lname, &policy(page, 1)->flags); } [all …]
|
/Linux-v4.19/security/apparmor/ |
D | file.c | 374 const char *lname, *tname = NULL; in profile_path_link() local 382 buffer, &lname, cond, AA_MAY_LINK); in profile_path_link() 394 state = aa_str_perms(profile->file.dfa, profile->file.start, lname, in profile_path_link() 446 return aa_audit_file(profile, &lperms, OP_LINK, request, lname, tname, in profile_path_link()
|
/Linux-v4.19/tools/perf/util/ |
D | dso.c | 1145 char *base, *lname = strdup(dso->long_name); in dso__set_basename() local 1147 if (!lname) in dso__set_basename() 1155 base = strdup(basename(lname)); in dso__set_basename() 1157 free(lname); in dso__set_basename()
|