Searched refs:lua_getfield (Results 1 – 9 of 9) sorted by relevance
| /minix3/external/mit/lua/dist/src/ |
| H A D | loadlib.c | 283 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 D | loslib.c | 197 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 D | liolib.c | 206 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 D | lauxlib.c | 82 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 D | lauxlib.h | 142 #define luaL_getmetatable(L,n) (lua_getfield(L, LUA_REGISTRYINDEX, (n)))
|
| H A D | ltablib.c | 358 lua_getfield(L, -1, "unpack"); in luaopen_table()
|
| H A D | lua.h | 276 LUA_API int (lua_getfield) (lua_State *L, int idx, const char *k); variable
|
| H A D | lapi.c | 613 LUA_API int lua_getfield (lua_State *L, int idx, const char *k) { in lua_getfield() function
|
| /minix3/libexec/httpd/ |
| H A D | lua-bozo.c | 205 lua_getfield(map->L, -1, "preload"); in bozo_add_lua_map()
|