Lines Matching refs:repeat
85 long repeat; member
830 static int cliSendCommand(int argc, char **argv, int repeat) { in cliSendCommand() argument
891 while(repeat--) { in cliSendCommand()
992 config.repeat = strtoll(argv[++i],NULL,10); in parseOptions()
1174 static int issueCommandRepeat(int argc, char **argv, long repeat) { in issueCommandRepeat() argument
1177 if (cliSendCommand(argc,argv,repeat) != REDIS_OK) { in issueCommandRepeat()
1182 if (cliSendCommand(argc,argv,repeat) != REDIS_OK) { in issueCommandRepeat()
1198 return issueCommandRepeat(argc, argv, config.repeat); in issueCommand()
1322 int repeat, skipargs = 0; in repl() local
1324 repeat = atoi(argv[0]); in repl()
1325 if (argc > 1 && repeat) { in repl()
1328 repeat = 1; in repl()
1331 issueCommandRepeat(argc-skipargs, argv+skipargs, repeat); in repl()
2552 config.repeat = 1; in main()