HomeSort by relevance Sort by last modified time
    Searched defs:ptm (Results 1 - 10 of 10) sorted by null

  /build/tools/zipalign/
ZipEntry.cpp 365 struct tm* ptm; local
372 ptm = localtime_r(&even, &tmResult);
374 ptm = localtime(&even);
378 year = ptm->tm_year;
382 zdate = (year - 80) << 9 | (ptm->tm_mon+1) << 5 | ptm->tm_mday;
383 ztime = ptm->tm_hour << 11 | ptm->tm_min << 5 | ptm->tm_sec >> 1;
  /dalvik/vm/
SignalCatcher.cpp 110 struct tm* ptm; local
113 ptm = localtime_r(&now, &tmbuf);
115 ptm = localtime(&now);
119 pid, ptm->tm_year + 1900, ptm->tm_mon+1, ptm->tm_mday,
120 ptm->tm_hour, ptm->tm_min, ptm->tm_sec);
  /frameworks/base/tools/aapt/
ZipEntry.cpp 365 struct tm* ptm; local
372 ptm = localtime_r(&even, &tmResult);
374 ptm = localtime(&even);
378 year = ptm->tm_year;
382 zdate = (year - 80) << 9 | (ptm->tm_mon+1) << 5 | ptm->tm_mday;
383 ztime = ptm->tm_hour << 11 | ptm->tm_min << 5 | ptm->tm_sec >> 1;
  /art/jdwpspy/
Net.cpp 458 tm* ptm; local
461 ptm = localtime(&now);
462 *pMin = ptm->tm_min;
463 *pSec = ptm->tm_sec;
  /external/clang/test/SemaCXX/
class.cpp 33 func *ptm; member in class:C
  /system/core/debuggerd/
tombstone.c 577 struct tm* ptm; local
578 ptm = localtime_r(&sec, &tmBuf);
579 strftime(timeBuf, sizeof(timeBuf), "%m-%d %H:%M:%S", ptm);
  /system/core/liblog/
fake_log_device.c 352 struct tm* ptm; local
375 ptm = localtime_r(&when, &tmBuf);
377 ptm = localtime(&when);
379 //strftime(timeBuf, sizeof(timeBuf), "%Y-%m-%d %H:%M:%S", ptm);
380 strftime(timeBuf, sizeof(timeBuf), "%m-%d %H:%M:%S", ptm);
logprint.c 710 struct tm* ptm; local
730 ptm = localtime_r(&(entry->tv_sec), &tmBuf);
732 ptm = localtime(&(entry->tv_sec));
734 //strftime(timeBuf, sizeof(timeBuf), "%Y-%m-%d %H:%M:%S", ptm);
735 strftime(timeBuf, sizeof(timeBuf), "%m-%d %H:%M:%S", ptm);
  /art/runtime/
utils.cc 125 tm* ptm = localtime_r(&now, &tmbuf); local
127 ptm->tm_year + 1900, ptm->tm_mon+1, ptm->tm_mday,
128 ptm->tm_hour, ptm->tm_min, ptm->tm_sec);
    [all...]
  /external/qemu/
block.c 1934 struct tm *ptm; local
    [all...]

Completed in 1270 milliseconds