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

  /external/chromium/chrome/browser/renderer_host/
web_cache_manager.cc 115 // A renderer that was inactive, just became active. We should make sure
232 // The inactive renderers get one share of the extra memory to be divided
258 // inactive renderers if there is a single active tab.
320 // Check if renderers have gone inactive.
325 WebCache::UsageStats inactive; local
327 GatherStats(inactive_renderers_, &inactive);
338 inactive.capacity / 1024 / 1024);
340 inactive.deadSize / 1024 / 1024);
342 inactive.liveSize / 1024 / 1024);
352 // allocations so they can take memory away from an inactive renderer wit
    [all...]
  /frameworks/base/core/java/android/app/
LoaderManager.java 413 // loader. If there is a previous loader on the inactive list,
605 LoaderInfo inactive = mInactiveLoaders.get(id); local
606 if (inactive != null) {
610 // yet destroyed the last inactive loader. So just do
612 if (DEBUG) Log.v(TAG, " Removing last inactive loader: " + info);
613 inactive.mDeliveredData = false;
614 inactive.destroy();
618 // We already have an inactive loader for this ID that we are
645 if (DEBUG) Log.v(TAG, " Making last loader inactive: " + info);
    [all...]
  /frameworks/support/v4/java/android/support/v4/app/
LoaderManager.java 394 // loader. If there is a previous loader on the inactive list,
586 LoaderInfo inactive = mInactiveLoaders.get(id); local
587 if (inactive != null) {
591 // yet destroyed the last inactive loader. So just do
593 if (DEBUG) Log.v(TAG, " Removing last inactive loader: " + info);
594 inactive.mDeliveredData = false;
595 inactive.destroy();
599 // We already have an inactive loader for this ID that we are
626 if (DEBUG) Log.v(TAG, " Making last loader inactive: " + info);
763 if (DEBUG) Log.v(TAG, "Destroying Inactive in " + this)
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/sed/
execute.c 212 int inactive;
213 inactive = lb->active - lb->text;
215 /* If the inactive part has got to more than two thirds of the buffer,
217 if (inactive > lb->alloc * 2)
222 inactive = 0;
234 lb->text = REALLOC(lb->text, inactive + lb->alloc, char);
235 lb->active = lb->text + inactive;
441 /* Remove the inactive portion in the destination buffer. */
210 int inactive; local
    [all...]

Completed in 7028 milliseconds