HomeSort by relevance Sort by last modified time
    Searched refs:errorf (Results 1 - 25 of 35) sorted by null

1 2

  /external/syzkaller/syz-ci/
managercmd.go 22 errorf Errorf
28 type Errorf func(msg string, args ...interface{})
34 func NewManagerCmd(name, log string, errorf Errorf, bin string, args ...string) *ManagerCmd {
38 errorf: errorf,
80 mc.errorf("failed to create manager log: %v", err)
88 mc.errorf("failed to start manager: %v", err)
117 mc.errorf("spurious stop signal: %v", err
    [all...]
  /external/syzkaller/vendor/google.golang.org/grpc/transport/
log.go 40 func errorf(format string, args ...interface{}) { func
42 grpclog.Errorf(format, args...)
http2_server.go 278 errorf("transport: loopyWriter.run returning. Err: %v", err)
377 errorf("transport: http2Server.HandleStreams received an illegal stream id: %v", streamID)
481 errorf("transport: http2Server.HandleStreams found unhandled frame type %v.", frame)
681 errorf("transport: Got too many pings from the client, closing the connection.")
777 grpclog.Errorf("transport: failed to marshal rpc status: %v, error: %v", p, err)
1050 return false, fmt.Errorf("transport: Connection closing")
    [all...]
  /build/soong/androidmk/parser/
parser.go 74 p.errorf(msg)
107 func (p *parser) errorf(format string, args ...interface{}) { func
109 Err: fmt.Errorf(format, args...),
121 p.errorf("expected %s, found %s", scanner.TokenString(tok),
160 p.errorf("expected = after ?")
167 p.errorf("expected = after +")
184 p.errorf("expected directive, rule, or assignment after ident " + ident.Dump())
195 p.errorf("expected assignment or rule definition, found %s\n",
252 p.errorf("expected escaped character, found %s",
265 p.errorf("unexpected EOF while looking for endef"
    [all...]
  /build/soong/androidmk/cmd/androidmk/
androidmk.go 74 func (f *bpFile) errorf(failedNode mkparser.Node, message string, args ...interface{}) { func
175 file.errorf(x, "unsupported include")
198 file.errorf(x, "unsupported nested conditional in module")
202 file.errorf(x, "unsupported conditional")
208 file.errorf(x, "missing if before else")
211 file.errorf(x, "else from unsupported conditional")
217 file.errorf(x, "missing if before endif")
220 file.errorf(x, "endif from unsupported conditional")
229 file.errorf(x, "unsupported directive")
233 file.errorf(x, "unsupported line"
    [all...]
android.go 277 panic(fmt.Errorf("unexpected type %t", val))
298 return "", nil, fmt.Errorf("classifyLocalOrGlobalPath expected a string, got %s", v.Type())
329 return "", nil, fmt.Errorf("classifyLocalOrGlobalPath expected a string, got %s", v.Type())
420 err = fmt.Errorf("Expected single value for %s", attribute)
448 err = fmt.Errorf("Only $(LOCAL_PATH)/.. values are allowed")
517 return fmt.Errorf("unsupported sanitize expression")
525 ctx.file.errorf(ctx.mkvalue, "unsupported sanitize expression")
540 return fmt.Errorf("sanitize expected a string, got %s", v.Type())
563 return fmt.Errorf("unsupported strip expression")
572 return fmt.Errorf("unexpected strip option: %s", v
    [all...]
  /external/v8/src/wasm/
module-decoder.cc 135 decoder.errorf(string_start, "%s: no valid UTF-8 string", name);
184 decoder_.errorf(decoder_.pc(),
229 decoder_.errorf(decoder_.pc(), "unknown section code #0x%02x",
312 errorf(pos,
322 errorf(pos,
341 errorf(pc(), "unexpected section: %s", SectionName(section_code));
352 errorf(pc(), "Multiple exception sections not allowed");
355 errorf(pc(), "Exception section must appear before the code section");
408 errorf(pc(), "unexpected section: %s", SectionName(section_code));
412 errorf(pc(), "unexpected section: %s", SectionName(section_code))
    [all...]
decoder.h 173 errorf(pc_, "expected %u bytes, fell off end", size);
179 void error(const char* msg) { errorf(pc_, "%s", msg); }
181 void error(const byte* pc, const char* msg) { errorf(pc, "%s", msg); }
184 void PRINTF_FORMAT(3, 4) errorf(const byte* pc, const char* format, ...) { function
341 errorf(pc, "expected %s", name);
function-body-decoder-impl.h 60 (this->errorf(this->pc_, "%s: %s", WasmOpcodes::OpcodeName(opcode), \
313 decoder->errorf(pc + 1 + len, "expected table index 0, found %u",
337 decoder->errorf(pc + 1, "expected memory index 0, found %u", index);
405 decoder->errorf(pc + 1,
812 errorf(pc + 1, "invalid local index: %u", imm.index);
822 errorf(pc + 1, "Invalid exception index: %u", imm.index);
831 errorf(pc + 1, "invalid global index: %u", imm.index);
852 errorf(pc + 1, "invalid function index: %u", imm.index);
871 errorf(pc + 1, "invalid signature index: #%u", imm.sig_index);
880 errorf(pc + 1, "invalid break depth: %u", imm.depth)
    [all...]
  /external/golang-protobuf/proto/
text_parser.go 95 func (p *textParser) errorf(format string, a ...interface{}) *ParseError { func
183 p.errorf("unmatched quote")
188 p.errorf("invalid quoted string %s: %v", p.s[0:i+1], err)
199 p.errorf("unexpected byte %#x", p.s[0])
281 return "", "", fmt.Errorf(`\%c requires 2 following digits`, r)
287 return "", "", fmt.Errorf(`\%s contains non-octal digits`, ss)
301 return "", "", fmt.Errorf(`\%c requires %d following digits`, r, n)
307 return "", "", fmt.Errorf(`\%c%s contains non-hexadecimal digits`, r, ss)
313 return "", "", fmt.Errorf(`\%c%s is not a valid Unicode code point`, r, ss)
317 return "", "", fmt.Errorf(`unknown escape \%c`, r
    [all...]
  /external/syzkaller/vendor/github.com/golang/protobuf/proto/
text_parser.go 95 func (p *textParser) errorf(format string, a ...interface{}) *ParseError { func
183 p.errorf("unmatched quote")
188 p.errorf("invalid quoted string %s: %v", p.s[0:i+1], err)
199 p.errorf("unexpected byte %#x", p.s[0])
281 return "", "", fmt.Errorf(`\%c requires 2 following digits`, r)
287 return "", "", fmt.Errorf(`\%s contains non-octal digits`, ss)
301 return "", "", fmt.Errorf(`\%c requires %d following digits`, r, n)
307 return "", "", fmt.Errorf(`\%c%s contains non-hexadecimal digits`, r, ss)
313 return "", "", fmt.Errorf(`\%c%s is not a valid Unicode code point`, r, ss)
317 return "", "", fmt.Errorf(`unknown escape \%c`, r
    [all...]
  /build/blueprint/parser/
parser.go 115 p.errorf(msg)
138 func (p *parser) errorf(format string, args ...interface{}) { func
139 p.error(fmt.Errorf(format, args...))
145 p.errorf("expected %s, found %s", scanner.TokenString(tok),
192 p.errorf("expected \"=\" or \"+=\" or \"{\" or \"(\", found %s",
198 p.errorf("expected assignment or module definition, found %s",
226 p.errorf("modified non-existent variable %q with +=", assignment.Name)
228 p.errorf("modified non-local variable %q with +=", assignment.Name)
230 p.errorf("modified variable %q with += after referencing", assignment.Name)
336 p.errorf("subtraction not supported: %s", p.scanner.String()
    [all...]
  /build/kati/
eval.go 132 func (p srcpos) errorf(f string, args ...interface{}) error { func
136 Err: fmt.Errorf(f, args...),
213 return ast.errorf("*** empty variable name.")
378 return ast.errorf("parse failed: %q: %v", line, err)
394 return ast.errorf("*** commands commence before first target.")
406 return nil, fmt.Errorf("param: %s: %v", name, err)
410 return nil, fmt.Errorf("param: %s out of %d", name, len(ev.paramVars))
492 return ast.errorf("parse failed: %q: %v", ast.expr, err)
498 return ast.errorf("%v", err)
508 return ast.errorf("glob error: %s: %v", pat, err
    [all...]
parser.go 106 p.err = fmt.Errorf("readline %s: %v", p.srcpos(), err)
218 p.err = p.srcpos().errorf("*** missing rule before commands.")
222 p.err = p.srcpos().errorf("*** commands commence before first target.")
374 p.err = p.srcpos().errorf(`*** invalid syntax in conditional.`)
406 return p.srcpos().errorf(`*** extraneous %q.`, curKeyword)
419 p.err = p.srcpos().errorf(`*** only one "else" per conditional.`)
483 p.err = p.srcpos().errorf("parse error %q: %v", string(vline), err)
702 p.err = p.srcpos().errorf("assign error %q=%q: %v", p.defineVar, p.inDef, err)
func.go 398 return ev.errorf(`*** non-numeric first argument to "word" function: %q.`, v)
401 return ev.errorf(`*** first argument to "word" function must be greater than 0.`)
434 return ev.errorf(`*** non-numeric first argument to "wordlist" function: %q.`, v)
437 return ev.errorf(`*** invalid first argument to "wordlist" function: %s`, f.args[1])
442 return ev.errorf(`*** non-numeric second argument to "wordlist" function: %q.`, v)
1115 return ev.errorf("%v", err)
1254 return ev.errorf("eval assign error: %q: %v", f.String(), err)
1419 return ev.errorf("*** %s.", abuf.String())
    [all...]
ast.go 80 return nil, ast.errorf("unknown assign op: %q", ast.op)
evalcmd.go 87 return nil, fmt.Errorf("cannot append to autovar")
90 return nil, fmt.Errorf("cannot append to autovar")
96 d.err = fmt.Errorf("cannot dump auto var: %v", v)
244 return nil, ev.errorf("parse cmd %q: %v", r.cmd, err)
  /external/libchrome/third_party/ply/
lex.py 661 self.errorf = { } # Error functions by state
680 self.errorf[s] = t
797 efunc = self.errorf.get(state,None)
    [all...]
  /external/ply/ply/ply/
lex.py 670 self.errorf = {} # Error functions by state
690 self.errorf[s] = t
799 efunc = self.errorf.get(state, None)
    [all...]
  /external/selinux/python/sepolgen/src/sepolgen/
lex.py 670 self.errorf = {} # Error functions by state
690 self.errorf[s] = t
799 efunc = self.errorf.get(state, None)
    [all...]
  /external/mksh/src/
misc.c 67 errorf("%s failed with EAGAIN, probably due to a" \
433 errorf("no TIOCSCTTY ioctl");
    [all...]
main.c 269 /* Do this first so output routines (eg, errorf, shellf) can work */
490 errorf(Tf_optfoo, "", "", 'c', Treq_arg);
1285 errorf(const char *fmt, ...) function
1300 /* like errorf(), but no unwind is done */
    [all...]
var.c 254 errorf(Tbadsubst);
785 errorf(Tf_sD_s, var,
836 errorf("appending not allowed for nameref");
862 errorf(Tf_sD_s, var, "empty nameref target");
871 errorf(Tf_sD_s, qval,
878 errorf(Tf_sD_s, qval,
890 errorf(Tf_sD_s, tvar, "restricted");
1384 errorf(Tf_sD_sD_s, vp->name, Tbadnum, s);
    [all...]
eval.c 403 errorf(Tf_sD_s, str, Tbadsubst);
669 errorf("%s: parameter null or not set",
769 errorf(Tf_sD_s, st->var->name,
1194 errorf(Tf_parm, sp);
1360 errorf(Tf_parm, sp);
    [all...]
exec.c 229 errorf("coprocess already exists");
449 errorf(Tf_sD_s, t->str, cstrerror(rv));
540 errorf(Tf_sD_sD_s, Tbuiltin, cp, Tnot_found);
982 errorf("%s: not executable: %d-bit ELF file", tp->str,
997 errorf("%s: not executable: magic %04X", tp->str, m);
1023 errorf(Tf_sD_sD_s, tp->str, sh, cstrerror(errno));
    [all...]

Completed in 1202 milliseconds

1 2