Lines Matching refs:CommandHandler

32       mDownloadHandler(new CommandHandler(*this, (int)AudioProtocol::ECmdDownload)),  in RemoteAudio()
33 mPlaybackHandler(new CommandHandler(*this, (int)AudioProtocol::ECmdStartPlayback)), in RemoteAudio()
34 mRecordingHandler(new CommandHandler(*this, (int)AudioProtocol::ECmdStartRecording)), in RemoteAudio()
35 mDeviceInfoHandler(new CommandHandler(*this, (int)AudioProtocol::ECmdGetDeviceInfo)), in RemoteAudio()
110 CommandHandler* handler = NULL; in handlePacket()
112 handler = reinterpret_cast<CommandHandler*>(mDownloadHandler.get()); in handlePacket()
114 handler = reinterpret_cast<CommandHandler*>(mPlaybackHandler.get()); in handlePacket()
116 handler = reinterpret_cast<CommandHandler*>(mRecordingHandler.get()); in handlePacket()
118 handler = reinterpret_cast<CommandHandler*>(mDeviceInfoHandler.get()); in handlePacket()
165 CommandHandler* handler = reinterpret_cast<CommandHandler*>(commandHandler.get()); in waitForPlaybackOrRecordingCompletion()
181 CommandHandler* handler = reinterpret_cast<CommandHandler*>(commandHandler.get()); in doStop()
190 android::sp<android::MessageHandler> command(new CommandHandler(*this, (int)id)); in doStop()
198 CommandHandler* handler = reinterpret_cast<CommandHandler*>(mDownloadHandler.get()); in downloadData()
234 CommandHandler* handler = reinterpret_cast<CommandHandler*>(mPlaybackHandler.get()); in startPlayback()
279 CommandHandler* handler = reinterpret_cast<CommandHandler*>(mRecordingHandler.get()); in startRecording()
313 CommandHandler* handler = reinterpret_cast<CommandHandler*>(mDeviceInfoHandler.get()); in getDeviceInfo()
331 android::sp<android::MessageHandler> command(new CommandHandler(*this, CommandHandler::EExit)); in release()
337 void RemoteAudio::CommandHandler::handleMessage(const android::Message& message) in handleMessage()