Home
last modified time | relevance | path

Searched refs:errfunc (Results 1 – 8 of 8) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
Dldebug.c574 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()
Dldo.c415 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()
Dlapi.c928 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()
Dlstate.h174 ptrdiff_t errfunc; /* current error handling function (stack index) */ member
Dlstate.c219 L->errfunc = 0; in preinit_state()
/device/linaro/bootloader/edk2/StdLib/PosixLib/Glob/
Dglob.c184 int (*errfunc)(const char *, int), in glob()
204 pglob->gl_errfunc = errfunc; in glob()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_itertools.py20 def errfunc(*args): function
721 self.assertRaises(ValueError, imap(errfunc, [4], [5]).next)
735 self.assertRaises(ValueError, starmap(errfunc, [(4,5)]).next)
795 self.assertRaises(ValueError, takewhile(errfunc, [(4,5)]).next)
809 self.assertRaises(ValueError, dropwhile(errfunc, [(4,5)]).next)
/device/linaro/bootloader/edk2/StdLib/Include/Lua/
Dlua.h257 LUA_API int (lua_pcallk) (lua_State *L, int nargs, int nresults, int errfunc,