Lines Matching full:failed
25 /// The `dlopen` call failed.
30 /// The `dlopen` call failed and system did not report an error.
32 /// The `dlsym` call failed.
37 /// The `dlsym` call failed and system did not report an error.
39 /// The `dlclose` call failed.
44 /// The `dlclose` call failed and system did not report an error.
46 /// The `LoadLibraryW` call failed.
51 /// The `LoadLibraryW` call failed and system did not report an error.
53 /// The `GetModuleHandleExW` call failed.
58 /// The `GetModuleHandleExW` call failed and system did not report an error.
60 /// The `GetProcAddress` call failed.
65 /// The `GetProcAddressUnknown` call failed and system did not report an error.
67 /// The `FreeLibrary` call failed.
72 /// The `FreeLibrary` call failed and system did not report an error.
107 DlOpenUnknown => write!(f, "dlopen failed, but system did not report the error"), in fmt()
109 DlSymUnknown => write!(f, "dlsym failed, but system did not report the error"), in fmt()
111 DlCloseUnknown => write!(f, "dlclose failed, but system did not report the error"), in fmt()
112 LoadLibraryExW { .. } => write!(f, "LoadLibraryExW failed"), in fmt()
114 write!(f, "LoadLibraryExW failed, but system did not report the error"), in fmt()
115 GetModuleHandleExW { .. } => write!(f, "GetModuleHandleExW failed"), in fmt()
117 write!(f, "GetModuleHandleExWUnknown failed, but system did not report the error"), in fmt()
118 GetProcAddress { .. } => write!(f, "GetProcAddress failed"), in fmt()
120 write!(f, "GetProcAddress failed, but system did not report the error"), in fmt()
121 FreeLibrary { .. } => write!(f, "FreeLibrary failed"), in fmt()
123 write!(f, "FreeLibrary failed, but system did not report the error"), in fmt()