Home
last modified time | relevance | path

Searched refs:mIsInterrupted (Results 1 – 5 of 5) sorted by relevance

/packages/apps/Gallery2/src/com/android/gallery3d/util/
DInterruptableOutputStream.java30 private volatile boolean mIsInterrupted = false; field in InterruptableOutputStream
38 if (mIsInterrupted) throw new InterruptedIOException(); in write()
46 if (mIsInterrupted) throw new InterruptedIOException(); in write()
60 if (mIsInterrupted) throw new InterruptedIOException(); in flush()
65 mIsInterrupted = true; in interrupt()
/packages/modules/NetworkStack/src/com/android/networkstack/ipmemorystore/
DRegularMaintenanceJobService.java50 private volatile boolean mIsInterrupted; field in RegularMaintenanceJobService.InterruptMaintenance
55 mIsInterrupted = false; in InterruptMaintenance()
63 mIsInterrupted = interrupt; in setInterrupted()
67 return mIsInterrupted; in isInterrupted()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/opp/
DBluetoothOppTransfer.java735 @VisibleForTesting boolean mIsInterrupted = false; field in BluetoothOppTransfer.SocketConnectThread
758 mIsInterrupted = true; in interrupt()
777 if (mIsInterrupted) { in connectRfcommSocket()
854 if (mIsInterrupted) { in run()
DBluetoothOppService.java694 private boolean mIsInterrupted; field in BluetoothOppService.UpdateThread
698 mIsInterrupted = false; in UpdateThread()
703 mIsInterrupted = true; in interrupt()
712 while (!mIsInterrupted) { in run()
726 + mIsInterrupted); in run()
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/opp/
DBluetoothOppTransferTest.java380 assertThat(socketConnectThread.mIsInterrupted).isTrue(); in socketConnectThreadInterrupt()