Lines Matching refs:PathError
14 // If there is an error, it will be of type *PathError.
32 return nil, &PathError{"GetFileType", file.name, err}
41 return nil, &PathError{"GetFileInformationByHandle", file.name, err}
61 // If there is an error, it will be of type *PathError.
78 return nil, &PathError{"Stat", name, syscall.ELOOP}
84 // If there is an error, it will be of type *PathError.
87 return nil, &PathError{"Lstat", name, syscall.Errno(syscall.ERROR_PATH_NOT_FOUND)}
95 return nil, &PathError{"Lstat", name, e}
100 return nil, &PathError{"GetFileAttributesEx", name, e}
106 return nil, &PathError{"FindFirstFile", name, e}