aboutsummaryrefslogtreecommitdiff
path: root/include/perfetto/ext/trace_processor/importers/memory_tracker/memory_allocator_node_id.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/perfetto/ext/trace_processor/importers/memory_tracker/memory_allocator_node_id.h')
-rw-r--r--include/perfetto/ext/trace_processor/importers/memory_tracker/memory_allocator_node_id.h62
1 files changed, 0 insertions, 62 deletions
diff --git a/include/perfetto/ext/trace_processor/importers/memory_tracker/memory_allocator_node_id.h b/include/perfetto/ext/trace_processor/importers/memory_tracker/memory_allocator_node_id.h
deleted file mode 100644
index f4899d549..000000000
--- a/include/perfetto/ext/trace_processor/importers/memory_tracker/memory_allocator_node_id.h
+++ /dev/null
@@ -1,62 +0,0 @@
-/*
- * Copyright (C) 2020 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-#ifndef INCLUDE_PERFETTO_EXT_TRACE_PROCESSOR_IMPORTERS_MEMORY_TRACKER_MEMORY_ALLOCATOR_NODE_ID_H_
-#define INCLUDE_PERFETTO_EXT_TRACE_PROCESSOR_IMPORTERS_MEMORY_TRACKER_MEMORY_ALLOCATOR_NODE_ID_H_
-
-#include <stdint.h>
-
-#include <string>
-
-#include "perfetto/base/export.h"
-
-namespace perfetto {
-namespace trace_processor {
-
-class PERFETTO_EXPORT MemoryAllocatorNodeId {
- public:
- MemoryAllocatorNodeId();
- explicit MemoryAllocatorNodeId(uint64_t id);
-
- uint64_t ToUint64() const { return id_; }
-
- // Returns a (hex-encoded) string representation of the id.
- std::string ToString() const;
-
- bool empty() const { return id_ == 0u; }
-
- bool operator==(const MemoryAllocatorNodeId& other) const {
- return id_ == other.id_;
- }
-
- bool operator!=(const MemoryAllocatorNodeId& other) const {
- return !(*this == other);
- }
-
- bool operator<(const MemoryAllocatorNodeId& other) const {
- return id_ < other.id_;
- }
-
- private:
- uint64_t id_;
-
- // Deliberately copy-able.
-};
-
-} // namespace trace_processor
-} // namespace perfetto
-
-#endif // INCLUDE_PERFETTO_EXT_TRACE_PROCESSOR_IMPORTERS_MEMORY_TRACKER_MEMORY_ALLOCATOR_NODE_ID_H_