/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; 148 const MapEntry* entry = g_map_data.find(frames[frame_num], &rel_pc);
|
/system/extras/simpleperf/ |
thread_tree.h | 30 struct MapEntry { 37 MapEntry(uint64_t start_addr, uint64_t len, uint64_t pgoff, uint64_t time, Dso* dso) 40 MapEntry() { 49 bool operator()(const MapEntry* map1, const MapEntry* map2) const; 56 std::set<MapEntry*, MapComparator> maps; 64 MapEntry(0, std::numeric_limits<unsigned long long>::max(), 0, 0, unknown_dso_.get()); 74 const MapEntry* FindMap(const ThreadEntry* thread, uint64_t ip, bool in_kernel); 75 const Symbol* FindSymbol(const MapEntry* map, uint64_t ip); 76 const MapEntry* UnknownMap() const [all...] |
thread_tree.cpp | 29 bool MapComparator::operator()(const MapEntry* map1, const MapEntry* map2) const { 51 std::set<MapEntry*, MapComparator>(), // maps 90 MapEntry* map = AllocateMap(MapEntry(start_addr, len, pgoff, time, dso)); 115 MapEntry* map = AllocateMap(MapEntry(start_addr, len, pgoff, time, dso)); 130 MapEntry* ThreadTree::AllocateMap(const MapEntry& value) { 131 MapEntry* map = new MapEntry(value) [all...] |
sample_tree.h | 33 const MapEntry* map; 49 const MapEntry* map; 55 uint64_t sample_count, const ThreadEntry* thread, const MapEntry* map,
|
sample_tree.cpp | 36 const MapEntry* map = thread_tree_->FindMap(thread, ip, in_kernel); 50 const MapEntry* from_map = thread_tree_->FindMap(thread, from_ip, false); 55 const MapEntry* to_map = thread_tree_->FindMap(thread, to_ip, false); 77 const MapEntry* map = thread_tree_->FindMap(thread, ip, in_kernel);
|
cmd_record.cpp | 837 const MapEntry* map = thread_tree_.FindMap(thread, r.ip_data.ip, in_kernel);
|
/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;
|
map_field.h | 140 // MapEntry can only be created from MapField. To create MapEntry, MapField 141 // needs to know its descriptor, because MapEntry is not generated class which 144 // initialize MapEntry's descriptor. 227 typedef MapEntry<Key, T, kKeyFieldType, kValueFieldType, default_enum_value> 276 // MapField needs MapEntry's default instance to create new MapEntry.
|
/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...] |
/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/MC/ |
MCAsmStreamer.cpp | [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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.core.databinding.property_1.3.0.I20100601-0800.jar | |
/libcore/luni/src/main/java/java/util/concurrent/ |
ConcurrentHashMap.java | 591 * MapEntry below), but can be used for read-only traversals used [all...] |
/prebuilts/tools/common/m2/repository/io/netty/netty-common/4.1.0.CR3/ |
netty-common-4.1.0.CR3.jar | |
/prebuilts/tools/common/m2/repository/com/google/protobuf/protobuf-java/3.0.0-beta-2/ |
protobuf-java-3.0.0-beta-2.jar | |
/prebuilts/tools/common/m2/repository/commons-beanutils/commons-beanutils/1.8.0/ |
commons-beanutils-1.8.0.jar | |
/external/guice/extensions/persist/lib/ |
commons-collections.jar | |
/prebuilts/tools/common/m2/repository/commons-collections/commons-collections/3.2.1/ |
commons-collections-3.2.1.jar | |