Lines Matching refs:fType

63     uint32_t            fType;
175 uint32_t fType;
659 * @param fType The attribute type type.
661 static int rtManifestSetAttrWorker(PRTMANIFESTENTRY pEntry, const char *pszAttr, const char *pszValue, uint32_t fType)
677 pAttr->fType = fType;
692 pAttr->fType = fType;
715 * @param fType The attribute type, pass
718 RTDECL(int) RTManifestSetAttr(RTMANIFEST hManifest, const char *pszAttr, const char *pszValue, uint32_t fType)
725 AssertReturn(RT_IS_POWER_OF_TWO(fType) && fType < RTMANIFEST_ATTR_END, VERR_INVALID_PARAMETER);
727 return rtManifestSetAttrWorker(&pThis->SelfEntry, pszAttr, pszValue, fType);
781 if (pAttr->fType & pArgs->fType)
796 * selected by @a fType alone.
797 * @param fType The attribute types the entry should match. Pass
805 static int rtManifestQueryAttrWorker(PRTMANIFESTENTRY pEntry, const char *pszAttr, uint32_t fType,
818 if (!(pAttr->fType & fType))
825 Args.fType = fType;
846 *pfType = pAttr->fType;
852 RTDECL(int) RTManifestQueryAttr(RTMANIFEST hManifest, const char *pszAttr, uint32_t fType,
861 return rtManifestQueryAttrWorker(&pThis->SelfEntry, pszAttr, fType, pszValue, cbValue, pfType);
972 * @param fType The attribute type, pass
976 const char *pszValue, uint32_t fType)
984 AssertReturn(RT_IS_POWER_OF_TWO(fType) && fType < RTMANIFEST_ATTR_END, VERR_INVALID_PARAMETER);
1020 return rtManifestSetAttrWorker(pEntry, pszAttr, pszValue, fType);
1058 RTDECL(int) RTManifestEntryQueryAttr(RTMANIFEST hManifest, const char *pszEntry, const char *pszAttr, uint32_t fType,
1079 rc = rtManifestQueryAttrWorker(pEntry, pszAttr, fType, pszValue, cbValue, pfType);
1372 uint32_t fType = RTMANIFEST_ATTR_UNKNOWN;
1376 uint32_t fType;
1386 fType = s_aDecAttrs[i].fType;
1396 if (fType == RTMANIFEST_ATTR_UNKNOWN)
1401 uint32_t fType;
1413 fType = s_aHexAttrs[i].fType;
1428 rc = RTManifestEntrySetAttr(hManifest, pszName, pszAttr, pszValue, fType);
1432 pszName, pszAttr, pszValue, fType, iLine, rc);