MCPcopy Create free account
hub / github.com/facebook/SoLoader / findNextLine

Method findNextLine

java/com/facebook/soloader/NativeDeps.java:313–323  ·  view source on GitHub ↗
(byte[] bytes, int offset)

Source from the content-addressed store, hash-verified

311 }
312
313 private static int findNextLine(byte[] bytes, int offset) {
314 while (offset < bytes.length && bytes[offset] != '\n') {
315 offset++;
316 }
317
318 if (offset < bytes.length) {
319 offset++;
320 }
321
322 return offset;
323 }
324
325 private static int parseLibCount(byte[] data, int offset, int length) {
326 try {

Callers 1

processDepsBytesMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected