Lines Matching defs:u64Timestamp

85              uint64_t u64Timestamp, uint32_t u32Flags)
86 : mName(pcszName), mValue(pcszValue), mTimestamp(u64Timestamp),
93 Property(std::string name, std::string value, uint64_t u64Timestamp,
95 : mName(name), mValue(value), mTimestamp(u64Timestamp),
204 * @param u64Timestamp the timestamp of the last notification
209 int getOldNotification(const char *pszPatterns, uint64_t u64Timestamp,
214 AssertReturn(u64Timestamp != 0, VERR_INVALID_PARAMETER);
216 int rc = getOldNotificationInternal(pszPatterns, u64Timestamp, pProp);
220 * - Appears later than u64Timestamp
227 && it->mTimestamp != u64Timestamp; ++it)
380 uint64_t u64Timestamp, Property *pProp);
382 int doNotifications(const char *pszProperty, uint64_t u64Timestamp);
384 uint64_t u64Timestamp, const char *pszFlags);
792 uint64_t u64Timestamp = getCurrentTimestamp();
799 int rc2 = doNotifications(pcszName, u64Timestamp);
952 uint64_t u64Timestamp,
960 if (it->mTimestamp == u64Timestamp)
987 uint64_t u64Timestamp;
1004 u64Timestamp = prop.mTimestamp;
1010 paParms[1].setUInt64(u64Timestamp);
1038 uint64_t u64Timestamp;
1046 || RT_FAILURE(paParms[1].getUInt64(&u64Timestamp)) /* timestamp */
1052 LogFlow(("pszPatterns=%s, u64Timestamp=%llu\n", pszPatterns, u64Timestamp));
1059 if (RT_SUCCESS(rc) && u64Timestamp != 0)
1060 rc = getOldNotification(pszPatterns, u64Timestamp, &prop);
1113 * @param u64Timestamp the time at which the change took place
1117 int Service::doNotifications(const char *pszProperty, uint64_t u64Timestamp)
1120 LogFlowThisFunc(("pszProperty=%s, u64Timestamp=%llu\n", pszProperty, u64Timestamp));
1123 && u64Timestamp == mGuestNotifications.back().mTimestamp)
1124 ++u64Timestamp;
1132 prop.mTimestamp = u64Timestamp;
1192 rc = notifyHost(pszProperty, pszValue, u64Timestamp, szFlags);
1201 rc = notifyHost(pszProperty, "", u64Timestamp, "");
1214 * @param u64Timestamp the time of the change
1218 uint64_t u64Timestamp, const char *pszFlags)
1220 LogFlowFunc(("pszName=%s, pszValue=%s, u64Timestamp=%llu, pszFlags=%s\n",
1221 pszName, pszValue, u64Timestamp, pszFlags));
1226 HostCallbackData.u64Timestamp = u64Timestamp;