/external/syzkaller/syz-ci/ |
D | managercmd.go | 22 errorf Errorf member 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) 120 mc.errorf("manager exited unexpectedly: %v", err)
|
/external/golang-protobuf/proto/ |
D | 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]) 362 return p.errorf("expected %q, found %q", s, tok.value) 428 return p.errorf("expected ':', found %q", tok.value) 470 return p.errorf("unrecognized message %q in google.protobuf.Any", messageName) 490 return p.errorf("expected '{' or '<', found %q", tok.value) 498 return p.errorf("failed to marshal message of type %q: %v", messageName, err) 501 return p.errorf(anyRepeatedlyUnpacked, "type_url") [all …]
|
/external/syzkaller/vendor/github.com/golang/protobuf/proto/ |
D | 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]) 362 return p.errorf("expected %q, found %q", s, tok.value) 428 return p.errorf("expected ':', found %q", tok.value) 470 return p.errorf("unrecognized message %q in google.protobuf.Any", messageName) 490 return p.errorf("expected '{' or '<', found %q", tok.value) 498 return p.errorf("failed to marshal message of type %q: %v", messageName, err) 501 return p.errorf(anyRepeatedlyUnpacked, "type_url") [all …]
|
/external/v8/src/wasm/ |
D | module-decoder.cc | 135 decoder.errorf(string_start, "%s: no valid UTF-8 string", name); in consume_string() 184 decoder_.errorf(decoder_.pc(), in advance() 229 decoder_.errorf(decoder_.pc(), "unknown section code #0x%02x", in next() 312 errorf(pos, in DecodeModuleHeader() 322 errorf(pos, in DecodeModuleHeader() 341 errorf(pc(), "unexpected section: %s", SectionName(section_code)); in DecodeSection() 352 errorf(pc(), "Multiple exception sections not allowed"); in DecodeSection() 355 errorf(pc(), "Exception section must appear before the code section"); in DecodeSection() 408 errorf(pc(), "unexpected section: %s", SectionName(section_code)); in DecodeSection() 412 errorf(pc(), "unexpected section: %s", SectionName(section_code)); in DecodeSection() [all …]
|
D | decoder.h | 173 errorf(pc_, "expected %u bytes, fell off end", size); in checkAvailable() 179 void error(const char* msg) { errorf(pc_, "%s", msg); } in error() 181 void error(const byte* pc, const char* msg) { errorf(pc, "%s", msg); } in error() 184 void PRINTF_FORMAT(3, 4) errorf(const byte* pc, const char* format, ...) { in errorf() function 341 errorf(pc, "expected %s", name); in read_leb_tail()
|
D | 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", in CallIndirectImmediate() 337 decoder->errorf(pc + 1, "expected memory index 0, found %u", index); in MemoryIndexImmediate() 405 decoder->errorf(pc + 1, in MemoryAccessImmediate() 812 errorf(pc + 1, "invalid local index: %u", imm.index); in Validate() 822 errorf(pc + 1, "Invalid exception index: %u", imm.index); in Validate() 831 errorf(pc + 1, "invalid global index: %u", imm.index); in Validate() 852 errorf(pc + 1, "invalid function index: %u", imm.index); in Validate() 871 errorf(pc + 1, "invalid signature index: #%u", imm.sig_index); in Validate() 880 errorf(pc + 1, "invalid break depth: %u", imm.depth); in Validate() [all …]
|
/external/libchrome/third_party/ply/ |
D | lex.py | 661 self.errorf = { } # Error functions by state 680 self.errorf[s] = t 797 efunc = self.errorf.get(state,None) 979 lexobj.lexstateerrorf = linfo.errorf 980 lexobj.lexerrorf = linfo.errorf.get("INITIAL",None) 987 if not s in linfo.errorf: 992 if not s in linfo.errorf: 993 linfo.errorf[s] = linfo.errorf.get("INITIAL",None)
|
D | yacc.py | 240 def __init__(self,lrtab,errorf): argument 244 self.errorfunc = errorf
|
/external/ply/ply/ply/ |
D | lex.py | 670 self.errorf = {} # Error functions by state 690 self.errorf[s] = t 799 efunc = self.errorf.get(state, None) 994 lexobj.lexstateerrorf = linfo.errorf 995 lexobj.lexerrorf = linfo.errorf.get('INITIAL', None) 1006 if s not in linfo.errorf: 1011 if s not in linfo.errorf: 1012 linfo.errorf[s] = linfo.errorf.get('INITIAL', None)
|
D | yacc.py | 288 def __init__(self, lrtab, errorf): argument 292 self.errorfunc = errorf
|
/external/selinux/python/sepolgen/src/sepolgen/ |
D | lex.py | 670 self.errorf = {} # Error functions by state 690 self.errorf[s] = t 799 efunc = self.errorf.get(state, None) 994 lexobj.lexstateerrorf = linfo.errorf 995 lexobj.lexerrorf = linfo.errorf.get('INITIAL', None) 1006 if s not in linfo.errorf: 1011 if s not in linfo.errorf: 1012 linfo.errorf[s] = linfo.errorf.get('INITIAL', None)
|
D | yacc.py | 288 def __init__(self, lrtab, errorf): argument 292 self.errorfunc = errorf
|
/external/syzkaller/vendor/google.golang.org/grpc/transport/ |
D | log.go | 40 func errorf(format string, args ...interface{}) { func
|
D | 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.")
|
D | http_util.go | 349 errorf("Failed to decode metadata header (%q, %q): %v", f.Name, f.Value, err)
|
D | http2_client.go | 305 errorf("transport: loopyWriter.run returning. Err: %v", err) 1174 errorf("transport: http2Client.reader got unhandled frame type %v.", frame)
|
/external/mksh/src/ |
D | misc.c | 67 errorf("%s failed with EAGAIN, probably due to a" \ 433 errorf("no TIOCSCTTY ioctl"); in parse_args() 2316 errorf(Tf_sD_sD_s, "chvt", in chvt() 2322 errorf(Tf_sD_sD_s, "chvt", "not a char device", dv); in chvt() 2336 errorf(Tf_sD_s_s, "chvt", Tcant_open, dv); in chvt() 2342 errorf(Tf_sD_s_s, "chvt", "fork", "failed"); in chvt() 2350 errorf(Tf_sD_s_s, "chvt", "setsid", "failed"); in chvt() 2353 errorf(Tf_sD_s_s, "chvt", "TIOCSCTTY", "failed"); in chvt() 2355 errorf(Tf_sD_s_s, "chvt", "TCIOFLUSH", "failed"); in chvt()
|
D | main.c | 490 errorf(Tf_optfoo, "", "", 'c', Treq_arg); in main_init() 1285 errorf(const char *fmt, ...) in errorf() function 1437 errorf("can't get home directory"); in initio() 1442 errorf("can't open debug output file %s", lfp); in initio() 1449 errorf("can't dup debug output file"); in initio() 1465 errorf(Ttoo_many_files); in ksh_dup2() 1489 errorf(Ttoo_many_files); in savefd() 1515 errorf("can't create pipe - try again"); in openpipe()
|
D | eval.c | 403 errorf(Tf_sD_s, str, Tbadsubst); in expand() 669 errorf("%s: parameter null or not set", in expand() 769 errorf(Tf_sD_s, st->var->name, in expand() 1194 errorf(Tf_parm, sp); in varsub() 1360 errorf(Tf_parm, sp); in varsub() 1431 errorf(Tf_sD_s, T_funny_command, in comsub() 1444 errorf(Tf_temp, in comsub()
|
D | var.c | 254 errorf(Tbadsubst); in isglobal() 785 errorf(Tf_sD_s, var, in typeset() 836 errorf("appending not allowed for nameref"); in typeset() 862 errorf(Tf_sD_s, var, "empty nameref target"); in typeset() 871 errorf(Tf_sD_s, qval, in typeset() 878 errorf(Tf_sD_s, qval, in typeset() 890 errorf(Tf_sD_s, tvar, "restricted"); in typeset() 1384 errorf(Tf_sD_sD_s, vp->name, Tbadnum, s); in setspec()
|
D | exec.c | 229 errorf("coprocess already exists"); in execute() 449 errorf(Tf_sD_s, t->str, cstrerror(rv)); in execute() 540 errorf(Tf_sD_sD_s, Tbuiltin, cp, Tnot_found); in comexec() 982 errorf("%s: not executable: %d-bit ELF file", tp->str, in scriptexec() 997 errorf("%s: not executable: magic %04X", tp->str, m); in scriptexec() 1023 errorf(Tf_sD_sD_s, tp->str, sh, cstrerror(errno)); in scriptexec()
|
D | sh.h | 2504 void errorf(const char *, ...) 2514 #define errorfz() errorf(NULL)
|
D | funcs.c | 2453 errorf(Tf_optfoo, Ttime, Tcolsp, in timex_hook() 2456 errorf(Tf_optfoo, Ttime, Tcolsp, in timex_hook()
|
/external/syzkaller/vendor/google.golang.org/grpc/ |
D | server.go | 375 func (s *Server) errorf(format string, a ...interface{}) { func 602 s.errorf("ServerHandshake(%q) failed: %v", rawConn.RemoteAddr(), err) 664 s.errorf("NewServerTransport(%q) failed: %v", c.RemoteAddr(), err)
|
D | clientconn.go | 1175 func (ac *addrConn) errorf(format string, a ...interface{}) { func
|