Lines Matching refs:status_
56 status_ = Status::InvalidArgument("File is not mmaped"); in CuckooTableReader()
60 status_ = ReadTableProperties(file_.get(), file_size, kCuckooTableMagicNumber, in CuckooTableReader()
62 if (!status_.ok()) { in CuckooTableReader()
69 status_ = Status::Corruption("Number of hash functions not found"); in CuckooTableReader()
75 status_ = Status::Corruption("Empty bucket value not found"); in CuckooTableReader()
83 status_ = Status::Corruption("User key length not found"); in CuckooTableReader()
91 status_ = Status::Corruption("Value length not found"); in CuckooTableReader()
101 status_ = Status::Corruption("Hash table size not found"); in CuckooTableReader()
109 status_ = Status::Corruption("Is last level not found"); in CuckooTableReader()
117 status_ = Status::Corruption("identity as first hash not found"); in CuckooTableReader()
126 status_ = Status::Corruption("hash type is not found"); in CuckooTableReader()
134 status_ = Status::Corruption("Cuckoo block size not found"); in CuckooTableReader()
140 status_ = file_->Read(0, static_cast<size_t>(file_size), &file_data_, nullptr, in CuckooTableReader()