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

1 2 3

  /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 43 std::string file_path = GetTestAndroidRoot() + "/bin/dexdump2"; local
44 EXPECT_TRUE(OS::FileExists(file_path.c_str())) << file_path << " should be a valid file path";
45 std::vector<std::string> exec_argv = { file_path };
  /art/dexlist/
dexlist_test.cc 44 std::string file_path = GetTestAndroidRoot(); local
45 file_path += "/bin/dexlist";
46 EXPECT_TRUE(OS::FileExists(file_path.c_str())) << file_path << " should be a valid file path";
47 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);
  /external/pdfium/core/fpdfapi/parser/
cpdf_hint_tables_unittest.cpp 23 std::string file_path; local
24 if (!PathService::GetTestFilePath(file_name, &file_path))
27 nullptr, IFX_SeekableReadStream::CreateFromFilename(file_path.c_str()),
  /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;
  /development/vndk/tools/header-checker/header-abi-util/src/
collect_exported_headers.cpp 61 const std::string &file_path = walker->path(); local
63 llvm::StringRef file_name(llvm::sys::path::filename(file_path));
73 llvm::errs() << "Failed to stat file : " << file_path << "\n";
83 exported_headers->insert(RealPath(file_path));
  /external/tensorflow/tensorflow/compiler/xla/service/
executable.cc 154 string file_path = tensorflow::io::JoinPath(directory_path, filename); local
158 return tensorflow::WriteStringToFile(tensorflow::Env::Default(), file_path,
  /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;
  /external/tensorflow/tensorflow/core/platform/profile_utils/
android_armv7a_cpu_utils_helper.cc 111 const string file_path = strings::Printf( local
113 FILE *fp = fopen(file_path.c_str(), "r");
120 LOG(WARNING) << "Failed to \"" << file_path << "\"";
  /test/vts/utils/native/libprofiling/
VtsProfilingInterface.cpp 93 string file_path = trace_file_path_prefix_ + package + "_" + version + "_" + local
98 LOG(INFO) << "Creating new trace file: " << file_path;
99 int fd = open(file_path.c_str(), O_RDWR | O_CREAT | O_EXCL,
102 LOG(ERROR) << "Can not open trace file: " << file_path
  /test/vts-testcase/hal/treble/vintf/
utils.cpp 111 string file_path = kDataDir + PackageRoot(fq_iface_name) + kHashFileName; local
112 auto hashes = Hash::lookupHash(file_path, fq_iface_name.string(), &err);
  /art/imgdiag/
imgdiag_test.cc 92 std::string file_path = GetImgDiagFilePath(); local
93 EXPECT_TRUE(OS::FileExists(file_path.c_str())) << file_path << " should be a valid file path";
111 file_path,
  /external/adhd/cras/src/tests/
file_wait_unittest.cc 51 static void SimpleFileWait(const char *file_path) {
59 stat_rc = stat(file_path, &stat_buf);
64 EXPECT_EQ(0, cras_file_wait_create(file_path, CRAS_FILE_WAIT_FLAG_NONE,
79 EXPECT_EQ(0, RmRF(file_path));
81 EXPECT_EQ(0, mknod(file_path, S_IFREG | 0600, 0));
106 std::string file_path; local
111 file_path = subdir_path + "/does_not_exist";
148 EXPECT_EQ(0, cras_file_wait_create(file_path.c_str(),
189 EXPECT_EQ(0, mknod(file_path.c_str(), S_IFREG | 0600, 0));
200 EXPECT_EQ(0, unlink(file_path.c_str()))
    [all...]
  /external/flatbuffers/src/
idl_gen_json_schema.cpp 211 const std::string file_path = GeneratedFileName(path_, file_name_); local
213 return SaveFile(file_path.c_str(), final_code, false);
  /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/tools/hiddenapi/
hiddenapi_test.cc 31 std::string file_path = GetTestAndroidRoot(); local
32 file_path += "/bin/hiddenapi";
34 file_path += "d";
36 if (!OS::FileExists(file_path.c_str())) {
37 LOG(FATAL) << "Could not find binary " << file_path;
40 return 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/adhd/cras/src/common/
cras_file_wait.c 26 const char *file_path; member in struct:cras_file_wait
116 if (strcmp(file_wait->watch_path, file_wait->file_path) == 0) {
186 strcpy(file_wait->watch_dir, file_wait->file_path);
250 if (strcmp(file_wait->watch_path, file_wait->file_path) == 0) {
262 strcpy(file_wait->watch_dir, file_wait->file_path);
270 int cras_file_wait_create(const char *file_path,
280 if (!file_path || !*file_path || !callback || !file_wait_out)
285 file_path_len = strlen(file_path);
297 /* We've allocated memory such that the file_path, watch_path
    [all...]
  /external/libchrome/base/files/
file_unittest.cc 24 FilePath file_path = temp_dir.GetPath().AppendASCII("create_file_1"); local
39 File file(file_path, base::File::FLAG_OPEN | base::File::FLAG_READ);
46 File file(file_path, base::File::FLAG_OPEN_ALWAYS | base::File::FLAG_READ);
54 File file(file_path, base::File::FLAG_OPEN | base::File::FLAG_READ);
67 file.Initialize(file_path, base::File::FLAG_OPEN | base::File::FLAG_READ);
79 File file(file_path, base::File::FLAG_CREATE | base::File::FLAG_READ);
87 File file(file_path,
96 file_path = temp_dir.GetPath().AppendASCII("create_file_2");
97 File file(file_path,
105 EXPECT_FALSE(base::PathExists(file_path));
111 FilePath file_path = temp_dir.GetPath().AppendASCII("create_file"); local
129 FilePath file_path = temp_dir.GetPath().AppendASCII("create_file_1"); local
156 FilePath file_path = temp_dir.GetPath().AppendASCII("read_write_file"); local
228 FilePath file_path = temp_dir.GetPath().AppendASCII("append_file"); local
276 FilePath file_path = temp_dir.GetPath().AppendASCII("truncate_file"); local
391 FilePath file_path = local
416 FilePath file_path = local
440 FilePath file_path = temp_dir.GetPath().AppendASCII("seek_file"); local
457 FilePath file_path = temp_dir.GetPath().AppendASCII("file"); local
484 FilePath file_path = temp_dir.GetPath().AppendASCII("file"); local
525 FilePath file_path = temp_dir.GetPath().AppendASCII("file"); local
539 FilePath file_path = temp_dir.GetPath().AppendASCII("file"); local
555 FilePath file_path = temp_dir.GetPath().AppendASCII("file"); local
572 FilePath file_path = temp_dir.GetPath().AppendASCII("file"); local
594 FilePath file_path = temp_dir.GetPath().AppendASCII("file"); local
620 FilePath file_path = temp_dir.GetPath().AppendASCII("file"); local
635 FilePath file_path = temp_dir.GetPath().AppendASCII("file"); local
655 FilePath file_path = temp_dir.GetPath().AppendASCII("file"); local
    [all...]
  /external/libmojo/base/
path_service.cc 14 #include "base/files/file_path.h"
237 FilePath file_path = path; local
245 if (!PathExists(file_path) && !CreateDirectory(file_path))
251 file_path = MakeAbsoluteFilePath(file_path);
252 if (file_path.empty())
255 DCHECK(file_path.IsAbsolute());
263 path_data->overrides[key] = file_path;
  /external/tensorflow/tensorflow/core/api_def/
update_api_def.cc 251 string file_path = local
253 file_path = strings::Printf(file_path.c_str(), op.name().c_str());
256 if (!Env::Default()->FileExists(file_path).ok()) {
257 std::cout << "Creating ApiDef file " << file_path << std::endl;
259 TF_CHECK_OK(WriteStringToFile(Env::Default(), file_path, api_def_text));
  /external/wpa_supplicant_8/hostapd/hidl/1.0/
hostapd.cpp 41 const std::string file_path = local
44 config, file_path, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP,
46 return file_path;
52 file_path.c_str(), strerror(error));
54 int result = stat(file_path.c_str(), &st);
  /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);

Completed in 1193 milliseconds

1 2 3