Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/lua/src/
H A Dloadlib.c280 lua_getfield(L, LUA_REGISTRYINDEX, "LUA_NOENV"); in noenv()
320 lua_getfield(L, -1, path); in checkclib()
476 lua_getfield(L, lua_upvalueindex(1), pname); in findfile()
562 lua_getfield(L, LUA_REGISTRYINDEX, LUA_PRELOAD_TABLE); in searcher_preload()
563 if (lua_getfield(L, -1, name) == LUA_TNIL) /* not found? */ in searcher_preload()
574 if (lua_getfield(L, lua_upvalueindex(1), "searchers") != LUA_TTABLE) in findloader()
600 lua_getfield(L, LUA_REGISTRYINDEX, LUA_LOADED_TABLE); in ll_require()
601 lua_getfield(L, 2, name); /* LOADED[name] */ in ll_require()
612 if (lua_getfield(L, 2, name) == LUA_TNIL) { /* module set no value? */ in ll_require()
678 if (lua_getfield(L, -1, "_NAME") != LUA_TNIL) in ll_module()
H A Dliolib.c217 lua_getfield(L, LUA_REGISTRYINDEX, IO_OUTPUT); /* use standard output */ in io_close()
295 lua_getfield(L, LUA_REGISTRYINDEX, findex); in getiofile()
315 lua_getfield(L, LUA_REGISTRYINDEX, f); in g_iofile()
360 lua_getfield(L, LUA_REGISTRYINDEX, IO_INPUT); /* get default input */ in io_lines()
H A Dloslib.c228 res = (lua_getfield(L, -1, key) == LUA_TNIL) ? -1 : lua_toboolean(L, -1); in getboolfield()
241 int t = lua_getfield(L, -1, key); /* get field and its type */ in getfield()
H A Dlauxlib.c76 lua_getfield(L, LUA_REGISTRYINDEX, LUA_LOADED_TABLE); in pushglobalfuncname()
900 if (lua_getfield(L, -1, modname) != LUA_TTABLE) { /* no LOADED[modname]? */ in luaL_pushmodule()
952 if (lua_getfield(L, idx, fname) == LUA_TTABLE) in luaL_getsubtable()
974 lua_getfield(L, -1, modname); /* LOADED[modname] */ in luaL_requiref()
H A Dlauxlib.h135 #define luaL_getmetatable(L,n) (lua_getfield(L, LUA_REGISTRYINDEX, (n)))
H A Dltablib.c445 lua_getfield(L, -1, "unpack"); in luaopen_table()
H A Dlua.h243 LUA_API int (lua_getfield) (lua_State *L, int idx, const char *k); variable
H A Dlapi.c622 LUA_API int lua_getfield (lua_State *L, int idx, const char *k) { in lua_getfield() function
/freebsd-12.1/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dzcp.c802 lua_getfield(state, LUA_REGISTRYINDEX, ZCP_RUN_INFO_KEY); in zcp_lua_counthook()
1165 lua_getfield(state, LUA_REGISTRYINDEX, ZCP_RUN_INFO_KEY); in zcp_run_info()
1323 lua_getfield(state, 1, kwargs[i].za_name); in zcp_parse_table_args()
/freebsd-12.1/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/lua/
H A Dlauxlib.h119 #define luaL_getmetatable(L,n) (lua_getfield(L, LUA_REGISTRYINDEX, (n)))
H A Dltablib.c279 lua_getfield(L, -1, "unpack"); in luaopen_table()
H A Dlauxlib.c670 lua_getfield(L, -1, modname); /* get _LOADED[modname] */ in luaL_pushmodule()
724 lua_getfield(L, idx, fname); in luaL_getsubtable()
H A Dlua.h224 LUA_API void (lua_getfield) (lua_State *L, int idx, const char *k); variable
H A Dlapi.c627 LUA_API void lua_getfield (lua_State *L, int idx, const char *k) { in lua_getfield() function
/freebsd-12.1/contrib/libucl/lua/
H A Dlua_ucl.c243 lua_getfield (L, LUA_REGISTRYINDEX, "ucl.null"); in ucl_object_lua_push_scalar()