Lines Matching refs:Item
1183 void HAL_SBS_Lock(uint32_t Item) in HAL_SBS_Lock() argument
1186 assert_param(IS_SBS_LOCK_ITEMS(Item)); in HAL_SBS_Lock()
1189 SBS->CNSLCKR = (0xFFFFU & Item); /* non-secure lock item in 16 lowest bits */ in HAL_SBS_Lock()
1193 SBS->CSLCKR = ((0xFFFF0000U & Item) >> 16U); /* Secure-only lock item in 16 highest bits */ in HAL_SBS_Lock()
1255 void HAL_SBS_ConfigAttributes(uint32_t Item, uint32_t Attributes) in HAL_SBS_ConfigAttributes() argument
1260 assert_param(IS_SBS_ITEMS_ATTRIBUTES(Item)); in HAL_SBS_ConfigAttributes()
1268 tmp |= Item; in HAL_SBS_ConfigAttributes()
1272 tmp &= ~Item; in HAL_SBS_ConfigAttributes()
1288 HAL_StatusTypeDef HAL_SBS_GetConfigAttributes(uint32_t Item, uint32_t *pAttributes) in HAL_SBS_GetConfigAttributes() argument
1297 assert_param(IS_SBS_ITEMS_ATTRIBUTES(Item)); in HAL_SBS_GetConfigAttributes()
1300 if ((SBS->SECCFGR & Item) != 0U) in HAL_SBS_GetConfigAttributes()