Lines Matching refs:propid
515 vs_get_propdef(uint64_t propid)
520 if (propid == vs_propdefs[i].vpd_id)
537 vs_default_value(vs_prop_hd_t *prop_hd, const uint64_t propid)
542 switch (propid) {
594 uint64_t propid;
614 for (propid = 1LL; propid <= VS_PROPID_MAX; propid <<= 1) {
615 if ((prop_hd->vp_ids & propid) == 0)
618 if ((vpd = vs_get_propdef(propid)) == NULL) {
752 uint64_t propid;
774 for (propid = 1LL; propid <= VS_PROPID_MAX; propid <<= 1) {
775 if ((propid & prop_hd->vp_all) && !(propid & prop_hd->vp_ids))
776 vs_default_value(prop_hd, propid);
857 uint64_t propid;
889 for (propid = 1LL; propid <= VS_PROPID_MAX; propid <<= 1) {
890 if ((prop_hd->vp_ids & propid) == 0)
893 if ((vpd = vs_get_propdef(propid)) == NULL) {
1089 * Validate property identified in propid.
1096 vs_validate(const vs_prop_hd_t *prop_hd, uint64_t propid)
1102 switch (propid) {
1151 uint64_t propid;
1163 for (propid = 1LL; propid <= VS_PROPID_MAX; propid <<= 1) {
1164 if ((propids & propid) == 0)
1167 if (vs_validate(&prop_hd, propid) != VS_ERR_NONE)
1187 uint64_t propid;
1199 for (propid = 1LL; propid <= VS_PROPID_MAX; propid <<= 1) {
1200 if ((propids & propid) == 0)
1203 if (vs_validate(&prop_hd, propid) != VS_ERR_NONE)