Home
last modified time | relevance | path

Searched refs:lua_getfield (Results 1 – 9 of 9) sorted by relevance

/netbsd-src/external/mit/lua/dist/src/
H A Dloadlib.c289 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 Dliolib.c232 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 Dloslib.c247 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 Dldblib.c330 lua_getfield(L, LUA_REGISTRYINDEX, HOOKKEY); in hookf()
412 lua_getfield(L, LUA_REGISTRYINDEX, HOOKKEY); in db_gethook()
H A Dlauxlib.c88 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 Dlauxlib.h165 #define luaL_getmetatable(L,n) (lua_getfield(L, LUA_REGISTRYINDEX, (n)))
H A Dlua.h286 LUA_API int (lua_getfield) (lua_State *L, int idx, const char *k); variable
H A Dlapi.c699 LUA_API int lua_getfield (lua_State *L, int idx, const char *k) { in lua_getfield() function
/netbsd-src/libexec/httpd/
H A Dlua-bozo.c210 lua_getfield(map->L, -1, "preload"); in bozo_add_lua_map()