Searched refs:date (Results 1 – 9 of 9) sorted by relevance
| /components/dfs/dfs_v1/filesystems/iso9660/ |
| A D | dfs_iso9660.c | 191 tm.tm_sec = (date->second[0] - '0') * 10 + (date->second[1] - '0'); in iso9660_convert_unixtime() 192 tm.tm_min = (date->minute[0] - '0') * 10 + (date->minute[1] - '0'); in iso9660_convert_unixtime() 193 tm.tm_hour = (date->hour[0] - '0') * 10 + (date->hour[1] - '0'); in iso9660_convert_unixtime() 194 tm.tm_mday = (date->day[0] - '0') * 10 + (date->day[1] - '0'); in iso9660_convert_unixtime() 195 tm.tm_mon = (date->month[0] - '0') * 10 + (date->month[1] - '0'); in iso9660_convert_unixtime() 196 tm.tm_year = (date->year[0] - '0') * 1000 + (date->year[1] - '0') * 100 + in iso9660_convert_unixtime() 197 (date->year[2] - '0') * 10 + (date->year[3] - '0'); in iso9660_convert_unixtime() 207 tm.tm_sec = date->second; in iso9660_convert_unixtime2() 209 tm.tm_hour = date->hour; in iso9660_convert_unixtime2() 210 tm.tm_mday = date->day; in iso9660_convert_unixtime2() [all …]
|
| /components/drivers/rtc/ |
| A D | README.md | 41 输入 `date` 即可,大致效果如下: 44 msh />date 51 同样使用 `date` 命令,在命令后面再依次输入 `年` `月` `日` `时` `分` `秒` (中间空格隔开, 24H 制),大致效果如下: 54 msh />date 2018 02 16 01 15 30 # 设置当前时间为 2018-02-16 01:15:30
|
| A D | dev_alarm.c | 345 static rt_bool_t is_valid_date(struct tm *date) in is_valid_date() argument 347 if ((date->tm_year < 0) || (date->tm_year > RT_RTC_YEARS_MAX)) in is_valid_date() 352 if ((date->tm_mon < 0) || (date->tm_mon > 11)) in is_valid_date() 357 if ((date->tm_mday < 1) || \ in is_valid_date() 358 (date->tm_mday > days_of_year_month(date->tm_year, date->tm_mon))) in is_valid_date()
|
| A D | dev_rtc.c | 280 static void date(int argc, char **argv) in date() function 372 MSH_CMD_EXPORT(date, get date and time or set (local timezone) [year month day hour min sec])
|
| /components/net/sal/src/ |
| A D | sal_socket.c | 190 char date[SAL_INTERNET_DATE_LEN]; in check_netdev_internet_up_work() local 235 rt_memset(date, 0x00, SAL_INTERNET_DATE_LEN); in check_netdev_internet_up_work() 236 rt_snprintf(date, SAL_INTERNET_DATE_LEN, "%s", __DATE__); in check_netdev_internet_up_work() 240 if (rt_memcmp(date, month[index], SAL_INTERNET_MONTH_LEN - 1) == 0) in check_netdev_internet_up_work()
|
| /components/drivers/usb/cherryusb/ |
| A D | LICENSE | 87 as of the date such litigation is filed.
|
| /components/net/lwip/lwip-2.0.3/doc/doxygen/ |
| A D | lwip.Doxyfile | 1207 # page will contain the date and time when the page was generated. Setting this 1209 # documentation is up to date. 1703 # $datetime, $date, $doxygenversion, $projectname, $projectnumber, 1793 # page will contain the date and time when the page was generated. Setting this
|
| /components/net/lwip/lwip-2.1.2/doc/doxygen/ |
| A D | lwip.Doxyfile | 1218 # page will contain the date and time when the page was generated. Setting this 1220 # documentation is up to date. 1714 # $datetime, $date, $doxygenversion, $projectname, $projectnumber, 1804 # page will contain the date and time when the page was generated. Setting this
|
| A D | lwip.Doxyfile.cmake.in | 1218 # page will contain the date and time when the page was generated. Setting this 1220 # documentation is up to date. 1714 # $datetime, $date, $doxygenversion, $projectname, $projectnumber, 1804 # page will contain the date and time when the page was generated. Setting this
|
Completed in 18 milliseconds