• Home
  • Raw
  • Download

Lines Matching refs:pReplyData

92                                                    void* pReplyData) {  in handleCommand()  argument
98 return (this->*handler->second)(cmdSize, pCmdData, replySize, pReplyData); in handleCommand()
103 void* pReplyData) { in handleInit() argument
104 if (!replySize || *replySize < sizeof(int) || !pReplyData) { in handleInit()
106 numericPointerToString(replySize).c_str(), pReplyData); in handleInit()
111 return *(status_t*)pReplyData = OK; in handleInit()
115 uint32_t* replySize, void* pReplyData) { in handleSetParameter() argument
117 !pReplyData) { in handleSetParameter()
119 cmdSize, pCmdData, numericPointerToString(replySize).c_str(), pReplyData); in handleSetParameter()
130 EffectParamWriter writer(*(effect_param_t*)pReplyData); in handleSetParameter()
132 return *(status_t*)pReplyData = ret; in handleSetParameter()
136 uint32_t* replySize, void* pReplyData) { in handleGetParameter() argument
137 if (cmdSize < sizeof(effect_param_t) || !pCmdData || !replySize || !pReplyData) { in handleGetParameter()
139 pCmdData, numericPointerToString(replySize).c_str(), pReplyData); in handleGetParameter()
150 memcpy(pReplyData, pCmdData, sizeof(effect_param_t) + reader.getParameterSize()); in handleGetParameter()
151 auto writer = EffectParamWriter(*(effect_param_t*)pReplyData); in handleGetParameter()
163 uint32_t* replySize, void* pReplyData) { in handleSetConfig() argument
164 if (!replySize || *replySize != sizeof(int) || !pReplyData || in handleSetConfig()
167 cmdSize, pCmdData, numericPointerToString(replySize).c_str(), pReplyData); in handleSetConfig()
225 return *static_cast<int32_t*>(pReplyData) = OK; in handleSetConfig()
230 uint32_t* replySize, void* pReplyData) { in handleGetConfig() argument
231 if (!replySize || *replySize != sizeof(effect_config_t) || !pReplyData) { in handleGetConfig()
233 numericPointerToString(replySize).c_str(), pReplyData); in handleGetConfig()
247 effect_config_t* pConfig = (effect_config_t*)pReplyData; in handleGetConfig()
257 void* pReplyData) { in handleReset() argument
258 if (!replySize || !pReplyData) { in handleReset()
260 numericPointerToString(replySize).c_str(), pReplyData); in handleReset()
269 uint32_t* replySize, void* pReplyData) { in handleEnable() argument
270 if (!replySize || !pReplyData) { in handleEnable()
272 numericPointerToString(replySize).c_str(), pReplyData); in handleEnable()
281 uint32_t* replySize, void* pReplyData) { in handleDisable() argument
282 if (!replySize || !pReplyData) { in handleDisable()
284 numericPointerToString(replySize).c_str(), pReplyData); in handleDisable()
292 uint32_t* replySize, void* pReplyData) { in handleSetAudioSource() argument
293 if (cmdSize != sizeof(uint32_t) || !pCmdData || !replySize || !pReplyData) { in handleSetAudioSource()
295 cmdSize, pCmdData, numericPointerToString(replySize).c_str(), pReplyData); in handleSetAudioSource()
308 return *static_cast<int32_t*>(pReplyData) = OK; in handleSetAudioSource()
312 uint32_t* replySize, void* pReplyData) { in handleSetAudioMode() argument
313 if (cmdSize != sizeof(uint32_t) || !pCmdData || !replySize || !pReplyData) { in handleSetAudioMode()
315 cmdSize, pCmdData, numericPointerToString(replySize).c_str(), pReplyData); in handleSetAudioMode()
327 return *static_cast<int32_t*>(pReplyData) = OK; in handleSetAudioMode()
331 uint32_t* replySize, void* pReplyData) { in handleSetDevice() argument
332 if (cmdSize != sizeof(uint32_t) || !pCmdData || !replySize || !pReplyData) { in handleSetDevice()
334 cmdSize, pCmdData, numericPointerToString(replySize).c_str(), pReplyData); in handleSetDevice()
359 return *static_cast<int32_t*>(pReplyData) = OK; in handleSetDevice()
363 uint32_t* replySize, void* pReplyData) { in handleSetVolume() argument
390 if (replySize && *replySize == 2 * sizeof(uint32_t) && pReplyData) { in handleSetVolume()
392 memcpy(pReplyData, vol_ret, sizeof(vol_ret)); in handleSetVolume()
398 uint32_t* replySize, void* pReplyData) { in handleSetOffload() argument
399 if (cmdSize < sizeof(effect_offload_param_t) || !pCmdData || !replySize || !pReplyData) { in handleSetOffload()
401 cmdSize, pCmdData, numericPointerToString(replySize).c_str(), pReplyData); in handleSetOffload()
425 return *static_cast<int32_t*>(pReplyData) = OK; in handleSetOffload()
431 void* pReplyData) { in handleVisualizerCapture() argument
432 if (!replySize || !pReplyData) { in handleVisualizerCapture()
434 numericPointerToString(replySize).c_str(), pReplyData); in handleVisualizerCapture()
446 return visualizerCapture(replySize, pReplyData); in handleVisualizerCapture()
452 void* pReplyData) { in handleVisualizerMeasure() argument
453 if (!replySize || !pReplyData) { in handleVisualizerMeasure()
455 numericPointerToString(replySize).c_str(), pReplyData); in handleVisualizerMeasure()
467 return visualizerMeasure(replySize, pReplyData); in handleVisualizerMeasure()