Lines Matching refs:cTime
314 char cTime[32];
327 strftime(cTime, sizeof(cTime), "%H:%M:%S", tmStart);
328 EXPECT_STREQ("23:59:59", cTime);
331 strftime(cTime, sizeof(cTime), "%H:%M:%S", tmEnd);
332 EXPECT_STREQ("00:00:01", cTime);
341 char cTime[32];
358 strftime(cTime, sizeof(cTime), "%H:%M:%S", &tmrStart);
359 EXPECT_STREQ("23:59:59", cTime);
360 strftime(cTime, sizeof(cTime), "%H:%M:%S", tmrStartPtr);
361 EXPECT_STREQ("23:59:59", cTime);
362 strftime(cTime, sizeof(cTime), "%H:%M:%S", &tmrEnd);
363 EXPECT_STREQ("00:00:00", cTime);
364 strftime(cTime, sizeof(cTime), "%H:%M:%S", tmrEndPtr);
365 EXPECT_STREQ("00:00:00", cTime);
366 strftime(cTime, sizeof(cTime), "%F %T", &tmrStart);
367 LOG(" result[%s]", cTime);
389 char cTime[30];
394 strftime(cTime, sizeof(cTime), mask, retTm);
395 EXPECT_STREQ(cInput, cTime);
396 strftime(cTime, sizeof(cTime), "%D %A %H:%M:%S", retTm);
397 EXPECT_STREQ("10/26/20 Sunday 00:01:01", cTime);