Home
last modified time | relevance | path

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

/f-stack/app/redis-5.0.5/src/
H A Dsort.c534 robj *sobj = createQuicklistObject(); in sortCommand() local
542 listTypePush(sobj,vector[j].obj,LIST_TAIL); in sortCommand()
556 listTypePush(sobj,val,LIST_TAIL); in sortCommand()
566 setKey(c->db,storekey,sobj); in sortCommand()
575 decrRefCount(sobj); in sortCommand()
H A Dt_list.c566 robj *sobj, *value; in rpoplpushCommand() local
567 if ((sobj = lookupKeyWriteOrReply(c,c->argv[1],shared.nullbulk)) == NULL || in rpoplpushCommand()
568 checkType(c,sobj,OBJ_LIST)) return; in rpoplpushCommand()
570 if (listTypeLength(sobj) == 0) { in rpoplpushCommand()
579 value = listTypePop(sobj,LIST_TAIL); in rpoplpushCommand()
591 if (listTypeLength(sobj) == 0) { in rpoplpushCommand()