HomeSort by relevance Sort by last modified time
    Searched refs:mappings (Results 1 - 25 of 323) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/google-breakpad/src/client/linux/microdump_writer/
microdump_writer.h 48 // mappings: a list of additional mappings provided by the application.
54 const MappingList& mappings);
microdump_writer_unittest.cc 90 MappingList mappings; local
94 mappings.push_back(mapping);
101 ASSERT_TRUE(WriteMicrodump(child, &context, sizeof(context), mappings));
  /system/core/libmemunreachable/
ProcessMappings.h 34 bool ProcessMappings(pid_t pid, allocator::vector<Mapping>& mappings);
ProcessMappings.cpp 30 bool ProcessMappings(pid_t pid, allocator::vector<Mapping>& mappings) {
62 mappings.emplace_back(mapping);
MemUnreachable.cpp 53 const allocator::vector<Mapping>& mappings);
59 bool ClassifyMappings(const allocator::vector<Mapping>& mappings,
80 const allocator::vector<Mapping>& mappings) {
82 allocator::vector<Mapping> heap_mappings{mappings};
83 allocator::vector<Mapping> anon_mappings{mappings};
84 allocator::vector<Mapping> globals_mappings{mappings};
85 allocator::vector<Mapping> stack_mappings{mappings};
86 if (!ClassifyMappings(mappings, heap_mappings, anon_mappings,
209 bool MemUnreachable::ClassifyMappings(const allocator::vector<Mapping>& mappings,
222 for (auto it = mappings.begin(); it != mappings.end(); it++)
    [all...]
  /tools/loganalysis/src/com/android/loganalysis/parser/
MemoryHealthParser.java 39 Map<String, String> mappings = new HashMap<String, String>(); external variable declarations
40 mappings.put("Average Dalvik Heap", MemoryHealthItem.DALVIK_AVG);
41 mappings.put("Average Native Heap", MemoryHealthItem.NATIVE_AVG);
42 mappings.put("Average PSS", MemoryHealthItem.PSS_AVG);
43 mappings.put("Peak Dalvik Heap", MemoryHealthItem.DALVIK_PEAK);
44 mappings.put("Peak Native Heap", MemoryHealthItem.NATIVE_PEAK);
45 mappings.put("Peak PSS", MemoryHealthItem.PSS_PEAK);
47 mappings.put("Average Summary Java Heap", MemoryHealthItem.SUMMARY_JAVA_HEAP_AVG);
48 mappings.put("Average Summary Native Heap", MemoryHealthItem.SUMMARY_NATIVE_HEAP_AVG);
49 mappings.put("Average Summary Code", MemoryHealthItem.SUMMARY_CODE_AVG)
    [all...]
  /external/curl/src/
tool_xattr.c 43 } mappings[] = { variable in typeref:struct:xattr_mapping
44 /* mappings proposed by
61 while(err == 0 && mappings[i].attr != NULL) {
63 CURLcode result = curl_easy_getinfo(curl, mappings[i].info, &value);
66 err = fsetxattr(fd, mappings[i].attr, value, strlen(value), 0, 0);
68 err = fsetxattr(fd, mappings[i].attr, value, strlen(value), 0);
70 err = extattr_set_fd(fd, EXTATTR_NAMESPACE_USER, mappings[i].attr, value,
  /external/compiler-rt/test/msan/
mmap.cc 30 } mappings[] = {
41 const size_t mappingsSize = sizeof (mappings) / sizeof (mappings[0]);
44 if (addr >= mappings[i].start && addr < mappings[i].end)
69 printf("successful mappings: %d\n", success_count);
  /external/google-breakpad/src/client/linux/minidump_writer/
minidump_writer.h 94 // These overloads also allow passing a list of known mappings and
98 const MappingList& mappings,
102 const MappingList& mappings,
109 const MappingList& mappings,
114 const MappingList& mappings,
118 const MappingList& mappings,
linux_ptrace_dumper_unittest.cc 227 // Now check that LinuxPtraceDumper interpreted the mappings properly.
231 for (unsigned i = 0; i < dumper.mappings().size(); ++i) {
232 const MappingInfo& mapping = *dumper.mappings()[i];
280 const wasteful_vector<MappingInfo*> mappings = dumper.mappings(); local
282 for (unsigned i = 0; i < mappings.size(); ++i) {
283 mapping = mappings[i];
300 const wasteful_vector<MappingInfo*> mappings = dumper.mappings(); local
302 for (unsigned i = 0; i < mappings.size(); ++i)
334 const wasteful_vector<MappingInfo*> mappings = dumper.mappings(); local
    [all...]
  /external/google-breakpad/src/tools/linux/core2md/
core2md.cc 49 MappingList mappings; local
52 return google_breakpad::WriteMinidump(filename, mappings, memory_list,
  /external/archive-patcher/shared/src/test/java/com/google/archivepatcher/shared/
DefaultDeflateCompatibilityWindowTest.java 78 private void ensureHasAllKeys(Map<JreDeflateParameters, String> mappings) {
81 Assert.assertTrue(mappings.containsKey(JreDeflateParameters.of(level, strategy, true)));
82 Assert.assertTrue(mappings.containsKey(JreDeflateParameters.of(level, strategy, false)));
86 Assert.assertTrue(mappings.containsKey(JreDeflateParameters.of(1, 2, true)));
87 Assert.assertTrue(mappings.containsKey(JreDeflateParameters.of(1, 2, false)));
88 Assert.assertEquals(mappings.size(), 38);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/unicode/
Makefile 16 all: distclean mappings codecs
18 codecs: misc windows iso apple ebcdic custom-mappings cjk
20 ### Mappings
22 mappings:
23 ncftpget -R ftp.unicode.org . Public/MAPPINGS
31 $(PYTHON) gencodec.py MAPPINGS/VENDORS/MISC/ build/
38 custom-mappings: build/
39 $(PYTHON) gencodec.py python-mappings/ build/
42 $(PYTHON) gencodec.py MAPPINGS/VENDORS/MICSFT/WINDOWS/ build/
47 $(PYTHON) gencodec.py MAPPINGS/ISO8859/ build/ iso
    [all...]
  /external/guava/guava/src/com/google/common/reflect/
TypeResolver.java 41 * An object of this class encapsulates type mappings from type variables. Mappings are established
44 * <p>Note that usually type mappings are already implied by the static type hierarchy (for example,
88 * corresponding mappings exist in the current {@code TypeResolver} instance.
91 Map<TypeVariableKey, Type> mappings = Maps.newHashMap(); local
92 populateTypeMappings(mappings, checkNotNull(formal), checkNotNull(actual));
93 return where(mappings);
97 TypeResolver where(Map<TypeVariableKey, ? extends Type> mappings) {
98 return new TypeResolver(typeTable.where(mappings));
102 final Map<TypeVariableKey, Type> mappings, Type from, final Type to)
312 private final Map<TypeVariableKey, Type> mappings = Maps.newHashMap(); field in class:TypeResolver.TypeMappingIntrospector
    [all...]
  /external/toolchain-utils/automation/clients/helper/
perforce.py 16 """Takes {'prefix1': ['path1',...], ...} and returns a list of mappings."""
18 mappings = []
22 mappings.append(cls(os.path.join(prefix, path)))
24 return mappings
28 """Takes a list of tuples and returns a list of mappings.
36 mappings = []
38 mappings.append(cls(remote_path, local_path))
40 return mappings
84 def __init__(self, depot, mappings=None, client=None):
90 self._mappings = set(mappings or []
    [all...]
  /external/parameter-framework/upstream/parameter/
TypeElement.cpp 148 std::list<std::string> mappings; local
152 // mappings displayed first)
156 mappings.push_back(mapping);
164 mappings.push_back(mapping);
167 return utility::asString(mappings, ", ");
  /external/icu/icu4c/source/tools/makeconv/
gencnvex.c 64 /* for stage3 compaction of <subchar1> |2 mappings */
290 * Remove fromUnicode fallbacks and SUB mappings which are irrelevant for
292 * This includes mappings with MBCS_FROM_U_EXT_FLAG which were suitable
299 UCMapping *mappings; local
304 mappings=table->mappings;
308 /* leave the map alone for the initial mappings with desired flags */
310 flag=mappings[map[i]].f;
318 flag=mappings[map[i]].f;
387 * - The mappings are sorted lexically. (Access is through the reverseMap.
414 UCMapping *mappings, *m; local
587 UCMapping *mappings, *m; local
713 UCMapping *mappings, *m; local
930 UCMapping *mappings, *m; local
    [all...]
  /external/toolchain-utils/
repo_to_repo.py 26 def GetCanonicalMappings(mappings):
28 for mapping in mappings:
54 self.mappings = None
105 for s in [self.repo_type, self.address, self.mappings])
117 self.mappings = None
134 def __init__(self, address, mappings, revision=None):
138 self.mappings = mappings
144 mappings = self.mappings
    [all...]
  /system/netd/tests/dns_responder/
dns_responder_client.h 27 std::vector<Mapping>* mappings);
35 static void SetupDNSServers(unsigned num_servers, const std::vector<Mapping>& mappings,
dns_responder_client.cpp 77 std::vector<Mapping>* mappings) {
78 mappings->resize(num_hosts * domains.size());
79 auto mappings_it = mappings->begin();
128 void DnsResponderClient::SetupDNSServers(unsigned num_servers, const std::vector<Mapping>& mappings,
140 for (const auto& mapping : mappings) {
  /system/extras/librank/
librank.c 44 struct mapping_info **mappings; member in struct:library_info
114 library->mappings = malloc(INIT_MAPPINGS * sizeof(struct mapping_info *));
115 if (!library->mappings) {
116 fprintf(stderr, "Couldn't allocate space for library mappings array: %s\n", strerror(errno));
132 if (library->mappings[i]->proc == proc)
133 return library->mappings[i];
137 library->mappings = realloc(library->mappings,
139 if (!library->mappings) {
140 fprintf(stderr, "Couldn't resize mappings array: %s\n", strerror(errno))
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
SerializationHandler.java 106 * @param mappings NamespaceMappings
108 public void setNamespaceMappings(NamespaceMappings mappings);
  /system/netd/tests/benchmarks/
dns_benchmark.cpp 86 std::vector<DnsResponderClient::Mapping> mappings; member in class:DnsFixture
96 dns.SetupMappings(num_hosts, domains, &mappings);
98 dns.SetupDNSServers(MAXNS, mappings, &mDns, &servers);
113 return mappings;
  /external/autotest/client/site_tests/security_ASLR/
security_ASLR.py 9 information about them again. If ASLR is enabled, memory mappings should
201 mappings = list()
209 mappings.append(self.map(pid))
211 logging.debug('Complete mappings dump for process %s:\n%s',
212 name, pprint.pformat(mappings, 4))
214 initial_map = mappings[0]
215 for i, mapping in enumerate(mappings[1:]):
240 mappings[0][case].get_start()))
349 'memory mappings')
  /external/autotest/server/
base_utils.py 210 mappings = {}
214 mappings['ident'] = [mach]
218 mappings['ident'].append(machine)
220 return (mappings, failures)
228 (mappings, failures) = mapping_func(machines)
230 # now run through the mappings and create n-tuples.
232 for key in mappings:
233 key_machines = mappings[key]

Completed in 454 milliseconds

1 2 3 4 5 6 7 8 91011>>