Home
last modified time | relevance | path

Searched refs:lua_pushfstring (Results 1 – 10 of 10) sorted by relevance

/redis-3.2.3/deps/lua/src/
H A Dldblib.c111 lua_pushfstring(L, ">%s", options); in db_getinfo()
354 lua_pushfstring(L, "%s:", ar.short_src); in db_errorfb()
356 lua_pushfstring(L, "%d:", ar.currentline); in db_errorfb()
358 lua_pushfstring(L, " in function " LUA_QS, ar.name); in db_errorfb()
361 lua_pushfstring(L, " in main chunk"); in db_errorfb()
365 lua_pushfstring(L, " in function <%s:%d>", in db_errorfb()
H A Dloadlib.c119 lua_pushfstring(L, "system error %d\n", error); in pusherror()
215 lua_pushfstring(L, "symbol " LUA_QS " not found", sym); in ll_sym()
264 lua_pushfstring(L, "%s%s", LIBPREFIX, path); in ll_register()
274 lua_pushfstring(L, "%s%s", LIBPREFIX, path); in ll_register()
366 lua_pushfstring(L, "\n\tno file " LUA_QS, filename); in findfile()
396 funcname = lua_pushfstring(L, POF"%s", funcname); in mkfuncname()
427 lua_pushfstring(L, "\n\tno module " LUA_QS " in file " LUA_QS, in loader_Croot()
442 lua_pushfstring(L, "\n\tno field package.preload['%s']", name); in loader_preload()
H A Dliolib.c39 lua_pushfstring(L, "%s: %s", filename, strerror(en)); in pushresult()
41 lua_pushfstring(L, "%s", strerror(en)); in pushresult()
49 lua_pushfstring(L, "%s: %s", filename, strerror(errno)); in fileerror()
156 lua_pushfstring(L, "file (%p)", f); in io_tostring()
H A Dlauxlib.c62 const char *msg = lua_pushfstring(L, "%s expected, got %s", in luaL_typerror()
78 lua_pushfstring(L, "%s:%d: ", ar.short_src, ar.currentline); in luaL_where()
108 lua_pushfstring(L, "invalid option " LUA_QS, name)); in luaL_checkoption()
546 lua_pushfstring(L, "cannot %s %s: %s", what, filename, serr); in errfile()
563 lua_pushfstring(L, "@%s", filename); in luaL_loadfile()
H A Dlua.c188 lua_pushfstring(L, "return %s", b+1); /* change it to `return' */ in pushline()
227 l_message(progname, lua_pushfstring(L, in dotty()
H A Dlbaselib.c414 lua_pushfstring(L, "%s: %p", luaL_typename(L, 1), lua_topointer(L, 1)); in luaB_tostring()
523 lua_pushfstring(L, "cannot resume %s coroutine", statnames[status]); in auxresume()
H A Dloslib.c31 lua_pushfstring(L, "%s: %s", filename, strerror(en)); in os_pushresult()
H A Dlua_struct.c162 const char *msg = lua_pushfstring(L, "invalid format option '%c'", opt); in controloptions()
H A Dlua.h167 LUA_API const char *(lua_pushfstring) (lua_State *L, const char *fmt, ...); variable
H A Dlapi.c473 LUA_API const char *lua_pushfstring (lua_State *L, const char *fmt, ...) { in lua_pushfstring() function