Searched refs:lua_getfield (Results 1 – 11 of 11) sorted by relevance
/l4re-core-master/lua/lib/contrib/src/ |
A D | loadlib.c | 287 lua_getfield(L, LUA_REGISTRYINDEX, "LUA_NOENV"); in noenv() 337 lua_getfield(L, LUA_REGISTRYINDEX, CLIBS); in checkclib() 338 lua_getfield(L, -1, path); in checkclib() 350 lua_getfield(L, LUA_REGISTRYINDEX, CLIBS); in addtoclib() 526 lua_getfield(L, lua_upvalueindex(1), pname); in findfile() 612 lua_getfield(L, LUA_REGISTRYINDEX, LUA_PRELOAD_TABLE); in searcher_preload() 613 if (lua_getfield(L, -1, name) == LUA_TNIL) { /* not found? */ in searcher_preload() 628 if (l_unlikely(lua_getfield(L, lua_upvalueindex(1), "searchers") in findloader() 660 lua_getfield(L, LUA_REGISTRYINDEX, LUA_LOADED_TABLE); in ll_require() 661 lua_getfield(L, 2, name); /* LOADED[name] */ in ll_require() [all …]
|
A D | liolib.c | 230 lua_getfield(L, LUA_REGISTRYINDEX, IO_OUTPUT); /* use default output */ in io_close() 310 lua_getfield(L, LUA_REGISTRYINDEX, findex); in getiofile() 330 lua_getfield(L, LUA_REGISTRYINDEX, f); in g_iofile() 390 lua_getfield(L, LUA_REGISTRYINDEX, IO_INPUT); /* get default input */ in io_lines()
|
A D | loslib.c | 245 res = (lua_getfield(L, -1, key) == LUA_TNIL) ? -1 : lua_toboolean(L, -1); in getboolfield() 253 int t = lua_getfield(L, -1, key); /* get field and its type */ in getfield()
|
A D | ldblib.c | 326 lua_getfield(L, LUA_REGISTRYINDEX, HOOKKEY); in hookf() 408 lua_getfield(L, LUA_REGISTRYINDEX, HOOKKEY); in db_gethook()
|
A D | lauxlib.c | 82 lua_getfield(L, LUA_REGISTRYINDEX, LUA_LOADED_TABLE); in pushglobalfuncname() 948 if (lua_getfield(L, idx, fname) == LUA_TTABLE) in luaL_getsubtable() 970 lua_getfield(L, -1, modname); /* LOADED[modname] */ in luaL_requiref()
|
A D | lauxlib.h | 150 #define luaL_getmetatable(L,n) (lua_getfield(L, LUA_REGISTRYINDEX, (n)))
|
A D | lua.h | 252 LUA_API int (lua_getfield) (lua_State *L, int idx, const char *k); variable
|
A D | lapi.c | 683 LUA_API int lua_getfield (lua_State *L, int idx, const char *k) { in lua_getfield() function
|
/l4re-core-master/ned/server/src/ |
A D | lua_cap.cc | 24 lua_getfield(l, LUA_REGISTRYINDEX, "L4::Ned::TYPES"); in get_cap_cast_table() 45 lua_getfield(l, -1, "void"); in get_class() 75 lua_getfield(l, -1, "_CLASS_NAME"); in tostring() 243 lua_getfield(l, -1, typ /*type()*/); in get_method_table()
|
A D | lua_exec.cc | 105 lua_getfield(_lua, _cfg_idx, f); in _cfg_integer() 119 lua_getfield(_lua, _cfg_idx, f); in _cfg_cap() 167 lua_getfield(_lua, _cfg_idx, "caps"); in push_initial_caps() 201 lua_getfield(_lua, _cfg_idx, "caps"); in map_initial_caps() 236 lua_getfield(_lua, _cfg_idx, "l4re_loader"); in launch_loader()
|
A D | lua.cc | 127 lua_getfield(_lua, -1, "msg"); in op_execute() 277 lua_getfield(L, -1, "msg"); in lua()
|
Completed in 21 milliseconds