Searched refs:rdbLoadLen (Results 1 – 4 of 4) sorted by relevance
| /f-stack/app/redis-5.0.5/src/ |
| H A D | rdb.c | 223 uint64_t rdbLoadLen(rio *rdb, int *isencoded) { in rdbLoadLen() function 488 len = rdbLoadLen(rdb,&isencoded); in rdbGenericLoadStringObject() 1495 len = rdbLoadLen(rdb, NULL); in rdbLoadObject() 1677 s->length = rdbLoadLen(rdb,NULL); in rdbLoadObject() 1679 s->last_id.ms = rdbLoadLen(rdb,NULL); in rdbLoadObject() 1680 s->last_id.seq = rdbLoadLen(rdb,NULL); in rdbLoadObject() 1694 cg_id.ms = rdbLoadLen(rdb,NULL); in rdbLoadObject() 1695 cg_id.seq = rdbLoadLen(rdb,NULL); in rdbLoadObject() 1735 pel_size = rdbLoadLen(rdb,NULL); in rdbLoadObject() 1756 uint64_t moduleid = rdbLoadLen(rdb,NULL); in rdbLoadObject() [all …]
|
| H A D | redis-check-rdb.c | 235 if (rdbLoadLen(&rdb,NULL) == RDB_LENERR) goto eoferr; in redis_check_rdb() 243 if ((dbid = rdbLoadLen(&rdb,NULL)) == RDB_LENERR) in redis_check_rdb() 252 if ((db_size = rdbLoadLen(&rdb,NULL)) == RDB_LENERR) in redis_check_rdb() 254 if ((expires_size = rdbLoadLen(&rdb,NULL)) == RDB_LENERR) in redis_check_rdb()
|
| H A D | rdb.h | 134 uint64_t rdbLoadLen(rio *rdb, int *isencoded);
|
| H A D | module.c | 3163 uint64_t opcode = rdbLoadLen(io->rio,NULL); in RM_LoadUnsigned() 3233 uint64_t opcode = rdbLoadLen(io->rio,NULL); in moduleLoadString() 3293 uint64_t opcode = rdbLoadLen(io->rio,NULL); in RM_LoadDouble() 3329 uint64_t opcode = rdbLoadLen(io->rio,NULL); in RM_LoadFloat()
|