Searched defs:tmp_handle (Results 1 - 2 of 2) sorted by relevance

/external/webrtc/src/common_audio/vad/
H A Dvad_unittest.cc112 void* tmp_handle = malloc(handle_size_bytes); local
114 EXPECT_EQ(0, WebRtcVad_Assign(&handle, tmp_handle));
115 EXPECT_EQ(handle, tmp_handle);
116 free(tmp_handle);
/external/chromium_org/third_party/webrtc/modules/audio_processing/utility/
H A Ddelay_estimator_unittest.cc281 void* tmp_handle = WebRtc_CreateDelayEstimator(farend_handle_, kHistorySize); local
282 EXPECT_EQ(0, WebRtc_InitDelayEstimator(tmp_handle));
284 WebRtc_set_history_size(tmp_handle, kDifferentHistorySize));
285 EXPECT_EQ(kDifferentHistorySize, WebRtc_history_size(tmp_handle));
287 EXPECT_EQ(-1, WebRtc_history_size(tmp_handle));
326 // |tmp_handle| is already in a non-matching state.
327 EXPECT_EQ(-1, WebRtc_DelayEstimatorProcessFloat(tmp_handle,
346 // |tmp_handle| is already in a non-matching state.
347 EXPECT_EQ(-1, WebRtc_DelayEstimatorProcessFix(tmp_handle,
351 WebRtc_FreeDelayEstimator(tmp_handle);
[all...]

Completed in 87 milliseconds