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

Method autoRead

src/com/sun/jna/Structure.java:2327–2339  ·  view source on GitHub ↗
(Structure[] ss)

Source from the content-addressed store, hash-verified

2325 }
2326
2327 public static void autoRead(Structure[] ss) {
2328 structureArrayCheck(ss);
2329 if (ss[0].array == ss) {
2330 ss[0].autoRead();
2331 }
2332 else {
2333 for (int si=0;si < ss.length;si++) {
2334 if (ss[si] != null) {
2335 ss[si].autoRead();
2336 }
2337 }
2338 }
2339 }
2340
2341 public void autoRead() {
2342 if (getAutoRead()) {

Callers 3

conditionalAutoReadMethod · 0.95
invokeMethod · 0.95

Calls 3

structureArrayCheckMethod · 0.95
getAutoReadMethod · 0.95
readMethod · 0.95

Tested by

no test coverage detected