HomeSort by relevance Sort by last modified time
    Searched refs:StopPlayout (Results 1 - 25 of 54) sorted by null

1 2 3

  /external/webrtc/webrtc/modules/audio_device/android/
audio_track_jni.h 50 bool StopPlayout();
75 int32_t StopPlayout();
audio_track_jni.cc 38 stop_playout_(native_reg->GetMethodId("stopPlayout", "()Z")),
54 bool AudioTrackJni::JavaAudioTrack::StopPlayout() {
117 StopPlayout();
145 int32_t AudioTrackJni::StopPlayout() {
146 ALOGD("StopPlayout%s", GetThreadInfo().c_str());
151 if (!j_audio_track_->StopPlayout()) {
152 ALOGE("StopPlayout failed!");
opensles_player.h 73 int StopPlayout();
audio_device_unittest.cc 653 void StopPlayout() {
654 EXPECT_EQ(0, audio_device()->StopPlayout());
794 StopPlayout();
831 StopPlayout();
833 StopPlayout();
845 // Verify that calling StopPlayout() will leave us in an uninitialized state
852 EXPECT_EQ(0, audio_device()->StopPlayout());
871 StopPlayout();
    [all...]
audio_device_template.h 174 int32_t StopPlayout() override {
178 int32_t err = output_.StopPlayout();
opensles_player.cc 87 StopPlayout();
128 int OpenSLESPlayer::StopPlayout() {
129 ALOGD("StopPlayout%s", GetThreadInfo().c_str());
  /external/webrtc/talk/app/webrtc/test/
fakeaudiocapturemodule_unittest.cc 159 EXPECT_EQ(0, fake_audio_capture_module_->StopPlayout());
175 EXPECT_EQ(0, fake_audio_capture_module_->StopPlayout());
214 EXPECT_EQ(0, fake_audio_capture_module_->StopPlayout());
fakeaudiocapturemodule.h 114 int32_t StopPlayout() override;
  /external/webrtc/webrtc/voice_engine/
voe_base_impl.h 45 int StopPlayout(int channel) override;
115 int32_t StopPlayout();
voe_base_impl.cc 457 if (StopPlayout() != 0) {
519 int VoEBaseImpl::StopPlayout(int channel) {
529 "StopPlayout() failed to locate channel");
532 if (channelPtr->StopPlayout() != 0) {
533 LOG_F(LS_WARNING) << "StopPlayout() failed to stop playout for channel "
536 return StopPlayout();
613 int32_t VoEBaseImpl::StopPlayout() {
616 if (shared_->audio_device()->StopPlayout() != 0) {
618 "StopPlayout() failed to stop playout");
666 if (shared_->audio_device()->StopPlayout() != 0)
    [all...]
  /external/webrtc/webrtc/voice_engine/include/
voe_base.h 163 virtual int StopPlayout(int channel) = 0;
  /external/webrtc/webrtc/voice_engine/test/auto_test/fixtures/
before_streaming_fixture.cc 49 EXPECT_EQ(0, voe_base_->StopPlayout(channel_));
  /external/webrtc/webrtc/voice_engine/test/auto_test/standard/
dtmf_test.cc 68 EXPECT_EQ(0, voe_base_->StopPlayout(channel_));
file_before_streaming_test.cc 130 EXPECT_EQ(0, voe_base_->StopPlayout(channel_));
mixing_test.cc 155 EXPECT_EQ(0, voe_base_->StopPlayout(streams[i]));
199 EXPECT_EQ(0, voe_base_->StopPlayout(streams[i]));
  /external/webrtc/webrtc/voice_engine/test/auto_test/
voe_stress_test.cc 160 VALIDATE_STRESS(base->StopPlayout(0));
174 VALIDATE_STRESS(base->StopPlayout(0));
357 base->StopPlayout(0);
401 base->StopPlayout(0);
voe_cpu_test.cc 93 CHECK(base->StopPlayout(channel));
  /external/webrtc/webrtc/modules/audio_device/ios/
audio_device_unittest_ios.cc 576 void StopPlayout() {
577 EXPECT_EQ(0, audio_device()->StopPlayout());
618 StopPlayout();
620 StopPlayout();
632 // Verify that calling StopPlayout() will leave us in an uninitialized state
639 EXPECT_EQ(0, audio_device()->StopPlayout());
692 EXPECT_EQ(0, second_audio_device->StopPlayout());
711 StopPlayout();
752 StopPlayout();
772 StopPlayout();
    [all...]
  /external/webrtc/webrtc/modules/audio_device/test/
audio_device_test_api.cc 66 EXPECT_EQ(0, audio_device_->StopPlayout());
528 EXPECT_EQ(0, audio_device_->StopPlayout());
547 EXPECT_EQ(0, audio_device_->StopPlayout());
557 EXPECT_EQ(0, audio_device_->StopPlayout());
616 EXPECT_EQ(0, audio_device_->StopPlayout());
630 EXPECT_EQ(0, audio_device_->StopPlayout());
645 EXPECT_EQ(0, audio_device_->StopPlayout());
660 EXPECT_EQ(0, audio_device_->StopPlayout());
771 EXPECT_EQ(0, audio_device_->StopPlayout());
795 EXPECT_EQ(0, audio_device_->StopPlayout());
    [all...]
func_test_manager.cc     [all...]
  /external/webrtc/webrtc/modules/audio_device/
audio_device_generic.h 58 virtual int32_t StopPlayout() = 0;
  /external/webrtc/webrtc/modules/audio_device/dummy/
audio_device_dummy.cc 70 int32_t AudioDeviceDummy::StopPlayout() { return -1; }
audio_device_dummy.h 62 int32_t StopPlayout() override;
  /external/webrtc/webrtc/modules/audio_device/include/
audio_device.h 95 virtual int32_t StopPlayout() = 0;
fake_audio_device.h 32 virtual int32_t StopPlayout() { return 0; }

Completed in 438 milliseconds

1 2 3