Searched refs:luaL_loadbuffer (Results 1 – 7 of 7) sorted by relevance
| /redis-3.2.3/deps/lua/src/ |
| H A D | lua.c | 141 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 D | lauxlib.h | 78 LUALIB_API int (luaL_loadbuffer) (lua_State *L, const char *buff, size_t sz, variable
|
| H A D | lauxlib.c | 609 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 D | ldblib.c | 309 if (luaL_loadbuffer(L, buffer, strlen(buffer), "=(debug command)") || in db_debug()
|
| H A D | lbaselib.c | 281 return load_aux(L, luaL_loadbuffer(L, s, l, chunkname)); in luaB_loadstring()
|
| /redis-3.2.3/src/ |
| H A D | scripting.c | 880 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 D | HISTORY | 51 + chunks are loaded by using lua_load; new luaL_loadfile and luaL_loadbuffer.
|