HomeSort by relevance Sort by last modified time
    Searched refs:beginNotAttachedThreadRe (Results 1 - 2 of 2) sorted by null

  /development/tools/bugreport/src/com/android/bugreport/stacks/
ProcessSnapshotParser.java 61 final Matcher beginNotAttachedThreadRe = ThreadSnapshotParser.BEGIN_NOT_ATTACHED_THREAD_RE
85 } else if (Utils.matches(beginNotAttachedThreadRe, text)) {
107 || Utils.matches(beginNotAttachedThreadRe, text)) {
ThreadSnapshotParser.java 98 final Matcher beginNotAttachedThreadRe = BEGIN_NOT_ATTACHED_THREAD_RE.matcher("");
142 } else if (Utils.matches(beginNotAttachedThreadRe, line.text)) {
144 result.name = beginNotAttachedThreadRe.group(1);
145 result.daemon = beginNotAttachedThreadRe.group(2);
146 result.priority = Utils.getInt(beginNotAttachedThreadRe, 3, -1);
148 result.vmState = beginNotAttachedThreadRe.group(4);

Completed in 1020 milliseconds