Home
last modified time | relevance | path

Searched refs:execution (Results 1 – 25 of 25) sorted by relevance

/aosp14/frameworks/base/core/java/android/os/
H A DTestLooperManager.java122 MessageExecution execution = new MessageExecution(); in execute() local
123 execution.m = message; in execute()
124 synchronized (execution) { in execute()
125 mExecuteQueue.add(execution); in execute()
128 execution.wait(); in execute()
131 if (execution.response != null) { in execute()
132 throw new RuntimeException(execution.response); in execute()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/lockscreen/
H A DLockscreenSmartspaceController.kt94 private val execution: Execution,
170 execution.assertIsMainThread()
262 execution.assertIsMainThread()
268 execution.assertIsMainThread()
275 execution.assertIsMainThread()
294 execution.assertIsMainThread()
313 execution.assertIsMainThread()
332 execution.assertIsMainThread()
462 execution.assertIsMainThread()
491 execution.assertIsMainThread()
[all …]
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/smartspace/
H A DLockscreenPreconditionTest.kt45 private lateinit var execution: Execution
62 val precondition = LockscreenPrecondition(deviceProvisionedController, execution)
77 LockscreenPrecondition(deviceProvisionedController, execution)
103 LockscreenPrecondition(deviceProvisionedController, execution)
H A DLockscreenAndDreamTargetFilterTest.kt63 private lateinit var execution: Execution
102 var filter = LockscreenAndDreamTargetFilter(secureSettings, userTracker, execution, handler,
135 var filter = LockscreenAndDreamTargetFilter(secureSettings, userTracker, execution, handler,
H A DDreamSmartspaceControllerTest.kt62 private lateinit var execution: Execution
146 controller = DreamSmartspaceController(context, smartspaceManager, execution, uiExecutor,
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/
H A DUdfpsDisplayMode.kt33 private val execution: Execution,
42 execution.isMainThread()
74 execution.isMainThread()
H A DUdfpsController.java813 @NonNull Execution execution, in UdfpsController() argument
854 mExecution = execution; in UdfpsController()
H A DAuthController.java750 Execution execution, in AuthController() argument
776 mExecution = execution; in AuthController()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/util/sensors/
H A DThresholdSensorImpl.java70 Execution execution, float threshold, float thresholdLatch, int sensorDelay) { in ThresholdSensorImpl() argument
72 mExecution = execution; in ThresholdSensorImpl()
245 Builder(@Main Resources resources, AsyncSensorManager sensorManager, Execution execution) { in Builder() argument
248 mExecution = execution; in Builder()
372 Execution execution) { in BuilderFactory() argument
375 mExecution = execution; in BuilderFactory()
H A DPostureDependentProximitySensor.java50 Execution execution, in PostureDependentProximitySensor() argument
57 execution in PostureDependentProximitySensor()
H A DProximitySensorImpl.java124 Execution execution) { in ProximitySensorImpl() argument
128 mExecution = execution; in ProximitySensorImpl()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/dreams/smartspace/
H A DDreamSmartspaceController.kt54 private val execution: Execution,
121 execution.assertIsMainThread()
150 execution.assertIsMainThread()
220 execution.assertIsMainThread()
261 execution.assertIsMainThread()
272 execution.assertIsMainThread()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/smartspace/filters/
H A DLockscreenAndDreamTargetFilter.kt40 private val execution: Execution,
65 execution.assertIsMainThread()
123 execution.assertIsMainThread()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/smartspace/preconditions/
H A DLockscreenPrecondition.kt29 private val execution: Execution
88 execution.assertIsMainThread()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/util/concurrency/
H A DGlobalConcurrencyModule.java110 public abstract Execution provideExecution(ExecutionImpl execution); in provideExecution() argument
/aosp14/system/core/fs_mgr/libvbmeta/
H A DAndroid.bp60 …ests due to several binary and lib dependencies currently hard to replicate in continuous execution
/aosp14/system/core/trusty/confirmationui/
H A DREADME5 a trusted execution environment (TEE), without having to rely on Linux and the Android
/aosp14/frameworks/base/packages/SystemUI/docs/
H A Dexecutors.md11 threads or delaying the execution of a Runnable. We have an implementation of
90 originally supplied Runnable if it has not yet started execution:
/aosp14/frameworks/base/services/core/java/com/android/server/am/
H A DBroadcastQueue.md38 next eligible for execution, and that value can be influenced by a wide range
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/lockscreen/
H A DLockscreenSmartspaceControllerTest.kt187 private val execution = FakeExecution() regex
249 execution,
/aosp14/frameworks/base/core/proto/android/server/
H A Djobscheduler.proto185 // This is the job execution factor that is considered to be heavy use of
188 // This is the job execution factor that is considered to be moderate use of
971 // execution time, but not persisted by the system. This is provided by
/aosp14/frameworks/base/apex/jobscheduler/service/java/com/android/server/tare/
H A DREADME.md128 actions such as expedited job execution. The second account would have a lower maximum than the
/aosp14/system/core/init/
H A DREADME.md35 beginning of its execution. It is responsible for the initial set up of the system.
128 "between" the execution of the commands in activities.
412 before APEXes are all activated, the execution is delayed until the activation
/aosp14/frameworks/base/core/proto/android/os/
H A Dbatterystats.proto754 // process for execution restrictions. Sleeping is mostly screen off, but
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/biometrics/
H A DUdfpsControllerTest.java257 Execution execution = new FakeExecution(); in setUp() local