Searched refs:syscalls (Results 1 – 16 of 16) sorted by relevance
/bionic/libc/tools/ |
D | genseccomp.py | 37 return set([x["name"] for x in parser.syscalls if x.get(architecture)]) 76 syscalls = {} 83 syscalls[name] = value 85 return syscalls 88 def convert_NRs_to_ranges(syscalls): argument 90 syscalls = sorted(syscalls, lambda x, y: cmp(x[1], y[1])) 94 for name, value in syscalls: 177 def construct_bpf(syscalls, architecture, name_modifier): argument 178 ranges = convert_NRs_to_ranges(syscalls)
|
D | gensyscalls.py | 406 self.syscalls = [] 508 self.syscalls.append(t) 531 self.syscalls = [] 537 self.syscalls = parser.syscalls 540 for syscall in self.syscalls: 579 syscalls = set() 601 syscalls.add(nr_name) 607 for syscall in sorted(syscalls): 620 for syscall in self.syscalls:
|
D | genfunctosyscallnrs.py | 18 for syscall in parser.syscalls:
|
D | test_genseccomp.py | 194 syscalls = cStringIO.StringIO(textwrap.dedent("""\ 206 syscall_files = [syscalls, whitelist, blacklist]
|
/bionic/tools/ |
D | update_syscalls.sh | 6 git diff --exit-code HEAD libc/arch-*/syscalls/
|
/bionic/ |
D | PREUPLOAD.cfg | 4 syscalls = tools/update_syscalls.sh
|
D | README.md | 79 syscalls/ 80 # The syscalls directories contain script-generated assembler files.
|
/bionic/libc/ |
D | SECCOMP_BLACKLIST_APP.TXT | 5 # Any entry in the blacklist must be in the syscalls file and not be in the whitelist file 23 # been provided, allows the user to specify dispatch style syscalls. 31 # Note: Some privileged syscalls are still needed in app process after fork before uid change, 35 # syscalls to modify IDs 52 # syscalls to modify times 62 # syscalls to change machine various configurations
|
D | SECCOMP_BLACKLIST_COMMON.TXT | 5 # Any entry in the blacklist must be in the syscalls file and not be in the whitelist file 23 # been provided, allows the user to specify dispatch style syscalls.
|
D | SECCOMP_WHITELIST_GLOBAL.TXT | 12 # syscalls needed to boot android
|
D | SECCOMP_WHITELIST_COMMON.TXT | 20 # been provided, allows the user to specify dispatch style syscalls. 28 # syscalls needed to boot android 61 # syscalls needed to boot android 72 # Useful new syscalls which we don't yet use in bionic.
|
D | SECCOMP_WHITELIST_SYSTEM.TXT | 20 # been provided, allows the user to specify dispatch style syscalls.
|
D | SECCOMP_WHITELIST_APP.TXT | 20 # been provided, allows the user to specify dispatch style syscalls.
|
D | Android.bp | 1250 srcs: ["arch-arm/syscalls/**/*.S"], 1253 srcs: ["arch-arm64/syscalls/**/*.S"], 1256 srcs: ["arch-mips/syscalls/**/*.S"], 1259 srcs: ["arch-mips64/syscalls/**/*.S"], 1262 srcs: ["arch-x86/syscalls/**/*.S"], 1265 srcs: ["arch-x86_64/syscalls/**/*.S"], 2454 srcs: ["arch-arm/syscalls/__rt_sigprocmask.S"], 2457 srcs: ["arch-arm64/syscalls/__rt_sigprocmask.S"], 2462 "arch-x86/syscalls/__rt_sigprocmask.S", 2466 srcs: ["arch-x86_64/syscalls/__rt_sigprocmask.S"],
|
D | SYSCALLS.TXT | 19 # been provided, allows the user to specify dispatch style syscalls.
|
/bionic/libc/kernel/ |
D | README.TXT | 82 Finally, run this command to regenerate the syscalls list:
|