Lines Matching refs:kIOError
52 kIOError = 5, enumerator
133 return Status(kIOError, msg, msg2);
135 static Status IOError(SubCode msg = kNone) { return Status(kIOError, msg); }
200 static Status NoSpace() { return Status(kIOError, kNoSpace); } in NoSpace()
202 return Status(kIOError, kNoSpace, msg, msg2);
210 static Status SpaceLimit() { return Status(kIOError, kSpaceLimit); } in SpaceLimit()
212 return Status(kIOError, kSpaceLimit, msg, msg2);
215 static Status PathNotFound() { return Status(kIOError, kPathNotFound); } in PathNotFound()
217 return Status(kIOError, kPathNotFound, msg, msg2);
236 bool IsIOError() const { return code() == kIOError; } in IsIOError()
281 return (code() == kIOError) && (subcode() == kNoSpace); in IsNoSpace()
296 return (code() == kIOError) && (subcode() == kPathNotFound); in IsPathNotFound()