Searched refs:lua_getstack (Results 1 – 6 of 6) sorted by relevance
/external/syslinux/com32/lua/src/ |
D | ldblib.c | 118 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()
|
D | lauxlib.c | 105 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()
|
D | lcorolib.c | 115 if (lua_getstack(co, 0, &ar) > 0) /* does it have frames? */ in luaB_costatus()
|
D | lua.h | 387 LUA_API int (lua_getstack) (lua_State *L, int level, lua_Debug *ar); variable
|
D | loadlib.c | 597 if (lua_getstack(L, 1, &ar) == 0 || in set_env()
|
D | ldebug.c | 83 LUA_API int lua_getstack (lua_State *L, int level, lua_Debug *ar) { in lua_getstack() function
|