HomeSort by relevance Sort by last modified time
    Searched defs:age (Results 1 - 25 of 81) sorted by null

1 2 3 4

  /external/apache-http/src/org/apache/http/impl/cookie/
BasicMaxAgeHandler.java 56 throw new MalformedCookieException("Missing value for max-age attribute");
58 int age; local
60 age = Integer.parseInt(value);
62 throw new MalformedCookieException ("Invalid max-age attribute: "
65 if (age < 0) {
66 throw new MalformedCookieException ("Negative max-age attribute: "
69 cookie.setExpiryDate(new Date(System.currentTimeMillis() + age * 1000L));
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_sampler_view.c 143 sv->age = tex->age;
174 unsigned age = 0; local
182 age = tex->age;
191 if (v->age < tex->view_age[i])
201 v->age = age;
svga_sampler_view.h 67 unsigned age; member in struct:svga_sampler_view
svga_resource_texture.h 58 unsigned age; member in struct:svga_texture
  /external/mesa3d/src/gallium/drivers/svga/
svga_sampler_view.c 143 sv->age = tex->age;
174 unsigned age = 0; local
182 age = tex->age;
191 if (v->age < tex->view_age[i])
201 v->age = age;
svga_sampler_view.h 67 unsigned age; member in struct:svga_sampler_view
svga_resource_texture.h 58 unsigned age; member in struct:svga_texture
  /external/chromium_org/base/test/
test_reg_util_win.cc 46 base::TimeDelta age = now - key_time; local
48 if (age > base::TimeDelta::FromHours(24))
  /external/chromium_org/components/policy/core/common/
async_policy_loader.cc 129 const TimeDelta age = now - last_modification_clock_; local
130 if (age < kSettleInterval) {
131 *delay = kSettleInterval - age;
  /external/chromium_org/third_party/webrtc/common_audio/vad/
vad_sp.c 71 // Pointer to memory for the 16 minimum values and the age of each value of
73 int16_t* age = &self->index_vector[offset]; local
78 // Each value in |smallest_values| is getting 1 loop older. Update |age|, and
81 if (age[i] != 100) {
82 age[i]++;
87 age[j] = age[j + 1];
89 age[15] = 101;
152 age[i] = age[i - 1]
    [all...]
  /external/chromium_org/remoting/host/policy_hack/
policy_watcher_linux.cc 216 base::TimeDelta age = now - last_modification_clock_; local
217 if (age < kSettleInterval) {
218 *delay = kSettleInterval - age;
  /external/chromium_org/chrome/browser/password_manager/
password_manager_util_win.cc 58 DWORD age = 0; local
64 age = user_info->usri1_password_age;
70 base::Time changed = base::Time::Now() - base::TimeDelta::FromSeconds(age);
117 // Account for clock skew between pulling the password age and
  /external/wpa_supplicant_8/src/ap/
ctrl_iface_ap.c 48 struct os_reltime age; local
54 os_reltime_age(&sta->connected_time, &age);
57 (unsigned int) age.sec);
  /external/chromium_org/content/browser/media/
webrtc_identity_store_backend.cc 228 base::TimeDelta age = base::Time::Now() - base::Time::FromInternalValue( local
230 if (age < validity_period_) {
  /external/chromium_org/third_party/WebKit/Source/platform/network/
ResourceResponse.cpp 284 DEFINE_STATIC_LOCAL(const AtomicString, ageHeader, ("age", AtomicString::ConstructFromLiteral));
387 double ResourceResponse::age() const function in class:blink::ResourceResponse
390 DEFINE_STATIC_LOCAL(const AtomicString, headerName, ("age", AtomicString::ConstructFromLiteral));
  /external/chromium_org/third_party/icu/source/i18n/
islamcal.cpp 357 double age = moonAge(origin, status); local
362 if (age >= 0) {
366 age = moonAge(origin, status);
370 } while (age >= 0);
376 age = moonAge(origin, status);
380 } while (age < 0);
393 * Return the "age" of the moon at the given time; this is the difference
398 * @param time The time at which the moon's age is desired,
403 double age = 0; local
410 return age;
    [all...]
  /external/chromium_org/third_party/icu/source/tools/toolutil/
ppucd.h 50 UVersionInfo age; member in struct:UniProps
79 /** defaults;0000..10FFFF;age=NA;bc=L;... */
81 /** block;0000..007F;age=1.1;blk=ASCII;ea=Na;... */
  /external/icu/icu4c/source/i18n/
islamcal.cpp 357 double age = moonAge(origin, status); local
362 if (age >= 0) {
366 age = moonAge(origin, status);
370 } while (age >= 0);
376 age = moonAge(origin, status);
380 } while (age < 0);
393 * Return the "age" of the moon at the given time; this is the difference
398 * @param time The time at which the moon's age is desired,
403 double age = 0; local
410 return age;
    [all...]
  /external/icu/icu4c/source/tools/toolutil/
ppucd.h 50 UVersionInfo age; member in struct:UniProps
79 /** defaults;0000..10FFFF;age=NA;bc=L;... */
81 /** block;0000..007F;age=1.1;blk=ASCII;ea=Na;... */
  /external/wpa_supplicant_8/src/utils/
os.h 90 struct os_reltime *age)
95 os_reltime_sub(&now, start, age);
103 struct os_reltime age; local
105 os_reltime_sub(now, ts, &age);
106 return (age.sec > timeout_secs) ||
107 (age.sec == timeout_secs && age.usec > 0);
  /frameworks/base/wifi/java/android/net/wifi/
ScanResult.java 91 long age = seen - previousSeen; local
93 if (previousSeen > 0 && age > 0 && age < maxAge/2) {
95 double alpha = 0.5 - (double) age / (double) maxAge;
  /packages/services/Telecomm/src/com/android/server/telecom/
CallLogManager.java 137 final long age = call.getAgeMillis(); local
148 callLogType, callFeatures, accountHandle, creationTime, age, null); local
  /external/chromium_org/content/browser/geolocation/
network_location_request.cc 212 int age = kint32min; // Invalid so AddInteger() will ignore. local
214 // Convert absolute timestamps into a relative age.
217 age = static_cast<int>(delta_ms);
221 AddWifiData(wifi_data, age, &request);
267 AddInteger("age", age_milliseconds, wifi_dict);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_common.c 165 uint32_t age; local
168 gp.value = (int *)&age;
177 return age;
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_common.c 165 uint32_t age; local
168 gp.value = (int *)&age;
177 return age;

Completed in 1044 milliseconds

1 2 3 4