Lines Matching refs:PetscCallHDF5

109   if (hdf5->file_id) PetscCallHDF5(H5Fclose, (hdf5->file_id));  in PetscViewerFileClose_HDF5()
118 if (hdf5->file_id) PetscCallHDF5(H5Fflush, (hdf5->file_id, H5F_SCOPE_LOCAL)); in PetscViewerFlush_HDF5()
127 PetscCallHDF5(H5Pclose, (hdf5->dxpl_id)); in PetscViewerDestroy_HDF5()
312PetscCallHDF5(H5Pset_dxpl_mpio, (hdf5->dxpl_id, flg ? H5FD_MPIO_COLLECTIVE : H5FD_MPIO_INDEPENDENT… in PetscViewerHDF5SetCollective_HDF5()
365 PetscCallHDF5(H5Pget_dxpl_mpio, (hdf5->dxpl_id, &mode)); in PetscViewerHDF5GetCollective_HDF5()
406 if (hdf5->file_id) PetscCallHDF5(H5Fclose, (hdf5->file_id)); in PetscViewerFileSetName_HDF5()
412 PetscCallHDF5(H5Pset_fapl_mpio, (plist_id, PetscObjectComm((PetscObject)viewer), MPI_INFO_NULL)); in PetscViewerFileSetName_HDF5()
447 PetscCallHDF5(H5Pclose, (plist_id)); in PetscViewerFileSetName_HDF5()
916 PetscCallHDF5(H5Gclose, (groupId)); in PetscViewerHDF5WriteGroup()
1201 PetscCallHDF5(H5Tset_size, (dtype, len + 1)); in PetscViewerHDF5WriteAttribute()
1211 PetscCallHDF5(H5Awrite, (attribute, dtype, value)); in PetscViewerHDF5WriteAttribute()
1212 if (datatype == PETSC_STRING) PetscCallHDF5(H5Tclose, (dtype)); in PetscViewerHDF5WriteAttribute()
1213 PetscCallHDF5(H5Aclose, (attribute)); in PetscViewerHDF5WriteAttribute()
1214 PetscCallHDF5(H5Oclose, (obj)); in PetscViewerHDF5WriteAttribute()
1215 PetscCallHDF5(H5Sclose, (dataspace)); in PetscViewerHDF5WriteAttribute()
1328 PetscCallHDF5(H5Tset_size, (dtype, len + 1)); in PetscViewerHDF5ReadAttribute()
1329 PetscCallHDF5(H5Aread, (attribute, dtype, *(char **)value)); in PetscViewerHDF5ReadAttribute()
1331 PetscCallHDF5(H5Aread, (attribute, dtype, value)); in PetscViewerHDF5ReadAttribute()
1333 PetscCallHDF5(H5Aclose, (attribute)); in PetscViewerHDF5ReadAttribute()
1335 PetscCallHDF5(H5Oclose, (obj)); in PetscViewerHDF5ReadAttribute()
1385 PetscCallHDF5(H5Gclose, (group)); in PetscViewerHDF5Traverse_Inner_Internal()
1444 PetscCallHDF5(H5Oget_info_by_name, (h5, name, &info, H5P_DEFAULT)); in PetscViewerHDF5Traverse_Internal()