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

1 2

  /external/apache-http/src/org/apache/http/impl/cookie/
BasicMaxAgeHandler.java 50 throw new MalformedCookieException("Missing value for max-age attribute");
52 int age; local
54 age = Integer.parseInt(value);
56 throw new MalformedCookieException ("Invalid max-age attribute: "
59 if (age < 0) {
60 throw new MalformedCookieException ("Negative max-age attribute: "
63 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/chrome/browser/policy/
file_based_policy_loader.cc 140 base::TimeDelta age = now - last_modification_clock_; local
141 if (age < settle_interval_) {
142 *delay = settle_interval_ - age;
  /external/chromium_org/chrome/browser/policy/
async_policy_loader.cc 129 const base::TimeDelta age = now - last_modification_clock_; local
130 if (age < kSettleInterval) {
131 *delay = kSettleInterval - age;
  /external/wpa_supplicant_8/src/ap/
ctrl_iface_ap.c 27 struct os_time now, age; local
34 os_time_sub(&now, &sta->connected_time, &age);
37 (unsigned int) age.sec);
  /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;
  /system/core/libcorkscrew/
map_info.c 225 int64_t age = time - data->timestamp; local
226 if (age >= MAX_CACHE_AGE) {
227 ALOGV("Invalidated my_map_info_list %p, age=%lld.", g_my_map_info_list, age);
231 ALOGV("Reusing my_map_info_list %p, age=%lld.", g_my_map_info_list, age);
  /external/chromium_org/content/browser/geolocation/
network_location_request.cc 178 int age = kint32min; // Invalid so AddInteger() will ignore. local
180 // Convert absolute timestamps into a relative age.
183 age = static_cast<int>(delta_ms);
187 AddWifiData(wifi_data, age, &request);
233 AddInteger("age", age_milliseconds, wifi_dict);
  /external/chromium_org/third_party/icu/source/i18n/
islamcal.cpp 238 double age = moonAge(origin, status); local
243 if (age >= 0) {
247 age = moonAge(origin, status);
251 } while (age >= 0);
257 age = moonAge(origin, status);
261 } while (age < 0);
274 * Return the "age" of the moon at the given time; this is the difference
279 * @param time The time at which the moon's age is desired,
284 double age = 0; local
291 return age;
    [all...]
  /external/icu4c/i18n/
islamcal.cpp 241 double age = moonAge(origin, status); local
246 if (age >= 0) {
250 age = moonAge(origin, status);
254 } while (age >= 0);
260 age = moonAge(origin, status);
264 } while (age < 0);
277 * Return the "age" of the moon at the given time; this is the difference
282 * @param time The time at which the moon's age is desired,
287 double age = 0; local
294 return age;
    [all...]
  /external/icu4c/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/chromium_org/third_party/WebKit/Source/core/platform/network/
ResourceResponse.cpp 279 DEFINE_STATIC_LOCAL(const AtomicString, ageHeader, ("age", AtomicString::ConstructFromLiteral));
333 DEFINE_STATIC_LOCAL(const AtomicString, maxAgeDirective, ("max-age", AtomicString::ConstructFromLiteral));
352 // First max-age directive wins if there are multiple ones.
434 double ResourceResponse::age() const function in class:WebCore::ResourceResponse
437 DEFINE_STATIC_LOCAL(const AtomicString, headerName, ("age", AtomicString::ConstructFromLiteral));
  /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;
  /frameworks/base/core/java/android/os/
FileUtils.java 330 * @param minAge Always keep files younger than this age.
353 final long age = System.currentTimeMillis() - file.lastModified(); local
354 if (age > minAge) {
  /external/wpa_supplicant_8/wpa_supplicant/
bss.c 258 calculate_update_time(fetch_time, src->age, &dst->last_update);
581 calculate_update_time(fetch_time, res->age, &update);
583 struct os_time age; local
584 os_time_sub(&wpa_s->scan_trigger_time, &update, &age);
588 (unsigned int) age.sec,
589 (unsigned int) age.usec);
751 * @age: Maximum entry age in seconds
753 * Remove BSS entries that have not been updated during the last @age seconds.
755 void wpa_bss_flush_by_age(struct wpa_supplicant *wpa_s, int age)
    [all...]
  /cts/tests/tests/database/src/android/database/cts/
DatabaseUtilsTest.java 48 "age", // 2
64 "name TEXT, age INTEGER, address TEXT);");
112 int age = 21; local
121 String sql = "INSERT INTO " + TABLE_NAME + " (name, age, address) VALUES (?, ?, ?);";
124 DatabaseUtils.bindObjectToProgram(statement, 2, age);
134 assertEquals(age, cursor.getInt(2));
158 mDatabase.execSQL("INSERT INTO " + TABLE_NAME + " (name, age, address)" +
167 DatabaseUtils.cursorDoubleToContentValues(cursor, "age", contentValues, key);
178 mDatabase.execSQL("INSERT INTO " + TABLE_NAME + " (name, age, address)" +
186 DatabaseUtils.cursorDoubleToCursorValues(cursor, "age", contentValues)
    [all...]
  /external/mksh/src/
jobs.c 89 int32_t age; /* number of jobs started */ member in struct:job
446 j->age = ++njobs;
1018 (!oldest || jl->age < oldest->age))
    [all...]
  /external/sonivox/arm-fm-22k/lib_src/
eas_synth.h 279 EAS_U16 age; /* large value means old note */ member in struct:s_synth_voice_tag
385 EAS_U16 age; member in struct:s_voice_mgr_tag
eas_voicemgt.c 184 pVoice->age = DEFAULT_AGE;
1540 EAS_U16 age; local
    [all...]

Completed in 1844 milliseconds

1 2