HomeSort by: relevance | last modified time | path
    Searched refs:upath (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/stand/efiboot/
efifile.c 76 CHAR16 *upath; local in function:efi_file_open
89 upath = NULL;
90 rv = utf8_to_ucs2(path, &upath, &len);
94 file_dp = FileDevicePath(efi_vol[vol], upath);
95 FreePool(upath);
  /src/sys/arch/ia64/stand/efi/libefi/
efifs.c 49 efifs_open(const char *upath, struct open_file *f)
80 while (*upath == '/')
81 upath++;
82 if (!*upath) {
87 cp = path = alloc((strlen(upath) + 1) * sizeof(CHAR16));
90 while (*upath) {
91 if (*upath == '/')
94 *cp = *upath;
95 upath++;
  /src/sys/arch/i386/stand/efiboot/
boot.c 777 char *upath, *ufirmware; local in function:command_version
795 upath = NULL;
796 rv = ucs2_to_utf8(path, &upath);
801 DevicePathSubType(efi_bootdp), upath);
802 FreePool(upath);
842 char *upath; local in function:command_devpath
879 upath = NULL;
880 rv = ucs2_to_utf8(path, &upath);
888 DevicePathSubType(dp), upath);
889 FreePool(upath);
    [all...]
  /src/sys/kern/
kern_exec.c 674 * Copy the user or kernel supplied upath to the allocated pathbuffer pbp
677 * where the original supplied copy of upath starts.
680 exec_makepathbuf(struct lwp *l, const char *upath, enum uio_seg seg,
690 error = copystr(upath, path, MAXPATHLEN, &len);
692 error = copyinstr(upath, path, MAXPATHLEN, &len);

Completed in 14 milliseconds