Home | History | Annotate | Download | only in system

Lines Matching defs:errno

25  * errno value, for comparison against the constants in {@link OsConstants}, should sophisticated
32 * The errno value, for comparison with the {@code E} constants in {@link OsConstants}.
34 public final int errno;
37 * Constructs an instance with the given function name and errno value.
39 public ErrnoException(String functionName, int errno) {
41 this.errno = errno;
45 * Constructs an instance with the given function name, errno value, and cause.
47 public ErrnoException(String functionName, int errno, Throwable cause) {
50 this.errno = errno;
54 * Converts the stashed function name and errno value to a human-readable string.
59 String errnoName = OsConstants.errnoName(errno);
61 errnoName = "errno " + errno;
63 String description = Libcore.os.strerror(errno);