HomeSort by relevance Sort by last modified time
    Searched refs:temp_filename (Results 1 - 21 of 21) sorted by null

  /toolchain/binutils/binutils-2.25/libiberty/
choose-temp.c 63 char *temp_filename; local
67 temp_filename = XNEWVEC (char, len + TEMP_FILE_LEN + 1);
68 strcpy (temp_filename, base);
69 strcpy (temp_filename + len, TEMP_FILE);
71 if (mktemp (temp_filename) == 0)
73 return temp_filename;
make-temp-file.c 188 char *temp_filename; local
198 temp_filename = XNEWVEC (char, base_len
201 strcpy (temp_filename, base);
202 strcpy (temp_filename + base_len, TEMP_FILE);
203 strcpy (temp_filename + base_len + TEMP_FILE_LEN, suffix);
205 fd = mkstemps (temp_filename, suffix_len);
216 return temp_filename;
  /external/webrtc/webrtc/test/testsupport/
fileutils_unittest.cc 95 std::string temp_filename = webrtc::test::TempFilename( local
97 ASSERT_TRUE(webrtc::test::FileExists(temp_filename))
98 << "Couldn't find file: " << temp_filename;
99 remove(temp_filename.c_str());
138 std::string temp_filename = webrtc::test::TempFilename( local
140 FILE* file = fopen(temp_filename.c_str(), "wb");
141 ASSERT_TRUE(file != NULL) << "Failed to open file: " << temp_filename;
143 "Failed to write to file: " << temp_filename; local
145 ASSERT_GT(webrtc::test::GetFileSize(std::string(temp_filename.c_str())), 0u);
146 remove(temp_filename.c_str())
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_netrc.py 4 temp_filename = test_support.TESTFN variable
9 os.unlink(temp_filename)
16 with open(temp_filename, mode) as fp:
18 return netrc.netrc(temp_filename)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_netrc.py 4 temp_filename = test_support.TESTFN variable
9 os.unlink(temp_filename)
16 with open(temp_filename, mode) as fp:
18 return netrc.netrc(temp_filename)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_netrc.py 4 temp_filename = test_support.TESTFN variable
9 os.unlink(temp_filename)
16 with open(temp_filename, mode) as fp:
18 return netrc.netrc(temp_filename)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_netrc.py 4 temp_filename = test_support.TESTFN variable
9 os.unlink(temp_filename)
16 with open(temp_filename, mode) as fp:
18 return netrc.netrc(temp_filename)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_netrc.py 4 temp_filename = test_support.TESTFN variable
9 os.unlink(temp_filename)
16 with open(temp_filename, mode) as fp:
18 return netrc.netrc(temp_filename)
  /external/google-breakpad/src/tools/windows/symupload/
symupload.cc 128 wchar_t temp_filename[_MAX_PATH]; local
129 if (GetTempFileName(temp_path, L"sym", 0, temp_filename) == 0) {
135 if (_wfopen_s(&temp_file, temp_filename, L"w") != 0)
139 if (!(temp_file = _wfopen(temp_filename, L"w")))
148 _wunlink(temp_filename);
152 *temp_file_path = temp_filename;
  /external/python/cpython2/Lib/test/
test_netrc.py 4 temp_filename = test_support.TESTFN variable
13 with open(temp_filename, mode) as fp:
15 self.addCleanup(os.unlink, temp_filename)
16 return netrc.netrc(temp_filename)
  /system/bt/osi/src/
config.cc 299 char* temp_filename = static_cast<char*>(osi_calloc(temp_filename_len)); local
300 snprintf(temp_filename, temp_filename_len, "%s%s", filename, temp_file_ext);
318 fp = fopen(temp_filename, "wt");
321 temp_filename, strerror(errno));
330 temp_filename, strerror(errno));
339 temp_filename, strerror(errno));
348 temp_filename, strerror(errno));
358 temp_filename, strerror(errno));
363 temp_filename, strerror(errno));
369 if (chmod(temp_filename, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP) == -1)
    [all...]
  /external/toolchain-utils/user_activity_benchmarks/
process_hot_functions_unittest.py 156 temp_file, temp_filename = tempfile.mkstemp()
158 hot_functions_processor = self._CreateHotFunctionsProcessor(temp_filename)
160 hot_functions_processor.ExtractExtraFunctions(cwp_statistics, temp_filename)
161 self.checkFileContents(temp_filename, expected_output_lines)
162 os.remove(temp_filename)
  /external/webrtc/webrtc/voice_engine/test/auto_test/standard/
codec_test.cc 187 const std::string temp_filename = webrtc::test::OutputPath() + local
191 event_log->StartLogging(temp_filename, 1000);
195 FILE* event_file = fopen(temp_filename.c_str(), "r");
199 remove(temp_filename.c_str());
  /external/webrtc/webrtc/call/
rtc_event_log_unittest.cc 468 const std::string temp_filename = local
504 log_dumper->StartLogging(temp_filename, 10000000);
512 ASSERT_TRUE(RtcEventLog::ParseRtcEventLog(temp_filename, &parsed_stream));
562 remove(temp_filename.c_str());
635 const std::string temp_filename = local
651 log_dumper->StartLogging(temp_filename, 10000000);
661 ASSERT_TRUE(RtcEventLog::ParseRtcEventLog(temp_filename, &parsed_stream));
677 remove(temp_filename.c_str());
  /external/google-breakpad/src/testing/gtest/scripts/
upload.py     [all...]
  /external/google-breakpad/src/testing/scripts/
upload.py     [all...]
  /external/googletest/googlemock/scripts/
upload.py     [all...]
  /external/googletest/googletest/scripts/
upload.py     [all...]
  /external/v8/testing/gmock/scripts/
upload.py     [all...]
  /external/v8/testing/gtest/scripts/
upload.py     [all...]
  /external/regex-re2/lib/codereview/
codereview.py     [all...]

Completed in 2360 milliseconds