/external/openssh/ |
D | sftp-glob.c | 138 int (*errfunc)(const char *, int), glob_t *pglob) in remote_glob() 149 return(glob(pattern, flags | GLOB_ALTDIRFUNC, errfunc, pglob)); in remote_glob()
|
/external/skia/third_party/lua/src/ |
D | ldebug.c | 561 if (L->errfunc != 0) { /* is there an error handling function? */ in luaG_errormsg() 562 StkId errfunc = restorestack(L, L->errfunc); in luaG_errormsg() local 563 if (!ttisfunction(errfunc)) luaD_throw(L, LUA_ERRERR); in luaG_errormsg() 565 setobjs2s(L, L->top - 1, errfunc); /* push function */ in luaG_errormsg()
|
D | ldo.c | 408 L->errfunc = ci->u.c.old_errfunc; in finishCcall() 466 L->errfunc = ci->u.c.old_errfunc; in recover() 593 ptrdiff_t old_errfunc = L->errfunc; in luaD_pcall() 594 L->errfunc = ef; in luaD_pcall() 605 L->errfunc = old_errfunc; in luaD_pcall() 664 status = luaD_pcall(L, f_parser, &p, savestack(L, L->top), L->errfunc); in luaD_protectedparser()
|
D | lapi.c | 928 LUA_API int lua_pcallk (lua_State *L, int nargs, int nresults, int errfunc, in lua_pcallk() argument 939 if (errfunc == 0) in lua_pcallk() 942 StkId o = index2addr(L, errfunc); in lua_pcallk() 943 api_checkstackindex(L, errfunc, o); in lua_pcallk() 958 ci->u.c.old_errfunc = L->errfunc; in lua_pcallk() 959 L->errfunc = func; in lua_pcallk() 964 L->errfunc = ci->u.c.old_errfunc; in lua_pcallk()
|
D | lstate.h | 174 ptrdiff_t errfunc; /* current error handling function (stack index) */ member
|
D | lstate.c | 217 L->errfunc = 0; in preinit_state()
|
D | lua.h | 257 LUA_API int (lua_pcallk) (lua_State *L, int nargs, int nresults, int errfunc,
|
/external/syslinux/com32/lua/src/ |
D | ldebug.c | 574 if (L->errfunc != 0) { /* is there an error handling function? */ in luaG_errormsg() 575 StkId errfunc = restorestack(L, L->errfunc); in luaG_errormsg() local 576 if (!ttisfunction(errfunc)) luaD_throw(L, LUA_ERRERR); in luaG_errormsg() 578 setobjs2s(L, L->top - 1, errfunc); /* push function */ in luaG_errormsg()
|
D | ldo.c | 415 L->errfunc = ci->u.c.old_errfunc; in finishCcall() 473 L->errfunc = ci->u.c.old_errfunc; in recover() 601 ptrdiff_t old_errfunc = L->errfunc; in luaD_pcall() 602 L->errfunc = ef; in luaD_pcall() 613 L->errfunc = old_errfunc; in luaD_pcall() 672 status = luaD_pcall(L, f_parser, &p, savestack(L, L->top), L->errfunc); in luaD_protectedparser()
|
D | lapi.c | 928 LUA_API int lua_pcallk (lua_State *L, int nargs, int nresults, int errfunc, in lua_pcallk() argument 939 if (errfunc == 0) in lua_pcallk() 942 StkId o = index2addr(L, errfunc); in lua_pcallk() 943 api_checkstackindex(L, errfunc, o); in lua_pcallk() 958 ci->u.c.old_errfunc = L->errfunc; in lua_pcallk() 959 L->errfunc = func; in lua_pcallk() 964 L->errfunc = ci->u.c.old_errfunc; in lua_pcallk()
|
D | lstate.h | 174 ptrdiff_t errfunc; /* current error handling function (stack index) */ member
|
D | lstate.c | 224 L->errfunc = 0; in preinit_state()
|
D | lua.h | 262 LUA_API int (lua_pcallk) (lua_State *L, int nargs, int nresults, int errfunc,
|
/external/openssh/openbsd-compat/ |
D | glob.c | 177 glob(const char *pattern, int flags, int (*errfunc)(const char *, int), in glob() 197 pglob->gl_errfunc = errfunc; in glob()
|
/external/libxml2/ |
D | testrecurse.c | 73 int errfunc(const char *epath, int eerrno), in glob()
|
D | runtest.c | 122 int errfunc(const char *epath, int eerrno), in glob()
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_common_interceptors.inc | 1869 int (*errfunc)(const char *epath, int eerrno), 1872 COMMON_INTERCEPTOR_ENTER(ctx, glob, pattern, flags, errfunc, pglob); 1884 int res = REAL(glob)(pattern, flags, errfunc, pglob); 1898 int (*errfunc)(const char *epath, int eerrno), 1901 COMMON_INTERCEPTOR_ENTER(ctx, glob64, pattern, flags, errfunc, pglob); 1913 int res = REAL(glob64)(pattern, flags, errfunc, pglob);
|