HomeSort by relevance Sort by last modified time
    Searched refs:async (Results 176 - 200 of 502) sorted by null

1 2 3 4 5 6 78 91011>>

  /packages/apps/Camera2/src/com/android/camera/device/
CameraDeviceLifecycle.java 19 import com.android.camera.async.Lifetime;
CameraModuleHelper.java 21 import com.android.camera.async.HandlerFactory;
PortabilityCameraActionProvider.java 21 import com.android.camera.async.HandlerFactory;
Camera2Actions.java 26 import com.android.camera.async.HandlerFactory;
27 import com.android.camera.async.Lifetime;
  /packages/apps/Camera2/src/com/android/camera/one/v1/
LegacyOneCameraOpenerImpl.java 23 import com.android.camera.async.MainThread;
  /packages/apps/Camera2/src/com/android/camera/one/v2/autofocus/
TriggerStateMachine.java 22 import com.android.camera.async.Updatable;
  /packages/apps/Camera2/src/com/android/camera/one/v2/imagesaver/
ImageSaver.java 20 import com.android.camera.async.SafeCloseable;
  /packages/apps/Camera2/src/com/android/camera/one/v2/initialization/
GenericOneCameraImpl.java 22 import com.android.camera.async.FilteredCallback;
23 import com.android.camera.async.Listenable;
24 import com.android.camera.async.SafeCloseable;
25 import com.android.camera.async.Updatable;
  /packages/apps/Camera2/src/com/android/camera/one/v2/photo/
LegacyPictureTakerFactory.java 21 import com.android.camera.async.MainThread;
  /packages/apps/Camera2/src/com/android/camera/one/v2/sharedimagereader/
TicketRequiredFilter.java 19 import com.android.camera.async.BufferQueueController;
  /packages/apps/Camera2/src/com/android/camera/one/v2/sharedimagereader/metadatasynchronizer/
MetadataReleasingImageQueue.java 19 import com.android.camera.async.BufferQueueController;
  /packages/apps/Settings/src/com/android/settings/applications/
ApplicationFeatureProviderImpl.java 59 public void calculateNumberOfPolicyInstalledApps(boolean async, NumberOfAppsCallback callback) {
62 if (async) {
78 boolean async, NumberOfAppsCallback callback) {
82 if (async) {
  /prebuilts/jdk/jdk8/darwin-x86/sample/scripting/scriptpad/src/resources/
mm.js 241 * @param async asynchornous mode [optional, default is false]
244 * With async mode, all field, operation access is async. Results
247 function mbean(objName, async) {
276 if (async) {
301 if (async) {
312 if (async) {
  /prebuilts/jdk/jdk8/linux-x86/sample/scripting/scriptpad/src/resources/
mm.js 241 * @param async asynchornous mode [optional, default is false]
244 * With async mode, all field, operation access is async. Results
247 function mbean(objName, async) {
276 if (async) {
301 if (async) {
312 if (async) {
  /system/bt/vendor_libs/linux/interface/
bluetooth_hci.h 50 async::AsyncFdWatcher fd_watcher_;
  /prebuilts/go/darwin-x86/test/chan/
select3.go 59 const async = 1 // asynchronous channels
88 // sending to an async channel with free buffer space never blocks
90 ch := make(chan int, async)
177 ch := make(chan int, async)
185 ch := make(chan int, async)
  /prebuilts/go/linux-x86/test/chan/
select3.go 59 const async = 1 // asynchronous channels
88 // sending to an async channel with free buffer space never blocks
90 ch := make(chan int, async)
177 ch := make(chan int, async)
185 ch := make(chan int, async)
  /packages/apps/Settings/tests/robotests/src/com/android/settings/applications/
InstalledAppCounterTest.java 116 private void testCountInstalledAppsAcrossAllUsers(boolean async) {
124 count(InstalledAppCounter.IGNORE_INSTALL_REASON, async);
136 count(PackageManager.INSTALL_REASON_POLICY, async);
172 testCountInstalledAppsAcrossAllUsers(false /* async */);
177 testCountInstalledAppsAcrossAllUsers(true /* async */);
180 private void count(int installReason, boolean async) {
183 if (async) {
ApplicationFeatureProviderImplTest.java 102 private void verifyCalculateNumberOfPolicyInstalledApps(boolean async) {
111 mProvider.calculateNumberOfPolicyInstalledApps(async,
113 if (async) {
137 verifyCalculateNumberOfPolicyInstalledApps(false /* async */);
142 verifyCalculateNumberOfPolicyInstalledApps(true /* async */);
145 private void verifyCalculateNumberOfAppsWithAdminGrantedPermissions(boolean async)
163 mProvider.calculateNumberOfAppsWithAdminGrantedPermissions(new String[] {PERMISSION}, async,
165 if (async) {
173 verifyCalculateNumberOfAppsWithAdminGrantedPermissions(false /* async */);
178 verifyCalculateNumberOfAppsWithAdminGrantedPermissions(true /* async */);
    [all...]
  /external/python/cpython3/Lib/test/
test_tokenize.py 627 # Async/await extension:
628 self.check_tokenize("async = 1", """\
629 NAME 'async' (1, 0) (1, 5)
634 self.check_tokenize("a = (async = 1)", """\
638 NAME 'async' (1, 5) (1, 10)
644 self.check_tokenize("async()", """\
645 NAME 'async' (1, 0) (1, 5)
650 self.check_tokenize("class async(Bar):pass", """\
652 NAME 'async' (1, 6) (1, 11)
660 self.check_tokenize("class async:pass", """
    [all...]
  /packages/apps/Camera2/src/com/android/camera/one/v2/
ZslOneCameraFactory.java 27 import com.android.camera.async.HandlerFactory;
28 import com.android.camera.async.Lifetime;
29 import com.android.camera.async.MainThread;
30 import com.android.camera.async.Observable;
31 import com.android.camera.async.Observables;
32 import com.android.camera.async.Updatable;
  /frameworks/native/services/surfaceflinger/
MonitoredProducer.cpp 54 status_t MonitoredProducer::setAsyncMode(bool async) {
55 return mProducer->setAsyncMode(async);
  /frameworks/wilhelm/src/android/
android_GenericPlayer.h 127 virtual void notify(const char* event, int data1, bool async);
128 virtual void notify(const char* event, int data1, int data2, bool async);
133 // Async event handlers (called from GenericPlayer's event loop)
150 // for async notifications of prefetch status and cache fill level, needs to be called
154 // for internal async notification to update state that the player is no longer seeking
  /frameworks/wilhelm/src/itf/
IObject.cpp 46 // but the hook is permitted to temporarily unlock the mutex (e.g. for async).
84 static SLresult IObject_Realize(SLObjectItf self, SLboolean async)
114 if (async && (SL_OBJECTID_ENGINE != clazz->mSLObjectID)) {
124 assert(async);
137 // but the hook is permitted to temporarily unlock the mutex (e.g. for async).
138 result = (NULL != realize) ? (*realize)(thiz, async) : SL_RESULT_SUCCESS;
148 if (async && (NULL != callback)) {
189 // but the hook is permitted to temporarily unlock the mutex (e.g. for async).
227 static SLresult IObject_Resume(SLObjectItf self, SLboolean async)
242 if (async) {
    [all...]
  /frameworks/wilhelm/src/objects/
CEngine.cpp 57 SLresult CEngine_Realize(void *self, SLboolean async)
94 SLresult CEngine_Resume(void *self, SLboolean async)

Completed in 747 milliseconds

1 2 3 4 5 6 78 91011>>