Home
last modified time | relevance | path

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

/aosp_15_r20/external/llvm/unittests/Support/
H A DProgramTest.cpp328 SmallString<128> file_pathname(TestDirectory); in TEST() local
329 path::append(file_pathname, "international-file.txt"); in TEST()
331 ASSERT_NO_ERROR(sys::writeFileWithEncoding(file_pathname.c_str(), utf8_text, in TEST()
334 ASSERT_NO_ERROR(fs::openFileForRead(file_pathname.c_str(), fd)); in TEST()
351 ASSERT_NO_ERROR(fs::remove(file_pathname.str())); in TEST()
H A DPath.cpp802 SmallString<128> file_pathname(TestDirectory); in TEST_F() local
803 path::append(file_pathname, i->filename); in TEST_F()
805 raw_fd_ostream file(file_pathname, EC, sys::fs::F_None); in TEST_F()
811 ASSERT_NO_ERROR(fs::remove(Twine(file_pathname))); in TEST_F()
/aosp_15_r20/external/google-breakpad/src/client/solaris/handler/
H A Dminidump_generator.cc757 bool MinidumpGenerator::WriteMinidumpToFile(const char* file_pathname, in WriteMinidumpToFile() argument
764 assert(file_pathname != NULL); in WriteMinidumpToFile()
766 if (file_pathname == NULL) in WriteMinidumpToFile()
770 if (minidump_writer.Open(file_pathname)) { in WriteMinidumpToFile()
H A Dminidump_generator.h61 bool WriteMinidumpToFile(const char* file_pathname,