Searched refs:funcindex (Results 1 – 2 of 2) sorted by relevance
/external/lua/src/ |
D | lua.h | 428 LUA_API const char *(lua_getupvalue) (lua_State *L, int funcindex, int n); 429 LUA_API const char *(lua_setupvalue) (lua_State *L, int funcindex, int n);
|
D | lapi.c | 1222 LUA_API const char *lua_getupvalue (lua_State *L, int funcindex, int n) { in lua_getupvalue() argument 1226 name = aux_upvalue(index2addr(L, funcindex), n, &val, NULL, NULL); in lua_getupvalue() 1236 LUA_API const char *lua_setupvalue (lua_State *L, int funcindex, int n) { in lua_setupvalue() argument 1243 fi = index2addr(L, funcindex); in lua_setupvalue()
|