HomeSort by relevance Sort by last modified time
    Searched refs:OnDeviceChange (Results 1 - 15 of 15) sorted by null

  /external/chromium_org/media/audio/win/
audio_device_listener_win_unittest.cc 37 &AudioDeviceListenerWinTest::OnDeviceChange, base::Unretained(this))));
57 MOCK_METHOD0(OnDeviceChange, void());
72 EXPECT_CALL(*this, OnDeviceChange()).Times(1);
76 EXPECT_CALL(*this, OnDeviceChange()).Times(1);
91 EXPECT_CALL(*this, OnDeviceChange()).Times(0);
95 EXPECT_CALL(*this, OnDeviceChange()).Times(1);
99 EXPECT_CALL(*this, OnDeviceChange()).Times(1);
  /external/chromium_org/content/browser/
system_message_window_win_unittest.cc 36 window_.OnDeviceChange(DBT_DEVNODES_CHANGED, NULL);
41 window_.OnDeviceChange(DBT_DEVICEQUERYREMOVE, NULL);
system_message_window_win.h 22 virtual LRESULT OnDeviceChange(UINT event_type, LPARAM data);
system_message_window_win.cc 105 LRESULT SystemMessageWindowWin::OnDeviceChange(UINT event_type, LPARAM data) {
154 return OnDeviceChange(static_cast<UINT>(wparam), lparam);
  /external/chromium_org/components/storage_monitor/
test_storage_monitor_win.cc 26 OnDeviceChange(event_type, data);
storage_monitor_win.h 66 void OnDeviceChange(UINT event_type, LPARAM data);
storage_monitor_win.cc 146 OnDeviceChange(static_cast<UINT>(wparam), lparam);
184 void StorageMonitorWin::OnDeviceChange(UINT event_type, LPARAM data) {
185 DVLOG(1) << "OnDeviceChange " << event_type << " " << data;
  /external/chromium_org/media/audio/mac/
audio_device_listener_mac_unittest.cc 42 base::Bind(&AudioDeviceListenerMacTest::OnDeviceChange,
69 MOCK_METHOD0(OnDeviceChange, void());
81 EXPECT_CALL(*this, OnDeviceChange()).Times(1);
  /external/chromium_org/media/audio/
audio_output_controller.h 42 // OnDeviceChange(). As the OnDeviceChange() is processed, state transitions
74 virtual void OnDeviceChange(int new_buffer_size, int new_sample_rate) = 0;
144 // OnDeviceChange (unless it is currently diverting, see
159 virtual void OnDeviceChange() OVERRIDE;
audio_manager.h 141 virtual void OnDeviceChange() = 0;
audio_output_controller.cc 278 // If output is currently diverted, we must not call OnDeviceChange
283 OnDeviceChange();
342 void AudioOutputController::OnDeviceChange() {
345 TRACE_EVENT0("audio", "AudioOutputController::OnDeviceChange");
395 // Note: OnDeviceChange() will engage the "re-create" process, which will
398 OnDeviceChange();
407 // Note: OnDeviceChange() will cause the existing stream (the consumer of the
410 OnDeviceChange();
virtual_audio_output_stream_unittest.cc 46 MOCK_METHOD0(OnDeviceChange, void());
audio_output_controller_unittest.cc 44 MOCK_METHOD2(OnDeviceChange, void(int new_buffer_size, int new_sample_rate));
165 base::Bind(&AudioOutputController::OnDeviceChange, controller_));
audio_manager_base.cc 357 DVLOG(1) << "Firing OnDeviceChange() notifications.";
358 FOR_EACH_OBSERVER(AudioDeviceListener, output_listeners_, OnDeviceChange());
  /external/chromium_org/content/browser/renderer_host/media/
audio_renderer_host.cc 73 virtual void OnDeviceChange(int new_buffer_size, int new_sample_rate)
203 void AudioRendererHost::AudioEntry::OnDeviceChange(int new_buffer_size,

Completed in 279 milliseconds