OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:combined_name
(Results
1 - 3
of
3
) sorted by null
/external/webrtc/src/system_wrappers/source/
data_log_c_helpers_unittest.c
35
char*
combined_name
= malloc(kOutLen * sizeof(char));
local
36
char* out_ptr = WebRtcDataLog_Combine(
combined_name
, kOutLen, kTableName, 17);
41
if (strcmp(
combined_name
, "c_wrapper_table_17") != 0) {
44
free(
combined_name
);
data_log_c.cc
29
extern "C" char* WebRtcDataLog_Combine(char*
combined_name
, size_t combined_len,
34
std::copy(combined.begin(), combined.end(),
combined_name
);
35
combined_name
[combined.size()] = '\0';
36
return
combined_name
;
/external/webrtc/src/system_wrappers/interface/
data_log_c.h
34
char* WebRtcDataLog_Combine(char*
combined_name
, size_t combined_len,
Completed in 41 milliseconds