Lines Matching full:day
27 uint8_t day, uint8_t month, uint16_t year, in encode_get_date_time_resp() argument
53 response->day = day; in encode_get_date_time_resp()
63 uint8_t *minutes, uint8_t *hours, uint8_t *day, in decode_get_date_time_resp() argument
67 hours == NULL || day == NULL || month == NULL || year == NULL || in decode_get_date_time_resp()
87 *day = response->day; in decode_get_date_time_resp()
96 uint8_t minutes, uint8_t hours, uint8_t day, in encode_set_date_time_req() argument
107 if (!is_time_legal(seconds, minutes, hours, day, month, year)) { in encode_set_date_time_req()
127 request->day = dec2bcd8(day); in encode_set_date_time_req()
137 uint8_t *day, uint8_t *month, uint16_t *year) in decode_set_date_time_req() argument
140 hours == NULL || day == NULL || month == NULL || year == NULL) { in decode_set_date_time_req()
153 *day = bcd2dec8(request->day); in decode_set_date_time_req()
157 if (!is_time_legal(*seconds, *minutes, *hours, *day, *month, *year)) { in decode_set_date_time_req()