Home
last modified time | relevance | path

Searched refs:beginNotAttachedThreadRe (Results 1 – 2 of 2) sorted by relevance

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