Searched refs:creationTime (Results 1 - 14 of 14) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/platform/blackberry/
H A DParsedCookie.h52 static PassRefPtr<ParsedCookie> create(const String& name, const String& value, const String& domain, const String& protocol, const String& path, double expiry, double lastAccessed, double creationTime, bool isSecure, bool isHttpOnly) { return adoptRef(new ParsedCookie(name, value, domain, protocol, path, expiry, lastAccessed, creationTime, isSecure, isHttpOnly)); }; argument
77 double creationTime() const { return m_creationTime; } function in class:WebCore::ParsedCookie
78 void setCreationTime(double creationTime) { m_creationTime = creationTime; } argument
104 ParsedCookie(const String& name, const String& value, const String& domain, const String& protocol, const String& path, double expiry, double lastAccessed, double creationTime, bool isSecure, bool isHttpOnly);
H A DParsedCookie.cpp52 ParsedCookie::ParsedCookie(const String& name, const String& value, const String& domain, const String& protocol, const String& path, double expiry, double lastAccessed, double creationTime, bool isSecure, bool isHttpOnly) argument
59 , m_creationTime(creationTime)
H A DCookieManager.cpp116 return a->creationTime() < b->creationTime();
/macosx-10.9.5/Security-55471.14.18/authd/
H A Dcredential.c21 CFAbsoluteTime creationTime; member in struct:_credential_s
44 CFGregorianDate date = CFAbsoluteTimeGetGregorianDate(cred->creationTime, sys_tz);
108 cred->creationTime = CFAbsoluteTimeGetCurrent();
199 return cred->creationTime;
/macosx-10.9.5/securityd-55199.3/src/
H A Dcredential.h56 CFAbsoluteTime creationTime() const;
H A Dcredential.cpp149 CredentialImpl::creationTime() const function in class:Authorization::CredentialImpl
H A DAuthorizationRule.cpp746 if (now - credential->creationTime() > mMaxCredentialAge)
/macosx-10.9.5/WebCore-7537.78.1/loader/appcache/
H A DApplicationCacheHost.h81 CacheInfo(const KURL& manifest, double creationTime, double updateTime, long long size) argument
83 , m_creationTime(creationTime)
/macosx-10.9.5/hfs-226.1.1/mount_hfs/
H A Dmount_hfs.c90 struct timespec creationTime; member in struct:CreateDateAttrBuf
341 gmtCreateTime = attrReturnBuffer.creationTime.tv_sec;
355 if ((newCreateTime != attrReturnBuffer.creationTime.tv_sec) &&
356 (( newCreateTime - attrReturnBuffer.creationTime.tv_sec) > -15) &&
357 ((newCreateTime - attrReturnBuffer.creationTime.tv_sec) < 15)) {
359 attrReturnBuffer.creationTime.tv_sec = (time_t) newCreateTime;
362 &attrReturnBuffer.creationTime,
363 sizeof(attrReturnBuffer.creationTime),
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/ca/mac/
H A DTileController.h187 double creationTime; // in monotonicallyIncreasingTime(). member in struct:WebCore::TileController::TileCohortInfo
190 , creationTime(inTime)
H A DTileController.mm806 while (!m_cohortList.isEmpty() && m_cohortList.first().creationTime < timeThreshold) {
/macosx-10.9.5/WebCore-7537.78.1/platform/blackberry/CookieDatabaseBackingStore/
H A DCookieDatabaseBackingStore.cpp118 const String databaseFields("name TEXT, value TEXT, host TEXT, path TEXT, expiry DOUBLE, lastAccessed DOUBLE, isSecure INTEGER, isHttpOnly INTEGER, creationTime DOUBLE, protocol TEXT");
138 insertQuery.append(" (name, value, host, path, expiry, lastAccessed, isSecure, isHttpOnly, creationTime, protocol) VALUES (?1, ?2, ?3, ?4, ?5, ?6, ?7, ?8, ?9, ?10);");
150 updateQuery.append(" SET name = ?1, value = ?2, host = ?3, path = ?4, expiry = ?5, lastAccessed = ?6, isSecure = ?7, isHttpOnly = ?8, creationTime = ?9, protocol = ?10 where name = ?1 and host = ?3 and path = ?4;");
275 selectQuery.append("SELECT name, value, host, path, expiry, lastAccessed, isSecure, isHttpOnly, creationTime, protocol FROM ");
305 double creationTime = selectStatement.getColumnDouble(8); local
308 cookies->append(ParsedCookie::create(name, value, domain, protocol, path, expiry, lastAccessed, creationTime, isSecure, isHttpOnly));
421 || m_statement->bindDouble(9, cookie->creationTime()) || m_statement->bindText(10, cookie->protocol())) {
/macosx-10.9.5/WebCore-7537.78.1/loader/cache/
H A DCachedResource.cpp451 double creationTime = std::isfinite(dateValue) ? dateValue : m_responseTimestamp; local
453 return expiresValue - creationTime;
456 return (creationTime - lastModifiedValue) * 0.1;
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DApplicationCacheItemsView.js178 this._creationTime = applicationCache.creationTime;
192 // FIXME: For Chrome, put creationTime and updateTime somewhere.

Completed in 111 milliseconds