Merge "BatteryStats: Read /proc/wakelocks first before trying /d/wakeup_sources" into mnc-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
23e19066de
@@ -67,13 +67,13 @@ public class KernelWakelockReader {
|
|||||||
|
|
||||||
try {
|
try {
|
||||||
FileInputStream is;
|
FileInputStream is;
|
||||||
try {
|
|
||||||
is = new FileInputStream(sWakeupSourceFile);
|
|
||||||
wakeup_sources = true;
|
|
||||||
} catch (java.io.FileNotFoundException e) {
|
|
||||||
try {
|
try {
|
||||||
is = new FileInputStream(sWakelockFile);
|
is = new FileInputStream(sWakelockFile);
|
||||||
wakeup_sources = false;
|
wakeup_sources = false;
|
||||||
|
} catch (java.io.FileNotFoundException e) {
|
||||||
|
try {
|
||||||
|
is = new FileInputStream(sWakeupSourceFile);
|
||||||
|
wakeup_sources = true;
|
||||||
} catch (java.io.FileNotFoundException e2) {
|
} catch (java.io.FileNotFoundException e2) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user