HomeSort by relevance Sort by last modified time
    Searched refs:errf (Results 1 - 14 of 14) sorted by null

  /external/e2fsprogs/lib/et/
com_err.c 65 typedef void (*errf) (const char *, errcode_t, const char *, va_list); typedef
67 errf com_err_hook = default_com_err_proc;
88 errf set_com_err_hook(errf new_proc)
90 errf x = com_err_hook;
100 errf reset_com_err_hook(void) {
101 errf x = com_err_hook;
  /prebuilts/go/darwin-x86/src/database/sql/
convert_test.go 222 errf := func(format string, args ...interface{}) {
227 errf("got error %q, want error %q", errstr, ct.wanterr)
230 errf("want string %q, got %q", ct.wantstr, scanstr)
233 errf("want byte %q, got %q", ct.wantbytes, scanbytes)
236 errf("want RawBytes %q, got %q", ct.wantraw, scanraw)
239 errf("want int %d, got %d", ct.wantint, intValue(ct.d))
242 errf("want uint %d, got %d", ct.wantuint, uintValue(ct.d))
245 errf("want float32 %v, got %v", ct.wantf32, float32Value(ct.d))
248 errf("want float32 %v, got %v", ct.wantf64, float64Value(ct.d))
251 errf("want bool %v, got %v", ct.wantbool, *bp
    [all...]
fakedb_test.go 481 func errf(msg string, args ...interface{}) error { func
491 return nil, errf("invalid SELECT syntax with %d parts; want 3", len(parts))
503 return nil, errf("SELECT on table %q has invalid column spec of %q (index %d)", stmt.table, colspec, n)
509 return nil, errf("SELECT on table %q references non-existent column %q", stmt.table, column)
513 return nil, errf("SELECT on table %q has pre-bound value for where column %q; need a question mark",
526 return nil, errf("invalid CREATE syntax with %d parts; want 2", len(parts))
533 return nil, errf("CREATE table %q has invalid column spec of %q (index %d)", stmt.table, colspec, n)
545 return nil, errf("invalid INSERT syntax with %d parts; want 2", len(parts))
552 return nil, errf("INSERT table %q has invalid column spec of %q (index %d)", stmt.table, colspec, n)
558 return nil, errf("INSERT table %q references non-existent column %q", stmt.table, column
    [all...]
  /prebuilts/go/linux-x86/src/database/sql/
convert_test.go 222 errf := func(format string, args ...interface{}) {
227 errf("got error %q, want error %q", errstr, ct.wanterr)
230 errf("want string %q, got %q", ct.wantstr, scanstr)
233 errf("want byte %q, got %q", ct.wantbytes, scanbytes)
236 errf("want RawBytes %q, got %q", ct.wantraw, scanraw)
239 errf("want int %d, got %d", ct.wantint, intValue(ct.d))
242 errf("want uint %d, got %d", ct.wantuint, uintValue(ct.d))
245 errf("want float32 %v, got %v", ct.wantf32, float32Value(ct.d))
248 errf("want float32 %v, got %v", ct.wantf64, float64Value(ct.d))
251 errf("want bool %v, got %v", ct.wantbool, *bp
    [all...]
fakedb_test.go 481 func errf(msg string, args ...interface{}) error { func
491 return nil, errf("invalid SELECT syntax with %d parts; want 3", len(parts))
503 return nil, errf("SELECT on table %q has invalid column spec of %q (index %d)", stmt.table, colspec, n)
509 return nil, errf("SELECT on table %q references non-existent column %q", stmt.table, column)
513 return nil, errf("SELECT on table %q has pre-bound value for where column %q; need a question mark",
526 return nil, errf("invalid CREATE syntax with %d parts; want 2", len(parts))
533 return nil, errf("CREATE table %q has invalid column spec of %q (index %d)", stmt.table, colspec, n)
545 return nil, errf("invalid INSERT syntax with %d parts; want 2", len(parts))
552 return nil, errf("INSERT table %q has invalid column spec of %q (index %d)", stmt.table, colspec, n)
558 return nil, errf("INSERT table %q references non-existent column %q", stmt.table, column
    [all...]
  /art/tools/common/
common.py 200 errf = devnull
202 errf = open(err, mode='w')
203 (_, _, retcode) = RunCommandForOutput(cmd, None, outf, errf, timeout)
206 if errf != devnull:
207 errf.close()
  /external/syslinux/core/lwip/src/include/lwip/
tcp_impl.h 208 #define TCP_EVENT_ERR(errf,arg,err) lwip_tcp_event((arg), NULL, \
259 #define TCP_EVENT_ERR(errf,arg,err) \
261 if((errf) != NULL) \
262 (errf)((arg),(err)); \
tcp.h 258 tcp_err_fn errf; member in struct:tcp_pcb
  /external/syslinux/core/lwip/src/core/
tcp.c 324 tcp_err_fn errf; local
345 errf = pcb->errf;
361 TCP_EVENT_ERR(errf, errf_arg, ERR_ABRT);
920 TCP_EVENT_ERR(pcb->errf, pcb->callback_arg, ERR_ABRT);
    [all...]
tcp_in.c 328 TCP_EVENT_ERR(pcb->errf, pcb->callback_arg, ERR_RST);
    [all...]
  /prebuilts/go/darwin-x86/src/os/
file_windows.go 156 r, errf := openFile(name, flag, perm)
157 if errf == nil {
168 return nil, &PathError{"open", name, errf}
  /prebuilts/go/linux-x86/src/os/
file_windows.go 156 r, errf := openFile(name, flag, perm)
157 if errf == nil {
168 return nil, &PathError{"open", name, errf}
  /prebuilts/go/darwin-x86/src/runtime/
runtime_test.go 26 var errf error var
29 return errf
  /prebuilts/go/linux-x86/src/runtime/
runtime_test.go 26 var errf error var
29 return errf

Completed in 462 milliseconds