Searched refs:syscalls (Results 1 – 12 of 12) sorted by relevance
/bionic/libc/tools/ |
D | genseccomp.py | 38 return set([x["name"] for x in parser.syscalls if x.get(architecture)]) 67 def extract_priority_syscalls(syscalls, priorities): argument 70 [syscall for syscall in syscalls if syscall[0] not in priorities] 73 syscall_dict = {syscall[0]: syscall[1] for syscall in syscalls} 109 syscalls = {} 116 syscalls[name] = value 118 return syscalls 121 def convert_NRs_to_ranges(syscalls): argument 123 syscalls = sorted(syscalls, lambda x, y: cmp(x[1], y[1])) 127 for name, value in syscalls: [all …]
|
D | gensyscalls.py | 314 self.syscalls = [] 416 self.syscalls.append(t) 435 for syscall in parser.syscalls: 458 for syscall in parser.syscalls:
|
D | test_genseccomp.py | 184 syscalls = cStringIO.StringIO(textwrap.dedent("""\ 196 syscall_files = [syscalls, allowlist, blocklist]
|
D | genfunctosyscallnrs.py | 18 for syscall in parser.syscalls:
|
/bionic/libc/ |
D | SECCOMP_BLOCKLIST_APP.TXT | 5 # Any entry in the blocklist must be in the syscalls file and not be in the allowlist file 9 # Note: Some privileged syscalls are still needed in app process after fork before uid change, 13 # syscalls to modify IDs 30 # syscalls to modify times 40 # syscalls to change machine various configurations
|
D | SECCOMP_PRIORITY.TXT | 6 # The syscalls below are prioritized above other syscalls when checking seccomp policy, in
|
D | SECCOMP_BLOCKLIST_COMMON.TXT | 5 # Any entry in the blocklist must be in the syscalls file and not be in the allowlist file
|
D | SECCOMP_ALLOWLIST_COMMON.TXT | 6 # syscalls needed to boot android 36 # Useful new syscalls which we don't yet use in bionic.
|
D | Android.bp | 1243 name: "syscalls-arm.S", 1244 out: ["syscalls-arm.S"], 1251 name: "syscalls-arm64.S", 1252 out: ["syscalls-arm64.S"], 1259 name: "syscalls-x86.S", 1260 out: ["syscalls-x86.S"], 1267 name: "syscalls-x86_64.S", 1268 out: ["syscalls-x86_64.S"], 1279 srcs: [":syscalls-arm.S"], 1282 srcs: [":syscalls-arm64.S"], [all …]
|
D | SYSCALLS.TXT | 20 # been provided, allows the user to specify dispatch style syscalls.
|
/bionic/libc/kernel/tools/ |
D | update_all.py | 83 syscalls = set() 98 syscalls.add(nr_name) 107 for syscall in sorted(syscalls):
|
/bionic/ |
D | README.md | 77 syscalls/ 78 # The syscalls directories contain script-generated assembler files.
|