Searched defs:ArgCtx (Results 1 – 3 of 3) sorted by relevance
| /external/syzkaller/prog/ |
| D | analysis.go | 100 type ArgCtx struct { struct 101 Parent *[]Arg // GroupArg.Inner (for structs) or Call.Args containing this arg 102 Base *PointerArg // pointer to the base of the heap object containing this arg 103 Offset uint64 // offset of this arg from the base 104 Stop bool // if set by the callback, subargs of this arg are not visited 107 func ForeachSubArg(arg Arg, f func(Arg, *ArgCtx)) { 111 func ForeachArg(c *Call, f func(Arg, *ArgCtx)) { 122 func foreachArgImpl(arg Arg, ctx ArgCtx, f func(Arg, *ArgCtx)) {
|
| D | mutation.go | 167 func (target *Target) mutateArg(r *randGen, s *state, arg Arg, ctx ArgCtx, updateSizes *bool) ([]*C… 213 func (t *IntType) mutate(r *randGen, s *state, arg Arg, ctx ArgCtx) (calls []*Call, retry, preserve… 217 func (t *FlagsType) mutate(r *randGen, s *state, arg Arg, ctx ArgCtx) (calls []*Call, retry, preser… 221 func (t *LenType) mutate(r *randGen, s *state, arg Arg, ctx ArgCtx) (calls []*Call, retry, preserve… 230 func (t *ResourceType) mutate(r *randGen, s *state, arg Arg, ctx ArgCtx) (calls []*Call, retry, pre… 234 func (t *VmaType) mutate(r *randGen, s *state, arg Arg, ctx ArgCtx) (calls []*Call, retry, preserve… 238 func (t *ProcType) mutate(r *randGen, s *state, arg Arg, ctx ArgCtx) (calls []*Call, retry, preserv… 242 func (t *BufferType) mutate(r *randGen, s *state, arg Arg, ctx ArgCtx) (calls []*Call, retry, prese… 274 func (t *ArrayType) mutate(r *randGen, s *state, arg Arg, ctx ArgCtx) (calls []*Call, retry, preser… 309 func (t *PtrType) mutate(r *randGen, s *state, arg Arg, ctx ArgCtx) (calls []*Call, retry, preserve… [all …]
|
| D | types.go | 66 mutate(r *randGen, s *state, arg Arg, ctx ArgCtx) (calls []*Call, retry, preserve bool)
|