Searched refs:dictid (Results 1 – 4 of 4) sorted by relevance
| /f-stack/app/redis-5.0.5/src/ |
| H A D | replication.c | 174 void replicationFeedSlaves(list *slaves, int dictid, robj **argv, int argc) { in replicationFeedSlaves() argument 195 if (server.slaveseldb != dictid) { in replicationFeedSlaves() 199 if (dictid >= 0 && dictid < PROTO_SHARED_SELECT_CMDS) { in replicationFeedSlaves() 200 selectcmd = shared.select[dictid]; in replicationFeedSlaves() 204 dictid_len = ll2string(llstr,sizeof(llstr),dictid); in replicationFeedSlaves() 222 if (dictid < 0 || dictid >= PROTO_SHARED_SELECT_CMDS) in replicationFeedSlaves() 225 server.slaveseldb = dictid; in replicationFeedSlaves() 304 void replicationFeedMonitors(client *c, list *monitors, int dictid, robj **argv, int argc) { in replicationFeedMonitors() argument 315 cmdrepr = sdscatprintf(cmdrepr,"[%d lua] ",dictid); in replicationFeedMonitors() 317 cmdrepr = sdscatprintf(cmdrepr,"[%d unix:%s] ",dictid,server.unixsocket); in replicationFeedMonitors() [all …]
|
| H A D | aof.c | 580 void feedAppendOnlyFile(struct redisCommand *cmd, int dictid, robj **argv, int argc) { in feedAppendOnlyFile() argument 586 if (dictid != server.aof_selected_db) { in feedAppendOnlyFile() 589 snprintf(seldb,sizeof(seldb),"%d",dictid); in feedAppendOnlyFile() 592 server.aof_selected_db = dictid; in feedAppendOnlyFile()
|
| H A D | server.h | 1583 void replicationFeedSlaves(list *slaves, int dictid, robj **argv, int argc); 1585 void replicationFeedMonitors(client *c, list *monitors, int dictid, robj **argv, int argc); 1628 void feedAppendOnlyFile(struct redisCommand *cmd, int dictid, robj **argv, int argc);
|
| /f-stack/freebsd/contrib/zlib/ |
| H A D | inflate.c | 1320 unsigned long dictid; local 1331 dictid = adler32(0L, Z_NULL, 0); 1332 dictid = adler32(dictid, dictionary, dictLength); 1333 if (dictid != state->check)
|