Home
last modified time | relevance | path

Searched refs:month (Results 1 – 7 of 7) sorted by relevance

/NetX-Duo-v6.3.0/nx_secure/src/
Dnx_secure_x509_expiration_check.c178 ULONG year, month, day, hour, minute, second; in _nx_secure_x509_asn1_time_to_unix_convert() local
189 month = date_2_chars_to_int(asn1_time, 2); in _nx_secure_x509_asn1_time_to_unix_convert()
251 if (((year + 2) % 4 == 0) && (month < 3)) in _nx_secure_x509_asn1_time_to_unix_convert()
258 day += days_before_month[month - 1]; in _nx_secure_x509_asn1_time_to_unix_convert()
/NetX-Duo-v6.3.0/addons/sntp/
Dnxd_sntp_client.c4520 current_date_time_ptr -> month = JANUARY; in _nx_sntp_client_utility_convert_seconds_to_date()
4530 current_date_time_ptr -> month = FEBRUARY; in _nx_sntp_client_utility_convert_seconds_to_date()
4543 current_date_time_ptr -> month = MARCH; in _nx_sntp_client_utility_convert_seconds_to_date()
4554 current_date_time_ptr -> month = MARCH; in _nx_sntp_client_utility_convert_seconds_to_date()
4565 current_date_time_ptr -> month = APRIL; in _nx_sntp_client_utility_convert_seconds_to_date()
4572 current_date_time_ptr -> month = MAY; in _nx_sntp_client_utility_convert_seconds_to_date()
4579 current_date_time_ptr -> month = JUNE; in _nx_sntp_client_utility_convert_seconds_to_date()
4586 current_date_time_ptr -> month = JULY; in _nx_sntp_client_utility_convert_seconds_to_date()
4593 current_date_time_ptr -> month = AUGUST; in _nx_sntp_client_utility_convert_seconds_to_date()
4600 current_date_time_ptr -> month = SEPTEMBER; in _nx_sntp_client_utility_convert_seconds_to_date()
[all …]
Dnxd_sntp_client.h499 UINT month; member
/NetX-Duo-v6.3.0/addons/ptp/
Dnxd_ptp_client.c3283 UINT year, month, day, hour, minute; in _nx_ptp_client_utility_convert_time_to_date() local
3325 month = 1; in _nx_ptp_client_utility_convert_time_to_date()
3330 month++; in _nx_ptp_client_utility_convert_time_to_date()
3331 if (month == 2) in _nx_ptp_client_utility_convert_time_to_date()
3337 else if ((month == 4) || (month == 6) || (month == 9) || (month == 11)) in _nx_ptp_client_utility_convert_time_to_date()
3365 date_time_ptr -> month = (UCHAR)month; in _nx_ptp_client_utility_convert_time_to_date()
Dnxd_ptp_client.h145 UCHAR month; member
/NetX-Duo-v6.3.0/addons/ftp/
Dnxd_ftp_server.c1636 UINT year, month, day; in _nx_ftp_server_command_process() local
1644 month = 1; in _nx_ftp_server_command_process()
3005 … &attributes, &size, &year, &month, &day, &hour, &minute, &second); in _nx_ftp_server_command_process()
3013 … &attributes, &size, &year, &month, &day, &hour, &minute, &second); in _nx_ftp_server_command_process()
3251 … &attributes, &size, &year, &month, &day, &hour, &minute, &second); in _nx_ftp_server_command_process()
3428 … &attributes, &size, &year, &month, &day, &hour, &minute, &second); in _nx_ftp_server_command_process()
3436 … &attributes, &size, &year, &month, &day, &hour, &minute, &second); in _nx_ftp_server_command_process()
3463 if ((month < 1) || (month > 12)) in _nx_ftp_server_command_process()
3537 buffer_ptr[37] = (UCHAR)months[month - 1][0]; in _nx_ftp_server_command_process()
3538 buffer_ptr[38] = (UCHAR)months[month - 1][1]; in _nx_ftp_server_command_process()
[all …]
/NetX-Duo-v6.3.0/samples/
Ddemo_netx_duo_ptp_client.c192 …printf("%2u/%02u/%u %02u:%02u:%02u.%09lu\r\n", date.day, date.month, date.year, date.hour, date.mi… in thread_0_entry()