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

  /external/chromium_org/tools/deep_memory_profiler/subcommands/
pprof.py 88 component_match, bucket = policy.find_mmap(region, bucket_set)
90 if (component_name and component_name != component_match) or (
101 component_match = policy.find_malloc(bucket)
107 (component_name and component_name != component_match)):
129 component_match, bucket = policy.find_mmap(region, bucket_set)
131 if (component_name and component_name != component_match) or (
145 component_match = policy.find_malloc(bucket)
151 (component_name and component_name != component_match)):
policies.py 183 component_match = policy.find_malloc(bucket)
188 sizes[component_match] += int(words[COMMITTED])
190 assert not component_match.startswith('mmap-')
191 if component_match.startswith('tc-'):
243 component_match = policy.find_unhooked(value, pageframe, pfn_dict)
244 sizes[component_match] += pageframe.size
246 component_match = policy.find_unhooked(value)
247 sizes[component_match] += int(value[1]['committed'])
251 component_match, _ = policy.find_mmap(
253 sizes[component_match] += pageframe.siz
    [all...]
expand.py 83 component_match = policy.find_malloc(bucket)
88 if component_match == component_name:
101 component_match, bucket = policy.find_mmap(region, bucket_set)
102 if component_match == component_name:
map.py 59 component_match, _ = policy.find_mmap(value, bucket_set)
60 out.write('%s @ %d\n' % (component_match, value[1]['bucket_id']))
62 component_match = policy.find_unhooked(value)
66 component_match, size, value[1]['vma']['readable'],

Completed in 290 milliseconds