Lines Matching refs:status
103 bool status = impl_->Insert(k, tmp); in RunWrite() local
104 assert(status); in RunWrite()
114 bool status = impl_->Lookup(k, &s); in RunRead() local
115 assert(status); in RunRead()
124 bool status = impl_->Erase(k); in RunErase() local
125 nerases_failed_ += !status; in RunErase()
142 bool status = impl_->Insert(i, std::string(1000, i % 255)); in Prepop() local
143 assert(status); in Prepop()
149 bool status = impl_->Insert(insert_key_++, std::string(1000, 'x')); in Prepop() local
150 assert(status); in Prepop()
241 bool status = impl_.Find(n, &n, &rlock); in Lookup() local
242 if (status) { in Lookup()
246 return status; in Lookup()