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

1 2 3 4 5 6

  /frameworks/base/core/java/android/util/
Pool.java 23 public abstract T acquire(); method in interface:Pool
SynchronizedPool.java 37 public T acquire() { method in class:SynchronizedPool
39 return mPool.acquire();
FinitePool.java 39 * Next object to acquire
61 public T acquire() { method in class:FinitePool
  /external/llvm/lib/Support/
Mutex.cpp 28 bool MutexImpl::acquire() { return true; } function in class:llvm::MutexImpl
90 MutexImpl::acquire()
  /external/skia/src/ports/
SkThread_none.cpp 28 void SkMutex::acquire() {} function in class:SkMutex
SkThread_win.cpp 39 void SkMutex::acquire() { function in class:SkMutex
SkThread_pthread.cpp 139 void SkMutex::acquire() { function in class:SkMutex
  /frameworks/base/voip/java/com/android/server/sip/
SipWakeLock.java 42 synchronized void acquire(long timeout) { method in class:SipWakeLock
48 mTimerWakeLock.acquire(timeout);
51 synchronized void acquire(Object holder) { method in class:SipWakeLock
57 if (!mWakeLock.isHeld()) mWakeLock.acquire();
58 if (DEBUG) Log.v(TAG, "acquire count=" + mHolders.size());
  /cts/tests/tests/os/src/android/os/cts/
PowerManager_WakeLockTest.java 38 wl.acquire();
43 // Try ref-counted acquire/release
45 wl.acquire();
47 wl.acquire();
56 wl.acquire();
58 wl.acquire();
63 // test acquire(long)
64 wl.acquire(PowerManagerTest.TIME);
  /external/skia/include/core/
SkThread_platform.h 66 void acquire() { pthread_mutex_lock(&fMutex); } function in struct:SkBaseMutex
72 // and keeps the acquire() implementation small and fast.
98 void acquire();
  /frameworks/native/libs/utils/
SharedBuffer.cpp 96 void SharedBuffer::acquire() const { function in class:android::SharedBuffer
  /packages/apps/DeskClock/src/com/android/deskclock/
AlarmAlertWakeLock.java 42 sCpuWakeLock.acquire();
AlarmInitReceiver.java 37 wl.acquire();
  /system/core/libpixelflinger/tinyutils/
SharedBuffer.cpp 89 void SharedBuffer::acquire() const { function in class:android::SharedBuffer
  /cts/tests/tests/permission/src/android/permission/cts/
NoWakeLockPermissionTest.java 44 * Verify that WifiManager.WifiLock.acquire() requires permissions.
54 wifiLock.acquire();
55 fail("WifiManager.WifiLock.acquire() didn't throw SecurityException as expected");
81 * Verify that PowerManager.WakeLock.acquire() requires permissions.
88 mWakeLock.acquire();
96 * Verify that PowerManager.WakeLock.acquire(long) requires permissions.
102 // Tset acquire(long)
104 mWakeLock.acquire(1);
  /cts/tests/tests/net/src/android/net/wifi/cts/
WifiManager_WifiLockTest.java 38 wl.acquire();
42 wl.acquire();
43 wl.acquire();
53 +" a greater number of times than acquire");
61 wl.acquire();
65 wl.acquire();
66 wl.acquire();
  /external/chromium/third_party/libjingle/source/talk/base/
linked_ptr.h 65 {acquire(r);}
70 acquire(r);
78 {acquire(r);}
83 acquire(r);
99 void acquire(const linked_ptr& r) throw() function in class:talk_base::linked_ptr
113 template <class Y> void acquire(const linked_ptr<Y>& r) throw() function in class:talk_base::linked_ptr
  /external/llvm/include/llvm/Support/
Mutex.h 31 /// Initializes the lock but doesn't acquire it. if \p recursive is set
33 /// also more likely to deadlock (same thread can't acquire more than
47 /// Attempts to unconditionally acquire the lock. If the lock is held by
48 /// another thread, this method will wait until it can acquire the lock.
50 /// @brief Unconditionally acquire the lock.
51 bool acquire();
54 /// thread, the lock is released allowing other threads to acquire the
60 /// Attempts to acquire the lock without blocking. If the lock is not
65 /// @brief Try to acquire the lock.
95 bool acquire() { function in class:llvm::sys::SmartMutex
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/rendering/
TileTexture.cpp 80 bool TileTexture::acquire(TextureOwner* owner) function in class:WebCore::TileTexture
  /packages/apps/Mms/src/com/android/mms/transaction/
SmsReceiver.java 81 mStartingService.acquire();
  /frameworks/base/core/tests/coretests/src/android/os/
PowerManagerTest.java 96 // First try simple acquire/release
97 wl.acquire();
102 // Try ref-counted acquire/release
104 wl.acquire();
106 wl.acquire();
115 wl.acquire();
117 wl.acquire();
  /frameworks/base/services/java/com/android/server/
UpdateLockService.java 52 Slog.d(TAG, "first acquire; broadcasting convenient=false");
90 Slog.d(TAG, "acquire(" + token + ") by " + makeTag(tag));
94 mLocks.acquire(token, makeTag(tag));
  /frameworks/native/include/utils/
FileMap.h 85 FileMap* acquire(void) { mRefCount++; return this; } function in class:android::FileMap
  /frameworks/native/opengl/libagl/
Tokenizer.cpp 41 uint32_t Tokenizer::acquire() function in class:android::Tokenizer
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarReceiver.java 50 mWakeLock.acquire();

Completed in 498 milliseconds

1 2 3 4 5 6