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

  /packages/apps/Launcher3/
update_gallery_files.py 48 for file_path in files.split():
49 dir = os.path.dirname(file_path)
50 if file_path.find('exif') != -1 or file_path.find('common') != -1:
51 file_path = 'gallerycommon/' + file_path variable
52 cmd = 'cp %s/%s WallpaperPicker/%s/' % (gallery_dir, file_path, dir)
update_system_wallpaper_cropper.py 51 for file_path in files.split():
52 file_path = src_dir + file_path variable
53 dir = os.path.dirname(file_path)
56 cmd = 'cp %s %s/%s' % (file_path, framework_dir, dir)
  /art/oatdump/
oatdump_test.cc 62 std::string file_path = GetOatDumpFilePath(); local
64 EXPECT_TRUE(OS::FileExists(file_path.c_str())) << file_path << " should be a valid file path";
66 std::vector<std::string> exec_argv = { file_path };
  /art/imgdiag/
imgdiag_test.cc 82 std::string file_path = GetImgDiagFilePath(); local
83 EXPECT_TRUE(OS::FileExists(file_path.c_str())) << file_path << " should be a valid file path";
97 std::vector<std::string> exec_argv = { file_path, diff_pid_args, boot_image_args };
  /external/lldb/source/API/
SBDeclaration.cpp 190 char file_path[PATH_MAX*2]; local
191 m_opaque_ap->GetFile().GetPath (file_path, sizeof (file_path));
192 strm.Printf ("%s:%u", file_path, GetLine());
SBLineEntry.cpp 234 char file_path[PATH_MAX*2]; local
235 m_opaque_ap->file.GetPath (file_path, sizeof (file_path));
236 strm.Printf ("%s:%u", file_path, GetLine());
  /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);
  /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));
  /ndk/sources/android/crazy_linker/tests/
test_util.h 153 String file_path; local
154 file_path.Format("%s/%s", path_, entry->d_name);
155 if (unlink(file_path.c_str()) < 0)
156 Panic("Could not remove %s: %s\n", file_path.c_str(), strerror(errno));
  /system/extras/perfprofd/
perfprofdcore.cc 673 std::string file_path = dest_dir + "/" + e->d_name; local
674 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,
  /external/lldb/source/Host/macosx/
Symbols.cpp 721 char file_path[PATH_MAX]; local
722 file_path[0] = '\0';
728 file_spec_ptr->GetPath(file_path, sizeof(file_path));
733 else if (file_path && file_path[0])
734 command.Printf("%s --ignoreNegativeCache --copyExecutable %s", g_dsym_for_uuid_exe_path, file_path);
    [all...]
  /art/patchoat/
patchoat.cc 364 const std::string& file_path = oat_in->GetFile().GetPath(); local
368 LOG(ERROR) << "Failed to find oat header in oat file " << file_path;
373 LOG(ERROR) << "Elf file " << file_path << " has an invalid oat header";
379 LOG(INFO) << "Oat file at " << file_path << " is " << (is_pic ? "PIC" : "not pic");
    [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/e2fsprogs/misc/
e4defrag.c 323 char file_path[PATH_MAX + 1]; local
328 if (realpath(file, file_path) == NULL) {
334 if (statfs64(file_path, &fsbuf) < 0) {
355 ret = memcmp(file_path, mnt->mnt_dir, len);
    [all...]
  /ndk/sources/host-tools/ndk-depends/
ndk-depends.cc 960 String file_path = search_paths[n]; local
961 if (file_path.empty())
963 if (file_path[file_path.size() - 1] != _T('/') &&
964 file_path[file_path.size() - 1] != _T('\\')) {
965 file_path.append(_T("/"));
967 file_path.append(libname);
969 LOG2(_T(" in %s: "), file_path.c_str());
971 if (_tstat(file_path.c_str(), &st) < 0)
    [all...]
  /external/lldb/source/Commands/
CommandObjectTarget.cpp 244 const char *file_path = command.GetArgumentAtIndex(0); local
245 Timer scoped_timer(__PRETTY_FUNCTION__, "(lldb) target create '%s'", file_path);
251 file_path,
320 result.AppendMessageWithFormat ("Current executable set to '%s' (%s).\n", file_path, target_sp->GetArchitecture().GetArchitectureName());
    [all...]
  /prebuilts/tools/common/m2/repository/org/mozilla/rhino/1.7R3/
rhino-1.7R3.jar 

Completed in 541 milliseconds