Lines Matching refs:parentAbsPath

1184   const char *parentAbsPath;  in PetscViewerHDF5WriteAttribute()  local
1194 PetscCall(PetscViewerHDF5GetGroup(viewer, parent, &parentAbsPath)); in PetscViewerHDF5WriteAttribute()
1195 PetscCall(PetscViewerHDF5Traverse_Internal(viewer, parentAbsPath, PETSC_TRUE, NULL, NULL)); in PetscViewerHDF5WriteAttribute()
1196 PetscCall(PetscViewerHDF5HasAttribute_Internal(viewer, parentAbsPath, name, &has)); in PetscViewerHDF5WriteAttribute()
1205 PetscCallHDF5Return(obj, H5Oopen, (h5, parentAbsPath, H5P_DEFAULT)); in PetscViewerHDF5WriteAttribute()
1216 PetscCall(PetscFree(parentAbsPath)); in PetscViewerHDF5WriteAttribute()
1290 const char *parentAbsPath; in PetscViewerHDF5ReadAttribute() local
1301 PetscCall(PetscViewerHDF5GetGroup(viewer, parent, &parentAbsPath)); in PetscViewerHDF5ReadAttribute()
1302 PetscCall(PetscViewerHDF5Traverse_Internal(viewer, parentAbsPath, PETSC_FALSE, &has, NULL)); in PetscViewerHDF5ReadAttribute()
1303 if (has) PetscCall(PetscViewerHDF5HasAttribute_Internal(viewer, parentAbsPath, name, &has)); in PetscViewerHDF5ReadAttribute()
1315 PetscCall(PetscFree(parentAbsPath)); in PetscViewerHDF5ReadAttribute()
1317 …_UNEXPECTED, "Attribute %s/%s does not exist and default value not provided", parentAbsPath, name); in PetscViewerHDF5ReadAttribute()
1320 PetscCallHDF5Return(obj, H5Oopen, (h5, parentAbsPath, H5P_DEFAULT)); in PetscViewerHDF5ReadAttribute()
1336 PetscCall(PetscFree(parentAbsPath)); in PetscViewerHDF5ReadAttribute()
1585 const char *parentAbsPath; in PetscViewerHDF5HasAttribute() local
1592 PetscCall(PetscViewerHDF5GetGroup(viewer, parent, &parentAbsPath)); in PetscViewerHDF5HasAttribute()
1593 PetscCall(PetscViewerHDF5Traverse_Internal(viewer, parentAbsPath, PETSC_FALSE, has, NULL)); in PetscViewerHDF5HasAttribute()
1594 if (*has) PetscCall(PetscViewerHDF5HasAttribute_Internal(viewer, parentAbsPath, name, has)); in PetscViewerHDF5HasAttribute()
1595 PetscCall(PetscFree(parentAbsPath)); in PetscViewerHDF5HasAttribute()