Home
last modified time | relevance | path

Searched defs:Syscall (Results 1 – 15 of 15) sorted by relevance

/external/syzkaller/pkg/host/
Dhost_linux.go25 func isSupported(c *prog.Syscall, sandbox string) (bool, string) {
59 func isSupportedKallsyms(c *prog.Syscall) (bool, string) {
73 func isSupportedTrial(c *prog.Syscall) (bool, string) {
129 func isSupportedSyzkall(sandbox string, c *prog.Syscall) (bool, string) {
222 func isSupportedSocket(c *prog.Syscall) (bool, string) {
257 func isSupportedOpenAt(c *prog.Syscall) (bool, string) {
272 func isSupportedMount(c *prog.Syscall, sandbox string) (bool, string) {
Dhost_fuchsia.go12 func isSupported(c *prog.Syscall, sandbox string) (bool, string) {
Dhost_windows.go10 func isSupported(c *prog.Syscall, sandbox string) (bool, string) {
Dhost_darwin.go10 func isSupported(c *prog.Syscall, sandbox string) (bool, string) {
Dhost_freebsd.go10 func isSupported(c *prog.Syscall, sandbox string) (bool, string) {
Dhost_akaros.go12 func isSupported(c *prog.Syscall, sandbox string) (bool, string) {
Dhost_netbsd.go10 func isSupported(c *prog.Syscall, sandbox string) (bool, string) {
/external/syzkaller/prog/
Dresources.go101 func (target *Target) inputResources(c *Syscall) []*ResourceDesc {
121 func (target *Target) outputResources(c *Syscall) []*ResourceDesc {
Dtypes.go10 type Syscall struct { struct
11 ID int
12 NR uint64 // kernel syscall number
13 Name string
14 CallName string
15 Args []Type
16 Ret Type
546 func ForeachType(meta *Syscall, f func(Type)) {
Dprio.go128 func noteUsage(uses map[string]map[int]float32, c *Syscall, weight float32, str string, args ...int…
/external/syzkaller/vendor/golang.org/x/sys/unix/
Dsyscall_unix_gc.go12 func Syscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err syscall.Errno) func
Dgccgo.go27 func Syscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err syscall.Errno) { func
/external/syzkaller/sys/syz-sysgen/
Dsysgen.go216 func generateExecutorSyscalls(target *targets.Target, syscalls []*prog.Syscall, rev string) ArchDat…
/external/syzkaller/pkg/compiler/
Dgen.go75 func (comp *compiler) genStructDescs(syscalls []*prog.Syscall) []*prog.KeyedStruct {
/external/minijail/tools/
Dparser.py182 Syscall = collections.namedtuple('Syscall', ['name', 'number']) variable