Lines Matching refs:stime
1030 RTC_TimeTypeDef stime = {0U}; in HAL_RTC_GetDate() local
1042 if (HAL_RTC_GetTime(hrtc, &stime, RTC_FORMAT_BIN) != HAL_OK) in HAL_RTC_GetDate()
1096 RTC_TimeTypeDef stime = {0U}; in HAL_RTC_SetAlarm() local
1114 if (HAL_RTC_GetTime(hrtc, &stime, RTC_FORMAT_BIN) != HAL_OK) in HAL_RTC_SetAlarm()
1120 counter_time = (uint32_t)(((uint32_t)stime.Hours * 3600U) + \ in HAL_RTC_SetAlarm()
1121 ((uint32_t)stime.Minutes * 60U) + \ in HAL_RTC_SetAlarm()
1122 ((uint32_t)stime.Seconds)); in HAL_RTC_SetAlarm()
1188 RTC_TimeTypeDef stime = {0U}; in HAL_RTC_SetAlarm_IT() local
1206 if (HAL_RTC_GetTime(hrtc, &stime, RTC_FORMAT_BIN) != HAL_OK) in HAL_RTC_SetAlarm_IT()
1212 counter_time = (uint32_t)(((uint32_t)stime.Hours * 3600U) + \ in HAL_RTC_SetAlarm_IT()
1213 ((uint32_t)stime.Minutes * 60U) + \ in HAL_RTC_SetAlarm_IT()
1214 ((uint32_t)stime.Seconds)); in HAL_RTC_SetAlarm_IT()