Searched refs:lua_getfield (Results 1 – 11 of 11) sorted by relevance
/external/lua/src/ |
D | loadlib.c | 285 lua_getfield(L, LUA_REGISTRYINDEX, "LUA_NOENV"); in noenv() 335 lua_getfield(L, LUA_REGISTRYINDEX, CLIBS); in checkclib() 336 lua_getfield(L, -1, path); in checkclib() 348 lua_getfield(L, LUA_REGISTRYINDEX, CLIBS); in addtoclib() 524 lua_getfield(L, lua_upvalueindex(1), pname); in findfile() 610 lua_getfield(L, LUA_REGISTRYINDEX, LUA_PRELOAD_TABLE); in searcher_preload() 611 if (lua_getfield(L, -1, name) == LUA_TNIL) { /* not found? */ in searcher_preload() 626 if (lua_getfield(L, lua_upvalueindex(1), "searchers") != LUA_TTABLE) in findloader() 657 lua_getfield(L, LUA_REGISTRYINDEX, LUA_LOADED_TABLE); in ll_require() 658 lua_getfield(L, 2, name); /* LOADED[name] */ in ll_require() [all …]
|
D | liolib.c | 224 lua_getfield(L, LUA_REGISTRYINDEX, IO_OUTPUT); /* use default output */ in io_close() 304 lua_getfield(L, LUA_REGISTRYINDEX, findex); in getiofile() 324 lua_getfield(L, LUA_REGISTRYINDEX, f); in g_iofile() 384 lua_getfield(L, LUA_REGISTRYINDEX, IO_INPUT); /* get default input */ in io_lines()
|
D | loslib.c | 245 res = (lua_getfield(L, -1, key) == LUA_TNIL) ? -1 : lua_toboolean(L, -1); in getboolfield() 253 int t = lua_getfield(L, -1, key); /* get field and its type */ in getfield()
|
D | ldblib.c | 317 lua_getfield(L, LUA_REGISTRYINDEX, HOOKKEY); in hookf() 399 lua_getfield(L, LUA_REGISTRYINDEX, HOOKKEY); in db_gethook()
|
D | lauxlib.c | 82 lua_getfield(L, LUA_REGISTRYINDEX, LUA_LOADED_TABLE); in pushglobalfuncname() 926 if (lua_getfield(L, idx, fname) == LUA_TTABLE) in luaL_getsubtable() 948 lua_getfield(L, -1, modname); /* LOADED[modname] */ in luaL_requiref()
|
D | lauxlib.h | 149 #define luaL_getmetatable(L,n) (lua_getfield(L, LUA_REGISTRYINDEX, (n)))
|
D | lua.h | 252 LUA_API int (lua_getfield) (lua_State *L, int idx, const char *k); variable
|
D | lapi.c | 655 LUA_API int lua_getfield (lua_State *L, int idx, const char *k) { in lua_getfield() function
|
/external/llvm-project/lldb/source/Plugins/ScriptInterpreter/Lua/ |
D | Lua.cpp | 43 lua_getfield(L, -1, "stdout"); in lldb_print() 44 lua_getfield(L, -1, "write"); in lldb_print() 143 lua_getfield(m_lua_state, -1, "stdout"); in ChangeIO() 154 lua_getfield(m_lua_state, -1, "stderr"); in ChangeIO()
|
/external/bcc/src/lua/src/ |
D | main.c | 76 lua_getfield(L, -1, "traceback"); in traceback()
|
/external/rust/crates/grpcio-sys/grpc/third_party/upb/upb/bindings/lua/ |
D | upb.c | 119 lua_getfield(L, -2, "__index"); in lupb_register_type()
|