Lines Matching refs:Item
902 void HAL_PWR_ConfigAttributes(uint32_t Item, uint32_t Attributes) in HAL_PWR_ConfigAttributes() argument
905 assert_param(IS_PWR_ITEMS_ATTRIBUTES(Item)); in HAL_PWR_ConfigAttributes()
915 SET_BIT(PWR_S->SECCFGR, Item); in HAL_PWR_ConfigAttributes()
916 SET_BIT(PWR->PRIVCFGR, Item); in HAL_PWR_ConfigAttributes()
920 SET_BIT(PWR_S->SECCFGR, Item); in HAL_PWR_ConfigAttributes()
921 CLEAR_BIT(PWR->PRIVCFGR, Item); in HAL_PWR_ConfigAttributes()
930 CLEAR_BIT(PWR_S->SECCFGR, Item); in HAL_PWR_ConfigAttributes()
931 SET_BIT(PWR->PRIVCFGR, Item); in HAL_PWR_ConfigAttributes()
935 CLEAR_BIT(PWR_S->SECCFGR, Item); in HAL_PWR_ConfigAttributes()
936 CLEAR_BIT(PWR->PRIVCFGR, Item); in HAL_PWR_ConfigAttributes()
946 SET_BIT(PWR->PRIVCFGR, Item); in HAL_PWR_ConfigAttributes()
950 CLEAR_BIT(PWR->PRIVCFGR, Item); in HAL_PWR_ConfigAttributes()
965 HAL_StatusTypeDef HAL_PWR_GetConfigAttributes(uint32_t Item, uint32_t *pAttributes) in HAL_PWR_GetConfigAttributes() argument
976 assert_param(IS_PWR_ITEMS_ATTRIBUTES(Item)); in HAL_PWR_GetConfigAttributes()
981 if ((PWR->SECCFGR & Item) == Item) in HAL_PWR_GetConfigAttributes()
983 if ((PWR->PRIVCFGR & Item) == Item) in HAL_PWR_GetConfigAttributes()
994 if ((PWR->PRIVCFGR & Item) == Item) in HAL_PWR_GetConfigAttributes()
1004 if ((PWR->PRIVCFGR & Item) == Item) in HAL_PWR_GetConfigAttributes()