MCPcopy Index your code
hub / github.com/java-native-access/jna / setString

Method setString

src/com/sun/jna/Memory.java:728–732  ·  view source on GitHub ↗
(long offset, String value, String encoding)

Source from the content-addressed store, hash-verified

726 }
727
728 @Override
729 public void setString(long offset, String value, String encoding) {
730 boundsCheck(offset, Native.getBytes(value, encoding).length + 1L);
731 super.setString(offset, value, encoding);
732 }
733
734 @Override
735 public void setWideString(long offset, String value) {

Callers 9

setValueMethod · 0.95
WTypesTestClass · 0.45
setValueMethod · 0.45

Calls 2

boundsCheckMethod · 0.95
getBytesMethod · 0.95