Home
last modified time | relevance | path

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

/f-stack/app/redis-5.0.5/deps/hiredis/
H A Dtest.c310 test_cond(ret == REDIS_OK && reply == (void*)REDIS_REPLY_STATUS); in test_reply_reader()
321 test_cond(ret == REDIS_OK && reply == (void*)REDIS_REPLY_STATUS); in test_reply_reader()
394 test_cond(reply->type == REDIS_REPLY_STATUS && in test_blocking_connection()
400 test_cond (reply->type == REDIS_REPLY_STATUS && in test_blocking_connection()
457 reply->element[1]->type == REDIS_REPLY_STATUS && in test_blocking_connection()
496 … test_cond(reply != NULL && reply->type == REDIS_REPLY_STATUS && strcmp(reply->str, "PONG") == 0); in test_blocking_connection_timeouts()
504 … test_cond(reply != NULL && reply->type == REDIS_REPLY_STATUS && strcmp(reply->str, "PONG") == 0); in test_blocking_connection_timeouts()
600 assert(replies[i] != NULL && replies[i]->type == REDIS_REPLY_STATUS); in test_throughput()
626 assert(replies[i] != NULL && replies[i]->type == REDIS_REPLY_STATUS); in test_throughput()
H A Dread.h54 #define REDIS_REPLY_STATUS 5 macro
H A Dread.c379 cur->type = REDIS_REPLY_STATUS; in processItem()
403 case REDIS_REPLY_STATUS: in processItem()
H A Dhiredis.c93 case REDIS_REPLY_STATUS: in freeReplyObject()
117 task->type == REDIS_REPLY_STATUS || in createStringObject()
H A DREADME.md113 * **`REDIS_REPLY_STATUS`**:
118 … command replied with an error. The error string can be accessed identical to `REDIS_REPLY_STATUS`.
374 the response of type `REDIS_REPLY_STATUS` then the `str` field of `redisReply`
/f-stack/app/redis-5.0.5/src/
H A Dredis-cli.c809 case REDIS_REPLY_STATUS: in cliFormatReplyTTY()
926 case REDIS_REPLY_STATUS: in cliFormatReplyRaw()
928 if (r->type == REDIS_REPLY_STATUS && config.eval_ldb) { in cliFormatReplyRaw()
974 case REDIS_REPLY_STATUS: in cliFormatReplyCSV()
6308 } else if(reply->type != REDIS_REPLY_STATUS) { in getKeyTypes()
H A Dsentinel.c2366 if (r->type == REDIS_REPLY_STATUS || in sentinelPingReplyCallback()