Home
last modified time | relevance | path

Searched refs:combined_name (Results 1 – 3 of 3) sorted by relevance

/external/webrtc/webrtc/system_wrappers/source/
Ddata_log_c_helpers_unittest.c35 char* combined_name = malloc(kOutLen * sizeof(char)); in WebRtcDataLogCHelper_TestCombine() local
36 char* out_ptr = WebRtcDataLog_Combine(combined_name, kOutLen, kTableName, 17); in WebRtcDataLogCHelper_TestCombine()
41 if (strcmp(combined_name, "c_wrapper_table_17") != 0) { in WebRtcDataLogCHelper_TestCombine()
44 free(combined_name); in WebRtcDataLogCHelper_TestCombine()
Ddata_log_c.cc27 extern "C" char* WebRtcDataLog_Combine(char* combined_name, size_t combined_len, in WebRtcDataLog_Combine() argument
32 std::copy(combined.begin(), combined.end(), combined_name); in WebRtcDataLog_Combine()
33 combined_name[combined.size()] = '\0'; in WebRtcDataLog_Combine()
34 return combined_name; in WebRtcDataLog_Combine()
/external/webrtc/webrtc/system_wrappers/include/
Ddata_log_c.h30 char* WebRtcDataLog_Combine(char* combined_name, size_t combined_len,