|
static void | seterrorobj (lua_State *L, int errcode, StkId oldtop) |
|
l_noret | luaD_throw (lua_State *L, int errcode) |
|
int | luaD_rawrunprotected (lua_State *L, Pfunc f, void *ud) |
|
static void | correctstack (lua_State *L, TValue *oldstack) |
|
void | luaD_reallocstack (lua_State *L, int newsize) |
|
void | luaD_growstack (lua_State *L, int n) |
|
static int | stackinuse (lua_State *L) |
|
void | luaD_shrinkstack (lua_State *L) |
|
void | luaD_inctop (lua_State *L) |
|
void | luaD_hook (lua_State *L, int event, int line) |
|
static void | callhook (lua_State *L, CallInfo *ci) |
|
static StkId | adjust_varargs (lua_State *L, Proto *p, int actual) |
|
static void | tryfuncTM (lua_State *L, StkId func) |
|
static int | moveresults (lua_State *L, const TValue *firstResult, StkId res, int nres, int wanted) |
|
int | luaD_poscall (lua_State *L, CallInfo *ci, StkId firstResult, int nres) |
|
int | luaD_precall (lua_State *L, StkId func, int nresults) |
|
static void | stackerror (lua_State *L) |
|
void | luaD_call (lua_State *L, StkId func, int nResults) |
|
void | luaD_callnoyield (lua_State *L, StkId func, int nResults) |
|
static void | finishCcall (lua_State *L, int status) |
|
static void | unroll (lua_State *L, void *ud) |
|
static CallInfo * | findpcall (lua_State *L) |
|
static int | recover (lua_State *L, int status) |
|
static int | resume_error (lua_State *L, const char *msg, int narg) |
|
static void | resume (lua_State *L, void *ud) |
|
LUA_API int | lua_resume (lua_State *L, lua_State *from, int nargs) |
|
LUA_API int | lua_isyieldable (lua_State *L) |
|
LUA_API int | lua_yieldk (lua_State *L, int nresults, lua_KContext ctx, lua_KFunction k) |
|
int | luaD_pcall (lua_State *L, Pfunc func, void *u, ptrdiff_t old_top, ptrdiff_t ef) |
|
static void | checkmode (lua_State *L, const char *mode, const char *x) |
|
static void | f_parser (lua_State *L, void *ud) |
|
int | luaD_protectedparser (lua_State *L, ZIO *z, const char *name, const char *mode) |
|