Searched refs:root_path (Results 1 - 13 of 13) sorted by relevance

/macosx-10.10/xnu-2782.1.97/bsd/sys/
H A Dimageboot.h33 int imageboot_format_is_valid(const char *root_path);
34 int imageboot_mount_image(const char *root_path, int height);
/macosx-10.10/xnu-2782.1.97/bsd/kern/
H A Dimageboot.c61 imageboot_format_is_valid(const char *root_path) argument
63 return (strncmp(root_path, kIBFilePrefix,
79 char *root_path = NULL; local
83 MALLOC_ZONE(root_path, caddr_t, MAXPATHLEN, M_NAMEI, M_WAITOK);
84 if (root_path == NULL)
88 if (!(PE_parse_boot_argn("rp0", root_path, MAXPATHLEN) ||
89 PE_parse_boot_argn("rp", root_path, MAXPATHLEN) ||
90 PE_parse_boot_argn(IMAGEBOOT_ROOT_ARG, root_path, MAXPATHLEN))) {
95 if (imageboot_format_is_valid(root_path)) {
96 DBG_TRACE("%s: Found %s\n", __FUNCTION__, root_path);
132 imageboot_mount_image(const char *root_path, int height) argument
209 char *root_path = NULL; local
252 char *root_path = NULL; local
[all...]
H A Dnetboot.c270 get_root_path(char * root_path) argument
304 memcpy(root_path, path, len);
305 root_path[len] = '\0';
328 char * root_path = NULL; local
336 MALLOC_ZONE(root_path, caddr_t, MAXPATHLEN, M_NAMEI, M_WAITOK);
337 if (root_path == NULL)
339 if (PE_parse_boot_argn("rp0", root_path, MAXPATHLEN) == TRUE
340 || PE_parse_boot_argn("rp", root_path, MAXPATHLEN) == TRUE
341 || PE_parse_boot_argn("rootpath", root_path, MAXPATHLEN) == TRUE) {
342 if (imageboot_format_is_valid(root_path)) {
[all...]
/macosx-10.10/bootp-298/bootplib/
H A Dnbimages.h49 const char * root_path; member in struct:__anon7027::__anon7028
53 const char * root_path; member in struct:__anon7027::__anon7029
H A Dnbimages.c375 printf(" %-12s%s", entry->type_info.nfs.root_path,
553 char root_path[PATH_MAX]; local
837 strlcpy(root_path, tmp, sizeof(root_path));
842 snprintf(root_path, sizeof(root_path), "nfs:%s:%s:%s",
847 snprintf(root_path, sizeof(root_path), "nfs:%s:%s",
855 root_path_len = strlen(root_path);
870 strlcpy(root_path, tm
[all...]
/macosx-10.10/ICU-531.30/icuSources/test/depstest/
H A Ddepstest.py41 def _ReadObjFile(root_path, library_name, obj_name):
50 path = os.path.join(root_path, library_name, obj_name)
81 def _ReadLibrary(root_path, library_name):
82 obj_paths = glob.glob(os.path.join(root_path, library_name, "*.o"))
84 _ReadObjFile(root_path, library_name, os.path.basename(path))
136 def Process(root_path):
152 _ReadLibrary(root_path, library_name)
/macosx-10.10/apache-793/httpd/modules/lua/
H A Dmod_lua.h142 const char *root_path; member in struct:__anon6283
H A Dmod_lua.c170 apr_filepath_merge(&file, server_cfg->root_path,
1481 server_cfg->root_path,
1636 cfg->root_path = root;
1931 cfg->root_path = NULL;
/macosx-10.10/llvmCore-3425.0.34/include/llvm/Support/
H A DPathV2.h210 const StringRef root_path(StringRef path);
221 /// @result The path starting after root_path if one exists, otherwise "".
319 /// root_path != ""
/macosx-10.10/bootp-298/bootpd.tproj/
H A Dbsdpd.c497 entry->type_info.http.root_path);
512 entry->type_info.nfs.root_path);
879 const char * root_path = NULL; local
885 root_path = image_entry->type_info.nfs.root_path;
891 image_entry->type_info.nfs.root_path);
892 root_path = tmp;
898 root_path = image_entry->type_info.http.root_path;
906 root_path
[all...]
/macosx-10.10/Libinfo-459/lookup.subproj/
H A Dfile_module.c1849 const char *root_path = "/";
1851 if (stat(root_path, &rootstat) < 0) return;
1852 if (statfs(root_path, &rootfsinfo) < 0) return;
1856 root_path = "/root";
1857 if (stat(root_path, &rootstat) < 0) return;
1858 if (statfs(root_path, &rootfsinfo) < 0) return;
1863 rootfs = (si_item_t *)LI_ils_create("L4488sssss44", (unsigned long)si, CATEGORY_FS, 1, 0LL, 0LL, root_spec, root_path, rootfsinfo.f_fstypename, FSTAB_RW, FSTAB_RW, 0, 1);
/macosx-10.10/llvmCore-3425.0.34/lib/Support/
H A DPathV2.cpp264 const StringRef root_path(StringRef path) {
348 StringRef root = root_path(path);
540 return !root_path(p).empty();
/macosx-10.10/llvmCore-3425.0.34/unittests/Support/
H A DPath.cpp111 path::root_path(*i);

Completed in 334 milliseconds