Searched refs:errorno (Results 1 – 5 of 5) sorted by relevance
/libuv/src/win/ |
H A D | 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){ in uv__format_fallback_error() argument 80 args[0] = (DWORD_PTR) errorno; in uv__format_fallback_error() 92 static int uv__dlerror(uv_lib_t* lib, const char* filename, DWORD errorno) { in uv__dlerror() argument 102 if (errorno == 0) in uv__dlerror() 107 FORMAT_MESSAGE_IGNORE_INSERTS, NULL, errorno, in uv__dlerror() 115 FORMAT_MESSAGE_IGNORE_INSERTS, NULL, errorno, in uv__dlerror() 119 if (res && errorno == ERROR_BAD_EXE_FORMAT && strstr(lib->errmsg, "%1")) { in uv__dlerror() 132 uv__format_fallback_error(lib, errorno); in uv__dlerror()
|
H A D | error.c | 35 void uv_fatal_error(const int errorno, const char* syscall) { in uv_fatal_error() argument 40 FORMAT_MESSAGE_IGNORE_INSERTS, NULL, errorno, in uv_fatal_error() 52 fprintf(stderr, "%s: (%d) %s", syscall, errorno, errmsg); in uv_fatal_error() 54 fprintf(stderr, "(%d) %s", errorno, errmsg); in uv_fatal_error()
|
H A D | winsock.c | 80 int errorno; in uv__winsock_init() local 98 errorno = WSAStartup(MAKEWORD(2, 2), &wsa_data); in uv__winsock_init() 99 if (errorno != 0) { in uv__winsock_init() 100 uv_fatal_error(errorno, "WSAStartup"); in uv__winsock_init()
|
H A D | internal.h | 259 __declspec(noreturn) void uv_fatal_error(const int errorno, const char* syscall);
|
/libuv/docs/src/guide/ |
H A D | threads.rst | 281 requests. For the filesystem family of functions, ``uv_fs_t.errorno`` will be
|
Completed in 10 milliseconds