Home
last modified time | relevance | path

Searched refs:shouldQuit (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/tests/UsbHostExternalManagmentTest/AoapTestHost/src/com/android/hardware/usb/aoaphosttest/
DUsbAoapHostTestActivity.java138 private synchronized boolean shouldQuit() { in shouldQuit() method in UsbAoapHostTestActivity.ReaderThread
144 while (!shouldQuit()) { in run()
/frameworks/base/tests/UsbHostExternalManagmentTest/AoapTestDevice/src/com/android/hardware/usb/aoapdevicetest/
DUsbAoapDeviceTestActivity.java138 private synchronized boolean shouldQuit() { in shouldQuit() method in UsbAoapDeviceTestActivity.ReaderThread
144 while (!shouldQuit()) { in run()
/frameworks/base/services/core/java/com/android/server/vcn/
DVcnGatewayConnection.java399 public final boolean shouldQuit; field in VcnGatewayConnection.EventDisconnectRequestedInfo
401 EventDisconnectRequestedInfo(@NonNull String reason, boolean shouldQuit) { in EventDisconnectRequestedInfo() argument
403 this.shouldQuit = shouldQuit; in EventDisconnectRequestedInfo()
408 return Objects.hash(reason, shouldQuit); in hashCode()
418 return reason.equals(rhs.reason) && shouldQuit == rhs.shouldQuit; in equals()
1309 if (info.shouldQuit) { in handleDisconnectRequested()
1378 if (((EventDisconnectRequestedInfo) msg.obj).shouldQuit) { in processStateMsg()
1465 if (info.shouldQuit) { in processStateMsg()
2318 void sendDisconnectRequestedAndAcquireWakelock(String reason, boolean shouldQuit) { in sendDisconnectRequestedAndAcquireWakelock() argument
2322 new EventDisconnectRequestedInfo(reason, shouldQuit)); in sendDisconnectRequestedAndAcquireWakelock()