Home
last modified time | relevance | path

Searched defs:ByteBuffer (Results 1 – 2 of 2) sorted by relevance

/developtools/hapsigner/hapsigntool_cpp/common/src/
Dbyte_buffer.cpp46 ByteBuffer::ByteBuffer() : buffer(nullptr), position(0), limit(0), capacity(0) in ByteBuffer() function in OHOS::SignatureTools::ByteBuffer
50 ByteBuffer::ByteBuffer(int32_t bufferCapacity) : buffer(nullptr), position(0), limit(0), capacity(0) in ByteBuffer() function in OHOS::SignatureTools::ByteBuffer
55 ByteBuffer::ByteBuffer(const char* arr, int32_t length) : buffer(nullptr), position(0), limit(0), c… in ByteBuffer() function in OHOS::SignatureTools::ByteBuffer
61 ByteBuffer::ByteBuffer(const ByteBuffer& other) : buffer(nullptr), position(0), limit(0), capacity(… in ByteBuffer() function in OHOS::SignatureTools::ByteBuffer
/developtools/hapsigner/hapsigntool_cpp/utils/src/
Dhap_signer_block_utils.cpp82 bool HapSignerBlockUtils::FindEocdInHap(RandomAccessFile& hapFile, std::pair<ByteBuffer, int64_t>& … in FindEocdInHap()
101 std::pair<ByteBuffer, int64_t>& eocd) in FindEocdInHap()