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

12

  /external/webrtc/webrtc/base/
filerotatingstream.cc 244 std::string file_path = file_names_[current_file_index_]; local
258 if (!file_stream_->Open(file_path, mode, &error)) {
259 std::cerr << "Failed to open: " << file_path << "Error: " << error
343 Pathname file_path(dir_path_, file_name.str());
344 return file_path.pathname();
  /frameworks/base/core/jni/
fd_utils.cpp 164 std::string file_path; local
166 if (!android::base::Readlink(fd_path, &file_path)) {
170 if (!whitelist->IsAllowed(file_path)) {
171 LOG(ERROR) << "Not whitelisted : " << file_path;
211 return new FileDescriptorInfo(f_stat, file_path, fd, open_flags, fd_flags, fs_flags, offset);
232 const int new_fd = TEMP_FAILURE_RETRY(open(file_path.c_str(), open_flags));
235 PLOG(ERROR) << "Failed open(" << file_path << ", " << open_flags << ")";
278 FileDescriptorInfo::FileDescriptorInfo(struct stat stat, const std::string& file_path,
283 file_path(file_path),
    [all...]
  /frameworks/native/libs/vr/libvrflinger/
display_service.cpp 208 std::string file_path = base::GetProperty(property_name, ""); local
209 if (file_path.empty()) {
214 if (!base::ReadFileToString(file_path, &data)) {
  /system/extras/simpleperf/
cmd_record_test.cpp 352 std::string file_path; local
358 while (reader->ReadFileFeature(read_pos, &file_path, &file_type, &min_vaddr, &symbols)) {
dso.cpp 166 std::string file_path = local
168 if (IsRegularFile(file_path)) {
  /test/vts/agents/hal/
AgentRequestHandler.cpp 120 const string& file_path = command_msg.file_path(); local
130 cout << "[runner->agent] command " << __FUNCTION__ << " (file_path="
131 << file_path << ")" << endl;
266 file_path, target_class, target_type, target_version,
  /test/vts-testcase/hal/treble/vintf/
vts_treble_vintf_test.cpp 109 string file_path = kDataDir + PackageRoot(fq_iface_name) + kHashFileName; local
110 auto hashes = Hash::lookupHash(file_path, fq_iface_name.string(), &err);
  /external/libchrome/base/metrics/
persistent_memory_allocator_unittest.cc 616 FilePath file_path = temp_dir.path().AppendASCII("persistent_memory"); local
633 File writer(file_path, File::FLAG_CREATE | File::FLAG_WRITE);
639 mmfile->Initialize(file_path);
671 FilePath file_path = temp_dir.path().AppendASCII("extend_test"); local
675 ASSERT_FALSE(PathExists(file_path));
681 File writer(file_path, File::FLAG_CREATE | File::FLAG_WRITE);
685 ASSERT_TRUE(PathExists(file_path));
687 ASSERT_TRUE(GetFileSize(file_path, &before_size));
693 File(file_path, File::FLAG_OPEN | File::FLAG_READ | File::FLAG_WRITE),
705 ASSERT_TRUE(GetFileSize(file_path, &after_size))
737 FilePath file_path = temp_dir.path().AppendASCII(filename); local
    [all...]
  /system/extras/perfprofd/
perfprofdcore.cc 644 std::string file_path = dest_dir + "/" + e->d_name; local
645 remove(file_path.c_str());
  /external/google-breakpad/src/client/mac/handler/
dynamic_images.cc 480 string file_path; local
485 file_path = ReadTaskString(images.task_, info.file_path_);
493 file_path,
  /hardware/qcom/audio/post_proc/
volume_listener.c 596 char file_path[PATH_MAX]; local
600 snprintf(file_path, PATH_MAX, "%s/%s",
602 if (F_OK == access(file_path, mode)) {
603 strcpy(file_name, file_path);
  /hardware/qcom/display/msm8996/sdm/libs/core/fb/
hw_hdmi.cpp 460 char file_path[kMaxStringLength]; local
461 memset(file_path, 0, sizeof(file_path));
462 snprintf(file_path , sizeof(file_path), "%s%d/res_info", fb_path_, fb_node_index_);
464 int fd = Sys::open_(file_path, file_mode);
467 DLOGE("file '%s' not found : ret = %d err str: %s", file_path, fd, strerror(errno));
  /system/tools/aidl/
generate_cpp.cpp 800 string file_path = interface.GetPackage(); local
801 for (char& c: file_path) {
806 if (!file_path.empty()) {
807 file_path += (use_os_sep) ? OS_PATH_SEPARATOR : '/';
809 file_path += ClassName(interface, class_type);
810 file_path += ".h";
812 return file_path;
  /art/patchoat/
patchoat.cc 345 const std::string& file_path = oat_in->GetFilePath(); local
349 LOG(ERROR) << "Failed to find oat header in oat file " << file_path;
354 LOG(ERROR) << "Elf file " << file_path << " has an invalid oat header";
360 LOG(INFO) << "Oat file at " << file_path << " is " << (is_pic ? "PIC" : "not pic");
    [all...]
  /art/profman/
profile_assistant_test.cc 165 std::string file_path = GetTestAndroidRoot(); local
166 file_path += "/bin/profman";
168 file_path += "d";
170 EXPECT_TRUE(OS::FileExists(file_path.c_str()))
171 << file_path << " should be a valid file path";
172 return file_path;
    [all...]
  /bionic/linker/
linker.cpp 964 const char* file_path = &buf[separator - path + 2]; local
979 if (FindEntry(handle, ZipString(file_path), &entry) != 0) {
    [all...]
  /external/flatbuffers/src/
idl_gen_cpp.cpp 264 const auto file_path = GeneratedFileName(path_, file_name_); local
266 return SaveFile(file_path.c_str(), final_code, false);
    [all...]
  /external/google-breakpad/src/client/linux/minidump_writer/
minidump_writer.cc 568 char file_path[NAME_MAX]; local
570 mapping, file_path, sizeof(file_path), file_name, sizeof(file_name));
584 if (!minidump_writer_.WriteString(file_path, my_strlen(file_path), &ld))
    [all...]
  /external/protobuf/src/google/protobuf/compiler/
command_line_interface.cc 226 string file_path = path + "/google/protobuf/descriptor.proto"; local
227 return access(file_path.c_str(), F_OK) != -1;
    [all...]
  /external/protobuf/src/google/protobuf/compiler/objectivec/
objectivec_helpers.cc 63 const char* file_path = getenv("GPB_OBJC_EXPECTED_PACKAGE_PREFIXES"); local
64 if (file_path) {
65 expected_prefixes_path = file_path;
    [all...]
  /hardware/qcom/display/msm8998/sdm/libs/core/fb/
hw_hdmi.cpp 544 char file_path[kMaxStringLength]; local
545 memset(file_path, 0, sizeof(file_path));
546 snprintf(file_path , sizeof(file_path), "%s%d/res_info", fb_path_, fb_node_index_);
548 int fd = Sys::open_(file_path, file_mode);
551 DLOGE("file '%s' not found : ret = %d err str: %s", file_path, fd, strerror(errno));
    [all...]
  /hardware/qcom/display/sdm845/sdm/libs/core/fb/
hw_hdmi.cpp 544 char file_path[kMaxStringLength]; local
545 memset(file_path, 0, sizeof(file_path));
546 snprintf(file_path , sizeof(file_path), "%s%d/res_info", fb_path_, fb_node_index_);
548 int fd = Sys::open_(file_path, file_mode);
551 DLOGE("file '%s' not found : ret = %d err str: %s", file_path, fd, strerror(errno));
    [all...]
  /external/e2fsprogs/misc/
e4defrag.c 267 char file_path[PATH_MAX + 1]; local
272 if (realpath(file, file_path) == NULL) {
278 if (statfs64(file_path, &fsbuf) < 0) {
299 ret = memcmp(file_path, mnt->mnt_dir, len);
    [all...]
  /prebuilts/tools/common/m2/repository/org/mozilla/rhino/1.7R3/
rhino-1.7R3.jar 

Completed in 1868 milliseconds

12