Home
last modified time | relevance | path

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

/redis-3.2.3/deps/lua/src/
H A Dloadlib.c355 lua_getfield(L, LUA_ENVIRONINDEX, pname); in findfile()
437 lua_getfield(L, LUA_ENVIRONINDEX, "preload"); in loader_preload()
440 lua_getfield(L, -1, name); in loader_preload()
455 lua_getfield(L, LUA_REGISTRYINDEX, "_LOADED"); in ll_require()
456 lua_getfield(L, 2, name); in ll_require()
463 lua_getfield(L, LUA_ENVIRONINDEX, "loaders"); in ll_require()
487 lua_getfield(L, 2, name); in ll_require()
547 lua_getfield(L, LUA_REGISTRYINDEX, "_LOADED"); in ll_module()
548 lua_getfield(L, loaded, modname); /* get _LOADED[modname] */ in ll_module()
558 lua_getfield(L, -1, "_NAME"); in ll_module()
[all …]
H A Dlua.c79 lua_getfield(L, LUA_GLOBALSINDEX, "debug"); in traceback()
84 lua_getfield(L, -1, "traceback"); in traceback()
155 lua_getfield(L, LUA_GLOBALSINDEX, firstline ? "_PROMPT" : "_PROMPT2"); in get_prompt()
H A Dloslib.c102 lua_getfield(L, -1, key); in getboolfield()
111 lua_getfield(L, -1, key); in getfield()
H A Dlauxlib.c113 lua_getfield(L, LUA_REGISTRYINDEX, tname); /* get registry.name */ in luaL_newmetatable()
128 lua_getfield(L, LUA_REGISTRYINDEX, tname); /* get correct metatable */ in luaL_checkudata()
248 lua_getfield(L, -1, libname); /* get _LOADED[libname] */ in luaI_openlib()
288 lua_getfield(L, LUA_REGISTRYINDEX, "LUA_SIZES"); in getsizes()
H A Dliolib.c61 lua_getfield(L, LUA_REGISTRYINDEX, LUA_FILEHANDLE); in io_type()
129 lua_getfield(L, -1, "__close"); in aux_close()
550 lua_getfield(L, -1, "popen"); in luaopen_io()
H A Dlua.h178 LUA_API void (lua_getfield) (lua_State *L, int idx, const char *k); variable
277 #define lua_getglobal(L,s) lua_getfield(L, LUA_GLOBALSINDEX, (s))
H A Dlmathlib.c258 lua_getfield(L, -1, "fmod"); in luaopen_math()
H A Dlauxlib.h117 #define luaL_getmetatable(L,n) (lua_getfield(L, LUA_REGISTRYINDEX, (n)))
H A Dlua_cmsgpack.c932 lua_getfield(L, -1, cmds[i].name); in luaopen_cmsgpack_safe()
H A Dlstrlib.c865 lua_getfield(L, -1, "gmatch"); in luaopen_string()
H A Dlua_cjson.c1396 lua_getfield(l, -1, func[i]); in lua_cjson_safe_new()
H A Dlapi.c544 LUA_API void lua_getfield (lua_State *L, int idx, const char *k) { in lua_getfield() function