HomeSort by relevance Sort by last modified time
    Searched defs:take (Results 1 - 25 of 222) sorted by null

1 2 3 4 5 6 7 8 9

  /libcore/ojluni/src/main/java/java/nio/file/
WatchService.java 43 * {@link #poll() poll} or {@link #take() take} methods to retrieve keys
113 * <p> If a thread is currently blocked in the {@link #take take} or {@link
173 WatchKey take() throws InterruptedException; method in interface:WatchService
  /libcore/ojluni/src/main/java/java/util/concurrent/
CompletionService.java 41 * {@code submit} tasks for execution. Consumers {@code take}
59 * actions following a successful return from the corresponding {@code take()}.
98 Future<V> take() throws InterruptedException; method in interface:CompletionService
BlockingQueue.java 81 * <td>{@link #take take()}</td>
152 * while (true) { consume(queue.take()); }
263 E take() throws InterruptedException; method in interface:BlockingQueue
ExecutorCompletionService.java 41 * upon completion, placed on a queue accessible using {@code take}.
65 * Result r = ecs.take().get();
89 * Result r = ecs.take().get();
194 public Future<V> take() throws InterruptedException { method in class:ExecutorCompletionService
195 return completionQueue.take();
BlockingDeque.java 172 * <td>{@link #take() take()}</td>
550 E take() throws InterruptedException; method in interface:BlockingDeque
  /external/testng/src/main/java/org/testng/internal/
PoolService.java 48 Future<FutureType> take = m_completionService.take(); local
49 result.add(take.get());
  /external/okhttp/okio/okio/src/main/java/okio/
SegmentPool.java 36 static Segment take() { method in class:SegmentPool
  /external/guava/guava/src/com/google/common/util/concurrent/
ForwardingBlockingQueue.java 71 @Override public E take() throws InterruptedException { method in class:ForwardingBlockingQueue
72 return delegate().take();
  /external/javassist/src/main/javassist/bytecode/analysis/
IntQueue.java 45 int take() { method in class:IntQueue
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
TestLogHandler.java 41 public synchronized String take() throws InterruptedException { method in class:TestLogHandler
  /frameworks/av/media/libstagefright/webm/
LinkedBlockingQueue.h 67 T take() { function in class:android::LinkedBlockingQueue
  /frameworks/base/core/java/android/view/
DragAndDropPermissions.java 80 * Take the permissions and bind their lifetime to the activity.
85 public boolean take(IBinder activityToken) { method in class:DragAndDropPermissions
87 mDragAndDropPermissions.take(activityToken);
95 * Take the permissions. Must call {@link #release} explicitly.
  /external/guava/guava/src/com/google/common/collect/
ForwardingBlockingDeque.java 105 public E take() throws InterruptedException { method in class:ForwardingBlockingDeque
106 return delegate().take();
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
OwningPtr.h 25 /// pointee object can be taken away from OwningPtr by using the take method.
48 /// take - Reset the owning pointer to null and return its pointer. This does
50 T *take() { function in class:llvm::OwningPtr
102 /// take - Reset the owning pointer to null and return its pointer. This does
104 T *take() { function in class:llvm::OwningArrayPtr
  /external/volley/src/test/java/com/android/volley/mock/
WaitableQueue.java 34 // TODO: this isn't really "until empty" it's "until next call to take() after empty"
44 public Request<?> take() throws InterruptedException { method in class:WaitableQueue
45 Request<?> item = super.take();
48 return take();
  /external/swiftshader/third_party/LLVM/lib/Support/Windows/
Windows.h 79 HandleType take() { function in class:ScopedHandle
  /frameworks/base/services/core/java/com/android/server/
InputContentUriTokenHandler.java 59 public void take() { method in class:InputContentUriTokenHandler
  /frameworks/base/services/core/java/com/android/server/pm/
ParallelPackageParser.java 83 * Take the parsed package from the parsing queue, waiting if necessary until the element
87 public ParseResult take() { method in class:ParallelPackageParser
92 return mQueue.take();
127 // Propagate result to callers of take().
  /frameworks/base/services/core/java/com/android/server/wm/
DragAndDropPermissionsHandler.java 57 public void take(IBinder activityToken) throws RemoteException { method in class:DragAndDropPermissionsHandler
  /frameworks/native/libs/vr/libpdx/private/pdx/
status.h 95 T&& take() { function in class:android::pdx::Status
  /libcore/ojluni/src/main/java/sun/nio/fs/
AbstractWatchService.java 89 // re-queue in case there are other threads blocked in take/poll
114 public final WatchKey take() method in class:AbstractWatchService
118 WatchKey key = pendingKeys.take();
156 // threads blocked in take/poll wakeup
  /system/netd/libnetdutils/include/netdutils/
Slice.h 102 inline const Slice take(const Slice s, size_t cut) { function in namespace:android::netdutils
  /external/guava/guava-tests/test/com/google/common/collect/
ForwardingBlockingDequeTest.java 102 forward.take();
103 assertEquals("[take]", getCalls());
  /external/libchrome/base/containers/
scoped_ptr_hash_map.h 82 ScopedPtr take(iterator it) { function in class:base::ScopedPtrHashMap
92 ScopedPtr take(const Key& k) { function in class:base::ScopedPtrHashMap
97 return take(it);
  /frameworks/base/core/java/android/os/
TestLooperManager.java 186 final MessageExecution take = mExecuteQueue.take(); local
187 if (take.m != null) {
188 processMessage(take);

Completed in 6281 milliseconds

1 2 3 4 5 6 7 8 9