Lines Matching refs:sds

53 void ldbLog(sds entry);
55 sds ldbCatStackValue(sds s, lua_State *lua, int idx);
71 sds *src; /* Lua script source code split by line. */
74 sds cbuf; /* Debugger client command buffer. */
222 sds msg = sdscatprintf(sdsempty(), "%s: %d: %s", in luaPushError()
299 sds err = sdsnew(lua_tostring(lua,-1)); in luaReplyToRedisReply()
312 sds ok = sdsnew(lua_tostring(lua,-1)); in luaReplyToRedisReply()
352 sds reply; in luaRedisGenericCommand()
417 sds s = cached_objects[j]->ptr; in luaRedisGenericCommand()
453 sds cmdlog = sdsnew("<redis>"); in luaRedisGenericCommand()
506 sds aof_write_err = sdscatfmt(sdsempty(), in luaRedisGenericCommand()
630 sds s = o->ptr; in luaRedisGenericCommand()
758 sds log = sdscatprintf(sdsempty(),"<debug> line %d: ", ldb.currentline); in luaRedisDebugCommand()
796 sds log; in luaLogCommand()
876 sds code = sdsempty(); in scriptingEnableGlobalsProtection()
1180 sds luaCreateFunction(client *c, lua_State *lua, robj *body) { in luaCreateFunction()
1188 sds sha = sdsnewlen(funcname+2,40); in luaCreateFunction()
1194 sds funcdef = sdsempty(); in luaCreateFunction()
1517 sds sha = luaCreateFunction(c,server.lua,c->argv[2]); in scriptCommand()
1602 void ldbLog(sds entry) { in ldbLog()
1610 void ldbLogWithMaxLen(sds entry) { in ldbLogWithMaxLen()
1629 sds proto = sdsempty(); in ldbSendLogs()
1699 sds srcstring = sdsdup(c->argv[1]->ptr); in ldbStartSession()
1834 sds *ldbReplParseCommand(int *argcp) { in ldbReplParseCommand()
1835 sds *argv = NULL; in ldbReplParseCommand()
1841 sds copy = sdsdup(ldb.cbuf); in ldbReplParseCommand()
1857 argv = zmalloc(sizeof(sds)*(*argcp)); in ldbReplParseCommand()
1895 sds thisline = sdscatprintf(sdsempty(),"%s%-3d %s", prefix, lnum, line); in ldbLogSourceLine()
1921 sds ldbCatStackValueRec(sds s, lua_State *lua, int idx, int level) { in ldbCatStackValueRec()
1951 sds repr1 = sdsempty(); in ldbCatStackValueRec()
1952 sds repr2 = sdsempty(); in ldbCatStackValueRec()
2006 sds ldbCatStackValue(sds s, lua_State *lua, int idx) { in ldbCatStackValue()
2014 sds s = sdsnew(prefix); in ldbLogStackValue()
2019 char *ldbRedisProtocolToHuman_Int(sds *o, char *reply);
2020 char *ldbRedisProtocolToHuman_Bulk(sds *o, char *reply);
2021 char *ldbRedisProtocolToHuman_Status(sds *o, char *reply);
2022 char *ldbRedisProtocolToHuman_MultiBulk(sds *o, char *reply);
2029 char *ldbRedisProtocolToHuman(sds *o, char *reply) { in ldbRedisProtocolToHuman()
2044 char *ldbRedisProtocolToHuman_Int(sds *o, char *reply) { in ldbRedisProtocolToHuman_Int()
2050 char *ldbRedisProtocolToHuman_Bulk(sds *o, char *reply) { in ldbRedisProtocolToHuman_Bulk()
2064 char *ldbRedisProtocolToHuman_Status(sds *o, char *reply) { in ldbRedisProtocolToHuman_Status()
2071 char *ldbRedisProtocolToHuman_MultiBulk(sds *o, char *reply) { in ldbRedisProtocolToHuman_MultiBulk()
2095 sds log = sdsnew("<reply> "); in ldbLogRedisReply()
2145 sds prefix = sdscatprintf(sdsempty(),"<value> %s = ",name); in ldbPrintAll()
2160 void ldbBreak(sds *argv, int argc) { in ldbBreak()
2204 void ldbEval(lua_State *lua, sds *argv, int argc) { in ldbEval()
2206 sds code = sdsjoinsds(argv+1,argc-1," ",1); in ldbEval()
2207 sds expr = sdscatsds(sdsnew("return "),code); in ldbEval()
2237 void ldbRedis(lua_State *lua, sds *argv, int argc) { in ldbRedis()
2276 void ldbMaxlen(sds *argv, int argc) { in ldbMaxlen()
2294 sds *argv; in ldbRepl()