Home
last modified time | relevance | path

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

/minix3/external/mit/lua/dist/src/
H A Dloadlib.c283 lua_getfield(L, -1, path); in checkclib()
439 lua_getfield(L, lua_upvalueindex(1), pname); in findfile()
525 lua_getfield(L, LUA_REGISTRYINDEX, "_PRELOAD"); in searcher_preload()
526 if (lua_getfield(L, -1, name) == LUA_TNIL) /* not found? */ in searcher_preload()
537 if (lua_getfield(L, lua_upvalueindex(1), "searchers") != LUA_TTABLE) in findloader()
563 lua_getfield(L, LUA_REGISTRYINDEX, "_LOADED"); in ll_require()
564 lua_getfield(L, 2, name); /* _LOADED[name] */ in ll_require()
575 if (lua_getfield(L, 2, name) == LUA_TNIL) { /* module set no value? */ in ll_require()
641 if (lua_getfield(L, -1, "_NAME") != LUA_TNIL) in ll_module()
680 lua_getfield(L, LUA_REGISTRYINDEX, "LUA_NOENV"); in noenv()
H A Dloslib.c197 res = (lua_getfield(L, -1, key) == LUA_TNIL) ? -1 : lua_toboolean(L, -1); in getboolfield()
205 lua_getfield(L, -1, key); in getfield()
H A Dliolib.c206 lua_getfield(L, LUA_REGISTRYINDEX, IO_OUTPUT); /* use standard output */ in io_close()
285 lua_getfield(L, LUA_REGISTRYINDEX, findex); in getiofile()
305 lua_getfield(L, LUA_REGISTRYINDEX, f); in g_iofile()
343 lua_getfield(L, LUA_REGISTRYINDEX, IO_INPUT); /* get default input */ in io_lines()
H A Dlauxlib.c82 lua_getfield(L, LUA_REGISTRYINDEX, "_LOADED"); in pushglobalfuncname()
843 if (lua_getfield(L, -1, modname) != LUA_TTABLE) { /* no _LOADED[modname]? */ in luaL_pushmodule()
895 if (lua_getfield(L, idx, fname) == LUA_TTABLE) in luaL_getsubtable()
917 lua_getfield(L, -1, modname); /* _LOADED[modname] */ in luaL_requiref()
H A Dlauxlib.h142 #define luaL_getmetatable(L,n) (lua_getfield(L, LUA_REGISTRYINDEX, (n)))
H A Dltablib.c358 lua_getfield(L, -1, "unpack"); in luaopen_table()
H A Dlua.h276 LUA_API int (lua_getfield) (lua_State *L, int idx, const char *k); variable
H A Dlapi.c613 LUA_API int lua_getfield (lua_State *L, int idx, const char *k) { in lua_getfield() function
/minix3/libexec/httpd/
H A Dlua-bozo.c205 lua_getfield(map->L, -1, "preload"); in bozo_add_lua_map()