Searched refs:lua_getfield (Results 1 – 9 of 9) sorted by relevance
| /netbsd-src/external/mit/lua/dist/src/ |
| H A D | loadlib.c | 289 lua_getfield(L, LUA_REGISTRYINDEX, "LUA_NOENV"); in noenv() 339 lua_getfield(L, LUA_REGISTRYINDEX, CLIBS); in checkclib() 340 lua_getfield(L, -1, path); in checkclib() 352 lua_getfield(L, LUA_REGISTRYINDEX, CLIBS); in addtoclib() 528 lua_getfield(L, lua_upvalueindex(1), pname); in findfile() 614 lua_getfield(L, LUA_REGISTRYINDEX, LUA_PRELOAD_TABLE); in searcher_preload() 615 if (lua_getfield(L, -1, name) == LUA_TNIL) { /* not found? */ in searcher_preload() 630 if (l_unlikely(lua_getfield(L, lua_upvalueindex(1), "searchers") in findloader() 662 lua_getfield(L, LUA_REGISTRYINDEX, LUA_LOADED_TABLE); in ll_require() 663 lua_getfield(L, 2, name); /* LOADED[name] */ in ll_require() [all …]
|
| H A D | liolib.c | 232 lua_getfield(L, LUA_REGISTRYINDEX, IO_OUTPUT); /* use default output */ in io_close() 312 lua_getfield(L, LUA_REGISTRYINDEX, findex); in getiofile() 332 lua_getfield(L, LUA_REGISTRYINDEX, f); in g_iofile() 392 lua_getfield(L, LUA_REGISTRYINDEX, IO_INPUT); /* get default input */ in io_lines()
|
| H A D | loslib.c | 247 res = (lua_getfield(L, -1, key) == LUA_TNIL) ? -1 : lua_toboolean(L, -1); in getboolfield() 255 int t = lua_getfield(L, -1, key); /* get field and its type */ in getfield()
|
| H A D | ldblib.c | 330 lua_getfield(L, LUA_REGISTRYINDEX, HOOKKEY); in hookf() 412 lua_getfield(L, LUA_REGISTRYINDEX, HOOKKEY); in db_gethook()
|
| H A D | lauxlib.c | 88 lua_getfield(L, LUA_REGISTRYINDEX, LUA_LOADED_TABLE); in pushglobalfuncname() 973 if (lua_getfield(L, idx, fname) == LUA_TTABLE) in luaL_getsubtable() 995 lua_getfield(L, -1, modname); /* LOADED[modname] */ in luaL_requiref()
|
| H A D | lauxlib.h | 165 #define luaL_getmetatable(L,n) (lua_getfield(L, LUA_REGISTRYINDEX, (n)))
|
| H A D | lua.h | 286 LUA_API int (lua_getfield) (lua_State *L, int idx, const char *k); variable
|
| H A D | lapi.c | 699 LUA_API int lua_getfield (lua_State *L, int idx, const char *k) { in lua_getfield() function
|
| /netbsd-src/libexec/httpd/ |
| H A D | lua-bozo.c | 210 lua_getfield(map->L, -1, "preload"); in bozo_add_lua_map()
|