Home
last modified time | relevance | path

Searched refs:getkeys_proc (Results 1 – 4 of 4) sorted by relevance

/f-stack/app/redis-5.0.5/src/
H A Ddb.c1243 } else if (!(cmd->flags & CMD_MODULE) && cmd->getkeys_proc) { in getKeysFromCommand()
1244 return cmd->getkeys_proc(cmd,argv,argc,numkeys); in getKeysFromCommand()
H A Dmodule.c537 RedisModuleCommandProxy *cp = (void*)(unsigned long)c->cmd->getkeys_proc; in RedisModuleCommandDispatcher()
573 RedisModuleCommandProxy *cp = (void*)(unsigned long)cmd->getkeys_proc; in moduleGetCommandKeysViaAPI()
728 cp->rediscmd->getkeys_proc = (redisGetKeysProc*)(unsigned long)cp; in RM_CreateCommand()
5125 (void*)(unsigned long)cmd->getkeys_proc; in moduleUnregisterCommands()
H A Dserver.c2601 !(c->cmd->getkeys_proc == NULL && c->cmd->firstkey == 0 && in processCommand()
3022 if ((cmd->getkeys_proc && !(cmd->flags & CMD_MODULE)) || in addReplyCommand()
3072 } else if (cmd->getkeys_proc == NULL && cmd->firstkey == 0) { in commandCommand()
H A Dserver.h1307 redisGetKeysProc *getkeys_proc; member