func()

in cmd/seccomp-profiler/disasm/disasm.go [123:130]


func (p *parser) isRawSyscall(line string) bool {
	for _, ins := range p.rawSyscallInstructions {
		if strings.Contains(line, ins) {
			return true
		}
	}
	return false
}