Searched refs:errorf (Results 1 - 25 of 27) sorted by relevance

12

/macosx-10.10/ksh-23/ksh/src/lib/libdll/
H A Ddllcheck.c45 errorf("dll", NiL, 1, "dllversion: %s: %s", path, state.errorbuf);
79 errorf("dll", NiL, 1, "dllcheck: %s: %s", path, state.errorbuf);
83 errorf("dll", NiL, -1, "dllversion: %s: %lu >= %lu", path, v, ver);
H A Ddlllook.c47 errorf("dll", NiL, -1, "dlllook: %s addr %p", name, addr);
H A Ddll_lib.c143 errorf("dll", NiL, -1, "dll_lib: %s version %lu library not found", names->name, version);
157 errorf("dll", NiL, -1, "dll_lib: %s version %lu initialization function %s not found in library", names->name, version, sym);
172 errorf("dll", NiL, -1, "dll_lib: %s version %lu loaded from %s", names->name, version, lib->path);
H A Ddllplug.c93 errorf("dll", NiL, 1, "dllplugin: %s dlopen failed: %s", dle->path, dllerror(1));
/macosx-10.10/ksh-23/ksh/src/lib/libast/misc/
H A Dcmdlib.h36 Error_f errorf; /* optional error callback */ \
H A Derrorf.c33 errorf(void* handle, void* discipline, int level, ...) function
H A Dcmdarg.c54 disc.errorf = errorf;
77 cmdopen_20110505(char** argv, int argmax, int size, const char* argpat, int flags, Error_f errorf) argument
84 disc.errorf = errorf;
139 if (disc->errorf)
140 (*disc->errorf)(NiL, sh, 2, "size must be at least %d", m);
151 if (disc->errorf)
152 (*disc->errorf)(NiL, sh, ERROR_SYSTEM|2, "out of space");
157 cmd->errorf
[all...]
H A Dmimetype.c59 mp->magicd.errorf = mp->disc->errorf;
H A Dfastfind.c264 if (fp->disc->errorf)
265 (*fp->disc->errorf)(fp, fp->disc, 2, "%s: cannot locate codes", file ? file : findcodes[2]);
278 if (fp->disc->errorf)
279 (*fp->disc->errorf)(fp, fp->disc, ERROR_SYSTEM|2, "cannot create tmp file");
299 if (fp->disc->errorf)
300 (*fp->disc->errorf)(fp, fp->disc, ERROR_SYSTEM|2, "%s: cannot create tmp file in this directory", p ? p : ".");
307 if (fp->disc->errorf)
308 (*fp->disc->errorf)(fp, fp->disc, ERROR_SYSTEM|2, "%s: cannot open tmp file", fp->encode.temp);
325 if (fp->disc->errorf)
326 (*fp->disc->errorf)(f
[all...]
H A Dmagic.c370 else if ((mp->flags & MAGIC_VERBOSE) && mp->disc->errorf)
371 (*mp->disc->errorf)(mp, mp->disc, 2, "%s in indirect expression", *e);
384 if ((mp->flags & MAGIC_VERBOSE) && mp->disc->errorf)
387 (*mp->disc->errorf)(mp, mp->disc, 3, "regex: %s", buf);
1191 else if (mp->disc->errorf)
1192 (*mp->disc->errorf)(mp, mp->disc, 3, "out of space");
1711 else if ((mp->flags & MAGIC_VERBOSE) && mp->disc->errorf)
1712 (*mp->disc->errorf)(mp, mp->disc, 1, "{ ... } operator nesting too deep -- %d max", MAXNEST);
1717 if (mp->disc->errorf)
1718 (*mp->disc->errorf)(m
[all...]
/macosx-10.10/ksh-23/ksh/src/lib/libast/include/
H A Dcmdarg.h52 #define CMDDISC(d,f,e) (memset(d,0,sizeof(*(d))),(d)->version=CMD_VERSION,(d)->flags=(f),(d)->errorf=(e))
63 Error_f errorf; /* optional error function */ member in struct:Cmddisc_s
H A Dfind.h59 Error_f errorf; /* error function */ member in struct:Finddisc_s
H A Dmagic.h61 Error_f errorf; /* error function */ member in struct:Magicdisc_s
H A Dmime.h61 Error_f errorf; /* error function */ member in struct:Mimedisc_s
H A Ddebug.h42 #define messagef(x) do if (error_info.trace < 0) { errorf x; } while (0)
H A Derror.h179 extern int errorf(void*, void*, int, ...);
H A Daso.h56 #define ASODISC(d,e) (memset(d,0,sizeof(*(d))),(d)->version=ASO_VERSION,(d)->errorf=(e))
66 Asoerror_f errorf; member in struct:Asodisc_s
/macosx-10.10/ksh-23/ksh/src/lib/libast/astsa/
H A Derror.h63 extern int errorf(void*, void*, int, ...);
H A Derror.c95 errorf(void* handle, void* discipline, int level, ...) function
/macosx-10.10/ksh-23/ksh/src/lib/libast/aso/
H A Daso.c114 Asoerror_f errorf;
171 return state.errorf(type, buf);
252 state.errorf = disc->errorf;
262 if (state.errorf)
277 if (state.errorf)
300 if (state.hung && !(rep & state.hung) && state.errorf)
314 if ((r = state.lockf(data, k, p)) < 0 && state.errorf)
/macosx-10.10/ksh-23/ksh/src/cmd/ksh93/bltins/
H A Dmkservice.c122 int (*errorf)(Service_t*,int,const char*, ...); member in struct:Service_s
439 sp->errorf = Error;
/macosx-10.10/ksh-23/ksh/src/lib/libast/comp/
H A Diconv.c1397 if (disc->errorf)
1398 (*disc->errorf)(NiL, disc, ERROR_SYSTEM|2, "incomplete multibyte sequence at offset %I*u", sizeof(fo), *fb - fo);
1401 if (disc->errorf)
1402 (*disc->errorf)(NiL, disc, ERROR_SYSTEM|2, "invalid multibyte sequence at offset %I*u", sizeof(fo), *fb - fo);
1498 if (disc->errorf)
1499 (*disc->errorf)(NiL, disc, ERROR_SYSTEM|2, "incomplete multibyte sequence at offset %I*u", sizeof(ft), ft + (fo - fn));
1505 if (disc->errorf)
1506 (*disc->errorf)(NiL, disc, ERROR_SYSTEM|2, "invalid multibyte sequence at offset %I*u", sizeof(ft), ft + (fo - fn));
/macosx-10.10/emacs-93/emacs/lisp/textmodes/
H A Dreftex-ref.el713 (errorf (if error 'error 'message))
721 (funcall errorf "Unknown label - reparse might help")
735 (funcall errorf "Label %s not found" label)
759 (funcall errorf "Label %s not found" label))
/macosx-10.10/ksh-23/ksh/src/lib/libcmd/
H A Dgetconf.c264 s = astgetconf(name, path, value, flags, errorf);
/macosx-10.10/ksh-23/ksh/src/lib/libast/port/
H A Dastconf.c1431 if (pointerof(flags) == (void*)errorf)
1433 conferror = errorf;
1436 else if (conferror && conferror != errorf)
1601 errorf(&state, &state, 2, "%s: not found", path);
1616 redisc.re_errorf = (regerror_t)errorf;
1645 print(sp, &look, NiL, path, flags, errorf);

Completed in 96 milliseconds

12