Lines Matching full:did
36 /// The `dlopen` call failed and system did not report an error.
43 /// The `dlsym` call failed and system did not report an error.
50 /// The `dlclose` call failed and system did not report an error.
57 /// The `LoadLibraryW` call failed and system did not report an error.
64 /// The `GetModuleHandleExW` call failed and system did not report an error.
71 /// The `GetProcAddressUnknown` call failed and system did not report an error.
78 /// The `FreeLibrary` call failed and system did not report an error.
114 DlOpenUnknown => write!(f, "dlopen failed, but system did not report the error"), in fmt()
116 DlSymUnknown => write!(f, "dlsym failed, but system did not report the error"), in fmt()
118 DlCloseUnknown => write!(f, "dlclose failed, but system did not report the error"), in fmt()
121 write!(f, "LoadLibraryExW failed, but system did not report the error"), in fmt()
124 write!(f, "GetModuleHandleExWUnknown failed, but system did not report the error"), in fmt()
127 write!(f, "GetProcAddress failed, but system did not report the error"), in fmt()
130 write!(f, "FreeLibrary failed, but system did not report the error"), in fmt()