Searched refs:syscalls (Results 1 – 9 of 9) sorted by relevance
/bionic/libc/tools/ |
D | genseccomp.py | 34 syscall_lists.append(parser.syscalls) 45 syscalls = bionic_minus_blacklist + whitelist 48 syscalls = [x for x in syscalls if architecture in x and x[architecture]] 51 names = [x["name"] for x in syscalls] 91 syscalls = [] 103 syscalls.append((name, value)) 105 return syscalls 108 def convert_NRs_to_ranges(syscalls): argument 110 syscalls = sorted(syscalls, lambda x, y: cmp(x[1], y[1])) 114 for name, value in syscalls: [all …]
|
D | gensyscalls.py | 405 self.syscalls = [] 499 self.syscalls.append(t) 522 self.syscalls = [] 528 self.syscalls = parser.syscalls 531 for syscall in self.syscalls: 570 syscalls = set() 585 syscalls.add(nr_name) 591 for syscall in sorted(syscalls): 604 for syscall in self.syscalls:
|
D | test_genseccomp.py | 194 syscalls = cStringIO.StringIO(textwrap.dedent("""\ 206 syscall_files = [syscalls, whitelist, blacklist]
|
/bionic/libc/ |
D | SECCOMP_BLACKLIST.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.TXT | 20 # been provided, allows the user to specify dispatch style syscalls. 28 # syscalls needed to boot android 52 # syscalls needed to boot android 108 # Useful new syscalls which we don't yet use in bionic.
|
D | Android.bp | 1481 srcs: ["arch-arm/syscalls/**/*.S"], 1484 srcs: ["arch-arm64/syscalls/**/*.S"], 1487 srcs: ["arch-mips/syscalls/**/*.S"], 1490 srcs: ["arch-mips64/syscalls/**/*.S"], 1493 srcs: ["arch-x86/syscalls/**/*.S"], 1496 srcs: ["arch-x86_64/syscalls/**/*.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:
|
/bionic/ |
D | README.md | 77 syscalls/ 78 # The syscalls directories contain script-generated assembler files.
|