Home
last modified time | relevance | path

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

/platform_testing/libraries/compatibility-common-util/src/com/android/compatibility/common/util/
DCrashUtils.java241 Matcher pidtidNameMatcher = sPidtidNamePattern.matcher(crashStr); in addAllCrashes() local
242 if (pidtidNameMatcher.find()) { in addAllCrashes()
244 pid = Integer.parseInt(pidtidNameMatcher.group(1)); in addAllCrashes()
248 tid = Integer.parseInt(pidtidNameMatcher.group(2)); in addAllCrashes()
251 name = pidtidNameMatcher.group(3).trim(); in addAllCrashes()
252 process = pidtidNameMatcher.group(4).trim(); in addAllCrashes()