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

Method setString

src/com/sun/jna/Pointer.java:1126–1128  ·  view source on GitHub ↗

Copy string value to the location being pointed to as a wide string ( wchar_t ). @param offset byte offset from pointer at which characters in value must be set @param value WString value to set

(long offset, WString value)

Source from the content-addressed store, hash-verified

1124 * @param value <code>WString</code> value to set
1125 */
1126 public void setString(long offset, WString value) {
1127 setWideString(offset, value == null ? null : value.toString());
1128 }
1129
1130 /**
1131 * Copy bytes out of string <code>value</code> to the location being

Callers 2

testMmapToShmMethod · 0.95
testOpenFileMappingMethod · 0.95

Calls 6

setWideStringMethod · 0.95
getBytesMethod · 0.95
writeMethod · 0.95
setByteMethod · 0.95
toStringMethod · 0.45

Tested by 2

testMmapToShmMethod · 0.76
testOpenFileMappingMethod · 0.76