Home
last modified time | relevance | path

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

/f-stack/app/redis-5.0.5/src/
H A Dredis-benchmark.c346 int len = redisFormatCommand(&buf, "AUTH %s", config.auth); in createClient()
728 len = redisFormatCommand(&cmd,"PING"); in main()
764 len = redisFormatCommand(&cmd,"LPOP mylist"); in main()
770 len = redisFormatCommand(&cmd,"RPOP mylist"); in main()
776 len = redisFormatCommand(&cmd, in main()
783 len = redisFormatCommand(&cmd, in main()
790 len = redisFormatCommand(&cmd,"SPOP myset"); in main()
807 len = redisFormatCommand(&cmd,"LRANGE mylist 0 99"); in main()
813 len = redisFormatCommand(&cmd,"LRANGE mylist 0 299"); in main()
819 len = redisFormatCommand(&cmd,"LRANGE mylist 0 449"); in main()
[all …]
/f-stack/app/redis-5.0.5/deps/hiredis/
H A Dtest.c130 len = redisFormatCommand(&cmd,"SET foo bar"); in test_format_commands()
136 len = redisFormatCommand(&cmd,"SET %s %s","foo","bar"); in test_format_commands()
142 len = redisFormatCommand(&cmd,"SET %s %s","foo",""); in test_format_commands()
148 len = redisFormatCommand(&cmd,"SET %s %s","","foo"); in test_format_commands()
154 len = redisFormatCommand(&cmd,"SET %b %b","foo",(size_t)3,"b\0r",(size_t)3); in test_format_commands()
160 len = redisFormatCommand(&cmd,"SET %b %b","foo",(size_t)3,"",(size_t)0); in test_format_commands()
166 len = redisFormatCommand(&cmd,"SET %% %%"); in test_format_commands()
177 len = redisFormatCommand(&cmd,"key:%08" fmt " str:%s", value, "hello"); \ in test_format_commands()
186 len = redisFormatCommand(&cmd,"key:%08.3f str:%s", value, "hello"); \ in test_format_commands()
206 len = redisFormatCommand(&cmd,"key:%08p %b",(void*)1234,"foo",(size_t)3); in test_format_commands()
[all …]
H A Dhiredis.h128 int redisFormatCommand(char **target, const char *format, ...);
H A Dhiredis.c456 int redisFormatCommand(char **target, const char *format, ...) { in redisFormatCommand() function