Home
last modified time | relevance | path

Searched refs:luaL_loadbuffer (Results 1 – 7 of 7) sorted by relevance

/redis-3.2.3/deps/lua/src/
H A Dlua.c141 int status = luaL_loadbuffer(L, s, strlen(s), name) || docall(L, 0, 1); in dostring()
202 status = luaL_loadbuffer(L, lua_tostring(L, 1), lua_strlen(L, 1), "=stdin"); in loadline()
H A Dlauxlib.h78 LUALIB_API int (luaL_loadbuffer) (lua_State *L, const char *buff, size_t sz, variable
H A Dlauxlib.c609 LUALIB_API int luaL_loadbuffer (lua_State *L, const char *buff, size_t size, in luaL_loadbuffer() function
619 return luaL_loadbuffer(L, s, strlen(s), s);
H A Dldblib.c309 if (luaL_loadbuffer(L, buffer, strlen(buffer), "=(debug command)") || in db_debug()
H A Dlbaselib.c281 return load_aux(L, luaL_loadbuffer(L, s, l, chunkname)); in luaB_loadstring()
/redis-3.2.3/src/
H A Dscripting.c880 luaL_loadbuffer(lua,code,sdslen(code),"@enable_strict_lua"); in scriptingEnableGlobalsProtection()
1022 luaL_loadbuffer(lua,compare_func,strlen(compare_func),"@cmp_func_def"); in scriptingInit()
1043 luaL_loadbuffer(lua,errh_func,strlen(errh_func),"@err_handler_def"); in scriptingInit()
1154 if (luaL_loadbuffer(lua,funcdef,sdslen(funcdef),"@user_script")) { in luaCreateFunction()
2143 if (luaL_loadbuffer(lua,expr,sdslen(expr),"@ldb_eval")) { in ldbEval()
2146 if (luaL_loadbuffer(lua,code,sdslen(code),"@ldb_eval")) { in ldbEval()
/redis-3.2.3/deps/lua/
H A DHISTORY51 + chunks are loaded by using lua_load; new luaL_loadfile and luaL_loadbuffer.