/freebsd/contrib/lutok/ |
H A D | operations.cpp | 77 const int nresults, const int errfunc) in do_file() argument 87 errfunc == 0 ? 0 : errfunc - 1); in do_file() 117 const int nresults, const int errfunc) in do_string() argument 127 errfunc == 0 ? 0 : errfunc - 1); in do_string()
|
H A D | state.cpp | 643 lutok::state::pcall(const int nargs, const int nresults, const int errfunc) in pcall() argument 645 if (lua_pcall(_pimpl->lua_state, nargs, nresults, errfunc) != 0) in pcall()
|
/freebsd/crypto/openssl/crypto/evp/ |
H A D | evp_utils.c | 27 #define PARAM_CHECK(obj, func, errfunc) \ argument 33 errfunc(); \
|
/freebsd/crypto/openssh/ |
H A D | sftp-glob.c | 138 int (*errfunc)(const char *, int), glob_t *pglob) in sftp_glob() 154 if ((r = glob(pattern, flags | GLOB_ALTDIRFUNC, errfunc, pglob)) != 0) in sftp_glob()
|
/freebsd/sys/contrib/openzfs/module/lua/ |
H A D | ldebug.c | 587 if (L->errfunc != 0) { /* is there an error handling function? */ in luaG_errormsg() 588 StkId errfunc = restorestack(L, L->errfunc); in luaG_errormsg() local 589 if (!ttisfunction(errfunc)) luaD_throw(L, LUA_ERRERR); in luaG_errormsg() 591 setobjs2s(L, L->top - 1, errfunc); /* push function */ in luaG_errormsg()
|
H A D | ldo.c | 503 L->errfunc = ci->u.c.old_errfunc; in finishCcall() 561 L->errfunc = ci->u.c.old_errfunc; in recover() 689 ptrdiff_t old_errfunc = L->errfunc; in luaD_pcall() 690 L->errfunc = ef; in luaD_pcall() 701 L->errfunc = old_errfunc; in luaD_pcall() 755 status = luaD_pcall(L, f_parser, &p, savestack(L, L->top), L->errfunc); in luaD_protectedparser()
|
H A D | lapi.c | 926 LUA_API int lua_pcallk (lua_State *L, int nargs, int nresults, int errfunc, in lua_pcallk() argument 937 if (errfunc == 0) in lua_pcallk() 940 StkId o = index2addr(L, errfunc); in lua_pcallk() 941 api_checkstackindex(L, errfunc, o); in lua_pcallk() 956 ci->u.c.old_errfunc = L->errfunc; in lua_pcallk() 957 L->errfunc = func; in lua_pcallk() 962 L->errfunc = ci->u.c.old_errfunc; in lua_pcallk()
|
H A D | lstate.h | 175 ptrdiff_t errfunc; /* current error handling function (stack index) */ member
|
H A D | lstate.c | 215 L->errfunc = 0; in preinit_state()
|
/freebsd/contrib/lua/src/ |
H A D | ldebug.c | 810 if (L->errfunc != 0) { /* is there an error handling function? */ in luaG_errormsg() 811 StkId errfunc = restorestack(L, L->errfunc); in luaG_errormsg() local 812 lua_assert(ttisfunction(s2v(errfunc))); in luaG_errormsg() 814 setobjs2s(L, L->top.p - 1, errfunc); /* push function */ in luaG_errormsg()
|
H A D | ldo.c | 688 L->errfunc = ci->u.c.old_errfunc; in finishpcallk() 951 ptrdiff_t old_errfunc = L->errfunc; in luaD_pcall() 952 L->errfunc = ef; in luaD_pcall() 961 L->errfunc = old_errfunc; in luaD_pcall() 1015 status = luaD_pcall(L, f_parser, &p, savestack(L, L->top.p), L->errfunc); in luaD_protectedparser()
|
H A D | lapi.c | 1043 LUA_API int lua_pcallk (lua_State *L, int nargs, int nresults, int errfunc, in lua_pcallk() argument 1054 if (errfunc == 0) in lua_pcallk() 1057 StkId o = index2stack(L, errfunc); in lua_pcallk() 1072 ci->u.c.old_errfunc = L->errfunc; in lua_pcallk() 1073 L->errfunc = func; in lua_pcallk() 1078 L->errfunc = ci->u.c.old_errfunc; in lua_pcallk()
|
H A D | lstate.h | 326 ptrdiff_t errfunc; /* current error handling function (stack index) */ member
|
H A D | lstate.c | 264 L->errfunc = 0; in preinit_thread()
|
H A D | lua.h | 296 LUA_API int (lua_pcallk) (lua_State *L, int nargs, int nresults, int errfunc,
|
/freebsd/crypto/heimdal/lib/roken/ |
H A D | glob.c | 170 int (*errfunc)(const char *, int), in glob() 185 pglob->gl_errfunc = errfunc; in glob()
|
H A D | glob.hin | 63 /* Copy of errfunc parameter to glob. */
|
/freebsd/contrib/tcsh/ |
H A D | glob.c | 294 glob(const char *pattern, int flags, int (*errfunc) (const char *, int), in glob() 312 pglob->gl_errfunc = errfunc; in glob()
|
/freebsd/lib/libc/gen/ |
H A D | glob-compat11.c | 152 int (*errfunc)(const char *, int), glob11_t * __restrict pglob) in freebsd11_glob() 175 pglob->gl_errfunc = errfunc; in freebsd11_glob()
|
H A D | glob.c | 184 int (*errfunc)(const char *, int), glob_t * __restrict pglob) in glob() 207 pglob->gl_errfunc = errfunc; in glob()
|
/freebsd/crypto/openssh/openbsd-compat/ |
H A D | glob.c | 182 glob(const char *pattern, int flags, int (*errfunc)(const char *, int), in glob() 199 pglob->gl_errfunc = errfunc; in glob()
|
/freebsd/sys/contrib/openzfs/include/sys/lua/ |
H A D | lua.h | 256 LUA_API int (lua_pcallk) (lua_State *L, int nargs, int nresults, int errfunc,
|
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_common_interceptors.inc | 2305 int (*errfunc)(const char *epath, int eerrno), 2308 COMMON_INTERCEPTOR_ENTER(ctx, glob, pattern, flags, errfunc, pglob); 2310 int res = REAL(glob)(pattern, flags, errfunc, pglob); 2351 int (*errfunc)(const char *epath, int eerrno), 2354 COMMON_INTERCEPTOR_ENTER(ctx, glob, pattern, flags, errfunc, pglob); 2366 int res = REAL(glob)(pattern, flags, errfunc, pglob); 2387 int (*errfunc)(const char *epath, int eerrno), 2390 COMMON_INTERCEPTOR_ENTER(ctx, glob64, pattern, flags, errfunc, pglob); 2402 int res = REAL(glob64)(pattern, flags, errfunc, pglob);
|