Searched defs:prevState (Results 1 - 4 of 4) sorted by relevance

/frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
H A Dph_disp.h115 Word16 prevState; member in struct:__anon582
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothHealthCallback.java55 * @param prevState The previous state of the channel
62 BluetoothDevice device, int prevState, int newState, ParcelFileDescriptor fd,
65 "prevState:" + prevState + "newState:" + newState + "ParcelFd:" + fd +
61 onHealthChannelStateChange(BluetoothHealthAppConfiguration config, BluetoothDevice device, int prevState, int newState, ParcelFileDescriptor fd, int channelId) argument
H A DBluetoothHealth.java440 BluetoothDevice device, int prevState, int newState,
442 mCallback.onHealthChannelStateChange(config, device, prevState, newState, fd,
439 onHealthChannelStateChange(BluetoothHealthAppConfiguration config, BluetoothDevice device, int prevState, int newState, ParcelFileDescriptor fd, int channelId) argument
/frameworks/base/services/java/com/android/server/
H A DBluetoothManagerService.java116 public void onBluetoothStateChange(int prevState, int newState) throws RemoteException {
117 Message msg = mHandler.obtainMessage(MESSAGE_BLUETOOTH_STATE_CHANGE,prevState,newState);
748 int prevState = msg.arg1;
750 if (DBG) Log.d(TAG, "MESSAGE_BLUETOOTH_STATE_CHANGE: prevState = " + prevState + ", newState=" + newState);
752 bluetoothStateChangeHandler(prevState, newState);
977 private void bluetoothStateChangeHandler(int prevState, int newState) { argument
978 if (prevState != newState) {
998 intent.putExtra(BluetoothAdapter.EXTRA_PREVIOUS_STATE, prevState);
1001 if (DBG) Log.d(TAG,"Bluetooth State Change Intent: " + prevState
[all...]

Completed in 54 milliseconds