Home
last modified time | relevance | path

Searched refs:mReceiveLatch (Results 1 – 2 of 2) sorted by relevance

/aosp12/frameworks/base/core/tests/batterystatstests/BatteryStatsLoadTests/src/com/android/frameworks/core/batterystatsloadtests/
H A DConnectivitySetupRule.java112 private final CountDownLatch mReceiveLatch = new CountDownLatch(1);
141 return mReceiveLatch.await(60, TimeUnit.SECONDS);
145 if (mReceiveLatch.getCount() == 0) {
151 mReceiveLatch.countDown();
/aosp12/packages/modules/Connectivity/tests/cts/net/util/java/android/net/cts/util/
H A DCtsNetUtils.java604 private final CountDownLatch mReceiveLatch = new CountDownLatch(1); field in CtsNetUtils.ConnectivityActionReceiver
651 mReceiveLatch.countDown(); in onReceive()
656 return mReceiveLatch.await(CONNECTIVITY_CHANGE_TIMEOUT_SECS, TimeUnit.SECONDS); in waitForState()