HomeSort by: relevance | last modified time | path
    Searched refs:errorno (Results 1 - 4 of 4) sorted by relevancy

  /src/external/mit/libuv/dist/src/win/
dl.c 25 static int uv__dlerror(uv_lib_t* lib, const char* filename, DWORD errorno);
77 static void uv__format_fallback_error(uv_lib_t* lib, int errorno){
80 args[0] = (DWORD_PTR) errorno;
92 static int uv__dlerror(uv_lib_t* lib, const char* filename, DWORD errorno) {
102 if (errorno == 0)
107 FORMAT_MESSAGE_IGNORE_INSERTS, NULL, errorno,
115 FORMAT_MESSAGE_IGNORE_INSERTS, NULL, errorno,
119 if (res && errorno == ERROR_BAD_EXE_FORMAT && strstr(lib->errmsg, "%1")) {
132 uv__format_fallback_error(lib, errorno);
error.c 35 void uv_fatal_error(const int errorno, const char* syscall) {
40 FORMAT_MESSAGE_IGNORE_INSERTS, NULL, errorno,
52 fprintf(stderr, "%s: (%d) %s", syscall, errorno, errmsg);
54 fprintf(stderr, "(%d) %s", errorno, errmsg);
winsock.c 80 int errorno; local
98 errorno = WSAStartup(MAKEWORD(2, 2), &wsa_data);
99 if (errorno != 0) {
100 uv_fatal_error(errorno, "WSAStartup");
internal.h 259 __declspec(noreturn) void uv_fatal_error(const int errorno, const char* syscall);

Completed in 16 milliseconds