Lines Matching refs:mState

71       mState(BluetoothStreamState::DISABLED),  in BluetoothAudioPortAidl()
103 mState = BluetoothStreamState::STANDBY; in registerPort()
178 BluetoothStreamState previous_state = mState; in controlResultHandler()
187 mState = BluetoothStreamState::STANDBY; in controlResultHandler()
198 mState = BluetoothStreamState::STARTED; in controlResultHandler()
206 mState = BluetoothStreamState::STANDBY; in controlResultHandler()
211 mState = BluetoothStreamState::STANDBY; in controlResultHandler()
220 mState = BluetoothStreamState::DISABLED; in controlResultHandler()
246 BluetoothStreamState previous_state = mState; in sessionChangedHandler()
249 mState = BluetoothStreamState::DISABLED; in sessionChangedHandler()
313 if (mState == BluetoothStreamState::DISABLED) { in standby()
314 mState = BluetoothStreamState::STANDBY; in standby()
330 return mState != BluetoothStreamState::STARTING; in condWaitState()
332 return mState == BluetoothStreamState::STARTED; in condWaitState()
338 return mState != BluetoothStreamState::SUSPENDING; in condWaitState()
340 return mState == BluetoothStreamState::STANDBY; in condWaitState()
360 if (mState == BluetoothStreamState::STARTED) { in start()
362 } else if (mState == BluetoothStreamState::SUSPENDING || in start()
363 mState == BluetoothStreamState::STARTING) { in start()
365 auto state_ = mState; in start()
378 if (mState == BluetoothStreamState::STARTED) { in start()
380 } else if (mState == BluetoothStreamState::STANDBY) { in start()
381 mState = BluetoothStreamState::STARTING; in start()
412 if (mState == BluetoothStreamState::STANDBY) { in suspend()
414 } else if (mState == BluetoothStreamState::SUSPENDING || in suspend()
415 mState == BluetoothStreamState::STARTING) { in suspend()
417 auto state_ = mState; in suspend()
430 if (mState == BluetoothStreamState::STANDBY) { in suspend()
432 } else if (mState == BluetoothStreamState::STARTED) { in suspend()
433 mState = BluetoothStreamState::SUSPENDING; in suspend()
460 if (mState != BluetoothStreamState::DISABLED) { in stop()
462 mState = BluetoothStreamState::DISABLED; in stop()
545 return mState; in getState()
554 LOG(DEBUG) << __func__ << ": BluetoothAudioPortAidl old state = " << mState in setState()
556 mState = state; in setState()