Searched refs:expired (Results 1 - 25 of 54) sorted by relevance

123

/external/chromium_org/components/favicon_base/
H A Dfavicon_types.cc19 : expired(false), icon_type(INVALID_ICON) {
H A Dfavicon_types.h55 // Indicates whether |bitmap_data| is expired.
56 bool expired; member in struct:favicon_base::FaviconRawBitmapResult
/external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.obs/
H A Dexpired.pass.cpp14 // bool expired() const;
35 assert(wp.expired() == (wp.use_count() == 0));
41 assert(wp.expired() == (wp.use_count() == 0));
44 assert(wp.expired() == (wp.use_count() == 0));
H A DAndroid.mk27 test_name := utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.obs/expired
28 test_src := expired.pass.cpp
/external/llvm/bindings/python/llvm/
H A Dobject.py58 # This is NOT OK. You perform a lookup after the object has expired.
61 print symbol.name # This raises because the object has expired.
191 self.expired = False
199 if self.expired:
200 raise Exception('Section instance has expired.')
207 if self.expired:
208 raise Exception('Section instance has expired.')
214 if self.expired:
215 raise Exception('Section instance has expired.')
227 if self.expired
[all...]
/external/chromium_org/chrome/browser/resources/cryptotoken/
H A Dcountdown.js24 /** Clears this timer's timeout. Timers that are cleared become expired. */
32 /** @return {boolean} whether the timer has expired. */
33 Countdown.prototype.expired = function() {};
H A Dcountdowntimer.js54 /** Clears this timer's timeout. Timers that are cleared become expired. */
70 /** @return {boolean} whether the timer has expired. */
71 CountdownTimer.prototype.expired = function() {
87 if (this.expired()) {
H A Dusbenrollhandler.js79 this.timer_.expired()) {
120 if (rc || this.timer_.expired()) {
122 // If the timer is expired, the signerCompleted_ callback will indicate
189 if (this.timer_.expired()) {
255 if (this.timer_.expired()) {
266 if (this.timer_.expired()) {
H A Dmultiplesigner.js188 if (this.reenumerateTimer_.expired()) {
189 // If the timer is expired, call timeout_ if there aren't any still-running
290 if (!moreExpected && this.timer_.expired()) {
H A Dappid.js184 if (!(rc >= 400 && rc < 500) && !self.timer_.expired()) {
H A Dsinglesigner.js226 if (!this.timer_ || !this.timer_.expired()) {
274 if (this.timer_ && this.timer_.expired()) {
275 // If the timer is expired, that means we never got a success response.
/external/chromium_org/chrome/browser/history/
H A Dhistory_notifications.cc20 expired(false) {
H A Dhistory_notifications.h57 // True if the data was expired due to old age. False if the data was deleted
59 bool expired; member in struct:history::URLsDeletedDetails
H A Dexpire_history_backend.h40 bool expired,
198 // expired.
205 // History data was automatically expired due to being more than 90 days
H A Dtyped_url_syncable_service.h61 void OnUrlsDeleted(bool all_history, bool expired, URLRows* rows);
H A Dtyped_url_syncable_service.cc177 bool expired,
186 // Ignore URLs expired due to old age (we don't want to sync them as deletions
191 if (expired)
176 OnUrlsDeleted(bool all_history, bool expired, URLRows* rows) argument
H A Dexpire_history_backend_unittest.cc75 // |expired|, or manually deleted.
76 void EnsureURLInfoGone(const URLRow& row, bool expired);
160 bool expired,
306 void ExpireHistoryTest::EnsureURLInfoGone(const URLRow& row, bool expired) { argument
329 EXPECT_EQ(expired, details->expired);
H A Dexpire_history_backend.cc103 // The number of seconds between checking for items that should be expired when
330 details->expired = (type == DELETION_EXPIRED);
333 delegate_->NotifySyncURLsDeleted(details->all_history, details->expired,
/external/chromium_org/chrome/browser/ssl/
H A Dchrome_ssl_host_state_delegate.cc146 // expired, a new dictionary will be created.
182 bool expired = false; local
201 // Check to see if the user's certificate decision has expired.
214 expired = true;
229 expired = true;
238 if (expired ||
345 // This revoke is necessary to clear any old expired setting that may be
/external/dhcpcd/
H A Ddhcpcd.h105 int expired; member in struct:ra
H A Dipv6rs.c363 (rap->expired || rap->data_len != len ||
393 rap->expired = 0;
686 int expired; local
691 expired = 0;
703 syslog(LOG_INFO, "%s: %s: expired Router Advertisement",
705 rap->expired = expired = 1;
726 "%s: %s: expired option %d",
728 rap->expired = expired
[all...]
/external/fio/engines/
H A Dwindowsaio.c239 BOOL expired = FALSE; local
245 expired = TRUE;
247 expired = TRUE;
249 return expired;
/external/qemu/
H A Dmain-loop.c385 char expired; member in struct:qemu_alarm_timer
404 if (alarm_timer->expired) {
405 alarm_timer->expired = 0;
528 // (really tcg_cpu_exec()) that an alarm has expired. It is set in the
570 // if a timer has really expired, in the case of non-dynamic alarms,
576 t->expired = 1;
722 t->expired = 1;
806 is zero) that has already expired, the timer is not updated. Since
/external/smack/src/org/xbill/DNS/
H A DCache.java23 public boolean expired(); method in interface:Cache.Element
60 expired() { method in class:Cache.CacheRRset
105 expired() { method in class:Cache.NegativeElement
240 if (found.expired()) {
440 if (element.expired()) {
/external/chromium_org/third_party/sqlite/src/src/
H A Dvdbeapi.c30 return p==0 || p->expired;
129 p->expired = 1;
381 if( p->pc<=0 && p->expired ){
483 v->expired = 0;
1016 p->expired = 1;
1273 pTo->expired = 1;
1276 pFrom->expired = 1;

Completed in 4866 milliseconds

123