Home
last modified time | relevance | path

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

/platform_testing/libraries/compatibility-common-util/src/com/android/compatibility/common/util/
DCrashUtils.java172 BigInteger faultAddress = getBigInteger(crash, FAULT_ADDRESS); in matchSecurityCrashes() local
173 if (faultAddress != null in matchSecurityCrashes()
174 && faultAddress.compareTo(config.minCrashAddress) < 0) { in matchSecurityCrashes()
234 BigInteger faultAddress = null; in addAllCrashes() local
261 faultAddress = new BigInteger(faultAddrMatch, 16); in addAllCrashes()
318 crash.put(FAULT_ADDRESS, faultAddress == null ? null : faultAddress.toString(16)); in addAllCrashes()
/platform_testing/libraries/sts-common-util/host-side/src/com/android/sts/common/util/
DTombstoneParser.java415 String faultAddress = m.group("faultaddress"); in parseMainThread()
416 if (!faultAddress.equals("--------")) { in parseMainThread()
419 .setFaultAddress(parsePointer(faultAddress)); in parseMainThread()
DTombstoneUtils.java285 Long faultAddress = signalInfo.getFaultAddress();
286 if (Long.compareUnsigned(faultAddress, config.maxLowFaultAddress) < 0) {