Searched refs:expired (Results 1 - 25 of 51) 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.js32 /** @return {boolean} whether the timer has expired. */
33 Countdown.prototype.expired = function() {};
101 /** @return {boolean} whether the timer has expired. */
102 CountdownTimer.prototype.expired = function() {
118 if (this.expired()) {
H A Dusbenrollhelper.js116 if (this.timer_.expired()) {
132 if (!this.closed_ && !this.timer_.expired()) {
137 if (self.timer_.expired()) {
341 if (this.timer_.expired()) {
H A Dusbsignhelper.js88 if (this.timer_.expired()) {
230 if (this.timer_.expired()) {
H A Dsinglesigner.js226 if (!this.timer_ || !this.timer_.expired()) {
269 if (this.timer_ && this.timer_.expired()) {
270 // If the timer is expired, that means we never got a success or a touch
/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.cc78 // |expired|, or manually deleted.
79 void EnsureURLInfoGone(const URLRow& row, bool expired);
163 bool expired,
309 void ExpireHistoryTest::EnsureURLInfoGone(const URLRow& row, bool expired) { argument
332 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/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;
H A DvdbeInt.h297 u8 expired; /* True if the VM needs to be recompiled */ member in struct:Vdbe
H A Dsqlite3ext.h91 int (*expired)(sqlite3_stmt*); member in struct:sqlite3_api_routines
289 #define sqlite3_expired sqlite3_api->expired
/external/chromium_org/media/tools/constrained_network_server/
H A Dcns.py136 """Cleans up expired ports, or if all_ports=True, all allocated ports.
149 expired = now - status['last_update'] > self._expiry_time_secs
151 if all_ports or expired or matching_ip:

Completed in 511 milliseconds

123