Home | History | Annotate | Download | only in libaudioclient

Lines Matching refs:replySize

173             uint32_t replySize = data.readInt32();
174 uint32_t replySz = replySize;
176 if (replySize) {
177 if (replySize > EFFECT_PARAM_SIZE_MAX) {
182 resp = (char *)calloc(replySize, 1);
192 if (replySz < replySize) {
193 replySize = replySz;
195 reply->writeInt32(replySize);
196 if (replySize) {
197 reply->write(resp, replySize);