Home
last modified time | relevance | path

Searched refs:lua_getstack (Results 1 – 6 of 6) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
Dldblib.c118 if (!lua_getstack(L1, (int)lua_tointeger(L, arg+1), &ar)) { in db_getinfo()
174 if (!lua_getstack(L1, luaL_checkint(L, arg+1), &ar)) /* out of range? */ in db_getlocal()
195 if (!lua_getstack(L1, luaL_checkint(L, arg+1), &ar)) /* out of range? */ in db_setlocal()
Dlcorolib.c115 if (lua_getstack(co, 0, &ar) > 0) /* does it have frames? */ in luaB_costatus()
Dlauxlib.c105 while (lua_getstack(L, le, &ar)) { li = le; le *= 2; } in countlevels()
109 if (lua_getstack(L, m, &ar)) li = m + 1; in countlevels()
124 while (lua_getstack(L1, level++, &ar)) { in luaL_traceback()
155 if (!lua_getstack(L, 0, &ar)) /* no stack frame? */ in luaL_argerror()
185 if (lua_getstack(L, level, &ar)) { /* check function at level */ in luaL_where()
Dloadlib.c548 if (lua_getstack(L, 1, &ar) == 0 || in set_env()
Dldebug.c83 LUA_API int lua_getstack (lua_State *L, int level, lua_Debug *ar) { in lua_getstack() function
/device/linaro/bootloader/edk2/StdLib/Include/Lua/
Dlua.h382 LUA_API int (lua_getstack) (lua_State *L, int level, lua_Debug *ar); variable