HomeSort by relevance Sort by last modified time
    Searched defs:file_path (Results 1 - 25 of 49) sorted by null

1 2

  /external/chromium-trace/catapult/common/py_utils/py_utils/refactor/
module.py 10 def __init__(self, file_path):
11 self._file_path = file_path
17 def file_path(self): member in class:Module
  /art/dexdump/
dexdump_test.cc 44 std::string file_path = GetTestAndroidRoot() + "/bin/dexdump2"; local
45 EXPECT_TRUE(OS::FileExists(file_path.c_str())) << file_path << " should be a valid file path";
46 std::vector<std::string> exec_argv = { file_path };
  /art/dexlist/
dexlist_test.cc 45 std::string file_path = GetTestAndroidRoot(); local
46 file_path += "/bin/dexlist";
47 EXPECT_TRUE(OS::FileExists(file_path.c_str())) << file_path << " should be a valid file path";
48 std::vector<std::string> exec_argv = { file_path };
  /bionic/tools/versioner/src/
VFS.cpp 51 const char* file_path = ent->fts_accpath; local
52 unique_fd fd(open(file_path, O_RDONLY | O_CLOEXEC));
54 err(1, "failed to open header '%s'", file_path);
57 auto buffer_opt = llvm::MemoryBuffer::getOpenFile(fd, file_path, -1, false, false);
59 errx(1, "failed to map header '%s'", file_path);
62 if (!vfs->addFile(file_path, ent->fts_statp->st_mtime, std::move(buffer_opt.get()))) {
63 errx(1, "failed to add file '%s'", file_path);
Preprocessor.cpp 476 llvm::StringRef file_path = file_it.first; local
484 loc.end = findNextSemicolon(file_lines[file_path], loc.end);
490 mergeGuards(file_lines[file_path], guard_map);
492 if (!file_path.startswith(src_dir)) {
493 errx(1, "input file %s is not in %s\n", file_path.str().c_str(), src_dir.c_str());
497 llvm::StringRef rel_path = file_path.substr(src_dir.size(), file_path.size() - src_dir.size());
500 rewriteFile(output_path, file_lines[file_path], guard_map);
  /development/vndk/tools/header-checker/header-abi-util/src/
collect_exported_headers.cpp 53 const std::string &file_path = walker->path(); local
55 llvm::StringRef file_name(llvm::sys::path::filename(file_path));
65 llvm::errs() << "Failed to stat file : " << file_path << "\n";
74 llvm::SmallString<128> abs_path(file_path);
  /art/dexoptanalyzer/
dexoptanalyzer_test.cc 28 std::string file_path = GetTestAndroidRoot(); local
29 file_path += "/bin/dexoptanalyzer";
31 file_path += "d";
33 EXPECT_TRUE(OS::FileExists(file_path.c_str())) << file_path << " should be a valid file path";
34 return file_path;
  /frameworks/base/core/jni/
fd_utils.h 85 const std::string file_path; member in class:FileDescriptorInfo
95 FileDescriptorInfo(struct stat stat, const std::string& file_path, int fd, int open_flags,
  /system/update_engine/common/
file_fetcher.cc 70 string file_path = url.substr(strlen("file://")); local
72 brillo::FileStream::Open(base::FilePath(file_path),
78 LOG(ERROR) << "Couldn't open " << file_path;
  /test/vts/utils/native/libprofiling/
VtsProfilingInterface.cpp 73 string file_path = trace_file_path_ + "_" + string(product_name) + "_" + local
77 LOG(INFO) << "Creating new profiler instance with file path: " << file_path;
78 int fd = open(file_path.c_str(), O_RDWR | O_CREAT | O_EXCL,
81 LOG(ERROR) << "Can not open trace file: " << file_path
  /art/imgdiag/
imgdiag_test.cc 93 std::string file_path = GetImgDiagFilePath(); local
94 EXPECT_TRUE(OS::FileExists(file_path.c_str())) << file_path << " should be a valid file path";
112 file_path,
  /frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/
MediaStoreSaver.java 41 String file_path = folder_path + "/" + folderName; local
42 File dir = new File(file_path);
  /art/oatdump/
oatdump_test.h 87 std::string file_path = GetOatDumpFilePath(flavor); local
89 EXPECT_TRUE(OS::FileExists(file_path.c_str())) << file_path << " should be a valid file path";
92 std::vector<std::string> exec_argv = { file_path };
  /bootable/recovery/tests/manual/
recovery_test.cpp 127 std::string file_path = dir_path + namelist[n]->d_name; local
128 files.push_back(file_path);
143 std::string file_path = GetParam(); variable
144 fp = fopen(file_path.c_str(), "rbe");
  /external/libchrome/base/files/
file_unittest.cc 23 FilePath file_path = temp_dir.path().AppendASCII("create_file_1"); local
38 File file(file_path, base::File::FLAG_OPEN | base::File::FLAG_READ);
45 File file(file_path, base::File::FLAG_OPEN_ALWAYS | base::File::FLAG_READ);
53 File file(file_path, base::File::FLAG_OPEN | base::File::FLAG_READ);
66 file.Initialize(file_path, base::File::FLAG_OPEN | base::File::FLAG_READ);
78 File file(file_path, base::File::FLAG_CREATE | base::File::FLAG_READ);
86 File file(file_path,
95 file_path = temp_dir.path().AppendASCII("create_file_2");
96 File file(file_path,
104 EXPECT_FALSE(base::PathExists(file_path));
110 FilePath file_path = temp_dir.path().AppendASCII("create_file"); local
128 FilePath file_path = temp_dir.path().AppendASCII("create_file_1"); local
155 FilePath file_path = temp_dir.path().AppendASCII("read_write_file"); local
227 FilePath file_path = temp_dir.path().AppendASCII("append_file"); local
275 FilePath file_path = temp_dir.path().AppendASCII("truncate_file"); local
390 FilePath file_path = temp_dir.path().AppendASCII("read_at_current_position"); local
414 FilePath file_path = temp_dir.path().AppendASCII("write_at_current_position"); local
437 FilePath file_path = temp_dir.path().AppendASCII("seek_file"); local
454 FilePath file_path = temp_dir.path().AppendASCII("file"); local
481 FilePath file_path = temp_dir.path().AppendASCII("file"); local
    [all...]
  /external/libmojo/base/
path_service.cc 14 #include "base/files/file_path.h"
239 FilePath file_path = path; local
247 if (!PathExists(file_path) && !CreateDirectory(file_path))
253 file_path = MakeAbsoluteFilePath(file_path);
254 if (file_path.empty())
257 DCHECK(file_path.IsAbsolute());
265 path_data->overrides[key] = file_path;
  /frameworks/rs/tests/java_api/HealingBrush/src/rs/example/android/com/healingbrush/
MediaStoreSaver.java 42 String file_path = folder_path + "/" + folderName; local
43 File dir = new File(file_path);
  /frameworks/rs/tests/java_api/SSHealingBrush/src/rs/example/android/com/healingbrush/
MediaStoreSaver.java 42 String file_path = folder_path + "/" + folderName; local
43 File dir = new File(file_path);
  /system/extras/puncture_fs/
puncture_fs.c 78 char file_path[FILENAME_MAX]; local
83 sprintf(file_path, "%s/file_%lu", dir_path, id);
84 fd = open(file_path, O_WRONLY | O_CREAT | O_SYNC, 0777);
90 fprintf(stderr, "\nerrno: %d. Failed to create %s\n", errno, file_path);
98 errno, base_length, file_path);
108 errno, size - length, file_path);
115 fprintf(stderr, "\nFailed to close %s\n", file_path);
  /system/extras/simpleperf/
cmd_dumprecord.cpp 207 std::string file_path; local
213 while (record_file_reader_->ReadFileFeature(read_pos, &file_path,
216 PrintIndented(2, "file_path %s\n", file_path.c_str());
  /test/vts/drivers/hal/common/component_loader/
HalDriverLoader.cpp 64 const string file_path = driver_lib_dir + "/" + string(ent->d_name); local
65 if (ParseInterfaceSpec(file_path.c_str(), spec_msg)) {
  /external/chromium-trace/catapult/tracing/tracing/trace_data/
trace_data.py 84 return trace.file_path
172 def Serialize(self, file_path, trace_title=''):
173 """Serializes the trace result to |file_path|.
192 ['--output', file_path] + ['--title', trace_title])
224 def file_path(self): member in class:TraceFileHandle
  /external/google-breakpad/src/client/linux/microdump_writer/
microdump_writer.cc 312 char file_path[NAME_MAX]; local
314 mapping, file_path, sizeof(file_path), file_name, sizeof(file_name));
  /external/pdfium/fpdfsdk/
fpdf_dataavail_embeddertest.cpp 22 std::string file_path; local
23 if (!PathService::GetTestFilePath(file_name, &file_path))
25 file_contents_ = GetFileContents(file_path.c_str(), &file_length_);
  /external/pdfium/testing/
embedder_test.cpp 137 std::string file_path; local
138 if (!PathService::GetTestFilePath(filename, &file_path))
140 file_contents_ = GetFileContents(file_path.c_str(), &file_length_);

Completed in 829 milliseconds

1 2