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

1 2 3 4 5 6

  /bionic/libc/malloc_debug/
MapData.h 40 struct MapEntry {
41 MapEntry(uintptr_t start, uintptr_t end, uintptr_t offset, const char* name, size_t name_len)
44 MapEntry(uintptr_t pc) : start(pc), end(pc) {}
57 bool operator()(const MapEntry* a, const MapEntry* b) const {
67 const MapEntry* find(uintptr_t pc, uintptr_t* rel_pc = nullptr);
73 std::set<MapEntry*, compare_entries> entries_;
MapData.cpp 43 static MapEntry* parse_line(char* line) {
60 MapEntry* entry = new MapEntry(start, end, offset, name, name_len);
70 static inline bool get_val(MapEntry* entry, uintptr_t addr, T* store) {
82 static void read_loadbase(MapEntry* entry) {
121 MapEntry* entry = parse_line(buffer.data());
146 const MapEntry* MapData::find(uintptr_t pc, uintptr_t* rel_pc) {
147 MapEntry pc_entry(pc);
160 MapEntry *entry = *it;
backtrace.cpp 54 static const MapEntry* g_current_code_map = nullptr;
150 const MapEntry* entry = g_map_data.find(frames[frame_num], &rel_pc);
  /external/protobuf/src/google/protobuf/
map_entry.h 57 // Register all MapEntry default instances so we can delete them in
62 // This is the common base class for MapEntry. It is used by MapFieldBase in
81 // MapEntry is the returned google::protobuf::Message when calling AddMessage of
89 // of MapEntry accessors, it's named MapEntry accessor type.
94 // MapEntry accessor type: type used in MapEntry getters/mutators to access the
97 // cpp type | proto type | in-memory type | MapEntry accessor type
112 class MapEntry : public MapEntryBase {
124 // Abbreviation for MapEntry
    [all...]
map_entry_lite.h 45 class MapEntry;
256 // treated differently because its type in MapEntry is int and its type in
285 // after serialization should be the same as that of a MapEntry message
287 // store key and value as MapEntry message, which disables us to use existing
289 // message, we need to construct a MapEntry from key-value pair. But it
290 // involves copy of key and value to construct a MapEntry. In order to avoid
291 // this copy in constructing a MapEntry, we need the following class which
389 friend class internal::MapEntry;
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
map_entry.h 57 // Register all MapEntry default instances so we can delete them in
62 // This is the common base class for MapEntry. It is used by MapFieldBase in
81 // MapEntry is the returned google::protobuf::Message when calling AddMessage of
89 // of MapEntry accessors, it's named MapEntry accessor type.
94 // MapEntry accessor type: type used in MapEntry getters/mutators to access the
97 // cpp type | proto type | in-memory type | MapEntry accessor type
112 class MapEntry : public MapEntryBase {
124 // Abbreviation for MapEntry
    [all...]
map_entry_lite.h 45 class MapEntry;
256 // treated differently because its type in MapEntry is int and its type in
285 // after serialization should be the same as that of a MapEntry message
287 // store key and value as MapEntry message, which disables us to use existing
289 // message, we need to construct a MapEntry from key-value pair. But it
290 // involves copy of key and value to construct a MapEntry. In order to avoid
291 // this copy in constructing a MapEntry, we need the following class which
389 friend class internal::MapEntry;
  /system/extras/simpleperf/
thread_tree.h 37 struct MapEntry {
45 MapEntry(uint64_t start_addr, uint64_t len, uint64_t pgoff, uint64_t time,
53 MapEntry() {}
59 bool operator()(const MapEntry* map1, const MapEntry* map2) const;
62 using MapSet = std::set<MapEntry*, MapComparator>;
72 // (in MapEntry) of the monitored threads. It also has interface to access
82 unknown_map_ = MapEntry(0, std::numeric_limits<unsigned long long>::max(),
96 const MapEntry* FindMap(const ThreadEntry* thread, uint64_t ip,
99 const MapEntry* FindMap(const ThreadEntry* thread, uint64_t ip)
    [all...]
thread_tree.cpp 31 bool MapComparator::operator()(const MapEntry* map1,
32 const MapEntry* map2) const {
109 MapEntry* map =
110 AllocateMap(MapEntry(start_addr, len, pgoff, time, dso, true));
134 MapEntry* map =
135 AllocateMap(MapEntry(start_addr, len, pgoff, time, dso, false));
150 MapEntry* ThreadTree::AllocateMap(const MapEntry& value) {
151 MapEntry* map = new MapEntry(value)
    [all...]
report_lib_interface.cpp 140 Mapping* AddMapping(const MapEntry& map);
254 const MapEntry* map =
299 const MapEntry* map =
322 Mapping* ReportLib::AddMapping(const MapEntry& map) {
cmd_report.cpp 52 const MapEntry* map;
69 const MapEntry* map;
78 const MapEntry* map, const Symbol* symbol, uint64_t vaddr_in_file)
142 const MapEntry* map =
157 const MapEntry* from_map = thread_tree_->FindMap(thread, item.from);
161 const MapEntry* to_map = thread_tree_->FindMap(thread, item.to);
180 const MapEntry* map = thread_tree_->FindMap(thread, ip, in_kernel);
sample_tree_test.cpp 66 const MapEntry* map = thread_tree_->FindMap(thread, ip, in_kernel);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
BuilderMapEntryCollection.java 47 private class MapEntry implements Map.Entry<Key, Integer> {
72 MapEntry entry = new MapEntry();
  /libcore/ojluni/src/main/java/sun/security/x509/
NetscapeCertTypeExtension.java 89 private static class MapEntry {
93 MapEntry(String name, int position) {
99 private static MapEntry[] mMapData = {
100 new MapEntry(SSL_CLIENT, 0),
101 new MapEntry(SSL_SERVER, 1),
102 new MapEntry(S_MIME, 2),
103 new MapEntry(OBJECT_SIGNING, 3),
105 new MapEntry(SSL_CA, 5),
106 new MapEntry(S_MIME_CA, 6),
107 new MapEntry(OBJECT_SIGNING_CA, 7)
    [all...]
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
MapEntry.java 43 * Implements MapEntry messages.
46 * each map entry is accessed as a message. This MapEntry class is used to
51 public final class MapEntry<K, V> extends AbstractMessage {
54 public final MapEntry<K, V> defaultInstance;
55 public final AbstractParser<MapEntry<K, V>> parser;
58 final Descriptor descriptor, final MapEntry<K, V> defaultInstance) {
62 this.parser = new AbstractParser<MapEntry<K, V>>() {
66 public MapEntry<K, V> parsePartialFrom(
71 return new MapEntry<K, V>(thisMetadata, data);
81 /** Create a default MapEntry instance. *
    [all...]
MapField.java 91 private final MapEntry<K, V> defaultEntry;
92 public ImmutableMessageConverter(MapEntry<K, V> defaultEntry) {
103 MapEntry<K, V> entry = (MapEntry<K, V>) message;
128 MapEntry<K, V> defaultEntry,
137 MapEntry<K, V> defaultEntry) {
144 public static <K, V> MapField<K, V> newMapField(MapEntry<K, V> defaultEntry) {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
RefSortedMap.java 41 private static final class MapEntry<K, V> implements Map.Entry<K, V> {
46 MapEntry(K key, V value) {
85 transient ArrayList<MapEntry<K, V>> entries = new ArrayList<MapEntry<K, V>>();
335 entries.add(-idx - 1, new MapEntry<K, V>(arg0, arg1));
355 transient private Comparator<MapEntry<K, V>> cmp = createCmp();
357 Comparator<MapEntry<K, V>> createCmp() {
358 return new Comparator<MapEntry<K, V>>() {
360 public int compare(MapEntry<K, V> arg0, MapEntry<K, V> arg1)
    [all...]
  /frameworks/rs/
rsMap.h 31 typedef Pair<KeyType, ValueType> MapEntry;
34 MapEntry entry;
113 const MapEntry& operator*() const {
  /external/llvm/lib/DebugInfo/PDB/Raw/
MappedBlockStream.cpp 260 for (const auto &MapEntry : CacheMap) {
263 if (Offset + BytesWritten < MapEntry.first)
265 for (const auto &Alloc : MapEntry.second) {
268 if (MapEntry.first + Alloc.size() < Offset)
274 std::make_pair(MapEntry.first, MapEntry.first + Alloc.size());
  /external/swiftshader/third_party/LLVM/lib/MC/
MCAsmStreamer.cpp     [all...]
  /tools/loganalysis/src/com/android/loganalysis/util/config/
OptionSetter.java 349 MapEntry pair = null;
    [all...]
  /external/guava/guava/src/com/google/common/collect/
HashBiMap.java 437 return new MapEntry(entry);
440 class MapEntry extends AbstractMapEntry<K, V> {
443 MapEntry(BiEntry<K, V> entry) {
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
ClassPool.java 521 class MapEntry implements Map.Entry<PoolClassDef, Integer> {
524 public MapEntry(@Nonnull PoolClassDef classDef) {
553 return new MapEntry(iter.next());
  /external/llvm/lib/MC/
MCAsmStreamer.cpp     [all...]
  /external/llvm/lib/IR/
Metadata.cpp 420 auto &MapEntry = I.first->getValue();
422 return &MapEntry;
423 MapEntry.Entry = &*I.first;
424 return &MapEntry;
    [all...]

Completed in 1155 milliseconds

1 2 3 4 5 6