HomeSort by relevance Sort by last modified time
    Searched defs:acquire (Results 201 - 225 of 615) sorted by null

1 2 3 4 5 6 7 891011>>

  /frameworks/support/room/runtime/src/main/java/androidx/room/
RoomSQLiteQuery.java 88 final RoomSQLiteQuery query = RoomSQLiteQuery.acquire(
140 public static RoomSQLiteQuery acquire(String query, int argumentCount) { method in class:RoomSQLiteQuery
177 * After released, the statement might be returned when {@link #acquire(String, int)} is called
  /frameworks/support/work/workmanager/src/main/java/androidx/work/impl/background/systemalarm/
SystemAlarmDispatcher.java 196 processCommandLock.acquire();
220 wakeLock.acquire();
  /hardware/interfaces/camera/common/1.0/default/
CameraMetadata.cpp 53 acquire(buffer);
119 void CameraMetadata::acquire(camera_metadata_t *buffer) { function in class:android::hardware::camera::common::V1_0::helper::CameraMetadata
132 void CameraMetadata::acquire(CameraMetadata &other) { function in class:android::hardware::camera::common::V1_0::helper::CameraMetadata
137 acquire(other.release());
  /packages/apps/Camera2/src/com/android/camera/processing/
ProcessingService.java 110 mWakeLock.acquire();
  /packages/apps/DocumentsUI/src/com/android/documentsui/archives/
ArchivesProvider.java 266 Log.w(TAG, "Failed to acquire archive.", e);
294 // TODO: Pass parent Uri so the loader can acquire the parent's notification Uri.
299 loader.acquire();
  /packages/apps/Messaging/src/android/support/v7/mms/
MmsService.java 167 * Acquire the wake lock
178 sWakeLock.acquire();
  /packages/apps/Messaging/src/com/android/messaging/util/
NotificationPlayer.java 353 mWakeLock.acquire();
  /packages/apps/Settings/src/com/android/settings/wifi/
WriteWifiConfigToNfcDialog.java 126 mWakeLock.acquire();
  /packages/services/BuiltInPrintService/src/com/android/bips/
BuiltInPrintService.java 234 mWifiLock.acquire();
  /packages/services/BuiltInPrintService/src/com/android/bips/discovery/
MdnsDiscovery.java 149 mMulticastLock.acquire();
  /prebuilts/gdb/darwin-x86/lib/python2.7/bsddb/test/
test_all.py 501 get_new_path.mutex.acquire()
550 def acquire(self) : member in class:remove_test_path_directory.Lock
  /prebuilts/gdb/linux-x86/lib/python2.7/bsddb/test/
test_all.py 501 get_new_path.mutex.acquire()
550 def acquire(self) : member in class:remove_test_path_directory.Lock
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/
test_all.py 501 get_new_path.mutex.acquire()
550 def acquire(self) : member in class:remove_test_path_directory.Lock
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/test/
test_all.py 501 get_new_path.mutex.acquire()
550 def acquire(self) : member in class:remove_test_path_directory.Lock
  /development/apps/Development/src/com/android/development/
Connectivity.java 174 mScreenonWakeLock.acquire();
562 mWakeLock.acquire();
587 mScreenonWakeLock.acquire();
801 mWml.acquire();
  /art/test/1932-monitor-events-misc/src/art/
Test1932.java 292 unlocked_sem.acquire();
296 "Controller3 now holds the lock the monitor wait will try to re-acquire");
315 continue_sem.acquire();
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
PassFailButtons.java 118 mWakeLock.acquire();
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/net/
ConnectivityBackgroundTestActivity.java 176 mWakeLock.acquire();
264 screenOnLock.acquire();
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
DeviceSuspendTestActivity.java 78 mDeviceSuspendLock.acquire();
120 mDeviceSuspendLock.acquire();
229 mDeviceSuspendLock.acquire();
238 mDeviceSuspendLock.acquire();
  /cts/tests/tests/database/src/android/database/sqlite/cts/
SQLiteQueryBuilderTest.java 339 mDatabase.beginTransaction(); // acquire the only available connection
342 barrier2.acquire(); // wait for test to end
366 barrier1.acquire(); // wait for contention thread to start transaction
381 // We want to confirm that the query really was blocked trying to acquire a
  /developers/samples/android/sensors/AccelerometerPlay/app/src/main/java/com/example/android/accelerometerplay/
AccelerometerPlayActivity.java 92 * when the activity is resumed, we acquire a wake-lock so that the
96 mWakeLock.acquire();
  /development/samples/browseable/MediaBrowserService/src/com.example.android.mediabrowserservice/
Playback.java 100 // Create the Wifi lock (this does not acquire the lock, this just creates it)
184 mWifiLock.acquire();
414 // Make sure the media player will acquire a wake-lock while
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/logging/
__init__.py 201 #shared dictionary _handlers, it needs to acquire the lock. But if configuring,
212 Acquire the module-level lock for serializing access to shared data.
217 _lock.acquire()
681 Acquire a thread lock for serializing access to the underlying I/O.
688 def acquire(self): member in class:Handler
690 Acquire the I/O thread lock.
693 self.lock.acquire()
742 self.acquire()
    [all...]
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
RateLimiterTest.java 55 limiter.acquire(); // R0.00, since it's the first request
56 limiter.acquire(); // R0.20
57 limiter.acquire(); // R0.20
63 assertTrue("Unable to acquire initial permit", r.tryAcquire());
86 limiter.acquire(0);
91 limiter.acquire(-1);
119 limiter.acquire(); // R0.00
121 limiter.acquire(); // R0.00, ...which is granted immediately
122 limiter.acquire(); // R0.20
128 assertEquals(0.0, limiter.acquire(), EPSILON); // R0.0
    [all...]
  /external/python/cpython2/Lib/logging/
__init__.py 196 #shared dictionary _handlers, it needs to acquire the lock. But if configuring,
207 Acquire the module-level lock for serializing access to shared data.
212 _lock.acquire()
637 acquire, release, handlers = _acquireLock, _releaseLock, _handlerList
638 if acquire and release and handlers:
639 acquire()
696 Acquire a thread lock for serializing access to the underlying I/O.
703 def acquire(self): member in class:Handler
705 Acquire the I/O thread lock.
708 self.lock.acquire()
    [all...]

Completed in 979 milliseconds

1 2 3 4 5 6 7 891011>>