Home
last modified time | relevance | path

Searched refs:timestr (Results 1 – 9 of 9) sorted by relevance

/openbmc/qemu/util/
H A Derror-report.c189 gchar *timestr; in vreport() local
192 timestr = real_time_iso8601(); in vreport()
193 error_printf("%s ", timestr); in vreport()
194 g_free(timestr); in vreport()
/openbmc/ipmi-fru-parser/
H A Dfrup.cpp169 static size_t _to_time_str(uint32_t mfg_date_time, char* timestr, uint32_t len) in _to_time_str() argument
175 ASSERT(timestr); in _to_time_str()
182 s = strftime(timestr, len, "%F - %H:%M:%S UTC", &tm); in _to_time_str()
684 char timestr[OPENBMC_VPD_VAL_LEN]; in parse_fru_area() local
748 _to_time_str(mfg_date_time, timestr, OPENBMC_VPD_VAL_LEN); in parse_fru_area()
751 timestr); in parse_fru_area()
754 std::make_pair(vpd_key_names[i], std::string(timestr)); in parse_fru_area()
/openbmc/linux/arch/mips/dec/
H A Dkn02xa-berr.c49 static const char timestr[] = "timeout"; in dec_kn02xa_be_backend() local
76 event = timestr; in dec_kn02xa_be_backend()
H A Dkn01-berr.c71 static const char timestr[] = "timeout"; in dec_kn01_be_backend() local
130 event = timestr; in dec_kn01_be_backend()
H A Decc-berr.c50 static const char timestr[] = "timeout"; in dec_ecc_be_backend() local
86 event = (erraddr & KN0X_EAR_CPU) ? timestr : overstr; in dec_ecc_be_backend()
/openbmc/ipmitool/lib/
H A Dipmi_delloem.c3421 char timestr[30]; in ipmi_print_power_consmpt_history() local
3524 printf("Last Minute : %s",timestr); in ipmi_print_power_consmpt_history()
3526 printf("Last Hour : %s",timestr); in ipmi_print_power_consmpt_history()
3527 ipmi_time_to_str(lastdaypeakpower, timestr); in ipmi_print_power_consmpt_history()
3528 printf("Last Day : %s",timestr); in ipmi_print_power_consmpt_history()
3530 printf("Last Week : %s",timestr); in ipmi_print_power_consmpt_history()
3539 printf("Last Minute : %s", timestr); in ipmi_print_power_consmpt_history()
3541 printf("Last Hour : %s", timestr); in ipmi_print_power_consmpt_history()
3542 ipmi_time_to_str(lastdaypeakpower, timestr); in ipmi_print_power_consmpt_history()
3543 printf("Last Day : %s", timestr); in ipmi_print_power_consmpt_history()
[all …]
/openbmc/openbmc-test-automation/ffdc/
H A Dffdc_collector.py862 timestr = time.strftime("%Y%m%d-%H%M%S")
864 self.location + "/" + self.hostname + "_" + timestr + "/"
866 self.ffdc_prefix = timestr + "_"
/openbmc/linux/fs/nfsd/
H A Dnfs4recover.c1991 char timestr[22]; /* FIXME: better way to determine max size? */ in nfsd4_umh_cltrack_grace_done() local
1993 sprintf(timestr, "%lld", nn->boot_time); in nfsd4_umh_cltrack_grace_done()
1995 nfsd4_umh_cltrack_upcall("gracedone", timestr, legacy, NULL); in nfsd4_umh_cltrack_grace_done()
/openbmc/qemu/
H A Dqemu-io-cmds.c289 static void timestr(struct timespec *tv, char *ts, size_t size, int format) in timestr() function
475 timestr(t, ts, sizeof(ts), Cflag ? VERBOSE_FIXED_TIME : 0); in print_report()