Lines Matching refs:errorno
23 int errorno, in ErrnoException() argument
31 Local<String> estring = OneByteString(isolate, errors::errno_string(errorno)); in ErrnoException()
33 msg = strerror(errorno); in ErrnoException()
57 Integer::New(isolate, errorno)).Check(); in ErrnoException()
90 int errorno, in UVException() argument
99 msg = uv_strerror(errorno); in UVException()
101 Local<String> js_code = OneByteString(isolate, uv_err_name(errorno)); in UVException()
140 Integer::New(isolate, errorno)).Check(); in UVException()
154 static const char* winapi_strerror(const int errorno, bool* must_free) { in winapi_strerror() argument
160 errorno, in winapi_strerror()
185 int errorno, in WinapiErrnoException() argument
194 msg = winapi_strerror(errorno, &must_free); in WinapiErrnoException()
213 obj->Set(env->context(), env->errno_string(), Integer::New(isolate, errorno)) in WinapiErrnoException()