(name string)
| 466 | } |
| 467 | |
| 468 | func (this *SyscallConfig) GetSyscallPointByName(name string) *SyscallPoint { |
| 469 | for _, point_arg := range this.PointArgs { |
| 470 | if point_arg.Name == name { |
| 471 | return point_arg |
| 472 | } |
| 473 | } |
| 474 | panic(fmt.Sprintf("unknown syscall name:%s", name)) |
| 475 | } |
| 476 | |
| 477 | func (this *SyscallConfig) UpdateSyscallPoint(uprobe_point *UprobeArgs) bool { |
| 478 | if !uprobe_point.BindSyscall { |
no outgoing calls
no test coverage detected