Home | History | Annotate | Download | only in pan

Lines Matching refs:prevState

390         int prevState;
394 prevState = BluetoothProfile.STATE_DISCONNECTED;
396 prevState = panDevice.mState;
405 if (prevState == BluetoothProfile.STATE_DISCONNECTED && state == BluetoothProfile.STATE_DISCONNECTING) {
406 Log.d(TAG, "Ignoring state change from " + prevState + " to " + state);
410 Log.d(TAG, "handlePanDeviceStateChange preState: " + prevState + " state: " + state);
411 if (prevState == state) return;
433 state + ", prevState = " + prevState);
437 (prevState == BluetoothProfile.STATE_CONNECTED ||
438 prevState == BluetoothProfile.STATE_DISCONNECTING)) {
457 prevState + "->" + state);
458 notifyProfileConnectionStateChanged(device, BluetoothProfile.PAN, state, prevState);
461 intent.putExtra(BluetoothPan.EXTRA_PREVIOUS_STATE, prevState);