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

  /external/google-breakpad/src/common/windows/
omap_internal.h 29 // Declares internal implementation details for functionality in omap.h and
30 // omap.cc.
42 // The OMAP struct is defined by debughlp.h, which doesn't play nicely with
44 struct OMAP {
48 static_assert(sizeof(OMAP) == 8, "Wrong size for OMAP structure.");
49 typedef std::vector<OMAP> OmapTable;
51 // This contains the OMAP data extracted from an image.
53 // The table of OMAP entries describing the transformation from the
56 // The table of OMAP entries describing the transformation from th
    [all...]
omap_unittest.cc 29 // Unittests for OMAP related functions.
31 #include "common/windows/omap.h"
73 OMAP CreateOmap(DWORD rva, DWORD rvaTo) {
74 OMAP o = { rva, rvaTo };
omap.cc 30 // when that information has been extracted from a PDB containing OMAP
33 // OMAP information is a lightweight description of a mapping between two
52 // at offset 5. The OMAP streams describing this would look like:
66 // number. In this case the OMAP stream would look like:
96 // One way to handle this is to dump the OMAP information as part of the
98 // OMAP information and to use it when present prior to performing lookup. The
103 #include "common/windows/omap.h"
128 // It makes things more readable to have two different OMAP types. We cast
129 // normal OMAPs into these. They must be the same size as the OMAP structure
139 static_assert(sizeof(OmapOrigToTran) == sizeof(OMAP),
    [all...]
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/nodes/
Tag.java 37 public static final Tag OMAP = new Tag(PREFIX + "omap");
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/constructor/
SafeConstructor.java 58 this.yamlConstructors.put(Tag.OMAP, new ConstructYamlOmap());
377 Map<Object, Object> omap = new LinkedHashMap<Object, Object>(); local
400 omap.put(key, value);
402 return omap;

Completed in 92 milliseconds