OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WebRtc_set_history_size
(Results
1 - 3
of
3
) sorted by null
/external/webrtc/webrtc/modules/audio_processing/utility/
delay_estimator_wrapper.h
31
// size can be forced with
WebRtc_set_history_size
().
109
//
WebRtc_set_history_size
().
142
int
WebRtc_set_history_size
(void* handle, int history_size);
delay_estimator_unittest.cc
272
//
WebRtc_set_history_size
() should return -1 if:
275
EXPECT_EQ(-1,
WebRtc_set_history_size
(NULL, 1));
276
EXPECT_EQ(-1,
WebRtc_set_history_size
(handle_, 1));
284
WebRtc_set_history_size
(tmp_handle, kDifferentHistorySize));
286
EXPECT_EQ(kHistorySize,
WebRtc_set_history_size
(handle_, kHistorySize));
611
WebRtc_set_history_size
(handle_, kDifferentHistorySize));
delay_estimator_wrapper.c
330
int
WebRtc_set_history_size
(void* handle, int history_size) {
Completed in 36 milliseconds