Home
last modified time | relevance | path

Searched refs:REDIS_REPLY_ARRAY (Results 1 – 9 of 9) sorted by relevance

/f-stack/app/redis-5.0.5/deps/hiredis/
H A Dread.c201 assert(prv->type == REDIS_REPLY_ARRAY); in moveToNextTask()
336 obj = (void*)REDIS_REPLY_ARRAY; in processMultiBulkItem()
388 cur->type = REDIS_REPLY_ARRAY; in processItem()
408 case REDIS_REPLY_ARRAY: in processItem()
H A Dtest.c340 ((redisReply*)reply)->type == REDIS_REPLY_ARRAY && in test_reply_reader()
438 test_cond(reply->type == REDIS_REPLY_ARRAY && in test_blocking_connection()
451 test_cond(reply->type == REDIS_REPLY_ARRAY && in test_blocking_connection()
453 reply->element[0]->type == REDIS_REPLY_ARRAY && in test_blocking_connection()
611 assert(replies[i] != NULL && replies[i]->type == REDIS_REPLY_ARRAY); in test_throughput()
639 assert(replies[i] != NULL && replies[i]->type == REDIS_REPLY_ARRAY); in test_throughput()
H A Dhiredis.c84 case REDIS_REPLY_ARRAY: in freeReplyObject()
128 assert(parent->type == REDIS_REPLY_ARRAY); in createStringObject()
137 r = createReplyObject(REDIS_REPLY_ARRAY); in createArrayObject()
153 assert(parent->type == REDIS_REPLY_ARRAY); in createArrayObject()
170 assert(parent->type == REDIS_REPLY_ARRAY); in createIntegerObject()
185 assert(parent->type == REDIS_REPLY_ARRAY); in createNilObject()
H A Dread.h51 #define REDIS_REPLY_ARRAY 2 macro
H A Dasync.c374 if (reply->type == REDIS_REPLY_ARRAY) { in __redisGetSubscribeCallback()
H A DREADME.md131 * **`REDIS_REPLY_ARRAY`**:
/f-stack/app/redis-5.0.5/deps/hiredis/examples/
H A Dexample.c67 if (reply->type == REDIS_REPLY_ARRAY) { in main()
/f-stack/app/redis-5.0.5/src/
H A Dredis-cli.c513 if(reply == NULL || reply->type != REDIS_REPLY_ARRAY) return; in cliIntegrateHelp()
825 case REDIS_REPLY_ARRAY: in cliFormatReplyTTY()
950 case REDIS_REPLY_ARRAY: in cliFormatReplyRaw()
986 case REDIS_REPLY_ARRAY: in cliFormatReplyCSV()
2233 if (reply->type != REDIS_REPLY_ARRAY) { in clusterManagerExecTransaction()
2988 assert(reply->type == REDIS_REPLY_ARRAY); in clusterManagerMigrateKeysInSlot()
3718 assert(reply->type == REDIS_REPLY_ARRAY); in clusterManagerFixSlotsCoverage()
5578 assert(src_reply->type == REDIS_REPLY_ARRAY); in clusterManagerCommandImport()
5580 assert(src_reply->element[1]->type == REDIS_REPLY_ARRAY); in clusterManagerCommandImport()
6213 } else if(reply->type != REDIS_REPLY_ARRAY) { in sendScan()
[all …]
H A Dsentinel.c2538 if (r->type != REDIS_REPLY_ARRAY || in sentinelReceiveHelloMessages()
3695 if (r->type == REDIS_REPLY_ARRAY && r->elements == 3 && in sentinelReceiveIsMasterDownReply()