Home
last modified time | relevance | path

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

/redis-3.2.3/deps/lua/src/
H A Dldblib.c105 if (!lua_getstack(L1, (int)lua_tointeger(L, arg+1), &ar)) { in db_getinfo()
149 if (!lua_getstack(L1, luaL_checkint(L, arg+1), &ar)) /* out of range? */ in db_getlocal()
169 if (!lua_getstack(L1, luaL_checkint(L, arg+1), &ar)) /* out of range? */ in db_setlocal()
339 while (lua_getstack(L1, level++, &ar)) { in db_errorfb()
342 if (!lua_getstack(L1, level+LEVELS2, &ar)) in db_errorfb()
346 while (lua_getstack(L1, level+LEVELS2, &ar)) /* find last levels */ in db_errorfb()
H A Dlbaselib.c123 if (lua_getstack(L, level, &ar) == 0) in getfunc()
497 if (lua_getstack(co, 0, &ar) > 0) /* does it have frames? */ in costatus()
H A Dlauxlib.c45 if (!lua_getstack(L, 0, &ar)) /* no stack frame? */ in luaL_argerror()
75 if (lua_getstack(L, level, &ar)) { /* check function at level */ in luaL_where()
H A Dlua.h333 LUA_API int lua_getstack (lua_State *L, int level, lua_Debug *ar);
H A Dloadlib.c509 if (lua_getstack(L, 1, &ar) == 0 || in setfenv()
H A Dldebug.c84 LUA_API int lua_getstack (lua_State *L, int level, lua_Debug *ar) { in lua_getstack() function
/redis-3.2.3/src/
H A Dscripting.c221 if(lua_getstack(lua, 1, &dbg) && lua_getinfo(lua, "nSl", &dbg)) { in luaPushError()
2040 while (lua_getstack(lua,l,&ar) != 0) { in ldbPrint()
2072 if (lua_getstack(lua,0,&ar) != 0) { in ldbPrintAll()
2192 while(lua_getstack(lua,level,&ar)) { in ldbTrace()
2344 lua_getstack(lua,0,ar); in luaLdbLineHook()