OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WarningCode
(Results
1 - 6
of
6
) sorted by null
/external/webrtc/webrtc/modules/audio_device/include/
audio_device_defines.h
34
enum
WarningCode
{ kRecordingWarning = 0, kPlayoutWarning = 1 };
37
virtual void OnWarningIsReported(const
WarningCode
warning) = 0;
/external/webrtc/webrtc/modules/audio_device/test/
func_test_manager.h
73
virtual void OnWarningIsReported(const
WarningCode
warning);
78
WarningCode
_warning;
audio_device_test_api.cc
62
virtual void OnWarningIsReported(const
WarningCode
warning) {
71
WarningCode
warning_;
[
all
...]
func_test_manager.cc
128
void AudioEventObserver::OnWarningIsReported(const
WarningCode
warning)
[
all
...]
/external/webrtc/webrtc/voice_engine/
voe_base_impl.h
107
void OnWarningIsReported(const
WarningCode
warning) override;
voe_base_impl.cc
66
void VoEBaseImpl::OnWarningIsReported(const
WarningCode
warning) {
68
int
warningCode
= 0;
70
warningCode
= VE_RUNTIME_REC_WARNING;
73
warningCode
= VE_RUNTIME_PLAY_WARNING;
78
voiceEngineObserverPtr_->CallbackOnError(-1,
warningCode
);
Completed in 110 milliseconds