Lines Matching refs:date

3846         NX_WEB_HTTP_SERVER_DATE date;  in _nx_web_http_server_get_process()  local
3850 …rver_cache_info_get(server_ptr -> nx_web_http_server_request_resource, &max_age, &date) == NX_TRUE) in _nx_web_http_server_get_process()
3854 temp = _nx_web_http_server_date_to_string(&date, date_string); in _nx_web_http_server_get_process()
8730 NX_WEB_HTTP_SERVER_DATE date; in _nx_web_http_server_generate_response_header() local
8733 server_ptr -> nx_web_http_server_gmt_get(&date); in _nx_web_http_server_generate_response_header()
8736 temp = _nx_web_http_server_date_to_string(&date, temp_string); in _nx_web_http_server_generate_response_header()
8756 …rver_cache_info_get(server_ptr -> nx_web_http_server_request_resource, &max_age, &date) == NX_TRUE) in _nx_web_http_server_generate_response_header()
8775 temp = _nx_web_http_server_date_to_string(&date, temp_string); in _nx_web_http_server_generate_response_header()
10440 UINT _nx_web_http_server_date_to_string(NX_WEB_HTTP_SERVER_DATE *date, CHAR *string) in _nx_web_http_server_date_to_string() argument
10447 string[index++] = _nx_web_http_server_weekday[date -> nx_web_http_server_weekday][0]; in _nx_web_http_server_date_to_string()
10448 string[index++] = _nx_web_http_server_weekday[date -> nx_web_http_server_weekday][1]; in _nx_web_http_server_date_to_string()
10449 string[index++] = _nx_web_http_server_weekday[date -> nx_web_http_server_weekday][2]; in _nx_web_http_server_date_to_string()
10454 _nx_web_http_server_date_convert(date -> nx_web_http_server_day, 2, &string[index]); in _nx_web_http_server_date_to_string()
10459 string[index++] = _nx_web_http_server_month[date -> nx_web_http_server_month][0]; in _nx_web_http_server_date_to_string()
10460 string[index++] = _nx_web_http_server_month[date -> nx_web_http_server_month][1]; in _nx_web_http_server_date_to_string()
10461 string[index++] = _nx_web_http_server_month[date -> nx_web_http_server_month][2]; in _nx_web_http_server_date_to_string()
10465 _nx_web_http_server_date_convert(date -> nx_web_http_server_year, 4, &string[index]); in _nx_web_http_server_date_to_string()
10470 _nx_web_http_server_date_convert(date -> nx_web_http_server_hour, 2, &string[index]); in _nx_web_http_server_date_to_string()
10475 _nx_web_http_server_date_convert(date -> nx_web_http_server_minute, 2, &string[index]); in _nx_web_http_server_date_to_string()
10480 _nx_web_http_server_date_convert(date -> nx_web_http_server_second, 2, &string[index]); in _nx_web_http_server_date_to_string()
10531 VOID _nx_web_http_server_date_convert(UINT date, UINT count, CHAR *string) in _nx_web_http_server_date_convert() argument
10546 digit = date % 10; in _nx_web_http_server_date_convert()
10549 date = date / 10; in _nx_web_http_server_date_convert()