(byte[] bytes, int offset)
| 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 { |