systime 66 source3/rpc_parse/parse_misc.c if(!prs_uint16("year", ps, depth, &systime->year))
systime 68 source3/rpc_parse/parse_misc.c if(!prs_uint16("month", ps, depth, &systime->month))
systime 70 source3/rpc_parse/parse_misc.c if(!prs_uint16("dayofweek", ps, depth, &systime->dayofweek))
systime 72 source3/rpc_parse/parse_misc.c if(!prs_uint16("day", ps, depth, &systime->day))
systime 74 source3/rpc_parse/parse_misc.c if(!prs_uint16("hour", ps, depth, &systime->hour))
systime 76 source3/rpc_parse/parse_misc.c if(!prs_uint16("minute", ps, depth, &systime->minute))
systime 78 source3/rpc_parse/parse_misc.c if(!prs_uint16("second", ps, depth, &systime->second))
systime 80 source3/rpc_parse/parse_misc.c if(!prs_uint16("milliseconds", ps, depth, &systime->milliseconds))
systime 91 source3/rpc_parse/parse_misc.c systime->year=unixtime->tm_year+1900;
systime 92 source3/rpc_parse/parse_misc.c systime->month=unixtime->tm_mon+1;
systime 93 source3/rpc_parse/parse_misc.c systime->dayofweek=unixtime->tm_wday;
systime 94 source3/rpc_parse/parse_misc.c systime->day=unixtime->tm_mday;
systime 95 source3/rpc_parse/parse_misc.c systime->hour=unixtime->tm_hour;
systime 96 source3/rpc_parse/parse_misc.c systime->minute=unixtime->tm_min;
systime 97 source3/rpc_parse/parse_misc.c systime->second=unixtime->tm_sec;
systime 98 source3/rpc_parse/parse_misc.c systime->milliseconds=0;
systime 119 source3/utils/net_time.c if (asprintf(&cmd, "/bin/date %s", systime(t)) == -1) {
systime 147 source3/utils/net_time.c printf("%s\n", systime(t));