Home
last modified time | relevance | path

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

/redis-3.2.3/src/
H A Dscripting.c167 lua_pushstring(lua,"ok"); in redisProtocolToLuaType_Status()
177 lua_pushstring(lua,"err"); in redisProtocolToLuaType_Error()
218 lua_pushstring(lua,"err"); in luaPushError()
224 lua_pushstring(lua, msg); in luaPushError()
237 lua_pushstring(lua,"err"); in luaRaiseError()
251 lua_pushstring(lua,"sort"); in luaSortArray()
658 lua_pushstring(lua,digest); in luaRedisSha1hexCommand()
676 lua_pushstring(lua, field); in luaRedisReturnSingleFieldTable()
811 lua_pushstring(lua, libname); in luaLoadLib()
919 lua_pushstring(lua,"call"); in scriptingInit()
[all …]
/redis-3.2.3/deps/lua/src/
H A Dloadlib.c70 if (lib == NULL) lua_pushstring(L, dlerror()); in ll_load()
77 if (f == NULL) lua_pushstring(L, dlerror()); in ll_sym()
117 lua_pushstring(L, buffer); in pusherror()
165 lua_pushstring(L, err_str); in pusherror()
207 lua_pushstring(L, errorfromcode(ret)); in ll_load()
318 lua_pushstring(L, (stat == ERRLIB) ? LIB_FAIL : "init"); in ll_loadlib()
472 lua_pushstring(L, name); in ll_require()
483 lua_pushstring(L, name); /* pass name as argument to module */ in ll_require()
533 lua_pushstring(L, modname); in modinit()
596 lua_pushstring(L, def); /* use default */ in setpath()
H A Dldblib.c65 lua_pushstring(L, v); in settabss()
154 lua_pushstring(L, name); in db_getlocal()
174 lua_pushstring(L, lua_setlocal(L1, &ar, luaL_checkint(L, arg+2))); in db_setlocal()
186 lua_pushstring(L, name); in auxupvalue()
215 lua_pushstring(L, hooknames[(int)ar->event]); in hookf()
296 lua_pushstring(L, unmakemask(mask, buff)); in db_gethook()
H A Dloslib.c63 lua_pushstring(L, buff); in os_tmpname()
69 lua_pushstring(L, getenv(luaL_checkstring(L, 1))); /* if NULL push nil */ in os_getenv()
211 lua_pushstring(L, setlocale(cat[op], l)); in os_setlocale()
H A Dlua.c124 lua_pushstring(L, argv[i]); in getargs()
127 lua_pushstring(L, argv[i]); in getargs()
148 lua_pushstring(L, name); in dolibrary()
190 lua_pushstring(L, b); in pushline()
H A Dlinit.c34 lua_pushstring(L, lib->name); in luaL_openlibs()
H A Dlbaselib.c221 lua_pushstring(L, luaL_typename(L, 1)); in luaB_type()
402 lua_pushstring(L, lua_tostring(L, 1)); in luaB_tostring()
408 lua_pushstring(L, (lua_toboolean(L, 1) ? "true" : "false")); in luaB_tostring()
513 lua_pushstring(L, statnames[costatus(L, co)]); in luaB_costatus()
H A Dlauxlib.h163 (lua_pushstring(L, "unlocked references are obsolete"), lua_error(L), 0))
H A Dlua.h164 LUA_API void (lua_pushstring) (lua_State *L, const char *s); variable
H A Dlauxlib.c206 lua_pushstring(L, event); in luaL_getmetafield()
H A Dlua_cjson.c259 lua_pushstring(l, options[*setting]); in json_enum_option()
H A Dlapi.c454 LUA_API void lua_pushstring (lua_State *L, const char *s) { in lua_pushstring() function