Lines Matching refs:handle
43 PetscErrorCode PetscDLOpen(const char name[], PetscDLMode mode, PetscDLHandle *handle) in PetscDLOpen() argument
50 PetscAssertPointer(handle, 3); in PetscDLOpen()
55 *handle = (PetscDLHandle)0; in PetscDLOpen()
118 *handle = (PetscDLHandle)dlhandle; in PetscDLOpen()
134 PetscErrorCode PetscDLClose(PetscDLHandle *handle) in PetscDLClose() argument
137 PetscAssertPointer(handle, 1); in PetscDLClose()
144 if (FreeLibrary((dlhandle_t)*handle) == 0) { in PetscDLClose()
165 if (dlclose((dlhandle_t)*handle) < 0) { in PetscDLClose()
182 *handle = NULL; in PetscDLClose()
209 PetscErrorCode PetscDLSym(PetscDLHandle handle, const char symbol[], void **value) in PetscDLSym() argument
227 if (handle) dlhandle = (dlhandle_t)handle; in PetscDLSym()
240 if (handle) dlhandle = (dlhandle_t)handle; in PetscDLSym()