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

12

/external/chromium_org/chrome/common/favicon/
H A Dfavicon_types.cc18 : expired(false),
H A Dfavicon_types.h56 // Indicates whether |bitmap_data| is expired.
57 bool expired; member in struct:chrome::FaviconBitmapResult
/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.
188 self.expired = False
196 if self.expired:
197 raise Exception('Section instance has expired.')
204 if self.expired:
205 raise Exception('Section instance has expired.')
211 if self.expired:
212 raise Exception('Section instance has expired.')
219 if self.expired
[all...]
/external/openssh/openbsd-compat/
H A Dport-aix.c177 int authsuccess = 0, expired, reenter, result; local
200 * Check if the user's password is expired.
202 expired = passwdexpired(name, &msg);
207 debug3("AIX/passwdexpired returned %d msg %.100s", expired, msg);
209 switch (expired) {
210 case 0: /* password not expired */
212 case 1: /* expired, password change required */
/external/chromium/chrome/browser/
H A Dfavicon_helper.cc319 favicon_expired_ = (favicon.known_icon && favicon.expired);
328 // to be expired (or the wrong url) we'll fetch later on. This way the
336 if (favicon.known_icon && !favicon.expired) {
348 // favicon or its expired. Continue on to DownloadFaviconOrAskHistory to
396 // There is a favicon, set it now. If expired we'll download the current
401 if (!favicon.known_icon || favicon.expired) {
408 } else if (current_candidate() && (!favicon.known_icon || favicon.expired ||
H A Dfavicon_helper_unittest.cc296 history_handler->favicon_data_.expired = false;
338 // Set icon data expired
341 history_handler->favicon_data_.expired = true;
405 history_handler->favicon_data_.expired = false;
490 history_handler->favicon_data_.expired = false;
529 history_handler->favicon_data_.expired = false;
627 // Smulates getting a expired icon from history.
630 history_handler->favicon_data_.expired = true;
756 handler->favicon_data_.expired = false;
/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/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
H A Dvdbeaux.c159 p->expired = 0;
2313 if( p->runOnlyOnce ) p->expired = 1;
2314 }else if( p->rc && p->expired ){
2315 /* The expired flag was set on the VDBE before the first call
3149 ** as expired.
3151 ** An expired statement means that recompilation of the statement is
3160 p->expired = 1;
H A Dvdbe.c1434 if( p->expired ) rc = SQLITE_ABORT;
2898 p->expired = 0;
2956 p->expired = 1;
3022 if( p->expired ){
5411 ** Cause precompiled statements to become expired. An expired statement
5415 ** If P1 is 0, then all SQL statements become expired. If P1 is non-zero,
5422 p->expired = 1;
5737 p->expired = 0;
/external/qemu/
H A Dqemu-timer.c214 char expired; member in struct:qemu_alarm_timer
772 if (alarm_timer->expired) {
773 alarm_timer->expired = 0;
839 t->expired = alarm_has_dynticks(t);
1128 t->expired = alarm_has_dynticks(t);
1212 is zero) that has already expired, the timer is not updated. Since
/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:
/external/sqlite/dist/orig/
H A Dsqlite3ext.h101 int (*expired)(sqlite3_stmt*); member in struct:sqlite3_api_routines
313 #define sqlite3_expired sqlite3_api->expired
/external/sqlite/dist/
H A Dsqlite3ext.h101 int (*expired)(sqlite3_stmt*); member in struct:sqlite3_api_routines
313 #define sqlite3_expired sqlite3_api->expired
/external/chromium/chrome/browser/history/
H A Dhistory_types.h720 // Indicates whether image is expired.
721 bool expired; member in struct:history::FaviconData
H A Dhistory_types.cc416 expired(false),
/external/chromium_org/chrome/browser/favicon/
H A Dfavicon_handler_unittest.cc53 bool expired,
58 bitmap_result.expired = expired;
71 SetFaviconBitmapResult(icon_url, chrome::FAVICON, false /* expired */,
494 // Set icon data expired
495 SetFaviconBitmapResult(icon_url, chrome::FAVICON, true /* expired */,
646 bitmap_result.expired = false;
847 // Simulates getting a expired icon from history.
849 true /* expired */, &history_handler->history_results_);
971 false /* expired */,
50 SetFaviconBitmapResult( const GURL& icon_url, chrome::IconType icon_type, bool expired, std::vector<chrome::FaviconBitmapResult>* favicon_bitmap_results) argument
[all...]
H A Dfavicon_handler.cc110 // Return true if |bitmap_result| is expired.
112 return bitmap_result.expired;
120 // Returns true if at least one of the bitmaps in |bitmap_results| is expired or
126 // Check if at least one of the bitmaps is expired.
523 // to be expired (or the wrong url) we'll fetch later on. This way the
528 // favicon as if it's expired.
546 // favicon or its expired. Continue on to DownloadFaviconOrAskHistory to
598 // There is a favicon, set it now. If expired we'll download the current
/external/chromium/chrome/browser/safe_browsing/
H A Dsafe_browsing_database_unittest.cc919 // Test that the cache won't return expired values. First we have to adjust
928 base::Time expired = base::Time::Now() - base::TimeDelta::FromMinutes(60); local
933 iter->received = static_cast<int32>(expired.ToTimeT());
941 &listname, &prefixes, &full_hashes, expired);
947 &listname, &prefixes, &full_hashes, expired);
/external/jmdns/src/javax/jmdns/impl/
H A DJmDNSImpl.java1331 final boolean expired = newRecord.isExpired(now);
1351 if (expired) {
1378 if (!expired) {
1391 if (!expired) {
/external/chromium_org/chrome/browser/safe_browsing/
H A Dsafe_browsing_database_unittest.cc972 // Test that the cache won't return expired values. First we have to adjust
981 base::Time expired = base::Time::Now() - base::TimeDelta::FromMinutes(60); local
986 iter->received = static_cast<int32>(expired.ToTimeT());
994 &listname, &prefixes, &full_hashes, expired);
1000 &listname, &prefixes, &full_hashes, expired);

Completed in 1956 milliseconds

12