HomeSort by relevance Sort by last modified time
    Searched defs:copyin (Results 1 - 2 of 2) sorted by null

  /external/syzkaller/pkg/csource/
csource.go 171 // Copyin.
172 for _, copyin := range call.Copyin {
173 ctx.copyin(w, &csumSeq, copyin)
188 // TODO: if we don't emit the call we must also not emit copyin, copyout and fault injection.
275 func (ctx *context) copyin(w *bytes.Buffer, csumSeq *int, copyin prog.ExecCopyin) { func
276 switch arg := copyin.Arg.(type) {
279 ctx.copyinVal(w, copyin.Addr, arg.Size, ctx.constArgToStr(arg), arg.Format
    [all...]
  /external/syzkaller/executor/
executor.cc 289 static void copyin(char* addr, uint64 val, uint64 size, uint64 bf, uint64 bf_off, uint64 bf_len);
551 copyin(addr, arg, size, bf, bf_off, bf_len);
559 copyin(addr, val, size, bf, 0, 0);
607 copyin(csum_addr, csum_value, 2, binary_format_native, 0, 0);
1005 void copyin(char* addr, uint64 val, uint64 size, uint64 bf, uint64 bf_off, uint64 bf_len) function
1025 fail("copyin: bad argument size %llu", size);
    [all...]

Completed in 924 milliseconds