Lines Matching refs:RemoteAudio

29 RemoteAudio::RemoteAudio(ClientSocket& socket)  in RemoteAudio()  function in RemoteAudio
51 RemoteAudio::~RemoteAudio() in ~RemoteAudio()
59 bool RemoteAudio::init(int port) in init()
74 bool RemoteAudio::threadLoop() in threadLoop()
97 void RemoteAudio::wakeClient(bool result) in wakeClient()
103 bool RemoteAudio::handlePacket() in handlePacket()
138 int RemoteAudio::socketRxCallback(int fd, int events, void* data) in socketRxCallback()
140 RemoteAudio* self = reinterpret_cast<RemoteAudio*>(data); in socketRxCallback()
151 void RemoteAudio::sendCommand(android::sp<android::MessageHandler>& command) in sendCommand()
156 bool RemoteAudio::waitForCompletion(android::sp<android::MessageHandler>& command, int timeInMSec) in waitForCompletion()
162 bool RemoteAudio::waitForPlaybackOrRecordingCompletion( in waitForPlaybackOrRecordingCompletion()
178 void RemoteAudio::doStop(android::sp<android::MessageHandler>& commandHandler, in doStop()
196 bool RemoteAudio::downloadData(const android::String8& name, android::sp<Buffer>& buffer, int& id) in downloadData()
220 int RemoteAudio::getDataId(const android::String8& name) in getDataId()
231 bool RemoteAudio::startPlayback(bool stereo, int samplingF, int mode, int volume, in startPlayback()
266 void RemoteAudio::stopPlayback() in stopPlayback()
271 bool RemoteAudio::waitForPlaybackCompletion() in waitForPlaybackCompletion()
276 bool RemoteAudio::startRecording(bool stereo, int samplingF, int mode, int volume, in startRecording()
301 bool RemoteAudio::waitForRecordingCompletion() in waitForRecordingCompletion()
306 void RemoteAudio::stopRecording() in stopRecording()
311 bool RemoteAudio::getDeviceInfo(android::String8& data) in getDeviceInfo()
329 void RemoteAudio::release() in release()
337 void RemoteAudio::CommandHandler::handleMessage(const android::Message& message) in handleMessage()