Home | History | Annotate | Download | only in libaudioclient

Lines Matching refs:mono

788     virtual status_t setMasterMono(bool mono)
792 data.writeInt32(static_cast<int32_t>(mono));
800 virtual status_t getMasterMono(bool *mono)
802 if (mono == nullptr) {
814 *mono = static_cast<bool>(reply.readInt32());
1391 bool mono = static_cast<bool>(data.readInt32());
1392 status_t status = setMasterMono(mono);
1399 bool mono;
1400 status_t status = getMasterMono(&mono);
1403 reply->writeInt32(static_cast<int32_t>(mono));