/aosp12/frameworks/base/core/java/android/telephony/ |
H A D | TelephonyCallback.java | 1471 () -> mExecutor.execute(() -> in onDataConnectionStateChanged() 1533 () -> mExecutor.execute( in onPreciseDataConnectionStateChanged() 1556 () -> mExecutor.execute( in onVoiceActivationStateChanged() 1566 () -> mExecutor.execute( in onDataActivationStateChanged() 1576 () -> mExecutor.execute( in onUserMobileDataStateChanged() 1585 () -> mExecutor.execute( in onDisplayInfoChanged() 1608 () -> mExecutor.execute( in onEmergencyNumberListChanged() 1619 () -> mExecutor.execute( in onOutgoingEmergencyCall() 1631 () -> mExecutor.execute( in onOutgoingEmergencySms() 1680 () -> mExecutor.execute( in onImsCallDisconnectCauseChanged() [all …]
|
H A D | PhoneStateListener.java | 1404 Binder.withCleanCallingIdentity(() -> mExecutor.execute( in onDataConnectionStateChanged() 1466 () -> mExecutor.execute( in onPreciseDataConnectionStateChanged() 1475 () -> mExecutor.execute( in onDataConnectionRealTimeInfoChanged() 1492 () -> mExecutor.execute( in onVoiceActivationStateChanged() 1501 () -> mExecutor.execute( in onDataActivationStateChanged() 1510 () -> mExecutor.execute( in onUserMobileDataStateChanged() 1519 () -> mExecutor.execute( in onDisplayInfoChanged() 1544 () -> mExecutor.execute( in onEmergencyNumberListChanged() 1554 () -> mExecutor.execute( in onOutgoingEmergencyCall() 1565 () -> mExecutor.execute( in onOutgoingEmergencySms() [all …]
|
/aosp12/system/netd/server/ |
H A D | IptablesRestoreControllerTest.cpp | 154 int ret = con.execute(V4V6, Join(createCommands, "\n"), nullptr); in createTestChain() 167 con.execute(V4V6, Join(deleteCommands, "\n"), nullptr); in deleteTestChain() 202 EXPECT_EQ(0, con.execute(IptablesTarget::V4V6, "#Test\n", nullptr)); in TEST_F() 207 EXPECT_EQ(0, con.execute(IptablesTarget::V6, "#Test\n", nullptr)); in TEST_F() 208 EXPECT_EQ(0, con.execute(IptablesTarget::V4, "#Test\n", nullptr)); in TEST_F() 210 EXPECT_EQ(0, con.execute(IptablesTarget::V4V6, "#Test\n", &output)); in TEST_F() 226 ASSERT_EQ(0, con.execute(target, "#Test\n", output)) << in TEST_F() 235 EXPECT_EQ(0, con.execute(IptablesTarget::V4V6, "#Test\n", &output)); in TEST_F() 339 EXPECT_EQ(-1, con.execute(V4V6, "malformed command\n", nullptr)); in TEST_F() 340 EXPECT_EQ(0, con.execute(V4V6, "#Test\n", nullptr)); in TEST_F() [all …]
|
/aosp12/packages/apps/UniversalMediaPlayer/java/com/android/pump/db/ |
H A D | MediaDb.java | 214 mExecutor.execute(mAudioStore::load); in load() 215 mExecutor.execute(mVideoStore::load); in load() 251 mExecutor.execute(() -> { in loadData() 265 mExecutor.execute(() -> { in loadData() 285 mExecutor.execute(() -> { in loadData() 305 mExecutor.execute(() -> { in loadData() 319 mExecutor.execute(() -> { in loadData() 334 mExecutor.execute(() -> { in loadData() 354 mExecutor.execute(() -> { in loadData() 375 mExecutor.execute(() -> { in loadData() [all …]
|
/aosp12/packages/apps/Launcher3/quickstep/src/com/android/quickstep/ |
H A D | RecentsAnimationController.java | 76 UI_HELPER_EXECUTOR.execute(() -> { in setUseLauncherSystemBarFlags() 92 UI_HELPER_EXECUTOR.execute(() -> { in setSplitScreenMinimized() 107 UI_HELPER_EXECUTOR.execute(() -> mController.removeTask(target.taskId)); in removeTaskTarget() 153 UI_HELPER_EXECUTOR.execute(() -> { in finishController() 157 MAIN_EXECUTOR.execute(mPendingFinishCallbacks::executeAllAndDestroy); in finishController() 166 UI_HELPER_EXECUTOR.execute(() -> mController.cleanupScreenshot()); in cleanupScreenshot() 174 UI_HELPER_EXECUTOR.execute(() -> mController.detachNavigationBarFromApp(moveHomeToTop)); in detachNavigationBarFromApp() 182 UI_HELPER_EXECUTOR.execute(() -> mController.animateNavigationBarToApp(duration)); in animateNavigationBarToApp() 190 UI_HELPER_EXECUTOR.execute(() -> mController.setWillFinishToHome(willFinishToHome)); in setWillFinishToHome() 205 UI_HELPER_EXECUTOR.execute( in setFinishTaskTransaction()
|
/aosp12/art/test/082-inline-execute/ |
H A D | Android.bp | 3 // Build rules for ART run-test `082-inline-execute`. 16 name: "art-run-test-082-inline-execute", 21 ":art-run-test-082-inline-execute-expected-stdout", 22 ":art-run-test-082-inline-execute-expected-stderr", 28 name: "art-run-test-082-inline-execute-expected-stdout", 29 out: ["art-run-test-082-inline-execute-expected-stdout.txt"], 36 name: "art-run-test-082-inline-execute-expected-stderr", 37 out: ["art-run-test-082-inline-execute-expected-stderr.txt"],
|
/aosp12/hardware/interfaces/neuralnetworks/1.0/utils/test/ |
H A D | PreparedModelTest.cpp | 115 TEST(PreparedModelTest, execute) { in TEST() argument 119 EXPECT_CALL(*mockPreparedModel, execute(_, _)) in TEST() 135 EXPECT_CALL(*mockPreparedModel, execute(_, _)) in TEST() 152 EXPECT_CALL(*mockPreparedModel, execute(_, _)) in TEST() 169 EXPECT_CALL(*mockPreparedModel, execute(_, _)) in TEST() 185 EXPECT_CALL(*mockPreparedModel, execute(_, _)) in TEST() 233 EXPECT_CALL(*mockPreparedModel, execute(_, _)) in TEST() 255 EXPECT_CALL(*mockPreparedModel, execute(_, _)) in TEST() 276 EXPECT_CALL(*mockPreparedModel, execute(_, _)) in TEST() 297 EXPECT_CALL(*mockPreparedModel, execute(_, _)) in TEST() [all …]
|
/aosp12/system/security/keystore2/src/database/ |
H A D | versioning.rs | 19 tx.execute( in create_or_get_version() 59 tx.execute("INSERT INTO persistent.version (id, version) VALUES(0, ?);", params![version]) in create_or_get_version() 68 .execute("UPDATE persistent.version SET version = ? WHERE id = 0;", params![new_version]) in update_version() 102 conn.execute("ATTACH DATABASE 'file::memory:' as persistent;", NO_PARAMS).unwrap(); in upgrade_database_test() 107 tx.execute( in upgrade_database_test() 119 conn.execute( in upgrade_database_test() 135 conn.execute("DROP TABLE IF EXISTS persistent.test;", NO_PARAMS).unwrap(); in upgrade_database_test() 136 conn.execute( in upgrade_database_test() 191 conn.execute("ATTACH DATABASE 'file::memory:' as persistent;", NO_PARAMS).unwrap(); in create_or_get_version_new_database() 279 conn.execute("ATTACH DATABASE 'file::memory:' as persistent;", NO_PARAMS).unwrap(); in create_or_get_version_legacy_database() [all …]
|
/aosp12/packages/apps/Camera2/src/com/android/camera/session/ |
H A D | CaptureSessionManagerImpl.java | 70 mMainHandler.execute(new Runnable() { in notifyTaskQueued() 88 mMainHandler.execute(new Runnable() { in notifyTaskDone() 108 mMainHandler.execute(new Runnable() { in notifyTaskFailed() 123 mMainHandler.execute(new Runnable() { in notifyTaskCanceled() 142 mMainHandler.execute(new Runnable() { in notifyTaskProgress() 160 mMainHandler.execute(new Runnable() { in notifyTaskProgressText() 178 mMainHandler.execute(new Runnable() { in notifySessionUpdated() 201 mMainHandler.execute(new Runnable() { in notifySessionCaptureIndicatorAvailable() 215 mMainHandler.execute(new Runnable() { in notifySessionThumbnailAvailable() 230 mMainHandler.execute(new Runnable() { in notifySessionPictureDataAvailable() [all …]
|
/aosp12/frameworks/base/core/java/android/hardware/camera2/impl/ |
H A D | CallbackProxies.java | 53 mExecutor.execute(() -> mCallback.onConfigured(session)); in onConfigured() 64 mExecutor.execute(() -> mCallback.onConfigureFailed(session)); in onConfigureFailed() 74 mExecutor.execute(() -> mCallback.onReady(session)); in onReady() 84 mExecutor.execute(() -> mCallback.onActive(session)); in onActive() 94 mExecutor.execute(() -> mCallback.onCaptureQueueEmpty(session)); in onCaptureQueueEmpty() 104 mExecutor.execute(() -> mCallback.onClosed(session)); in onClosed() 114 mExecutor.execute(() -> mCallback.onSurfacePrepared(session, surface)); in onSurfacePrepared()
|
/aosp12/system/sepolicy/prebuilts/api/28.0/ |
H A D | vendor_sepolicy.cil | 915 (allow init_28_0 rild_exec (file (read getattr map execute open))) 924 (allow init_28_0 tee_exec (file (read getattr map execute open))) 984 (allow bootanim_28_0 ashmem_device_28_0 (chr_file (execute))) 993 (allow init_28_0 createns_exec (file (read getattr map execute open))) 1048 (allow init_28_0 execns_exec (file (read getattr map execute open))) 1061 (allow init_28_0 execns_exec (file (read getattr map execute open))) 1067 (allow execns dhcpclient_exec (file (read getattr map execute open))) 1074 (allow execns dhcpserver_exec (file (read getattr map execute open))) 1223 (allow init_28_0 ipv6proxy_exec (file (read getattr map execute open))) 1232 (allow execns ipv6proxy_exec (file (read getattr map execute open))) [all …]
|
/aosp12/frameworks/base/telephony/java/android/telephony/ims/aidl/ |
H A D | SipDelegateConnectionAidlWrapper.java | 62 mExecutor.execute(() -> 74 mExecutor.execute(() -> 86 mExecutor.execute(() -> 97 mExecutor.execute(() -> 109 mExecutor.execute(() -> 123 mExecutor.execute(() -> 134 mExecutor.execute(() -> 145 mExecutor.execute(() -> 231 mExecutor.execute(() -> mStateCallback.onDestroyed( in binderDied() 281 mExecutor.execute(() -> mMessageCallback.onMessageSendFailure(transactionId, reason)); in notifyLocalMessageFailedToSend()
|
/aosp12/packages/apps/Dialer/java/com/android/dialer/simulator/service/ |
H A D | SimulatorService.java | 76 simulatorMainPortal.execute(new String[] {VOICECALL, CUSTOMIZED_INCOMING_CALL}); 86 simulatorMainPortal.execute(new String[] {VOICECALL, CUSTOMIZED_OUTGOING_CALL}); 94 simulatorMainPortal.execute(new String[] {POPULATE_DATABASE}); 102 simulatorMainPortal.execute(new String[] {CLEAN_DATABASE}); 110 simulatorMainPortal.execute(new String[] {ENABLE_SIMULATOR_MODE}); 118 simulatorMainPortal.execute(new String[] {DISABLE_SIMULATOR_MODE}); 126 simulatorMainPortal.execute(new String[] {VOICECALL, INCOMING_ENRICHED_CALL}); 134 simulatorMainPortal.execute(new String[] {VOICECALL, OUTGOING_ENRICHED_CALL}); 143 simulatorMainPortal.execute(new String[] {NOTIFICATIONS, MISSED_CALL});
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/media/ |
H A D | MediaSessionBasedFilter.kt | 69 backgroundExecutor.execute { 101 backgroundExecutor.execute { 149 backgroundExecutor.execute { 156 backgroundExecutor.execute { 163 backgroundExecutor.execute { 174 foregroundExecutor.execute { 180 foregroundExecutor.execute { 186 foregroundExecutor.execute { 192 foregroundExecutor.execute {
|
/aosp12/frameworks/base/telephony/java/android/telephony/euicc/ |
H A D | EuiccCardManager.java | 233 executor.execute(() -> callback.onComplete(resultCode, null)); in disableProfile() 294 executor.execute(() -> callback.onComplete(resultCode, null)); in setNickname() 323 executor.execute(() -> callback.onComplete(resultCode, null)); in deleteProfile() 353 executor.execute(() -> callback.onComplete(resultCode, null)); in resetMemory() 439 executor.execute(() -> callback.onComplete(resultCode, null)); in setDefaultSmdpAddress() 467 executor.execute(() -> callback.onComplete(resultCode, rat)); in requestRulesAuthTable() 523 executor.execute(() -> callback.onComplete(resultCode, info)); in requestEuiccInfo1() 551 executor.execute(() -> callback.onComplete(resultCode, info)); in requestEuiccInfo2() 739 executor.execute(() -> callback.onComplete( in listNotifications() 769 executor.execute(() -> callback.onComplete( in retrieveNotificationList() [all …]
|
/aosp12/frameworks/base/telephony/java/android/service/euicc/ |
H A D | EuiccService.java | 662 mExecutor.execute(new Runnable() { in downloadSubscription() 691 mExecutor.execute(new Runnable() { in getEid() 707 mExecutor.execute(new Runnable() { in startOtaIfNecessary() 726 mExecutor.execute(new Runnable() { in getOtaStatus() 744 mExecutor.execute(new Runnable() { in getDownloadableSubscriptionMetadata() 762 mExecutor.execute(new Runnable() { in getDefaultDownloadableSubscriptionList() 779 mExecutor.execute(new Runnable() { in getEuiccProfileInfoList() 795 mExecutor.execute(new Runnable() { in getEuiccInfo() 812 mExecutor.execute(new Runnable() { in deleteSubscription() 828 mExecutor.execute(new Runnable() { in switchToSubscription() [all …]
|
/aosp12/packages/modules/NeuralNetworks/common/include/ |
H A D | OperationResolver.h | 42 std::function<bool(IOperationExecutionContext*)> execute; member 55 std::function<bool(IOperationExecutionContext*)> execute, Flag flags) in OperationRegistration() 60 execute(std::move(execute)), in OperationRegistration() 124 #define NN_REGISTER_OPERATION(identifier, operationName, validate, prepare, execute, ...) \ argument 127 validate, prepare, execute, {__VA_ARGS__}); \
|
/aosp12/system/core/llkd/tests/ |
H A D | llkd_test.cpp | 63 void execute(const char* command) { in execute() function 83 execute("stop llkd-0"); in llkdSleepPeriod() 84 execute("stop llkd-1"); in llkdSleepPeriod() 89 execute((setprop + LLK_CHECK_STACK_PROPERTY + " ,SyS_openat,__arm64_sys_openat").c_str()); in llkdSleepPeriod() 91 execute((setprop + LLK_ENABLE_WRITEABLE_PROPERTY + " false").c_str()); in llkdSleepPeriod() 93 execute((setprop + LLK_TIMEOUT_MS_PROPERTY + " 120000").c_str()); in llkdSleepPeriod() 95 execute((setprop + KHT_TIMEOUT_PROPERTY + " 130").c_str()); in llkdSleepPeriod() 97 execute((setprop + LLK_CHECK_MS_PROPERTY + " 10000").c_str()); in llkdSleepPeriod() 100 execute((setprop + LLK_ENABLE_PROPERTY + " true").c_str()); in llkdSleepPeriod() 103 execute((setprop + LLK_ENABLE_WRITEABLE_PROPERTY + " true").c_str()); in llkdSleepPeriod() [all …]
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/util/sensors/ |
H A D | AsyncSensorManager.java | 89 mExecutor.execute(() -> { in registerListenerImpl() 121 mExecutor.execute(() -> mInner.registerDynamicSensorCallback(callback, handler)); in registerDynamicSensorCallbackImpl() 126 mExecutor.execute(() -> mInner.unregisterDynamicSensorCallback(callback)); in unregisterDynamicSensorCallbackImpl() 137 mExecutor.execute(() -> { in requestTriggerSensorImpl() 150 mExecutor.execute(() -> { in cancelTriggerSensorImpl() 170 mExecutor.execute(() -> { in registerPluginListener() 186 mExecutor.execute(() -> { in unregisterPluginListener() 206 mExecutor.execute(() -> mInner.setOperationParameter(parameter)); in setOperationParameterImpl() 213 mExecutor.execute(() -> { in unregisterListenerImpl()
|
/aosp12/packages/apps/Camera2/src/com/android/camera/one/v2/photo/ |
H A D | PictureCallbackAdapter.java | 47 mMainExecutor.execute(new Runnable() { in provideQuickExposeUpdatable() 60 mMainExecutor.execute(new Runnable() { 73 mMainExecutor.execute(new Runnable() { 86 mMainExecutor.execute(new Runnable() { 100 mMainExecutor.execute(new Runnable() { 114 mMainExecutor.execute(new Runnable() {
|
/aosp12/packages/apps/Camera2/src/com/android/camera/ui/focus/ |
H A D | FocusController.java | 49 mMainThread.execute(new Runnable() { in showPassiveFocusAtCenter() 68 mMainThread.execute(new Runnable() { in showPassiveFocusAt() 87 mMainThread.execute(new Runnable() { in showActiveFocusAt() 104 mMainThread.execute(new Runnable() { in clearFocusIndicator() 119 mMainThread.execute(new Runnable() { in configurePreviewDimensions() 133 mMainThread.execute(new Runnable() { in setFocusRatio()
|
/aosp12/frameworks/base/core/java/android/window/ |
H A D | TaskOrganizer.java | 253 mExecutor.execute(() -> TaskOrganizer.this.addStartingWindow(windowInfo, appToken)); 258 mExecutor.execute(() -> TaskOrganizer.this.removeStartingWindow(removalInfo)); 263 mExecutor.execute(() -> TaskOrganizer.this.copySplashScreenView(taskId)); 268 mExecutor.execute(() -> TaskOrganizer.this.onAppSplashScreenViewRemoved(taskId)); 273 mExecutor.execute(() -> TaskOrganizer.this.onTaskAppeared(taskInfo, leash)); 278 mExecutor.execute(() -> TaskOrganizer.this.onTaskVanished(taskInfo)); 283 mExecutor.execute(() -> TaskOrganizer.this.onTaskInfoChanged(info)); 288 mExecutor.execute(() -> TaskOrganizer.this.onBackPressedOnTaskRoot(info)); 293 mExecutor.execute(() -> TaskOrganizer.this.onImeDrawnOnTask(taskId));
|
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/util/concurrency/ |
H A D | FakeExecutorTest.java | 61 fakeExecutor.execute(runnable); in testNoDelay() 65 fakeExecutor.execute(runnable); in testNoDelay() 85 fakeExecutor.execute(runnable); in testNoDelay() 86 fakeExecutor.execute(runnable); in testNoDelay() 201 fakeExecutor.execute(runnableA); in testExecutionOrder() 202 fakeExecutor.execute(runnableB); in testExecutionOrder() 203 fakeExecutor.execute(runnableC); in testExecutionOrder() 204 fakeExecutor.execute(runnableD); in testExecutionOrder() 216 fakeExecutor.execute(runnableB); in testExecutionOrder() 218 fakeExecutor.execute(runnableD); in testExecutionOrder() [all …]
|
/aosp12/hardware/qcom/data/ipacfg-mgr/msm8998/ipanat/test/ |
H A D | README.txt | 2 - To execute test suite nt times with n entries, command "ipanatest sep nt n" 4 Example: To execute test suite 1 time with 100 entries, command "ipanattest sep 100" 8 - To execute test suite nt times with n entries, command "ipanatest reg nt n" 10 Example: To execute test suite 5 times with 32 entries, command "ipanattest reg 5 32" 15 Example: To execute inotify 5 times, command "ipanattest inotify 5"
|
/aosp12/hardware/qcom/sdm845/data/ipacfg-mgr/ipanat/test/ |
H A D | README.txt | 2 - To execute test suite nt times with n entries, command "ipanatest sep nt n" 4 Example: To execute test suite 1 time with 100 entries, command "ipanattest sep 100" 8 - To execute test suite nt times with n entries, command "ipanatest reg nt n" 10 Example: To execute test suite 5 times with 32 entries, command "ipanattest reg 5 32" 15 Example: To execute inotify 5 times, command "ipanattest inotify 5"
|