Home
last modified time | relevance | path

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

/external/webrtc/webrtc/system_wrappers/source/
Dfile_impl.cc113 FILE* tmp_id = NULL; in OpenFile() local
126 tmp_id = _wfopen(wide_file_name, L"rt"); in OpenFile()
128 tmp_id = _wfopen(wide_file_name, L"wt"); in OpenFile()
132 tmp_id = _wfopen(wide_file_name, L"rb"); in OpenFile()
134 tmp_id = _wfopen(wide_file_name, L"wb"); in OpenFile()
140 tmp_id = fopen(file_name_utf8, "rt"); in OpenFile()
142 tmp_id = fopen(file_name_utf8, "wt"); in OpenFile()
146 tmp_id = fopen(file_name_utf8, "rb"); in OpenFile()
148 tmp_id = fopen(file_name_utf8, "wb"); in OpenFile()
153 if (tmp_id != NULL) { in OpenFile()
[all …]