Home | History | Annotate | Download | only in icon

Lines Matching refs:timestamp

650     // If we have a IconRecord, it should also have its timeStamp marked because there is only two times when we create the IconRecord:
651 // 1 - When we read the icon urls from disk, getting the timeStamp at the same time
652 // 2 - When we get a new icon from the loader, in which case the timestamp is set at that time
989 double timeStamp = currentTime();
990 LOG(IconDatabase, "(THREAD) Open took %.4f seconds", timeStamp - startTime);
999 LOG(IconDatabase, "(THREAD) performOpenInitialization() took %.4f seconds, now %.4f seconds from thread start", newStamp - timeStamp, newStamp - startTime);
1000 timeStamp = newStamp;
1022 LOG(IconDatabase, "(THREAD) performImport() took %.4f seconds, now %.4f seconds from thread start", newStamp - timeStamp, newStamp - startTime);
1023 timeStamp = newStamp;
1028 // while (currentTime() - timeStamp < 10);
1039 LOG(IconDatabase, "(THREAD) performURLImport() took %.4f seconds. Entering main loop %.4f seconds from thread start", newStamp - timeStamp, newStamp - startTime);
1236 // so we marked the timestamp as "now", but it's really much older
1346 double timeStamp = currentTime();
1399 LOG(IconDatabase, "(THREAD) Main work loop ran for %.4f seconds, %s requested to terminate", newstamp - timeStamp, shouldStopThreadActivity() ? "was" : "was not");
1442 double timeStamp = currentTime();
1541 LOG(IconDatabase, "Reading from database took %.4f seconds", currentTime() - timeStamp);
1551 double timeStamp = currentTime();
1579 LOG(IconDatabase, "Wrote IconRecord for IconURL %s with timeStamp of %i to the DB", urlForLogging(iconSnapshots[i].iconURL).ascii().data(), iconSnapshots[i].timestamp);
1598 LOG(IconDatabase, "Updating the database took %.4f seconds", currentTime() - timeStamp);
1745 double timeStamp = currentTime();
1765 LOG(IconDatabase, "(THREAD) Final closure took %.4f seconds", currentTime() - timeStamp);
2007 // A nulled out timestamp and data means this icon is destined to be deleted - do that instead of writing it out
2008 if (!snapshot.timestamp && !snapshot.data) {
2024 m_updateIconInfoStatement->bindInt64(1, snapshot.timestamp);
2050 m_setIconInfoStatement->bindInt64(2, snapshot.timestamp);