Home | History | Annotate | Download | only in pem

Lines Matching refs:line

25         String line = readLine();
27 while (line != null && !line.startsWith(BEGIN))
29 line = readLine();
32 if (line != null)
34 line = line.substring(BEGIN.length());
35 int index = line.indexOf('-');
36 String type = line.substring(0, index);
50 String line;
55 while ((line = readLine()) != null)
57 if (line.indexOf(":") >= 0)
59 int index = line.indexOf(':');
60 String hdr = line.substring(0, index);
61 String value = line.substring(index + 1).trim();
68 if (line.indexOf(endMarker) != -1)
73 buf.append(line.trim());
76 if (line == null)