Home
last modified time | relevance | path

Searched refs:REDISMODULE_REPLY_ARRAY (Results 1 – 2 of 2) sorted by relevance

/f-stack/app/redis-5.0.5/src/
H A Dmodule.c2464 case '*': reply->type = REDISMODULE_REPLY_ARRAY; break; in moduleCreateCallReplyFromProto()
2556 reply->type = REDISMODULE_REPLY_ARRAY; in moduleParseCallReply_Array()
2568 if (reply->type == REDISMODULE_REPLY_ARRAY) { in RM_FreeCallReply_Rec()
2608 case REDISMODULE_REPLY_ARRAY: in RM_CallReplyLength()
2619 if (reply->type != REDISMODULE_REPLY_ARRAY) return NULL; in RM_CallReplyArrayElement()
H A Dredismodule.h38 #define REDISMODULE_REPLY_ARRAY 3 macro