Lines Matching refs:attribute
1185 hid_t h5, dataspace, obj, attribute, dtype; in PetscViewerHDF5WriteAttribute() local
1207 PetscCallHDF5Return(attribute, H5Aopen_name, (obj, name)); in PetscViewerHDF5WriteAttribute()
1209 …PetscCallHDF5Return(attribute, H5Acreate2, (obj, name, dtype, dataspace, H5P_DEFAULT, H5P_DEFAULT)… in PetscViewerHDF5WriteAttribute()
1211 PetscCallHDF5(H5Awrite, (attribute, dtype, value)); in PetscViewerHDF5WriteAttribute()
1213 PetscCallHDF5(H5Aclose, (attribute)); in PetscViewerHDF5WriteAttribute()
1291 hid_t h5, obj, attribute, dtype; in PetscViewerHDF5ReadAttribute() local
1321 PetscCallHDF5Return(attribute, H5Aopen_name, (obj, name)); in PetscViewerHDF5ReadAttribute()
1325 PetscCallHDF5Return(atype, H5Aget_type, (attribute)); 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()