Searched defs:tm_date (Results 1 - 2 of 2) sorted by relevance

/external/lldb/source/DataFormatters/
H A DCF.cpp33 tm *tm_date = localtime(&epoch); local
34 if (!tm_date)
37 if (strftime (&buffer[0], 1023, "%Z", tm_date) == 0)
39 stream.Printf("%04d-%02d-%02d %02d:%02d:%02d %s", tm_date->tm_year+1900, tm_date->tm_mon+1, tm_date->tm_mday, tm_date->tm_hour, tm_date->tm_min, tm_date->tm_sec, buffer.c_str());
H A DCocoa.cpp557 tm *tm_date = localtime(&epoch); local
558 if (!tm_date)
561 if (strftime (&buffer[0], 1023, "%Z", tm_date) == 0)
563 stream.Printf("%04d-%02d-%02d %02d:%02d:%02d %s", tm_date->tm_year+1900, tm_date->tm_mon+1, tm_date->tm_mday, tm_date->tm_hour, tm_date->tm_min, tm_date->tm_sec, buffer.c_str());

Completed in 98 milliseconds