HomeSort by relevance Sort by last modified time
    Searched defs:ptm (Results 1 - 9 of 9) 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;
  /development/tools/jdwpspy/
Net.cpp 457 struct tm* ptm; local
460 ptm = localtime(&now);
461 *pMin = ptm->tm_min;
462 *pSec = ptm->tm_sec;
  /external/clang/test/SemaCXX/
class.cpp 33 func *ptm; member in class:C
  /system/core/debuggerd/
tombstone.c 534 struct tm* ptm; local
535 ptm = localtime_r(&sec, &tmBuf);
536 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);
  /external/qemu/
block.c 1934 struct tm *ptm; local
    [all...]

Completed in 195 milliseconds