/external/google-breakpad/src/common/windows/ |
D | 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 { struct 48 static_assert(sizeof(OMAP) == 8, "Wrong size for OMAP structure."); argument 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 the 112 // OMAP data.
|
D | 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 …]
|
D | omap.h | 29 // Provides an API for mapping symbols through OMAP information, if a PDB file 42 // If the given session contains OMAP data this extracts it, populating 44 // OMAP data is present in the PDB if |omap_data| is not empty. This returns 49 // Given raw OMAP data builds an ImageMap. This can be used to query individual 51 // |omap_data|| is the OMAP data extracted from the PDB. 58 // |omap_data| is the OMAP data extracted from the PDB, which must not be
|
D | common_windows.gyp | 80 'omap.cc', 81 'omap.h',
|
D | omap_unittest.cc | 29 // Unittests for OMAP related functions. 31 #include "common/windows/omap.h" 73 OMAP CreateOmap(DWORD rva, DWORD rvaTo) { in CreateOmap() 74 OMAP o = { rva, rvaTo }; in CreateOmap()
|
/external/libdrm/ |
D | configure.ac | 104 AC_ARG_ENABLE(omap-experimental-api, 105 AS_HELP_STRING([--enable-omap-experimental-api], 106 [Enable support for OMAP's experimental API (default: disabled)]), 107 [OMAP=$enableval], [OMAP=no]) 245 dnl $4 - Configure switch. Eg. intel, omap-experimental-api, ... 267 LIBDRM_ATOMICS_NOT_FOUND_MSG($OMAP, omap, OMAP, omap-experimental-api) 268 OMAP=no 337 AM_CONDITIONAL(HAVE_OMAP, [test "x$OMAP" = xyes]) 338 if test "x$OMAP" = xyes; then 339 AC_DEFINE(HAVE_OMAP, 1, [Have OMAP support]) [all …]
|
D | Makefile.am | 33 --enable-omap-experimental-api \ 67 OMAP_SUBDIR = omap
|
/external/google-breakpad/src/tools/windows/dump_syms/ |
D | dump_syms_unittest.cc | 47 // A PDB file with no OMAP data. 49 // A PDB file with OMAP data for an image that has been function-level 52 // A PDB file with OMAP data for an image that had new content injected, all 55 // A PDB file with OMAP data for an image that had new content injected, but 58 // A PDB file with OMAP data for an image that has been basic block reordered. 60 // A 64bit PDB file with no OMAP data.
|
D | dump_syms.vcproj | 191 RelativePath="..\..\..\common\windows\omap.h" 227 RelativePath="..\..\..\common\windows\omap.cc"
|
/external/snakeyaml/src/test/resources/pyyaml/ |
D | construct-omap.data | 2 Bestiary: !!omap 8 Numbers: !!omap [ one: 1, two: 2, three : 3 ]
|
D | invalid-omap-1.loader-error | 1 --- !!omap
|
D | invalid-omap-2.loader-error | 1 --- !!omap
|
D | invalid-omap-3.loader-error | 1 --- !!omap
|
D | spec-02-26.data | 4 --- !!omap
|
/external/libdrm/omap/ |
D | libdrm_omap.pc.in | 7 Description: Userspace interface to omap kernel DRM services 10 Cflags: -I${includedir} -I${includedir}/libdrm -I${includedir}/omap
|
D | Makefile.am | 14 libdrm_omapcommonincludedir = ${includedir}/omap 23 TESTS = omap-symbol-check
|
/external/snakeyaml/src/test/resources/specification/types/ |
D | omap.yaml | 2 Bestiary: !!omap 8 Numbers: !!omap [ one: 1, two: 2, three : 3 ]
|
/external/llvm/test/YAMLParser/ |
D | construct-omap.test | 4 Bestiary: !!omap 10 Numbers: !!omap [ one: 1, two: 2, three : 3 ]
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/types/ |
D | OmapTagTest.java | 23 * @see <a href="http://yaml.org/type/omap.html"></a> 29 YamlDocument document = new YamlDocument("types/omap.yaml"); in testOmap()
|
/external/chromium-trace/catapult/devil/devil/android/perf/ |
D | thermal_throttle.py | 9 """Class to detect and track thermal throttling on an OMAP 4.""" 10 OMAP_TEMP_FILE = ('/sys/devices/platform/omap/omap_temp_sensor.0/'
|
/external/kernel-headers/original/uapi/linux/ |
D | serial_reg.h | 43 #define UART_IIR_RX_TIMEOUT 0x0c /* OMAP RX Timeout interrupt */ 44 #define UART_IIR_XOFF 0x10 /* OMAP XOFF/Special Character */ 45 #define UART_IIR_CTS_RTS_DSR 0x20 /* OMAP CTS/RTS/DSR Change */ 332 * in TI OMAP processors.
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/nodes/ |
D | Tag.java | 37 public static final Tag OMAP = new Tag(PREFIX + "omap"); field in Tag
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/constructor/ |
D | SafeConstructor.java | 58 this.yamlConstructors.put(Tag.OMAP, new ConstructYamlOmap()); in SafeConstructor() 377 Map<Object, Object> omap = new LinkedHashMap<Object, Object>(); in construct() local 400 omap.put(key, value); in construct() 402 return omap; in construct()
|
/external/google-breakpad/src/common/ |
D | common.gyp | 178 'windows/omap.cc', 179 'windows/omap.h',
|
/external/snakeyaml/src/test/resources/specification/ |
D | example2_26.yaml | 4 --- !!omap
|