Lines Matching refs:devs
99 static bool GetCoreAudioDevices(bool input, std::vector<Device>* devs);
100 static bool GetWaveDevices(bool input, std::vector<Device>* devs);
162 std::vector<Device>* devs) {
163 devs->clear();
166 if (!GetCoreAudioDevices(input, devs))
169 if (!GetWaveDevices(input, devs))
172 return FilterDevices(devs, kFilteredAudioDevicesName);
271 bool input, std::vector<Device>* devs) {
298 devs->push_back(dev);
316 bool GetWaveDevices(bool input, std::vector<Device>* devs) {
326 devs->push_back(Device(rtc::ToUtf8(caps.szPname),
336 devs->push_back(Device(rtc::ToUtf8(caps.szPname), i));