Lines Matching refs:dlhandle_t
16 typedef HMODULE dlhandle_t; typedef
19 typedef void *dlhandle_t; typedef
22 typedef void *dlhandle_t; typedef
46 dlhandle_t dlhandle; in PetscDLOpen()
54 dlhandle = (dlhandle_t)0; in PetscDLOpen()
144 if (FreeLibrary((dlhandle_t)*handle) == 0) { in PetscDLClose()
165 if (dlclose((dlhandle_t)*handle) < 0) { in PetscDLClose()
211 dlhandle_t dlhandle; in PetscDLSym()
218 dlhandle = (dlhandle_t)0; in PetscDLSym()
227 if (handle) dlhandle = (dlhandle_t)handle; in PetscDLSym()
228 else dlhandle = (dlhandle_t)GetCurrentProcess(); in PetscDLSym()
240 if (handle) dlhandle = (dlhandle_t)handle; in PetscDLSym()