Home
last modified time | relevance | path

Searched refs:redisGetReply (Results 1 – 7 of 7) sorted by relevance

/f-stack/app/redis-5.0.5/deps/hiredis/
H A Dtest.c259 assert(redisGetReply(c, (void*)&reply) == REDIS_OK); in test_append_formatted_commands()
537 redisGetReply(c,&_reply) == REDIS_ERR); in test_blocking_io_errors()
556 test_cond(redisGetReply(c,&_reply) == REDIS_ERR && in test_blocking_io_errors()
625 assert(redisGetReply(c, (void*)&replies[i]) == REDIS_OK); in test_throughput()
638 assert(redisGetReply(c, (void*)&replies[i]) == REDIS_OK); in test_throughput()
H A Dhiredis.h197 int redisGetReply(redisContext *c, void **reply);
H A DREADME.md179 After the command is put in the output buffer, `redisGetReply` is called. This function has the
189 The function `redisGetReply` is exported as part of the Hiredis API and can be used when a reply
197 After calling either function one or more times, `redisGetReply` can be used to receive the
208 redisGetReply(context,&reply); // reply for SET
210 redisGetReply(context,&reply); // reply for GET
217 while(redisGetReply(context,&reply) == REDIS_OK) {
H A Dhiredis.c870 int redisGetReply(redisContext *c, void **reply) { in redisGetReply() function
995 if (redisGetReply(c,&reply) != REDIS_OK) in __redisBlockForReply()
H A Dasync.c417 while((status = redisGetReply(c,&reply)) == REDIS_OK) { in redisProcessCallbacks()
/f-stack/app/redis-5.0.5/src/
H A Dredis-cli.c1007 if (redisGetReply(context,&_reply) != REDIS_OK) { in cliReadReply()
2771 if (redisGetReply(node->context, &_reply) != REDIS_OK) { in clusterManagerAddSlots()
2951 int success = (redisGetReply(source->context, &_reply) == REDIS_OK); in clusterManagerMigrateKeysInReply()
5645 int status = redisGetReply(n->context, (void **)(&reply)); in clusterManagerCommandCall()
6304 if(redisGetReply(context, (void**)&reply)!=REDIS_OK) { in getKeyTypes()
6365 if(redisGetReply(context, (void**)&reply)!=REDIS_OK) { in getKeySizes()
6531 if(redisGetReply(context, (void**)&reply)!=REDIS_OK) { in getKeyFreqs()
6876 redisGetReply(context, (void**)&reply); in LRUTestMode()
6884 if (redisGetReply(context, (void**)&reply) == REDIS_OK) { in LRUTestMode()
H A Dredis-benchmark.c206 if (redisGetReply(c->context,&reply) != REDIS_OK) { in readHandler()