Home
last modified time | relevance | path

Searched refs:threadPolicy (Results 1 – 4 of 4) sorted by relevance

/packages/modules/OnDevicePersonalization/tests/servicetests/src/com/android/ondevicepersonalization/services/
DOnDevicePersonalizationExecutorsTests.java37 StrictMode.ThreadPolicy threadPolicy = StrictMode.getThreadPolicy(); in testBackgroundExecutorSettings()
38 assertNotEquals(threadPolicy.toString(), StrictMode.ThreadPolicy.LAX.toString()); in testBackgroundExecutorSettings()
48 StrictMode.ThreadPolicy threadPolicy = StrictMode.getThreadPolicy(); in testLightweightExecutorSettings()
49 assertNotEquals(threadPolicy.toString(), StrictMode.ThreadPolicy.LAX.toString()); in testLightweightExecutorSettings()
59 StrictMode.ThreadPolicy threadPolicy = StrictMode.getThreadPolicy(); in testBlockingExecutorSettings()
60 assertEquals(threadPolicy.toString(), StrictMode.ThreadPolicy.LAX.toString()); in testBlockingExecutorSettings()
/packages/modules/OnDevicePersonalization/tests/federatedcomputetests/src/com/android/federatedcompute/services/common/
DFederatedComputeExecutorsTest.java39 StrictMode.ThreadPolicy threadPolicy = StrictMode.getThreadPolicy(); in testBackgroundExecutorSettings()
41 threadPolicy.toString(), StrictMode.ThreadPolicy.LAX.toString()); in testBackgroundExecutorSettings()
53 StrictMode.ThreadPolicy threadPolicy = StrictMode.getThreadPolicy(); in testLightweightExecutorSettings()
55 threadPolicy.toString(), StrictMode.ThreadPolicy.LAX.toString()); in testLightweightExecutorSettings()
67 StrictMode.ThreadPolicy threadPolicy = StrictMode.getThreadPolicy(); in testBlockingExecutorSettings()
68 assertEquals(threadPolicy.toString(), StrictMode.ThreadPolicy.LAX.toString()); in testBlockingExecutorSettings()
/packages/apps/Dialer/java/com/android/dialer/strictmode/impl/
DSystemDialerStrictMode.java69 StrictMode.ThreadPolicy threadPolicy = in setRecommendedMainThreadPolicy() local
71 StrictMode.setThreadPolicy(threadPolicy); in setRecommendedMainThreadPolicy()
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/concurrency/
DAdServicesExecutorTest.java115 ExecutorResult(ThreadPolicy threadPolicy, int priority, String threadName) { in ExecutorResult() argument
116 mThreadPolicy = threadPolicy; in ExecutorResult()