Searched refs:terminator (Results 1 – 5 of 5) sorted by relevance
95 public static String readTerminatedProcFile(String path, byte terminator) { in readTerminatedProcFile() argument113 if (buffer[i] == terminator) { in readTerminatedProcFile()
186 String fileContents, byte terminator) throws IOException { in runReadTerminatedProcFile() argument189 String result = ProcStatsUtil.readTerminatedProcFile(tempFile.toString(), terminator); in runReadTerminatedProcFile()
222 char terminator = quoted ? '\"' : ' '; in unescapeArgs() local224 while (wordEnd < length && rawEvent.charAt(wordEnd) != terminator) { in unescapeArgs()
308 * Returns: Number of characters copied, excluding the null terminator.325 * Returns: Length of the sub-element name including the null terminator.
217 String terminator = ((i == params.length - 1) ? "" : ","); in formatFunctionCall() local223 formatted = indent + params[i] + terminator; in formatFunctionCall()225 formatted += (i == 0 ? "" : " ") + params[i] + terminator; in formatFunctionCall()