Home
last modified time | relevance | path

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

/f-stack/app/redis-5.0.5/src/
H A Dt_list.c550 void rpoplpushHandlePush(client *c, robj *dstkey, robj *dstobj, robj *value) { in rpoplpushHandlePush() argument
552 if (!dstobj) { in rpoplpushHandlePush()
553 dstobj = createQuicklistObject(); in rpoplpushHandlePush()
554 quicklistSetOptions(dstobj->ptr, server.list_max_ziplist_size, in rpoplpushHandlePush()
556 dbAdd(c->db,dstkey,dstobj); in rpoplpushHandlePush()
559 listTypePush(dstobj,value,LIST_HEAD); in rpoplpushHandlePush()
651 robj *dstobj = in serveClientBlockedOnList() local
653 if (!(dstobj && in serveClientBlockedOnList()
654 checkType(receiver,dstobj,OBJ_LIST))) in serveClientBlockedOnList()
663 rpoplpushHandlePush(receiver,dstkey,dstobj, in serveClientBlockedOnList()
H A Dt_zset.c2184 robj *dstobj; in zunionInterGenericCommand() local
2272 dstobj = createZsetObject(); in zunionInterGenericCommand()
2273 dstzset = dstobj->ptr; in zunionInterGenericCommand()
2383 zsetConvertToZiplistIfNeeded(dstobj,maxelelen); in zunionInterGenericCommand()
2384 dbAdd(c->db,dstkey,dstobj); in zunionInterGenericCommand()
2385 addReplyLongLong(c,zsetLength(dstobj)); in zunionInterGenericCommand()
2392 decrRefCount(dstobj); in zunionInterGenericCommand()