()
| 709 | func (f Field) IsNetworkField() bool { return strings.HasPrefix(string(f), "net.") } |
| 710 | func (f Field) IsHandleField() bool { return strings.HasPrefix(string(f), "handle.") } |
| 711 | func (f Field) IsPeField() bool { |
| 712 | return strings.HasPrefix(string(f), "pe.") || strings.HasPrefix(string(f), "ps.pe.") || strings.HasPrefix(string(f), "ps.signature.") |
| 713 | } |
| 714 | func (f Field) IsModuleField() bool { |
| 715 | return strings.HasPrefix(string(f), "module.") || strings.HasPrefix(string(f), "dll.") |
| 716 | } |
no outgoing calls
no test coverage detected