Lines Matching refs:DLL_EXPORT

58     DLL_EXPORT ByteBuffer();
59 DLL_EXPORT explicit ByteBuffer(int32_t bufferCapacity);
60 DLL_EXPORT ByteBuffer(const char* arr, int32_t length);
61 DLL_EXPORT ByteBuffer(const ByteBuffer& other);
62 DLL_EXPORT ~ByteBuffer();
63 DLL_EXPORT ByteBuffer& operator=(const ByteBuffer& other);
64 DLL_EXPORT bool GetInt64(int64_t& value);
65 DLL_EXPORT bool GetInt64(int32_t index, int64_t& value);
66 DLL_EXPORT bool GetUInt32(uint32_t& value);
67 DLL_EXPORT bool GetUInt32(int32_t index, uint32_t& value);
68 DLL_EXPORT bool GetInt32(int32_t& value);
69 DLL_EXPORT bool GetInt32(int32_t index, int32_t& value);
70 DLL_EXPORT bool GetUInt16(uint16_t& value);
71 DLL_EXPORT bool GetUInt16(int32_t index, uint16_t& value);
72 DLL_EXPORT bool GetInt16(int16_t& value);
73 DLL_EXPORT bool GetInt16(int32_t index, int16_t& value);
74 DLL_EXPORT bool GetUInt8(uint8_t& value);
75 DLL_EXPORT bool GetUInt8(int32_t index, uint8_t& value);
76 DLL_EXPORT bool GetInt8(int8_t& value);
77 DLL_EXPORT bool GetInt8(int32_t index, int8_t& value);
78 DLL_EXPORT void PutUInt8(uint8_t value);
79 DLL_EXPORT void PutUInt16(uint16_t value);
80 DLL_EXPORT void PutUInt32(uint32_t value);
81 DLL_EXPORT void PutInt16(int16_t value);
82 DLL_EXPORT void PutInt16(int32_t offset, int16_t value);
83 DLL_EXPORT void PutInt32(int32_t value);
84 DLL_EXPORT void PutInt32(int32_t offset, int32_t value);
85 DLL_EXPORT void PutInt64(int64_t value);
86 DLL_EXPORT void PutByte(int32_t offset, char value);
87 DLL_EXPORT void PutData(const char data[], int32_t len);
88 DLL_EXPORT void PutData(int8_t data[], int32_t len);
89 DLL_EXPORT void PutData(int32_t offset, const char data[], int32_t len);
90 DLL_EXPORT void PutData(int32_t offset, const int8_t data[], int32_t len);
91 DLL_EXPORT void PutData(int32_t offset, const char data[], int32_t len, int32_t type);
92 DLL_EXPORT void PutByte(char value);
93 DLL_EXPORT void Put(const ByteBuffer& byteBuffer);
94 DLL_EXPORT void GetData(char data[], uint32_t len);
95 DLL_EXPORT void GetData(int32_t offset, int8_t data[], uint32_t len);
96 DLL_EXPORT void GetByte(int8_t data[], int32_t len);
97 DLL_EXPORT void ClearData();
98 DLL_EXPORT int32_t GetCapacity() const;
99 DLL_EXPORT int32_t GetPosition() const;
100 DLL_EXPORT int32_t GetLimit() const;
101 DLL_EXPORT const char* GetBufferPtr() const;
102 DLL_EXPORT void SetPosition(int32_t pos);
103 DLL_EXPORT void SetLimit(int32_t lim);
104 DLL_EXPORT void SetCapacity(int32_t cap);
105 DLL_EXPORT ByteBuffer& Slice();
106 DLL_EXPORT ByteBuffer& slice_for_codesigning();
107 DLL_EXPORT ByteBuffer* Duplicate();
108 DLL_EXPORT int32_t Remaining() const;
109 DLL_EXPORT bool HasRemaining() const;
110 DLL_EXPORT void Clear();
111 DLL_EXPORT ByteBuffer& Flip();
113 DLL_EXPORT bool IsEqual(const ByteBuffer& other);
114 DLL_EXPORT bool IsEqual(const std::string& other);
115 DLL_EXPORT void Rewind();
116 DLL_EXPORT ByteBuffer& RewindHap();
117 DLL_EXPORT std::string ToString();