HomeSort by relevance Sort by last modified time
    Searched defs:currentThreadId (Results 1 - 2 of 2) sorted by null

  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorDeviceThreadPool.h 173 EIGEN_STRONG_INLINE int currentThreadId() const {
174 return pool_->CurrentThreadId();
  /external/guice/core/src/com/google/inject/internal/
CycleDetectingLock.java 147 final long currentThreadId = Thread.currentThread().getId();
156 lockThreadIsWaitingOn.put(currentThreadId, this);
164 lockThreadIsWaitingOn.remove(currentThreadId);
168 lockOwnerThreadId = currentThreadId;
171 locksOwnedByThread.put(currentThreadId, this);
178 final long currentThreadId = Thread.currentThread().getId();
183 Preconditions.checkState(lockOwnerThreadId == currentThreadId,
194 Preconditions.checkState(locksOwnedByThread.remove(currentThreadId, this),
196 if (locksOwnedByThread.get(currentThreadId).isEmpty()) {
198 locksOwnedByThread.removeAll(currentThreadId);
    [all...]

Completed in 395 milliseconds