Searched refs:aborted (Results 1 – 7 of 7) sorted by relevance
| /rocksdb-6.9/util/ |
| D | timer_queue_test.cc | 46 q.add(10000, [tnow](bool aborted) mutable { in main() argument 47 printf("T 1: %d, Elapsed %4.2fms\n", aborted, Timing::now() - tnow); in main() 50 q.add(10001, [tnow](bool aborted) mutable { in main() argument 51 printf("T 2: %d, Elapsed %4.2fms\n", aborted, Timing::now() - tnow); in main() 55 q.add(1000, [tnow](bool aborted) mutable { in main() argument 56 printf("T 3: %d, Elapsed %4.2fms\n", aborted, Timing::now() - tnow); in main() 57 return std::make_pair(!aborted, 1000); in main() 60 auto id = q.add(2000, [tnow](bool aborted) mutable { in main() argument 61 printf("T 4: %d, Elapsed %4.2fms\n", aborted, Timing::now() - tnow); in main() 62 return std::make_pair(!aborted, 2000); in main()
|
| /rocksdb-6.9/utilities/blob_db/ |
| D | blob_db_impl.h | 280 std::pair<bool, int64_t> SanityCheck(bool aborted); 284 std::pair<bool, int64_t> DeleteObsoleteFiles(bool aborted); 288 std::pair<bool, int64_t> EvictExpiredFiles(bool aborted); 293 std::pair<bool, int64_t> ReclaimOpenFiles(bool aborted); 295 std::pair<bool, int64_t> RemoveTimerQ(TimerQueue* tq, bool aborted);
|
| D | blob_db_impl.cc | 1614 std::pair<bool, int64_t> BlobDBImpl::SanityCheck(bool aborted) { in SanityCheck() argument 1615 if (aborted) { in SanityCheck() 1791 std::pair<bool, int64_t> BlobDBImpl::EvictExpiredFiles(bool aborted) { in EvictExpiredFiles() argument 1792 if (aborted) { in EvictExpiredFiles() 1877 std::pair<bool, int64_t> BlobDBImpl::ReclaimOpenFiles(bool aborted) { in ReclaimOpenFiles() argument 1878 if (aborted) return std::make_pair(false, -1); in ReclaimOpenFiles() 1898 std::pair<bool, int64_t> BlobDBImpl::DeleteObsoleteFiles(bool aborted) { in DeleteObsoleteFiles() argument 1899 if (aborted) { in DeleteObsoleteFiles() 1976 return std::make_pair(!aborted, -1); in DeleteObsoleteFiles()
|
| /rocksdb-6.9/docs/_posts/ |
| D | 2014-07-29-rocksdb-3-3-release.markdown | 24 …aborted when it runs longer than the specified timeout_hint_us, and it is guaranteed that any writ…
|
| D | 2017-12-19-write-prepared-txn.markdown | 23 3) How do we rollback the data written by aborted transactions? 25 …ollback an aborted transaction, we apply the status before the transaction by making another write…
|
| D | 2014-03-27-how-to-backup-rocksdb.markdown | 77 … backup time. If a checksum mismatch is detected, the restore process is aborted and `Status::Corr… 115 …ing crazy happened between backups. If a mismatch is detected, backup is aborted and the system is…
|
| /rocksdb-6.9/ |
| D | HISTORY.md | 1045 …aborted when it runs longer than the specified timeout_hint_us, and it is guaranteed that any writ…
|