Home
last modified time | relevance | path

Searched refs:lookupKeyRead (Results 1 – 14 of 14) sorted by relevance

/f-stack/app/redis-5.0.5/src/
H A Dsort.c109 o = lookupKeyRead(db,keyobj); in lookupKeyByPattern()
202 sortval = lookupKeyRead(c->db,c->argv[1]); in sortCommand()
H A Dbitops.c628 o = lookupKeyRead(c->db,c->argv[j+3]); in bitopCommand()
837 if ((o = lookupKeyRead(c->db,c->argv[1])) == NULL) { in bitposCommand()
996 o = lookupKeyRead(c->db,c->argv[1]); in bitfieldCommand()
H A Dgeo.c704 robj *zobj = lookupKeyRead(c->db, c->argv[1]); in geohashCommand()
757 robj *zobj = lookupKeyRead(c->db, c->argv[1]); in geoposCommand()
H A Dexpire.c523 if (lookupKeyRead(c->db,c->argv[j]) != NULL) touched++; in touchCommand()
H A Ddb.c143 robj *lookupKeyRead(redisDb *db, robj *key) { in lookupKeyRead() function
158 robj *o = lookupKeyRead(c->db, key); in lookupKeyReadOrReply()
501 if (lookupKeyRead(c->db,c->argv[j])) count++; in existsCommand()
H A Dt_stream.c1412 robj *o = lookupKeyRead(c->db,key); in xreadCommand()
1470 robj *o = lookupKeyRead(c->db,c->argv[streams_arg+i]); in xreadCommand()
1879 robj *o = lookupKeyRead(c->db,c->argv[1]); in xackCommand()
1950 robj *o = lookupKeyRead(c->db,c->argv[1]); in xpendingCommand()
2129 robj *o = lookupKeyRead(c->db,c->argv[1]); in xclaimCommand()
H A Dt_set.c806 lookupKeyRead(c->db,setkeys[j]); in sinterGenericCommand()
943 lookupKeyRead(c->db,setkeys[j]); in sunionDiffGenericCommand()
H A Dhyperloglog.c1241 robj *o = lookupKeyRead(c->db,c->argv[j]); in pfcountCommand()
1323 robj *o = lookupKeyRead(c->db,c->argv[j]); in pfmergeCommand()
H A Dt_string.c290 robj *o = lookupKeyRead(c->db,c->argv[j]); in mgetCommand()
H A Dt_hash.c694 o = lookupKeyRead(c->db, c->argv[1]); in hmgetCommand()
H A Dcluster.c4839 if ((o = lookupKeyRead(c->db,c->argv[1])) == NULL) { in dumpCommand()
5128 if ((ov[oi] = lookupKeyRead(c->db,c->argv[first_key+j])) != NULL) { in migrateCommand()
5557 lookupKeyRead(&server.db[0],thiskey) == NULL) in getNodeByQuery()
H A Dserver.h1823 robj *lookupKeyRead(redisDb *db, robj *key);
H A Dmodule.c1525 value = lookupKeyRead(ctx->client->db,keyname); in RM_OpenKey()
/f-stack/app/redis-5.0.5/
H A DREADME.md368 * `lookupKeyRead()` and `lookupKeyWrite()` are used in order to get a pointer to the value associat…