Home | History | Annotate | Download | only in win32

Lines Matching defs:strerror

23 // Overrides strerror() to handle error codes not supported by the Windows C
26 // sysdeps.h defines strerror to adb_strerror, but in this function, we
27 // want to call the real C Runtime strerror().
28 #pragma push_macro("strerror")
29 #undef strerror
33 char* errmsg = strerror(-1);
37 errmsg = strerror(err);
65 // buffer used by strerror()/_strerror(). _strerror() appends the
81 // strerror() can muster (probably "Unknown error" or some
83 errmsg = strerror(err);
86 // We don't have a custom message, so use whatever strerror(err)
94 #pragma pop_macro("strerror")