HomeSort by relevance Sort by last modified time
    Searched defs:oldest (Results 1 - 15 of 15) sorted by null

  /external/chromium/third_party/libjingle/source/talk/base/
diskcache.cc 240 // oldest resources... something that isn't O(n^2)
242 EntryMap::iterator oldest = map_.end(); local
246 oldest = it;
249 if (oldest == map_.end()) {
253 for (EntryMap::iterator it = oldest++; it != map_.end(); ++it) {
254 if (it->second.last_modified < oldest->second.last_modified) {
255 oldest = it;
258 if (!DeleteResource(oldest->first)) {
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
CachedFrameManager.java 123 int oldest = mAvailableFrames.firstKey(); local
124 Frame frame = mAvailableFrames.get(oldest);
127 mAvailableFrames.remove(oldest);
  /external/chromium/chrome/browser/net/
passive_log_collector.cc 280 uint32 oldest = deletion_queue_.front(); local
282 DeleteSourceInfo(oldest);
  /external/dnsmasq/src/
forward.c 959 when the oldest in-use record will expire. Impose an absolute
963 struct frec *f, *oldest, *target; local
969 for (f = daemon->frec_list, oldest = NULL, target = NULL, count = 0; f; f = f->next, count++)
980 if (!oldest || difftime(f->time, oldest->time) <= 0)
981 oldest = f;
990 /* can't find empty one, use oldest if there is one
992 if (oldest && ((int)difftime(now, oldest->time)) >= TIMEOUT)
996 if (difftime(now, oldest->time) < 2*TIMEOUT &&
    [all...]
  /external/quake/quake/src/QW/server/
sv_user.c 1548 usercmd_t oldest, oldcmd, newcmd; local
    [all...]
sv_main.c 463 int oldest; local
466 oldest = 0;
477 oldest = i;
483 // overwrite the oldest
484 svs.challenges[oldest].challenge = (rand() << 16) ^ rand();
485 svs.challenges[oldest].adr = net_from;
486 svs.challenges[oldest].time = realtime;
487 i = oldest;
    [all...]
  /external/speex/libspeex/
jitter.c 341 /* If the current sub-window is full, perform a rotation and discard oldest sub-widow */
420 /*No place left in the buffer, need to make room for it by discarding the oldest packet */
479 /* Find the oldest packet */
480 spx_uint32_t oldest=0; local
483 if (jitter->packets[i].data && (!found || LT32(jitter->packets[i].timestamp,oldest)))
485 oldest = jitter->packets[i].timestamp;
492 jitter->pointer_timestamp = oldest;
493 jitter->next_stop = oldest;
  /system/core/debuggerd/
tombstone.c 557 * the oldest entry. If we didn't, we want to start at zero.
646 int oldest = 0; local
652 oldest = i;
668 /* we didn't find an available file, so we clobber the oldest one */
669 snprintf(path, sizeof(path), TOMBSTONE_DIR"/tombstone_%02d", oldest);
  /frameworks/base/services/java/com/android/server/
ThrottleService.java 952 File oldest = null; local
    [all...]
  /external/mksh/src/
jobs.c 998 Job *jl, *oldest; local
1009 oldest = NULL;
1012 (!oldest || jl->age < oldest->age))
1013 oldest = jl;
1014 if (!oldest) {
1023 remove_job(oldest, "zombie");
    [all...]
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/
ndldic.c 1060 NJ_UINT16 que_id, oldest; local
1074 oldest = GET_LEARN_NEXT_WORD_POS(loctset->loct.handle);
1100 if (current < oldest) {
1110 max_value = oldest;
1685 NJ_UINT16 que_id, oldest; local
1937 NJ_UINT16 que_id, oldest; local
    [all...]
  /bionic/libc/netbsd/resolv/
res_cache.c 1422 Entry* oldest = cache->mru_list.mru_prev; local
    [all...]
  /external/chromium/net/disk_cache/
backend_impl.cc 1710 int oldest = -1; local
    [all...]
  /external/wpa_supplicant_8/src/p2p/
p2p.c 404 struct p2p_device *dev, *oldest = NULL; local
413 if (oldest == NULL ||
414 os_time_before(&dev->last_seen, &oldest->last_seen))
415 oldest = dev;
417 if (count + 1 > p2p->cfg->max_peers && oldest) {
419 "P2P: Remove oldest peer entry to make room for a new "
423 if(&oldest->list == p2p->sd_dev_list)
424 p2p->sd_dev_list = oldest->list.next;
426 dl_list_del(&oldest->list);
427 p2p_device_free(p2p, oldest);
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jar 

Completed in 249 milliseconds