Lines Matching defs:timestamp_remote
951 struct logtime timestamp_remote;
991 memset(×tamp_remote, 0, sizeof(timestamp_remote));
992 PARSE_NUMBER(timestamp_remote.tm.tm_year, 4, 0, 9999);
993 timestamp_remote.tm.tm_year -= 1900;
995 PARSE_NUMBER(timestamp_remote.tm.tm_mon, 2, 1, 12);
996 --timestamp_remote.tm.tm_mon;
998 PARSE_NUMBER(timestamp_remote.tm.tm_mday, 2, 1, 31);
1000 PARSE_NUMBER(timestamp_remote.tm.tm_hour, 2, 0, 23);
1002 PARSE_NUMBER(timestamp_remote.tm.tm_min, 2, 0, 59);
1004 PARSE_NUMBER(timestamp_remote.tm.tm_sec, 2, 0, 59);
1006 timegm(×tamp_remote.tm);
1015 timestamp_remote.usec += (*msg++ - '0') * i;
1031 timestamp_remote.tm.tm_gmtoff =
1036 timestamp = RemoteAddDate ? NULL : ×tamp_remote;
1213 struct logtime timestamp_remote;
1248 timestamp_remote.tm = tm_parsed;
1249 timestamp_remote.tm.tm_year = year;
1250 timestamp_remote.tm.tm_isdst = -1;
1251 timestamp_remote.usec = 0;
1252 if (mktime(×tamp_remote.tm) <
1256 timestamp = ×tamp_remote;