aboutsummaryrefslogtreecommitdiff
path: root/src/profiling/Packet.cpp
diff options
context:
space:
mode:
authorNikhil Raj <nikhil.raj@arm.com>2019-08-15 15:49:45 +0100
committerNikhil Raj <nikhil.raj@arm.com>2019-08-15 15:49:45 +0100
commitbc62605b8f4592881dcc6eb74b5d7af089ae3fd0 (patch)
tree07094a9442131a443237fd6ae728ca711958b75c /src/profiling/Packet.cpp
parent4e3e818e1ea73544f3aec4e2ac2621a1c3380b54 (diff)
downloadarmnn-bc62605b8f4592881dcc6eb74b5d7af089ae3fd0.tar.gz
IVGCVSW-3415 Create the Packet Class
Change-Id: Ie59e82e7f87f5ba6496aa8579bc9d40360d90999 Signed-off-by: Nikhil Raj <nikhil.raj@arm.com>
Diffstat (limited to 'src/profiling/Packet.cpp')
-rw-r--r--src/profiling/Packet.cpp41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/profiling/Packet.cpp b/src/profiling/Packet.cpp
new file mode 100644
index 0000000000..97cb89b517
--- /dev/null
+++ b/src/profiling/Packet.cpp
@@ -0,0 +1,41 @@
+//
+// Copyright © 2017 Arm Ltd. All rights reserved.
+// SPDX-License-Identifier: MIT
+//
+
+#include "Packet.hpp"
+
+std::uint32_t Packet::GetHeader() const
+{
+ return m_Header;
+}
+
+std::uint32_t Packet::GetPacketFamily() const
+{
+ return m_PacketFamily;
+}
+
+std::uint32_t Packet::GetPacketId() const
+{
+ return m_PacketId;
+}
+
+std::uint32_t Packet::GetLength() const
+{
+ return m_Length;
+}
+
+const char* Packet::GetData()
+{
+ return m_Data;
+}
+
+std::uint32_t Packet::GetPacketClass() const
+{
+ return (m_PacketId >> 3);
+}
+
+std::uint32_t Packet::GetPacketType() const
+{
+ return (m_PacketId & 7);
+} \ No newline at end of file