Home | History | Annotate | Download | only in Gen

Lines Matching refs:Path

28     the Path argument, for accessibility according to the bit pattern contained

34 If Path ends in '/' or '\\', the target must be a directory, otherwise it doesn't matter.
37 @param[in] Path Path or name of the file to be checked.
47 const char *Path,
57 if((Path == NULL) || ((Mode & ~GOOD_MODE) != 0)) {
61 PLength = strlen(Path);
66 retval = stat(Path, &FileStat);
68 /* Path exists. FileStat now holds valid information. */
69 WantDir = isDirSep(Path[PLength - 1]); // Does Path end in '/' or '\\' ?
102 if(strcmp(&Path[PLength-4], ".efi") != 0) {
112 /* File or path does not exist. */