Home
last modified time | relevance | path

Searched refs:root_path (Results 1 – 25 of 38) sorted by relevance

12

/external/syslinux/gpxe/src/hci/commands/
Dsanboot_cmd.c34 const char *root_path = NULL; in sanboot_exec() local
55 root_path = argv[optind]; in sanboot_exec()
58 if ( ( rc = boot_root_path ( root_path ) ) != 0 ) { in sanboot_exec()
60 root_path, strerror ( rc ) ); in sanboot_exec()
/external/libchrome/base/files/
Dfile_enumerator_posix.cc42 FileEnumerator::FileEnumerator(const FilePath& root_path, in FileEnumerator() argument
46 root_path_(root_path), in FileEnumerator()
51 pending_paths_.push(root_path); in FileEnumerator()
54 FileEnumerator::FileEnumerator(const FilePath& root_path, in FileEnumerator() argument
59 root_path_(root_path), in FileEnumerator()
62 pattern_(root_path.Append(pattern).value()) { in FileEnumerator()
70 pending_paths_.push(root_path); in FileEnumerator()
Dfile_enumerator.h107 FileEnumerator(const FilePath& root_path,
110 FileEnumerator(const FilePath& root_path,
Dfile_util.cc38 int64_t ComputeDirectorySize(const FilePath& root_path) { in ComputeDirectorySize() argument
40 FileEnumerator file_iter(root_path, true, FileEnumerator::FILES); in ComputeDirectorySize()
/external/icu/icu4c/source/test/depstest/
Ddepstest.py43 def _ReadObjFile(root_path, library_name, obj_name): argument
52 path = os.path.join(root_path, library_name, obj_name)
85 def _ReadLibrary(root_path, library_name): argument
86 obj_paths = glob.glob(os.path.join(root_path, library_name, "*.o"))
88 _ReadObjFile(root_path, library_name, os.path.basename(path))
145 def Process(root_path): argument
161 _ReadLibrary(root_path, library_name)
/external/selinux/policycoreutils/sestatus/
Dsestatus.c176 char *context, *root_path; in main() local
253 root_path = strdup(root_dir); in main()
254 if (!root_path) { in main()
259 root_path[strlen(root_path) - 1] = '\0'; in main()
260 printf("%s\n", root_path); in main()
261 free(root_path); in main()
/external/libcxx/test/std/experimental/filesystem/class.path/path.member/path.decompose/
Dpath.decompose.pass.cpp68 std::string root_path; member
126 assert(p.root_path() == TC.root_path); in decompPathTest()
127 assert(p.has_root_path() != TC.root_path.empty()); in decompPathTest()
/external/devlib/devlib/module/
Dcpuidle.py123 root_path = '/sys/devices/system/cpu/cpuidle' variable in Cpuidle
127 return target.file_exists(Cpuidle.root_path)
130 return self.target.read_value(self.target.path.join(self.root_path, 'current_driver'))
133 return self.target.read_value(self.target.path.join(self.root_path, 'current_governor_ro'))
139 states_dir = self.target.path.join(self.target.path.dirname(self.root_path), cpu, 'cpuidle')
/external/syslinux/gpxe/src/usr/
Dautoboot.c111 int boot_root_path ( const char *root_path ) { in boot_root_path() argument
116 if ( strncmp ( root_path, sanboot->prefix, in boot_root_path()
118 return sanboot->boot ( root_path ); in boot_root_path()
/external/syslinux/gpxe/src/net/
Daoe.c411 const char *root_path ) { in aoe_parse_root_path() argument
414 if ( strncmp ( root_path, "aoe:", 4 ) != 0 ) in aoe_parse_root_path()
416 ptr = ( ( char * ) root_path + 4 ); in aoe_parse_root_path()
433 const char *root_path ) { in aoe_attach() argument
448 if ( ( rc = aoe_parse_root_path ( aoe, root_path ) ) != 0 ) in aoe_attach()
/external/syslinux/gpxe/src/arch/i386/interface/pcbios/
Daoeboot.c15 static int aoeboot ( const char *root_path ) { in aoeboot() argument
34 if ( ( rc = aoe_attach ( ata, netdev, root_path ) ) != 0 ) { in aoeboot()
Dib_srpboot.c13 static int ib_srpboot ( const char *root_path ) { in ib_srpboot() argument
29 if ( ( rc = srp_attach ( scsi, root_path ) ) != 0 ) { in ib_srpboot()
Discsiboot.c14 static int iscsiboot ( const char *root_path ) { in iscsiboot() argument
30 if ( ( rc = iscsi_attach ( scsi, root_path ) ) != 0 ) { in iscsiboot()
/external/google-breakpad/src/tools/windows/dump_syms/
Ddump_syms_unittest.cc186 std::wstring root_path = testdata_dir + L"\\" + root_name; in TEST_F() local
188 std::wstring sym_path = root_path + L".sym"; in TEST_F()
192 std::wstring pdb_path = root_path + L".pdb"; in TEST_F()
/external/google-breakpad/src/processor/
Dsimple_symbol_supplier.cc144 const string &root_path, string *symbol_file) { in GetSymbolFileAtPathFromRoot() argument
154 string path = root_path; in GetSymbolFileAtPathFromRoot()
Dsimple_symbol_supplier.h130 const string &root_path,
/external/syslinux/gpxe/src/include/gpxe/
Dsanboot.h10 int ( * boot ) ( const char *root_path );
Dsrp.h800 const char *root_path );
865 extern int srp_attach ( struct scsi_device *scsi, const char *root_path );
Daoe.h148 const char *root_path );
/external/syslinux/gpxe/src/include/usr/
Dautoboot.h20 extern int boot_root_path ( const char *root_path );
/external/syslinux/gpxe/src/drivers/block/
Dsrp.c471 int srp_attach ( struct scsi_device *scsi, const char *root_path ) { in srp_attach() argument
487 DBGC ( srp, "SRP %p using %s\n", srp, root_path ); in srp_attach()
490 if ( ( rc = transport->parse_root_path ( srp, root_path ) ) != 0 ) { in srp_attach()
/external/syslinux/gpxe/src/net/tcp/
Discsi.c1616 const char *root_path ) { in iscsi_parse_root_path() argument
1617 char rp_copy[ strlen ( root_path ) + 1 ]; in iscsi_parse_root_path()
1624 strcpy ( rp_copy, root_path ); in iscsi_parse_root_path()
1632 "too short\n", iscsi, root_path ); in iscsi_parse_root_path()
1726 int iscsi_attach ( struct scsi_device *scsi, const char *root_path ) { in iscsi_attach() argument
1739 if ( ( rc = iscsi_parse_root_path ( iscsi, root_path ) ) != 0 ) in iscsi_attach()
1758 iscsi, root_path ); in iscsi_attach()
/external/swiftshader/third_party/LLVM/include/llvm/Support/
DPathV2.h197 const StringRef root_path(StringRef path);
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DPath.h245 StringRef root_path(StringRef path);
/external/llvm/include/llvm/Support/
DPath.h245 StringRef root_path(StringRef path);

12