Home
last modified time | relevance | path

Searched refs:createByteBuffer (Results 1 – 6 of 6) sorted by relevance

/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/zip/
DByteBufferZipDataInput.java49 output.write(createByteBuffer(offset, (int) size)); in copyTo()
54 buffer.put(createByteBuffer(offset, size)); in copyTo()
58 public ByteBuffer createByteBuffer(long offset, int size) { in createByteBuffer() method in ByteBufferZipDataInput
78 ByteBuffer byteBuffer = createByteBuffer(offset, (int) size); in slice()
DZipDataInput.java62 ByteBuffer createByteBuffer(long offset, int size) throws IOException; in createByteBuffer() method
DZipUtils.java113 ByteBuffer byteBuffer = zip.createByteBuffer(locatorPos, ZIP_DATA_SIZE); in checkZip64EoCDLocatorIsPresent()
238 ByteBuffer searchEocdBuffer = zip.createByteBuffer(bufferOffsetInFile, searchBufferSize); in findEocdInHap()
DRandomAccessFileZipDataInput.java121 public ByteBuffer createByteBuffer(long offset, int size) throws IOException { in createByteBuffer() method in RandomAccessFileZipDataInput
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/utils/
DHapUtils.java507 …ByteBuffer hapSigningBlockHeader = hap.createByteBuffer(hapSigningBlockHeaderOffset, HAP_SIG_BLOCK… in findHapSigningBlock()
516 …ByteBuffer hapSigningBlockByteBuffer = hap.createByteBuffer(hapSigningBlockOffset, (int) hapSigBlo… in findHapSigningBlock()
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/hap/provider/
DSignProvider.java343 … outputHapIn.createByteBuffer(centralDirectoryOffset, zipInfo.getCentralDirectorySize()); in sign()