Home
last modified time | relevance | path

Searched refs:DeadlockPath (Results 1 – 7 of 7) sorted by relevance

/rocksdb-6.9/utilities/transactions/
Dtransaction_lock_mgr.h32 std::vector<DeadlockPath> paths_buffer_;
35 std::vector<DeadlockPath> Normalize();
40 void AddNewPath(DeadlockPath path);
42 std::vector<DeadlockPath> PrepareBuffer();
88 std::vector<DeadlockPath> GetDeadlockInfoBuffer();
Dtransaction_lock_mgr.cc96 void DeadlockInfoBuffer::AddNewPath(DeadlockPath path) { in AddNewPath()
127 std::vector<DeadlockPath> DeadlockInfoBuffer::Normalize() { in Normalize()
144 std::vector<DeadlockPath> DeadlockInfoBuffer::PrepareBuffer() { in PrepareBuffer()
496 dlock_buffer_.AddNewPath(DeadlockPath(path, deadlock_time)); in IncrementWaiters()
511 dlock_buffer_.AddNewPath(DeadlockPath(deadlock_time, true)); in IncrementWaiters()
736 std::vector<DeadlockPath> TransactionLockMgr::GetDeadlockInfoBuffer() { in GetDeadlockInfoBuffer()
Dpessimistic_transaction_db.h136 std::vector<DeadlockPath> GetDeadlockInfoBuffer() override;
Dpessimistic_transaction_db.cc606 std::vector<DeadlockPath> PessimisticTransactionDB::GetDeadlockInfoBuffer() { in GetDeadlockInfoBuffer()
/rocksdb-6.9/include/rocksdb/utilities/
Dtransaction_db.h208 struct DeadlockPath { struct
213 explicit DeadlockPath(std::vector<DeadlockInfo> path_entry, in DeadlockPath() argument
218 explicit DeadlockPath(const int64_t& dl_time = 0, bool limit = false)
295 virtual std::vector<DeadlockPath> GetDeadlockInfoBuffer() = 0;
/rocksdb-6.9/java/src/main/java/org/rocksdb/
DTransactionDB.java350 public static class DeadlockPath { class in TransactionDB
354 public DeadlockPath(final DeadlockInfo[] path, final boolean limitExceeded) { in DeadlockPath() method in TransactionDB.DeadlockPath
364 public DeadlockPath[] getDeadlockInfoBuffer() { in getDeadlockInfoBuffer()
401 private native DeadlockPath[] getDeadlockInfoBuffer(final long handle); in getDeadlockInfoBuffer()
/rocksdb-6.9/java/rocksjni/
Dtransaction_db.cc377 const std::vector<ROCKSDB_NAMESPACE::DeadlockPath> deadlock_info_buffer = in Java_org_rocksdb_TransactionDB_getDeadlockInfoBuffer()
394 const ROCKSDB_NAMESPACE::DeadlockPath deadlock_path = *buf_it; in Java_org_rocksdb_TransactionDB_getDeadlockInfoBuffer()