Home | History | Annotate | Download | only in os

Lines Matching refs:PathError

11 // *PathError, which may be unpacked for more information.
106 err = &PathError{"read", f.name, e}
125 err = &PathError{"read", f.name, e}
153 err = &PathError{"write", f.name, e}
168 err = &PathError{"write", f.name, e}
192 return 0, &PathError{"seek", f.name, e}
204 // If there is an error, it will be of type *PathError.
209 return &PathError{"mkdir", name, e}
221 // If there is an error, it will be of type *PathError.
224 return &PathError{"chdir", dir, e}
231 // If there is an error, it will be of type *PathError.
237 return &PathError{"chdir", f.name, e}
245 // If there is an error, it will be of type *PathError.
254 // If there is an error, it will be of type *PathError.
286 return &PathError{op, f.name, ErrClosed}