(point_arg *PointArg)
| 46 | } |
| 47 | |
| 48 | func (this *SyscallPointOpKeyConfig) AddPointArg(point_arg *PointArg) { |
| 49 | for _, op_key := range point_arg.GetOpList() { |
| 50 | this.OpKeyList[this.OpCount] = op_key |
| 51 | this.OpCount++ |
| 52 | if this.OpCount == uint32(len(this.OpKeyList)) { |
| 53 | panic("SyscallPointOpKeyConfig->AddPointArg failed, need increase max op count") |
| 54 | } |
| 55 | } |
| 56 | } |
| 57 | func (this *UprobePointOpKeyConfig) AddPointArg(point_arg *PointArg) { |
| 58 | for _, op_key := range point_arg.GetOpList() { |
| 59 | this.OpKeyList[this.OpCount] = op_key |
no test coverage detected