[automerger] [RESTRICT AUTOMERGE] Add crashutils to cts, and integrate into Stagefright am: 8cfc3b6dc2

Change-Id: I949eabfee62690963baeb47ca8c8b3083bca01d4
diff --git a/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/result/ConsoleReporter.java b/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/result/ConsoleReporter.java
index b9c0262..794858a 100644
--- a/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/result/ConsoleReporter.java
+++ b/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/result/ConsoleReporter.java
@@ -48,6 +48,7 @@
     private int mPassedTests;
     private int mFailedTests;
     private int mNotExecutedTests;
+    private CrashReporter mCrashReporter;
 
     /**
      * {@inheritDoc}
@@ -76,6 +77,8 @@
         mFailedTests = 0;
         mNotExecutedTests = 0;
         mTestFailed = false;
+        mCrashReporter = new CrashReporter(mDeviceSerial);
+        mCrashReporter.start();
         logMessage("%s %s with %d test%s", (isRepeatModule) ? "Continuing" : "Starting", id,
                 mTotalTestsInModule, (mTotalTestsInModule > 1) ? "s" : "");
     }
@@ -85,6 +88,7 @@
      */
     @Override
     public void testStarted(TestIdentifier test) {
+        mCrashReporter.testStarted(test.getTestName());
         mTestFailed = false;
         mCurrentTestNum++;
     }
@@ -141,6 +145,7 @@
      */
     @Override
     public void testRunEnded(long elapsedTime, Map<String, String> metrics) {
+        mCrashReporter.interrupt();
         mNotExecutedTests = Math.max(mTotalTestsInModule - mCurrentTestNum, 0);
         String status = mNotExecutedTests > 0 ? "failed" : "completed";
         logMessage("%s %s in %s. %d passed, %d failed, %d not executed",
@@ -157,6 +162,7 @@
      */
     @Override
     public void testRunStopped(long elapsedTime) {
+        mCrashReporter.interrupt();
         logMessage("%s stopped (%s)", mModuleId, TimeUtil.formatElapsedTime(elapsedTime));
     }
 
diff --git a/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/result/CrashReporter.java b/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/result/CrashReporter.java
new file mode 100644
index 0000000..5c8c1a6
--- /dev/null
+++ b/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/result/CrashReporter.java
@@ -0,0 +1,146 @@
+/*
+ * Copyright (C) 2019 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.android.compatibility.common.tradefed.result;
+
+
+import com.android.compatibility.common.util.Crash;
+import com.android.compatibility.common.util.CrashUtils;
+import com.android.ddmlib.Log.LogLevel;
+import com.android.tradefed.log.LogUtil.CLog;
+import java.io.BufferedReader;
+import java.io.IOException;
+import java.io.InputStreamReader;
+import java.util.ArrayList;
+import java.util.List;
+import java.util.concurrent.TimeoutException;
+import java.util.regex.Pattern;
+
+public class CrashReporter extends Thread {
+
+    private String mTestName;
+    private String mDeviceSerial;
+
+    private ArrayList<Crash> mCrashes;
+
+    private Process mLogcatProcess;
+
+    private boolean mClearChunk;
+
+    private Pattern mUploadPattern;
+
+    public CrashReporter(String serialNumber) {
+        this(serialNumber, CrashUtils.sUploadRequestPattern);
+    }
+
+    public CrashReporter(String serialNumber, Pattern uploadSignal) {
+        mDeviceSerial = serialNumber;
+        mCrashes = new ArrayList<Crash>();
+        mUploadPattern = uploadSignal;
+    }
+
+    /**
+     * Sets up the directory on the device to upload to and starts the thread
+     */
+    @Override
+    public void start() {
+        try {
+            CrashUtils.executeCommand(
+                    10000, "adb -s %s shell rm -rf %s", mDeviceSerial, CrashUtils.DEVICE_PATH);
+            CrashUtils.executeCommand(
+                    10000, "adb -s %s shell mkdir %s", mDeviceSerial, CrashUtils.DEVICE_PATH);
+        } catch (InterruptedException | IOException | TimeoutException e) {
+            CLog.logAndDisplay(
+                    LogLevel.ERROR, "CrashReporter failed to setup storage directory on device");
+            CLog.logAndDisplay(LogLevel.ERROR, e.getMessage());
+        }
+        super.start();
+    }
+
+    public synchronized void testStarted(String testName) {
+        mTestName = testName;
+        mCrashes = new ArrayList<Crash>();
+        mClearChunk = true;
+    }
+
+    /**
+     * Spins up a logcat process and scans the output for crashes. When an upload signal is found in
+     * logcat uploads the Crashes found to the device.
+     */
+    @Override
+    public void run() {
+        try {
+            mLogcatProcess = Runtime.getRuntime().exec("adb -s " + mDeviceSerial + " logcat");
+        } catch (IOException e) {
+            CLog.logAndDisplay(LogLevel.ERROR, "CrashReporter failed to start logcat process");
+            return;
+        }
+        try (BufferedReader reader =
+                new BufferedReader(new InputStreamReader(mLogcatProcess.getInputStream()))) {
+            StringBuilder mLogcatChunk = new StringBuilder();
+            while (!interrupted()) {
+                String line = reader.readLine();
+                synchronized (this) {
+                    if (mClearChunk == true) {
+                        mLogcatChunk.setLength(0);
+                        mClearChunk = false;
+                    }
+                }
+                if (line == null) {
+                    break;
+                }
+
+                mLogcatChunk.append(line);
+
+                if (CrashUtils.sEndofCrashPattern.matcher(line).matches()) {
+                    addCrashes(CrashUtils.getAllCrashes(mLogcatChunk.toString()));
+                    mLogcatChunk.setLength(0);
+                } else if (mUploadPattern.matcher(line).matches()) {
+                    upload();
+                }
+            }
+        } catch (IOException | InterruptedException e) {
+            mLogcatProcess.destroyForcibly();
+        }
+    }
+
+    private synchronized boolean upload() throws InterruptedException {
+        try {
+            if (mTestName == null) {
+                CLog.logAndDisplay(LogLevel.ERROR, "Attempted upload with no test name");
+                return false;
+            }
+            CrashUtils.writeCrashReport(mTestName, mDeviceSerial, mCrashes);
+        } catch (IOException | TimeoutException e) {
+            CLog.logAndDisplay(LogLevel.ERROR, "Upload to device " + mDeviceSerial + " failed");
+            CLog.logAndDisplay(LogLevel.ERROR, e.getMessage());
+            return false;
+        }
+        return true;
+    }
+
+    private synchronized void addCrashes(List<Crash> crashes) {
+        mCrashes.addAll(crashes);
+    }
+
+    @Override
+    public void interrupt() {
+        if (mLogcatProcess != null) {
+            mLogcatProcess.destroyForcibly();
+        }
+        super.interrupt();
+    }
+}
diff --git a/common/util/src/com/android/compatibility/common/util/Crash.java b/common/util/src/com/android/compatibility/common/util/Crash.java
new file mode 100644
index 0000000..28212fe
--- /dev/null
+++ b/common/util/src/com/android/compatibility/common/util/Crash.java
@@ -0,0 +1,67 @@
+/*
+ * Copyright (C) 2018 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.android.compatibility.common.util;
+
+import java.util.Objects;
+import java.io.Serializable;
+import javax.annotation.Nullable;
+
+public class Crash implements Serializable {
+
+    public final int pid;
+    public final int tid;
+    @Nullable
+    public final String name;
+    @Nullable
+    public final Long faultAddress;
+    @Nullable
+    public final String signal;
+
+    public Crash(int pid, int tid, String name, Long faultAddress, String signal) {
+        this.pid = pid;
+        this.tid = tid;
+        this.name = name;
+        this.faultAddress = faultAddress;
+        this.signal = signal;
+    }
+
+    @Override
+    public String toString() {
+        return "Crash{" +
+                "pid=" + pid +
+                ", tid=" + tid +
+                ", name=" + name +
+                ", faultAddress=" + faultAddress +
+                ", signal=" + signal +
+                '}';
+    }
+
+    public boolean equals(Object object) {
+        if (this == object) {
+            return true;
+        }
+        if (!(object instanceof Crash)) {
+            return false;
+        }
+        Crash crash = (Crash) object;
+        return pid == crash.pid &&
+                tid == crash.tid &&
+                Objects.equals(name, crash.name) &&
+                Objects.equals(faultAddress, crash.faultAddress) &&
+                Objects.equals(signal, crash.signal);
+    }
+}
\ No newline at end of file
diff --git a/common/util/src/com/android/compatibility/common/util/CrashUtils.java b/common/util/src/com/android/compatibility/common/util/CrashUtils.java
new file mode 100644
index 0000000..b4bcb0f
--- /dev/null
+++ b/common/util/src/com/android/compatibility/common/util/CrashUtils.java
@@ -0,0 +1,220 @@
+/*
+ * Copyright (C) 2018 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.android.compatibility.common.util;
+
+import java.io.File;
+import java.io.FileOutputStream;
+import java.io.IOException;
+import java.io.ObjectOutputStream;
+import java.util.ArrayList;
+import java.util.List;
+import java.util.concurrent.TimeUnit;
+import java.util.concurrent.TimeoutException;
+import java.util.regex.Matcher;
+import java.util.regex.Pattern;
+
+public class CrashUtils {
+
+    public static final long MIN_CRASH_ADDR = 32768;
+
+    // Matches the smallest blob that has the appropriate header and footer
+    private static final Pattern sCrashBlobPattern =
+            Pattern.compile("DEBUG\\s+:( [*]{3})+.*?DEBUG\\s+:\\s+backtrace:", Pattern.DOTALL);
+    // Matches process id and name line and captures them
+    private static final Pattern sPidtidNamePattern =
+            Pattern.compile("pid: (\\d+), tid: (\\d+), name: ([^\\s]+\\s+)*>>> (.*) <<<");
+    // Matches fault address and signal type line
+    private static final Pattern sFaultLinePattern =
+            Pattern.compile(
+                    "\\w+ \\d+ \\((.*)\\), code -*\\d+ \\(.*\\), fault addr "
+                            + "(?:0x(\\p{XDigit}+)|-+)");
+    // Matches the abort message line if it contains CHECK_
+    private static Pattern sAbortMessageCheckPattern = Pattern
+            .compile("(?i)Abort message.*CHECK_.*");
+
+    // Matches the end of a crash
+    public static final Pattern sEndofCrashPattern = Pattern
+            .compile(".*DEBUG\\s+:\\s+backtrace:.*");
+
+    public static final String DEVICE_PATH = "/data/local/tmp/CrashParserResults/";
+
+    public static final String LOCK_FILENAME = "lockFile.loc";
+
+    public static final String UPLOAD_REQUEST = "Please upload a result file to stagefright";
+
+    public static final Pattern sUploadRequestPattern = Pattern
+            .compile(".*" + UPLOAD_REQUEST + ".*");
+
+    /**
+     * Determines if the given input has a {@link Crash} that should fail an sts test
+     *
+     * @param processNames list of applicable process names
+     * @param checkMinAddr if the minimum fault address should be respected
+     * @param input logs to scan through
+     * @return if a crash is serious enough to fail an sts test
+     */
+    public static boolean detectCrash(String[] processNames, boolean checkMinAddr, String input) {
+        return detectCrash(processNames, checkMinAddr, getAllCrashes(input));
+    }
+
+    /**
+     * Determines if the given input has a {@link Crash} that should fail an sts test
+     *
+     * @param processNames list of applicable process names
+     * @param checkMinAddr if the minimum fault address should be respected
+     * @param crashes list of crashes to check
+     * @return if a crash is serious enough to fail an sts test
+     */
+    public static boolean detectCrash(
+            String[] processNames, boolean checkMinAddr, List<Crash> crashes) {
+        for (Crash crash : crashes) {
+            if (!crash.signal.toLowerCase().matches("sig(segv|bus)")) {
+                continue;
+            }
+
+            if (checkMinAddr) {
+                if (crash.faultAddress != null && crash.faultAddress < MIN_CRASH_ADDR) {
+                    continue;
+                }
+            }
+
+            boolean foundProcess = false;
+            for (String process : processNames) {
+                if (crash.name.equals(process)) {
+                    foundProcess = true;
+                    break;
+                }
+            }
+
+            if (!foundProcess) {
+                continue;
+            }
+
+            return true; // crash detected
+        }
+
+        return false;
+    }
+
+    /**
+     * Creates a list of all crashes found within the input
+     *
+     * @param input logs to scan through
+     * @return List of all crashes as Crash objects
+     */
+    public static List<Crash> getAllCrashes(String input) {
+        ArrayList<Crash> crashes = new ArrayList<>();
+        Matcher crashBlobFinder = sCrashBlobPattern.matcher(input);
+        while (crashBlobFinder.find()) {
+            String crashStr = crashBlobFinder.group(0);
+            int tid = 0, pid = 0;
+            Long faultAddress = null;
+            String name = null, signal = null;
+
+            Matcher pidtidNameMatcher = sPidtidNamePattern.matcher(crashStr);
+            if (pidtidNameMatcher.find()) {
+                try {
+                    pid = Integer.parseInt(pidtidNameMatcher.group(1));
+                } catch (NumberFormatException e) {
+                }
+                try {
+                    tid = Integer.parseInt(pidtidNameMatcher.group(2));
+                } catch (NumberFormatException e) {
+                }
+                name = pidtidNameMatcher.group(3).trim();
+            }
+
+            Matcher faultLineMatcher = sFaultLinePattern.matcher(crashStr);
+            if (faultLineMatcher.find()) {
+                signal = faultLineMatcher.group(1);
+                String faultAddrMatch = faultLineMatcher.group(2);
+                if (faultAddrMatch != null) {
+                    try {
+                        faultAddress = Long.parseLong(faultAddrMatch, 16);
+                    } catch (NumberFormatException e) {
+                    }
+                }
+            }
+            if (!sAbortMessageCheckPattern.matcher(crashStr).find()) {
+                crashes.add(new Crash(pid, tid, name, faultAddress, signal));
+            }
+        }
+
+        return crashes;
+    }
+
+    /**
+     * Executes the given command and waits for its completion
+     *
+     * @param timeout how long to wait for the process to finish
+     * @param command the command to execute
+     * @param args arguments for String.format to run on the command
+     * @return The exit code of the process that completed
+     */
+    public static int executeCommand(long timeout, String command, Object... args)
+            throws InterruptedException, IOException, TimeoutException {
+        Process process = Runtime.getRuntime().exec(String.format(command, args));
+        if (timeout == -1) {
+            process.waitFor();
+        } else {
+            int checkInterval = 50;
+            while (timeout > 0) {
+                TimeUnit.MILLISECONDS.sleep(checkInterval);
+                timeout -= checkInterval;
+                try {
+                    return process.exitValue();
+                } catch (IllegalThreadStateException e) {
+                }
+            }
+            process.destroy();
+            process.waitFor();
+            throw new TimeoutException("Process execution timed out");
+        }
+        return process.exitValue();
+    }
+
+    /**
+     * Given a crash list, serialize it into a file and uploads the file to the device
+     *
+     * @param testname the name of the test to upload the results under
+     * @param serialNumber the serial number of the device being uploaded too
+     * @param crashes list of crashes to upload
+     */
+    public static void writeCrashReport(
+            String testname, String serialNumber, ArrayList<Crash> crashes)
+            throws IOException, InterruptedException, TimeoutException {
+        executeCommand(5000L, "adb -s %s shell rm -f %s%s", serialNumber, DEVICE_PATH,
+                LOCK_FILENAME);
+        File reportFile = File.createTempFile(testname, ".txt");
+        try {
+            try (ObjectOutputStream writer = new ObjectOutputStream(
+                    new FileOutputStream(reportFile))) {
+                writer.writeObject(crashes);
+            }
+            executeCommand(
+                    5000L, "adb -s %s push %s %s%s", serialNumber, reportFile.toString(),
+                    DEVICE_PATH,
+                    testname);
+        } finally {
+            if (reportFile.exists()) {
+                reportFile.delete();
+            }
+        }
+        executeCommand(5000L, "adb -s %s shell touch %s%s", serialNumber, DEVICE_PATH,
+                LOCK_FILENAME);
+    }
+}
diff --git a/common/util/tests/Android.mk b/common/util/tests/Android.mk
index 0e0af50..9b9ee55 100644
--- a/common/util/tests/Android.mk
+++ b/common/util/tests/Android.mk
@@ -18,6 +18,8 @@
 
 LOCAL_SRC_FILES := $(call all-java-files-under, src)
 
+LOCAL_JAVA_RESOURCE_DIRS := res
+
 LOCAL_JAVA_LIBRARIES := junit kxml2-2.3.0 tradefed-prebuilt compatibility-common-util-hostsidelib
 
 LOCAL_MODULE := compatibility-common-util-tests
diff --git a/common/util/tests/res/logcat.txt b/common/util/tests/res/logcat.txt
new file mode 100644
index 0000000..43fcfa7
--- /dev/null
+++ b/common/util/tests/res/logcat.txt
@@ -0,0 +1,3729 @@
+--------- beginning of system
+09-03 17:47:13.453 11272 11516 I ActivityManager: Process com.google.android.apps.messaging (pid 3995) has died
+09-03 17:47:13.453 11272 11516 D ActivityManager: cleanUpApplicationRecord -- 3995
+--------- beginning of main
+09-03 17:47:13.600  6882  6882 D AudioTrack: Client defaulted notificationFrames to 2147483520 for frameCount 4294967040
+09-03 17:47:13.603  6882  6882 D         : Lynn Create bad track OK!
+09-03 17:47:13.643 11071 11189 D audio_hw_primary: enable_snd_device: snd_device(2: speaker)
+09-03 17:47:13.646 11071 11189 D audio_hw_primary: enable_audio_route: usecase(1) apply and update mixer path: low-latency-playback speaker
+09-03 17:47:17.732 11272 12366 I ActivityManager: Process android.process.acore (pid 4028) has died
+09-03 17:47:17.733 11272 12366 D ActivityManager: cleanUpApplicationRecord -- 4028
+09-03 17:47:17.739 11272 12366 E JavaBinder: !!! FAILED BINDER TRANSACTION !!!  (parcel size = 76)
+09-03 17:47:17.745 11272 18845 I ActivityManager: Process com.huawei.sarcontrolservice (pid 3735) has died
+09-03 17:47:17.745 11272 18845 D ActivityManager: cleanUpApplicationRecord -- 3735
+09-03 17:47:17.745 11272 18845 W ActivityManager: Scheduling restart of crashed service com.huawei.sarcontrolservice/.SarControlService in 1000ms
+09-03 17:47:18.758 11272 11293 I ActivityManager: Start proc 6900:com.huawei.sarcontrolservice/u0a73 for service com.huawei.sarcontrolservice/.SarControlService
+09-03 17:47:18.793  6900  6900 W System  : ClassLoader referenced unknown path: /system/app/HwSarControlService/lib/arm64
+09-03 17:47:18.818  6900  6900 E SarUtils: getCurrentMCC,the netWorkOperator is invalid
+09-03 17:47:18.818  6900  6900 I SarControlServiceFlow: resetSARRuleDataList, the sar rule has been switched to boot mode
+09-03 17:47:18.839  6900  6900 D QC_RIL_OEM_HOOK: Starting QcrilMsgTunnel Service
+09-03 17:47:18.844  6900  6900 D QC_RIL_OEM_HOOK: The QcrilMsgTunnelService will be connected soon
+09-03 17:47:18.845  6900  6900 D QC_RIL_OEM_HOOK: Registering for intent ACTION_UNSOL_RESPONSE_OEM_HOOK_RAW
+09-03 17:47:18.856  6900  6900 D QC_RIL_OEM_HOOK: QcrilMsgTunnelService Connected Successfully (onServiceConnected)
+09-03 17:47:18.856  6900  6900 D QC_RIL_OEM_HOOK: Calling onQcRilHookReady callback
+09-03 17:47:58.366 11071 11189 D AudioFlinger: mixer(0xeb1034c0) throttle end: throttle time(9)
+09-03 17:47:58.379   394   394 I ServiceManager: service 'AtCmdFwd' died
+09-03 17:47:58.379 11272 12406 I ActivityManager: Process com.qualcomm.telephony (pid 3718) has died
+09-03 17:47:58.379 11272 12406 D ActivityManager: cleanUpApplicationRecord -- 3718
+09-03 17:47:58.380 11272 12406 W ActivityManager: Scheduling restart of crashed service com.qualcomm.atfwd/.AtFwdService in 1000ms
+09-03 17:47:59.411 11272 11293 I ActivityManager: Start proc 7039:com.qualcomm.telephony/1000 for service com.qualcomm.atfwd/.AtFwdService
+09-03 17:47:59.461  7039  7039 W System  : ClassLoader referenced unknown path: /system/priv-app/atfwd/lib/arm64
+09-03 17:47:59.481  7039  7039 D AtFwdService: onCreate method
+09-03 17:47:59.481  7039  7039 I AtFwdService: Instantiate AtCmdFwd Service
+09-03 17:47:59.490  7039  7054 D AtCkpdCmdHandler: De-queing command
+--------- beginning of crash
+09-03 17:48:05.627 11071 11189 F libc    : Fatal signal 11 (SIGSEGV), code 1, fault addr 0xe9380000 in tid 11189 (AudioOut_D)
+09-03 17:48:05.707   359   359 W         : debuggerd: handling request: pid=11071 uid=1041 gid=1005 tid=11189
+09-03 17:48:05.796  7072  7072 F DEBUG   : *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
+09-03 17:48:05.796  7072  7072 F DEBUG   : Build fingerprint: 'google/angler/angler:7.1.1/N4F26T/3687331:userdebug/dev-keys'
+09-03 17:48:05.796  7072  7072 F DEBUG   : Revision: '0'
+09-03 17:48:05.796  7072  7072 F DEBUG   : ABI: 'arm'
+09-03 17:48:05.796  7072  7072 F DEBUG   : pid: 11071, tid: 11189, name: AudioOut_D  >>> /system/bin/audioserver <<<
+09-03 17:48:05.797  7072  7072 F DEBUG   : signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0xe9380000
+09-03 17:48:05.797  7072  7072 F DEBUG   :     r0 e9e7a240  r1 e9380000  r2 00000170  r3 00000000
+09-03 17:48:05.797  7072  7072 F DEBUG   :     r4 00000002  r5 00000000  r6 ec1e1f25  r7 eb6f8000
+09-03 17:48:05.797  7072  7072 F DEBUG   :     r8 00000000  r9 eb105204  sl 00000000  fp 000003c0
+09-03 17:48:05.797  7072  7072 F DEBUG   :     ip ebd3df18  sp eaf80688  lr ec1e1f41  pc ebd38dd6  cpsr 20000030
+09-03 17:48:05.805  7072  7072 F DEBUG   :
+09-03 17:48:05.805  7072  7072 F DEBUG   : backtrace:
+09-03 17:48:05.806  7072  7072 F DEBUG   :     #00 pc 00002dd6  /system/lib/libaudioutils.so (memcpy_to_float_from_i16+5)
+09-03 17:48:05.806  7072  7072 F DEBUG   :     #01 pc 00040f3d  /system/lib/libaudioflinger.so
+09-03 17:48:05.806  7072  7072 F DEBUG   :     #02 pc 00040799  /system/lib/libaudioflinger.so
+09-03 17:48:05.806  7072  7072 F DEBUG   :     #03 pc 00011178  /system/lib/libaudioflinger.so
+09-03 17:48:05.806  7072  7072 F DEBUG   :     #04 pc 0003180b  /system/lib/libaudioflinger.so
+09-03 17:48:05.806  7072  7072 F DEBUG   :     #05 pc 0002fe57  /system/lib/libaudioflinger.so
+09-03 17:48:05.806  7072  7072 F DEBUG   :     #06 pc 0000e345  /system/lib/libutils.so (_ZN7android6Thread11_threadLoopEPv+140)
+09-03 17:48:05.806  7072  7072 F DEBUG   :     #07 pc 000470b3  /system/lib/libc.so (_ZL15__pthread_startPv+22)
+09-03 17:48:05.806  7072  7072 F DEBUG   :     #08 pc 00019e3d  /system/lib/libc.so (__start_thread+6)
+09-03 17:48:05.967 11272 11568 W NativeCrashListener: Couldn't find ProcessRecord for pid 11071
+09-03 17:48:05.969   359   359 W         : debuggerd: resuming target 11071
+09-03 17:48:05.981 11272 11307 I BootReceiver: Copying /data/tombstones/tombstone_01 to DropBox (SYSTEM_TOMBSTONE)
+09-03 17:48:06.067   394   394 I ServiceManager: service 'media.sound_trigger_hw' died
+09-03 17:48:06.067   394   394 I ServiceManager: service 'media.radio' died
+09-03 17:48:06.067   394   394 I ServiceManager: service 'media.audio_flinger' died
+09-03 17:48:06.067   394   394 I ServiceManager: service 'media.audio_policy' died
+09-03 17:48:06.075 11272 18845 W SoundTrigger: Sound trigger service died!
+09-03 17:48:06.083 11073 11622 W AudioSystem: AudioPolicyService server died!
+09-03 17:48:06.084 11073 11127 W AudioSystem: AudioFlinger server died!
+09-03 17:48:06.097 11272 11897 W AudioSystem: AudioPolicyService server died!
+09-03 17:48:06.097 11554 15407 W AudioSystem: AudioPolicyService server died!
+09-03 17:48:06.097 11272 12366 W AudioSystem: AudioFlinger server died!
+09-03 17:48:06.097 11554 11570 W AudioSystem: AudioFlinger server died!
+09-03 17:48:06.098 11716 16450 W AudioSystem: AudioFlinger server died!
+09-03 17:48:06.099 11272 11512 E AudioService: Audioserver died.
+09-03 17:48:06.099 11272 11272 I ServiceManager: Waiting for service media.audio_policy...
+09-03 17:48:06.109 19299 19345 W GCoreFlp: No location to return for getLastLocation()
+09-03 17:48:06.110 19299 19311 W FusedLocationProvider: location=null
+09-03 17:48:06.398  7082  7082 I         : sMaxFastTracks = 8
+09-03 17:48:06.399  7082  7082 I audioserver: ServiceManager: 0xf4f193c0
+09-03 17:48:06.401  7082  7082 I AudioFlinger: Using 300 mSec as standby time.
+09-03 17:48:06.403  7082  7082 I AudioPolicyService: AudioPolicyService CSTOR in new mode
+09-03 17:48:06.434  7082  7082 D audio_hw_primary: adev_open: enter
+09-03 17:48:06.453  7082  7082 I audio_hw_extn: audio_extn_set_snd_card_split: snd_card_name(msm8994-tomtom-mtp-snd-card) device(msm8994) snd_card(tomtom) form_factor(mtp)
+09-03 17:48:06.455  7082  7082 I msm8974_platform: platform_init: found sound card msm8994-tomtom-mtp-snd-card, primary sound card expeted is msm8994-tomtom-mtp-snd-card
+09-03 17:48:06.455  7082  7082 D msm8974_platform: platform_init: Loading mixer file: /system/etc/mixer_paths.xml
+09-03 17:48:06.601 11272 11512 E AudioService: Audioserver started.
+09-03 17:48:06.760  7082  7082 E audio_route: Control 'MultiMedia4 Mixer MI2S_TX' doesn't exist - skipping
+09-03 17:48:06.760  7082  7082 E audio_route: Control 'MultiMedia7 Mixer MI2S_TX' doesn't exist - skipping
+09-03 17:48:06.760  7082  7082 E audio_route: Control 'MultiMedia10 Mixer MI2S_TX' doesn't exist - skipping
+09-03 17:48:06.761  7082  7082 E audio_route: Control 'MultiMedia11 Mixer MI2S_TX' doesn't exist - skipping
+09-03 17:48:06.761  7082  7082 E audio_route: Control 'MultiMedia12 Mixer MI2S_TX' doesn't exist - skipping
+09-03 17:48:06.761  7082  7082 E audio_route: Control 'MultiMedia13 Mixer MI2S_TX' doesn't exist - skipping
+09-03 17:48:06.761  7082  7082 E audio_route: Control 'MultiMedia14 Mixer MI2S_TX' doesn't exist - skipping
+09-03 17:48:06.761  7082  7082 E audio_route: Control 'MultiMedia15 Mixer MI2S_TX' doesn't exist - skipping
+09-03 17:48:06.761  7082  7082 E audio_route: Control 'MultiMedia16 Mixer MI2S_TX' doesn't exist - skipping
+09-03 17:48:06.763  7082  7082 E audio_route: Control 'RX4 DSM MUX' doesn't exist - skipping
+09-03 17:48:06.763  7082  7082 E audio_route: Control 'RX6 DSM MUX' doesn't exist - skipping
+09-03 17:48:06.764  7082  7082 E audio_route: Control 'AFE_PCM_RX Port Mixer PRI_MI2S_TX' doesn't exist - skipping
+09-03 17:48:06.764  7082  7082 E audio_route: unknown enum value string QUAT_MI2S_RX for ctl AUDIO_REF_EC_UL1 MUX
+09-03 17:48:06.764  7082  7082 E audio_route: unknown enum value string SEC_AUX_PCM_RX for ctl AUDIO_REF_EC_UL1 MUX
+--------- beginning of main
+06-15 19:57:20.484 25934 25934 D AndroidRuntime: >>>>>> START com.android.internal.os.RuntimeInit uid 0 <<<<<<
+06-15 19:57:20.490 25934 25934 D AndroidRuntime: CheckJNI is OFF
+06-15 19:57:20.574 25934 25934 D ICU     : No timezone override file found: /data/misc/zoneinfo/current/icu/icu_tzdata.dat
+06-15 19:57:20.615 25934 25934 I Radio-JNI: register_android_hardware_Radio DONE
+06-15 19:57:20.627 25934 25934 D AndroidRuntime: Calling main entry com.android.commands.pm.Pm
+06-15 19:57:20.641 25934 25934 I art     : System.exit called, status: 0
+06-15 19:57:20.641 25934 25934 I AndroidRuntime: VM exiting with result code 0.
+06-15 19:57:20.647 25934 25942 W MessageQueue: Handler (android.os.Handler) {652be42} sending message to a Handler on a dead thread
+06-15 19:57:20.647 25934 25942 W MessageQueue: java.lang.IllegalStateException: Handler (android.os.Handler) {652be42} sending message to a Handler on a dead thread
+06-15 19:57:20.647 25934 25942 W MessageQueue: 	at android.os.MessageQueue.enqueueMessage(MessageQueue.java:543)
+06-15 19:57:20.647 25934 25942 W MessageQueue: 	at android.os.Handler.enqueueMessage(Handler.java:643)
+06-15 19:57:20.647 25934 25942 W MessageQueue: 	at android.os.Handler.sendMessageAtTime(Handler.java:612)
+06-15 19:57:20.647 25934 25942 W MessageQueue: 	at android.os.Handler.sendMessageDelayed(Handler.java:582)
+06-15 19:57:20.647 25934 25942 W MessageQueue: 	at android.os.Handler.post(Handler.java:338)
+06-15 19:57:20.647 25934 25942 W MessageQueue: 	at android.os.ResultReceiver$MyResultReceiver.send(ResultReceiver.java:57)
+06-15 19:57:20.647 25934 25942 W MessageQueue: 	at com.android.internal.os.IResultReceiver$Stub.onTransact(IResultReceiver.java:58)
+06-15 19:57:20.647 25934 25942 W MessageQueue: 	at android.os.Binder.execTransact(Binder.java:565)
+06-15 19:57:20.725   548   548 I         : free_cache(1766327) avail 26576351232
+06-15 19:57:20.971  5847  5847 I Finsky  : [1] com.google.android.vending.verifier.PackageVerificationReceiver.onReceive(1110): Skipping verification because network inactive
+06-15 19:57:20.989   934   960 I PackageManager.DexOptimizer: Running dexopt (dex2oat) on: /data/app/vmdl35354866.tmp/base.apk pkg=org.c0reteam.audiotest isa=arm64 vmSafeMode=false debuggable=true target-filter=interpret-only oatDir = /data/app/vmdl35354866.tmp/oat sharedLibraries=null
+06-15 19:57:21.032 25955 25955 I dex2oat : /system/bin/dex2oat --compiler-filter=interpret-only -j4 --debuggable
+06-15 19:57:21.174 25955 25955 I dex2oat : dex2oat took 142.587ms (threads: 4) arena alloc=15KB (15776B) java alloc=124KB (127168B) native alloc=1084KB (1110128B) free=1987KB (2035600B)
+--------- beginning of system
+06-15 19:57:21.304   934   960 W PackageManager: Not granting permission android.permission.CAPTURE_AUDIO_OUTPUT to package org.c0reteam.audiotest (protectionLevel=18 flags=0x3848be46)
+06-15 19:57:21.410   548   548 D installd: Detected label change from u:object_r:system_data_file:s0 to u:object_r:app_data_file:s0:c512,c768 at /data/data/org.c0reteam.audiotest; running recursive restorecon
+06-15 19:57:21.412   548   548 D installd: Detected label change from u:object_r:system_data_file:s0 to u:object_r:app_data_file:s0:c512,c768 at /data/user_de/0/org.c0reteam.audiotest; running recursive restorecon
+06-15 19:57:21.416   934   960 V BackupManagerService: restoreAtInstall pkg=org.c0reteam.audiotest token=6a restoreSet=0
+06-15 19:57:21.416   934   960 V BackupManagerService: Finishing install immediately
+06-15 19:57:21.420   934   960 I art     : Starting a blocking GC Explicit
+06-15 19:57:21.542   934   960 I art     : Explicit concurrent mark sweep GC freed 91520(5MB) AllocSpace objects, 28(684KB) LOS objects, 33% free, 16MB/24MB, paused 1.726ms total 121.287ms
+06-15 19:57:21.543   548   548 E         : Couldn't opendir /data/app/vmdl35354866.tmp: No such file or directory
+06-15 19:57:21.553  2971  2971 D BluetoothMapAppObserver: onReceive
+06-15 19:57:21.554  2971  2971 D BluetoothMapAppObserver: The installed package is: org.c0reteam.audiotest
+06-15 19:57:21.554   934  2907 I InputReader: Reconfiguring input devices.  changes=0x00000010
+06-15 19:57:21.564  2971  2971 D BluetoothMapAppObserver: Found 0 application(s) with intent android.bluetooth.action.BLUETOOTH_MAP_PROVIDER
+06-15 19:57:21.566  2971  2971 D BluetoothMapAppObserver: Found 0 application(s) with intent android.bluetooth.action.BLUETOOTH_MAP_IM_PROVIDER
+06-15 19:57:21.578   934   947 W InputMethodInfo: Duplicated subtype definition found: , voice
+06-15 19:57:21.598  3865  3865 D RegisteredNfcFServicesCache: Service unchanged, not updating
+06-15 19:57:21.605  3186  3186 D CarrierSvcBindHelper: No carrier app for: 0
+06-15 19:57:21.605  3186  3186 D CarrierConfigLoader: mHandler: 9 phoneId: 0
+06-15 19:57:21.612  5847  5847 W Finsky  : [1] com.google.android.finsky.application.FinskyAppImpl.V(1772): No account configured on this device.
+06-15 19:57:21.612  5847  5847 I Finsky  : [1] com.google.android.finsky.wear.WearSupportService.a(307): Wear auto install disabled for package org.c0reteam.audiotest
+06-15 19:57:21.623  5847  5847 W Finsky  : [1] com.google.android.finsky.application.FinskyAppImpl.V(1772): No account configured on this device.
+06-15 19:57:21.656  5847  5847 I Finsky  : [1] com.google.android.finsky.utils.PermissionPolicies$PermissionPolicyService.onStartCommand(115): post-install permissions check for org.c0reteam.audiotest
+06-15 19:57:21.661  3795  3795 I WearableService: Wear is not allowed to run on this device. Not starting Wear service.
+06-15 19:57:21.664  5847  5847 W Finsky  : [1] com.google.android.finsky.application.FinskyAppImpl.V(1772): No account configured on this device.
+06-15 19:57:21.676  5847  5847 I Finsky  : [1] com.google.android.finsky.utils.bd.run(2300): Package state data is missing for org.c0reteam.audiotest
+06-15 19:57:21.677  5847  5847 W Finsky  : [1] com.google.android.finsky.application.FinskyAppImpl.V(1772): No account configured on this device.
+06-15 19:57:21.686  5847  5847 E Finsky  : [1] com.google.android.finsky.wear.bl.a(847): onConnectionFailed: ConnectionResult{statusCode=API_UNAVAILABLE, resolution=null, message=null}
+06-15 19:57:21.687  5847  5847 I Finsky  : [1] com.google.android.finsky.wear.aj.run(2402): Dropping command=send_installed_apps due to Gms not connected
+06-15 19:57:21.729  3272 25972 I UpdateIcingCorporaServi: Updating corpora: APPS=org.c0reteam.audiotest, CONTACTS=MAYBE
+06-15 19:57:21.748 17916 17916 I Volta-PackageEventReceiver: Package added: org.c0reteam.audiotest
+06-15 19:57:21.794 17916 25978 D Volta-PackageEventSaverService: saving package event for pkg: org.c0reteam.audiotest
+06-15 19:57:21.804 17916 25978 W WakefulBroadcastReceiver: No active wake lock id #64
+06-15 19:57:21.916 25961 25961 D AndroidRuntime: >>>>>> START com.android.internal.os.RuntimeInit uid 0 <<<<<<
+06-15 19:57:21.918  4055 25980 W IcingInternalCorpora: getNumBytesRead when not calculated.
+06-15 19:57:21.920 25961 25961 D AndroidRuntime: CheckJNI is OFF
+06-15 19:57:21.951  4055 25413 I Icing   : Usage reports 0 indexed 0 rejected 0 imm upload true
+06-15 19:57:21.958  3272 25972 I UpdateIcingCorporaServi: UpdateCorporaTask done [took 229 ms] updated apps [took 229 ms]
+06-15 19:57:21.967  4055 25413 I Icing   : Usage reports 0 indexed 0 rejected 0 imm upload false
+06-15 19:57:21.973  4055 25413 I Icing   : Usage reports 0 indexed 0 rejected 0 imm upload false
+06-15 19:57:21.979 25961 25961 D ICU     : No timezone override file found: /data/misc/zoneinfo/current/icu/icu_tzdata.dat
+06-15 19:57:22.009 25961 25961 I Radio-JNI: register_android_hardware_Radio DONE
+06-15 19:57:22.019 25961 25961 D AndroidRuntime: Calling main entry com.android.commands.pm.Pm
+06-15 19:57:22.025 25961 25961 I art     : System.exit called, status: 1
+06-15 19:57:22.025 25961 25961 I AndroidRuntime: VM exiting with result code 1.
+06-15 19:57:22.490 25990 25990 D AndroidRuntime: >>>>>> START com.android.internal.os.RuntimeInit uid 0 <<<<<<
+06-15 19:57:22.497 25990 25990 D AndroidRuntime: CheckJNI is OFF
+06-15 19:57:22.582 25990 25990 D ICU     : No timezone override file found: /data/misc/zoneinfo/current/icu/icu_tzdata.dat
+06-15 19:57:22.624 25990 25990 I Radio-JNI: register_android_hardware_Radio DONE
+06-15 19:57:22.636 25990 25990 D AndroidRuntime: Calling main entry com.android.commands.pm.Pm
+06-15 19:57:22.645 25990 25990 I art     : System.exit called, status: 0
+06-15 19:57:22.645   934   934 I GnssLocationProvider: WakeLock acquired by sendMessage(3, 0, com.android.server.location.GnssLocationProvider$GpsRequest@624382f)
+06-15 19:57:22.645 25990 25990 I AndroidRuntime: VM exiting with result code 0.
+06-15 19:57:22.645   934   947 I GnssLocationProvider: WakeLock released by handleMessage(3, 0, com.android.server.location.GnssLocationProvider$GpsRequest@624382f)
+06-15 19:57:23.010  4055 25413 I Icing   : Indexing E5601EDA452A96DE4AE27860337512E218827509 from com.google.android.googlequicksearchbox
+06-15 19:57:23.134  4055 25413 I Icing   : Indexing 56FC74113C7D57A6EC080609931011471CD0B708 from com.google.android.gms
+06-15 19:57:23.146 26001 26001 D AndroidRuntime: >>>>>> START com.android.internal.os.RuntimeInit uid 0 <<<<<<
+06-15 19:57:23.149 26001 26001 D AndroidRuntime: CheckJNI is OFF
+06-15 19:57:23.196  4055 25413 I Icing   : Indexing done E5601EDA452A96DE4AE27860337512E218827509
+06-15 19:57:23.200  4055 25413 I Icing   : Indexing done 56FC74113C7D57A6EC080609931011471CD0B708
+06-15 19:57:23.211 26001 26001 D ICU     : No timezone override file found: /data/misc/zoneinfo/current/icu/icu_tzdata.dat
+06-15 19:57:23.242 26001 26001 I Radio-JNI: register_android_hardware_Radio DONE
+06-15 19:57:23.253 26001 26001 D AndroidRuntime: Calling main entry com.android.commands.pm.Pm
+06-15 19:57:23.258 26001 26001 I art     : System.exit called, status: 1
+06-15 19:57:23.258 26001 26001 I AndroidRuntime: VM exiting with result code 1.
+06-15 19:57:23.698 26012 26012 D AndroidRuntime: >>>>>> START com.android.internal.os.RuntimeInit uid 0 <<<<<<
+06-15 19:57:23.702 26012 26012 D AndroidRuntime: CheckJNI is OFF
+06-15 19:57:23.787 26012 26012 D ICU     : No timezone override file found: /data/misc/zoneinfo/current/icu/icu_tzdata.dat
+06-15 19:57:23.830 26012 26012 I Radio-JNI: register_android_hardware_Radio DONE
+06-15 19:57:23.843 26012 26012 D AndroidRuntime: Calling main entry com.android.commands.am.Am
+06-15 19:57:23.854   934  2994 I ActivityManager: START u0 {act=android.intent.action.MAIN flg=0x10000000 cmp=org.c0reteam.audiotest/.AudioTest} from uid 0 on display 0
+06-15 19:57:23.875 26012 26012 D AndroidRuntime: Shutting down VM
+06-15 19:57:23.897   934  3904 I ActivityManager: Start proc 26022:org.c0reteam.audiotest/u0a197 for activity org.c0reteam.audiotest/.AudioTest
+06-15 19:57:23.902 26022 26022 I art     : Late-enabling -Xcheck:jni
+06-15 19:57:23.964   934  3111 W LocalDisplayAdapter: Unable to find color mode 0, ignoring request.
+06-15 19:57:23.985 26022 26022 W System  : ClassLoader referenced unknown path: /data/app/org.c0reteam.audiotest-1/lib/arm64
+06-15 19:57:24.001 26022 26022 I InstantRun: Instant Run Runtime started. Android package is org.c0reteam.audiotest, real application class is null.
+06-15 19:57:24.049   934   944 I art     : Background partial concurrent mark sweep GC freed 40464(1998KB) AllocSpace objects, 4(80KB) LOS objects, 33% free, 16MB/24MB, paused 1.006ms total 107.585ms
+06-15 19:57:24.411 26039 26039 I dex2oat : /system/bin/dex2oat --debuggable -j4 --dex-file=/data/data/org.c0reteam.audiotest/files/instant-run/dex/slice-support-annotations-24.2.1_bc102048a27ff00c8e10fc3a76afaa77fbe3d1bd-classes.dex --oat-fd=37 --oat-location=/data/user/0/org.c0reteam.audiotest/cache/slice-support-annotations-24.2.1_bc102048a27ff00c8e10fc3a76afaa77fbe3d1bd-classes.dex --compiler-filter=speed
+06-15 19:57:24.571 26039 26039 I dex2oat : dex2oat took 161.515ms (threads: 4) arena alloc=1824B (1824B) java alloc=55KB (56816B) native alloc=595KB (609432B) free=1964KB (2012008B)
+06-15 19:57:24.632 26045 26045 I dex2oat : /system/bin/dex2oat --debuggable -j4 --dex-file=/data/data/org.c0reteam.audiotest/files/instant-run/dex/slice-slice_9-classes.dex --oat-fd=37 --oat-location=/data/user/0/org.c0reteam.audiotest/cache/slice-slice_9-classes.dex --compiler-filter=speed
+06-15 19:57:24.756 26045 26045 I dex2oat : dex2oat took 125.274ms (threads: 4) arena alloc=0B (0B) java alloc=35KB (36784B) native alloc=557KB (570768B) free=1490KB (1526384B)
+06-15 19:57:24.829 26050 26050 I dex2oat : /system/bin/dex2oat --debuggable -j4 --dex-file=/data/data/org.c0reteam.audiotest/files/instant-run/dex/slice-slice_8-classes.dex --oat-fd=37 --oat-location=/data/user/0/org.c0reteam.audiotest/cache/slice-slice_8-classes.dex --compiler-filter=speed
+06-15 19:57:25.056 26050 26050 I dex2oat : dex2oat took 227.800ms (threads: 4) arena alloc=617KB (632192B) java alloc=94KB (96912B) native alloc=1044KB (1069240B) free=2MB (2600776B)
+06-15 19:57:25.122 26056 26056 I dex2oat : /system/bin/dex2oat --debuggable -j4 --dex-file=/data/data/org.c0reteam.audiotest/files/instant-run/dex/slice-slice_7-classes.dex --oat-fd=37 --oat-location=/data/user/0/org.c0reteam.audiotest/cache/slice-slice_7-classes.dex --compiler-filter=speed
+06-15 19:57:25.257 26056 26056 I dex2oat : dex2oat took 135.822ms (threads: 4) arena alloc=489KB (501040B) java alloc=73KB (75472B) native alloc=809KB (829064B) free=2MB (2316664B)
+06-15 19:57:25.314 26061 26061 I dex2oat : /system/bin/dex2oat --debuggable -j4 --dex-file=/data/data/org.c0reteam.audiotest/files/instant-run/dex/slice-slice_6-classes.dex --oat-fd=37 --oat-location=/data/user/0/org.c0reteam.audiotest/cache/slice-slice_6-classes.dex --compiler-filter=speed
+06-15 19:57:25.425 26061 26061 I dex2oat : dex2oat took 112.466ms (threads: 4) arena alloc=0B (0B) java alloc=35KB (36784B) native alloc=557KB (570800B) free=1490KB (1526352B)
+06-15 19:57:25.500 26066 26066 I dex2oat : /system/bin/dex2oat --debuggable -j4 --dex-file=/data/data/org.c0reteam.audiotest/files/instant-run/dex/slice-slice_5-classes.dex --oat-fd=37 --oat-location=/data/user/0/org.c0reteam.audiotest/cache/slice-slice_5-classes.dex --compiler-filter=speed
+06-15 19:57:25.640 26066 26066 I dex2oat : dex2oat took 140.637ms (threads: 4) arena alloc=0B (0B) java alloc=35KB (36784B) native alloc=557KB (570800B) free=1490KB (1526352B)
+06-15 19:57:25.742 26071 26071 I dex2oat : /system/bin/dex2oat --debuggable -j4 --dex-file=/data/data/org.c0reteam.audiotest/files/instant-run/dex/slice-slice_4-classes.dex --oat-fd=37 --oat-location=/data/user/0/org.c0reteam.audiotest/cache/slice-slice_4-classes.dex --compiler-filter=speed
+06-15 19:57:25.903 26071 26071 I dex2oat : dex2oat took 162.314ms (threads: 4) arena alloc=489KB (501104B) java alloc=68KB (70560B) native alloc=808KB (827464B) free=2MB (2318264B)
+06-15 19:57:25.974 26076 26076 I dex2oat : /system/bin/dex2oat --debuggable -j4 --dex-file=/data/data/org.c0reteam.audiotest/files/instant-run/dex/slice-slice_3-classes.dex --oat-fd=37 --oat-location=/data/user/0/org.c0reteam.audiotest/cache/slice-slice_3-classes.dex --compiler-filter=speed
+06-15 19:57:26.084 26076 26076 I dex2oat : dex2oat took 112.295ms (threads: 4) arena alloc=0B (0B) java alloc=35KB (36784B) native alloc=557KB (570800B) free=1490KB (1526352B)
+06-15 19:57:26.177 26081 26081 I dex2oat : /system/bin/dex2oat --debuggable -j4 --dex-file=/data/data/org.c0reteam.audiotest/files/instant-run/dex/slice-slice_2-classes.dex --oat-fd=37 --oat-location=/data/user/0/org.c0reteam.audiotest/cache/slice-slice_2-classes.dex --compiler-filter=speed
+06-15 19:57:26.427 26081 26081 I dex2oat : dex2oat took 251.306ms (threads: 4) arena alloc=0B (0B) java alloc=35KB (36784B) native alloc=557KB (570800B) free=1490KB (1526352B)
+06-15 19:57:26.499 26086 26086 I dex2oat : /system/bin/dex2oat --debuggable -j4 --dex-file=/data/data/org.c0reteam.audiotest/files/instant-run/dex/slice-slice_1-classes.dex --oat-fd=37 --oat-location=/data/user/0/org.c0reteam.audiotest/cache/slice-slice_1-classes.dex --compiler-filter=speed
+06-15 19:57:26.638 26086 26086 I dex2oat : dex2oat took 139.790ms (threads: 4) arena alloc=489KB (501184B) java alloc=49KB (50736B) native alloc=615KB (630048B) free=2MB (2515680B)
+06-15 19:57:26.721 26091 26091 I dex2oat : /system/bin/dex2oat --debuggable -j4 --dex-file=/data/data/org.c0reteam.audiotest/files/instant-run/dex/slice-slice_0-classes.dex --oat-fd=37 --oat-location=/data/user/0/org.c0reteam.audiotest/cache/slice-slice_0-classes.dex --compiler-filter=speed
+06-15 19:57:26.862 26091 26091 I dex2oat : dex2oat took 141.525ms (threads: 4) arena alloc=0B (0B) java alloc=35KB (36784B) native alloc=557KB (570696B) free=1490KB (1526456B)
+06-15 19:57:26.955 26096 26096 I dex2oat : /system/bin/dex2oat --debuggable -j4 --dex-file=/data/data/org.c0reteam.audiotest/files/instant-run/dex/slice-internal_impl-24.2.1_db8daf21e124395d68549b49c30ff6fd39233034-classes.dex --oat-fd=37 --oat-location=/data/user/0/org.c0reteam.audiotest/cache/slice-internal_impl-24.2.1_db8daf21e124395d68549b49c30ff6fd39233034-classes.dex --compiler-filter=speed
+06-15 19:57:27.130 26096 26096 I dex2oat : dex2oat took 175.798ms (threads: 4) arena alloc=228KB (233544B) java alloc=57KB (59120B) native alloc=613KB (628680B) free=2MB (2517048B)
+06-15 19:57:27.220 26101 26101 I dex2oat : /system/bin/dex2oat --debuggable -j4 --dex-file=/data/data/org.c0reteam.audiotest/files/instant-run/dex/slice-internal_impl-24.2.1_9644eb1b6c1c48e0b8bffb15daf2bdabac0fd515-classes.dex --oat-fd=37 --oat-location=/data/user/0/org.c0reteam.audiotest/cache/slice-internal_impl-24.2.1_9644eb1b6c1c48e0b8bffb15daf2bdabac0fd515-classes.dex --compiler-filter=speed
+06-15 19:57:27.387 26101 26101 I dex2oat : dex2oat took 168.201ms (threads: 4) arena alloc=676KB (693168B) java alloc=92KB (94864B) native alloc=946KB (969520B) free=2MB (2700496B)
+06-15 19:57:27.459 26106 26106 I dex2oat : /system/bin/dex2oat --debuggable -j4 --dex-file=/data/data/org.c0reteam.audiotest/files/instant-run/dex/slice-internal_impl-24.2.1_717f006e9edefa0ef8b49b40654189ed47064382-classes.dex --oat-fd=37 --oat-location=/data/user/0/org.c0reteam.audiotest/cache/slice-internal_impl-24.2.1_717f006e9edefa0ef8b49b40654189ed47064382-classes.dex --compiler-filter=speed
+06-15 19:57:27.643 26106 26106 I dex2oat : dex2oat took 185.236ms (threads: 4) arena alloc=345KB (353720B) java alloc=174KB (178672B) native alloc=1060KB (1085632B) free=2MB (2584384B)
+06-15 19:57:27.695 26111 26111 I dex2oat : /system/bin/dex2oat --debuggable -j4 --dex-file=/data/data/org.c0reteam.audiotest/files/instant-run/dex/slice-internal_impl-24.2.1_1179fb4f4ee661350000a399fbf2d12e936c803e-classes.dex --oat-fd=37 --oat-location=/data/user/0/org.c0reteam.audiotest/cache/slice-internal_impl-24.2.1_1179fb4f4ee661350000a399fbf2d12e936c803e-classes.dex --compiler-filter=speed
+06-15 19:57:27.891 26111 26111 I dex2oat : dex2oat took 197.037ms (threads: 4) arena alloc=815KB (835032B) java alloc=310KB (317840B) native alloc=1308KB (1340328B) free=2MB (2853976B)
+06-15 19:57:27.942 26116 26116 I dex2oat : /system/bin/dex2oat --debuggable -j4 --dex-file=/data/data/org.c0reteam.audiotest/files/instant-run/dex/slice-internal_impl-24.2.1_033557175ddfb81e3882026b2dad9193bf9bc0c7-classes.dex --oat-fd=37 --oat-location=/data/user/0/org.c0reteam.audiotest/cache/slice-internal_impl-24.2.1_033557175ddfb81e3882026b2dad9193bf9bc0c7-classes.dex --compiler-filter=speed
+06-15 19:57:28.110 26116 26116 I dex2oat : dex2oat took 169.385ms (threads: 4) arena alloc=349KB (357856B) java alloc=127KB (130896B) native alloc=629KB (644568B) free=1930KB (1976872B)
+06-15 19:57:28.206 26121 26121 I dex2oat : /system/bin/dex2oat --debuggable -j4 --dex-file=/data/data/org.c0reteam.audiotest/files/instant-run/dex/slice-com.android.support-support-vector-drawable-24.2.1_8a7161017927725e966764464ae1e1e4b21cfa8d-classes.dex --oat-fd=37 --oat-location=/data/user/0/org.c0reteam.audiotest/cache/slice-com.android.support-support-vector-drawable-24.2.1_8a7161017927725e966764464ae1e1e4b21cfa8d-classes.dex --compiler-filter=speed
+06-15 19:57:28.472 26121 26121 I dex2oat : dex2oat took 266.767ms (threads: 4) arena alloc=1212KB (1241648B) java alloc=66KB (68336B) native alloc=932KB (954864B) free=3MB (3239440B)
+06-15 19:57:28.543 26126 26126 I dex2oat : /system/bin/dex2oat --debuggable -j4 --dex-file=/data/data/org.c0reteam.audiotest/files/instant-run/dex/slice-com.android.support-support-v4-24.2.1_3692b8be867eddc958f77be1224fa117c6e4868f-classes.dex --oat-fd=37 --oat-location=/data/user/0/org.c0reteam.audiotest/cache/slice-com.android.support-support-v4-24.2.1_3692b8be867eddc958f77be1224fa117c6e4868f-classes.dex --compiler-filter=speed
+06-15 19:57:28.713 26126 26126 I dex2oat : dex2oat took 172.558ms (threads: 4) arena alloc=31KB (32376B) java alloc=32KB (33248B) native alloc=561KB (575152B) free=1486KB (1522000B)
+06-15 19:57:28.788 26131 26131 I dex2oat : /system/bin/dex2oat --debuggable -j4 --dex-file=/data/data/org.c0reteam.audiotest/files/instant-run/dex/slice-com.android.support-support-media-compat-24.2.1_e5d75bc68f32c1e2abb93a78e526f6384e6a6a61-classes.dex --oat-fd=37 --oat-location=/data/user/0/org.c0reteam.audiotest/cache/slice-com.android.support-support-media-compat-24.2.1_e5d75bc68f32c1e2abb93a78e526f6384e6a6a61-classes.dex --compiler-filter=speed
+06-15 19:57:29.058 26131 26131 I dex2oat : dex2oat took 270.521ms (threads: 4) arena alloc=1014KB (1038824B) java alloc=221KB (227120B) native alloc=1320KB (1352072B) free=3MB (3366520B)
+06-15 19:57:29.105 26136 26136 I dex2oat : /system/bin/dex2oat --debuggable -j4 --dex-file=/data/data/org.c0reteam.audiotest/files/instant-run/dex/slice-com.android.support-support-fragment-24.2.1_775ff69da94b94101a172a76b816e8251c18975a-classes.dex --oat-fd=37 --oat-location=/data/user/0/org.c0reteam.audiotest/cache/slice-com.android.support-support-fragment-24.2.1_775ff69da94b94101a172a76b816e8251c18975a-classes.dex --compiler-filter=speed
+06-15 19:57:29.419 26136 26136 I dex2oat : dex2oat took 315.531ms (threads: 4) arena alloc=1212KB (1241568B) java alloc=290KB (297656B) native alloc=1317KB (1348664B) free=3MB (3369928B)
+06-15 19:57:29.465 26142 26142 I dex2oat : /system/bin/dex2oat --debuggable -j4 --dex-file=/data/data/org.c0reteam.audiotest/files/instant-run/dex/slice-com.android.support-support-core-utils-24.2.1_c6d0adcd539d3e16bffb98d39f7b5177fc696336-classes.dex --oat-fd=37 --oat-location=/data/user/0/org.c0reteam.audiotest/cache/slice-com.android.support-support-core-utils-24.2.1_c6d0adcd539d3e16bffb98d39f7b5177fc696336-classes.dex --compiler-filter=speed
+06-15 19:57:29.693 26142 26142 I dex2oat : dex2oat took 228.785ms (threads: 4) arena alloc=700KB (716896B) java alloc=127KB (130384B) native alloc=1145KB (1173168B) free=2MB (2496848B)
+06-15 19:57:29.763 26147 26147 I dex2oat : /system/bin/dex2oat --debuggable -j4 --dex-file=/data/data/org.c0reteam.audiotest/files/instant-run/dex/slice-com.android.support-support-core-ui-24.2.1_f8264263d537f53e4fa46e25cf78ac499f39877b-classes.dex --oat-fd=37 --oat-location=/data/user/0/org.c0reteam.audiotest/cache/slice-com.android.support-support-core-ui-24.2.1_f8264263d537f53e4fa46e25cf78ac499f39877b-classes.dex --compiler-filter=speed
+06-15 19:57:30.067 26147 26147 I dex2oat : dex2oat took 304.749ms (threads: 4) arena alloc=1186KB (1215384B) java alloc=408KB (418544B) native alloc=1595KB (1633504B) free=2MB (3085088B)
+06-15 19:57:30.115 26152 26152 I dex2oat : /system/bin/dex2oat --debuggable -j4 --dex-file=/data/data/org.c0reteam.audiotest/files/instant-run/dex/slice-com.android.support-support-compat-24.2.1_89891de36bed0be3536c023627e7827f5b451221-classes.dex --oat-fd=37 --oat-location=/data/user/0/org.c0reteam.audiotest/cache/slice-com.android.support-support-compat-24.2.1_89891de36bed0be3536c023627e7827f5b451221-classes.dex --compiler-filter=speed
+06-15 19:57:30.595 26152 26152 I dex2oat : dex2oat took 481.418ms (threads: 4) arena alloc=651KB (667288B) java alloc=572KB (586704B) native alloc=2MB (2147536B) free=2MB (3095344B)
+06-15 19:57:30.642 26157 26157 I dex2oat : /system/bin/dex2oat --debuggable -j4 --dex-file=/data/data/org.c0reteam.audiotest/files/instant-run/dex/slice-com.android.support-recyclerview-v7-24.2.1_7ff36280d0893e46ededc81474eb68cecd5294bf-classes.dex --oat-fd=37 --oat-location=/data/user/0/org.c0reteam.audiotest/cache/slice-com.android.support-recyclerview-v7-24.2.1_7ff36280d0893e46ededc81474eb68cecd5294bf-classes.dex --compiler-filter=speed
+06-15 19:57:31.040 26157 26157 I dex2oat : dex2oat took 398.356ms (threads: 4) arena alloc=990KB (1014320B) java alloc=230KB (236168B) native alloc=1696KB (1737424B) free=2MB (2981168B)
+06-15 19:57:31.090 26162 26162 I dex2oat : /system/bin/dex2oat --debuggable -j4 --dex-file=/data/data/org.c0reteam.audiotest/files/instant-run/dex/slice-com.android.support-design-24.2.1_04d050752e5dfcf5f7f02a1b25a9e773bcdda5d5-classes.dex --oat-fd=37 --oat-location=/data/user/0/org.c0reteam.audiotest/cache/slice-com.android.support-design-24.2.1_04d050752e5dfcf5f7f02a1b25a9e773bcdda5d5-classes.dex --compiler-filter=speed
+06-15 19:57:31.390 26162 26162 I dex2oat : dex2oat took 301.117ms (threads: 4) arena alloc=923KB (945832B) java alloc=515KB (527952B) native alloc=1590KB (1629112B) free=2MB (3089480B)
+06-15 19:57:31.439 26167 26167 I dex2oat : /system/bin/dex2oat --debuggable -j4 --dex-file=/data/data/org.c0reteam.audiotest/files/instant-run/dex/slice-com.android.support-appcompat-v7-24.2.1_5b7e521ce55b8fee3d9b1e5db70cf3459a35cad5-classes.dex --oat-fd=37 --oat-location=/data/user/0/org.c0reteam.audiotest/cache/slice-com.android.support-appcompat-v7-24.2.1_5b7e521ce55b8fee3d9b1e5db70cf3459a35cad5-classes.dex --compiler-filter=speed
+06-15 19:57:31.591 26167 26171 W dex2oat : Before Android 4.1, method int android.support.v7.widget.ListViewCompat.lookForSelectablePosition(int, boolean) would have incorrectly overridden the package-private method in android.widget.ListView
+06-15 19:57:31.974 26167 26167 I dex2oat : dex2oat took 535.434ms (threads: 4) arena alloc=1948KB (1995128B) java alloc=1114KB (1141512B) native alloc=2MB (2553824B) free=4MB (4261920B)
+06-15 19:57:32.023 26173 26173 I dex2oat : /system/bin/dex2oat --debuggable -j4 --dex-file=/data/data/org.c0reteam.audiotest/files/instant-run/dex/slice-com.android.support-animated-vector-drawable-24.2.1_0a9b311c0328433c5c172163300ba5d525da05e4-classes.dex --oat-fd=37 --oat-location=/data/user/0/org.c0reteam.audiotest/cache/slice-com.android.support-animated-vector-drawable-24.2.1_0a9b311c0328433c5c172163300ba5d525da05e4-classes.dex --compiler-filter=speed
+06-15 19:57:32.173 26173 26173 I dex2oat : dex2oat took 150.704ms (threads: 4) arena alloc=354KB (363048B) java alloc=45KB (46912B) native alloc=658KB (674112B) free=2MB (2471616B)
+06-15 19:57:32.182 26022 26022 W System  : ClassLoader referenced unknown path: /data/app/org.c0reteam.audiotest-1/lib/arm64
+06-15 19:57:32.327 26022 26022 W art     : Before Android 4.1, method android.graphics.PorterDuffColorFilter android.support.graphics.drawable.VectorDrawableCompat.updateTintFilter(android.graphics.PorterDuffColorFilter, android.content.res.ColorStateList, android.graphics.PorterDuff$Mode) would have incorrectly overridden the package-private method in android.graphics.drawable.Drawable
+06-15 19:57:32.543 26022 26179 I Adreno  : QUALCOMM build                   : 6818200, Idb2b4cb785
+06-15 19:57:32.543 26022 26179 I Adreno  : Build Date                       : 11/18/16
+06-15 19:57:32.543 26022 26179 I Adreno  : OpenGL ES Shader Compiler Version: XE031.09.00.04
+06-15 19:57:32.543 26022 26179 I Adreno  : Local Branch                     : N25
+06-15 19:57:32.543 26022 26179 I Adreno  : Remote Branch                    :
+06-15 19:57:32.543 26022 26179 I Adreno  : Remote Branch                    :
+06-15 19:57:32.543 26022 26179 I Adreno  : Reconstruct Branch               :
+06-15 19:57:32.560 26022 26179 I OpenGLRenderer: Initialized EGL, version 1.4
+06-15 19:57:32.560 26022 26179 D OpenGLRenderer: Swap behavior 1
+06-15 19:57:32.740   934   955 I ActivityManager: Displayed org.c0reteam.audiotest/.AudioTest: +8s865ms (total +16h15m56s389ms)
+06-15 19:57:33.506 26022 26022 D path=   : /data/user/0/org.c0reteam.audiotest/files/poc
+06-15 19:57:33.506 26022 26022 D cmd=    : chmod 755 /data/user/0/org.c0reteam.audiotest/files/poc
+06-15 19:57:33.514 12736 12745 D audio_hw_primary: enable_snd_device: snd_device(78: vi-feedback)
+06-15 19:57:33.515 12736 12745 D audio_hw_primary: enable_audio_route: usecase(21) apply and update mixer path: spkr-vi-record
+06-15 19:57:33.529 26022 26022 D exec return :
+06-15 19:57:33.529 26022 26022 D cmd=    : /data/user/0/org.c0reteam.audiotest/files/poc
+06-15 19:57:33.540 12736 12745 D audio_hw_primary: enable_audio_route: usecase(1) apply and update mixer path: low-latency-playback
+06-15 19:57:33.605 26191 26191 I         : fuzzIAudioPolicyService
+06-15 19:57:33.606 26191 26191 D         : InterfaceDescriptor is a
+06-15 19:57:33.607 12736 12761 D PermissionCache: checking android.permission.MODIFY_AUDIO_SETTINGS for uid=10197 => granted (698 us)
+--------- beginning of crash
+06-15 19:57:33.607 12736 12761 F libc    : Fatal signal 11 (SIGSEGV), code 1, fault addr 0x0 in tid 12761 (Binder:12736_2)
+06-15 19:57:33.608   379   379 W         : debuggerd: handling request: pid=12736 uid=1041 gid=1005 tid=12761
+06-15 19:57:33.670 26192 26192 F DEBUG   : *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
+06-15 19:57:33.670 26192 26192 F DEBUG   : Build fingerprint: 'google/bullhead/bullhead:7.1.2/N2G48C/4104010:userdebug/dev-keys'
+06-15 19:57:33.670 26192 26192 F DEBUG   : Revision: 'rev_1.0'
+06-15 19:57:33.670 26192 26192 F DEBUG   : ABI: 'arm'
+06-15 19:57:33.670 26192 26192 F DEBUG   : pid: 12736, tid: 12761, name: Binder:12736_2  >>> /system/bin/audioserver <<<
+06-15 19:57:33.670 26192 26192 F DEBUG   : signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0x0
+06-15 19:57:33.670 26192 26192 F DEBUG   :     r0 00000000  r1 00000000  r2 0000005f  r3 00000000
+06-15 19:57:33.670 26192 26192 F DEBUG   :     r4 ffffffff  r5 00000000  r6 f14f9000  r7 00000001
+06-15 19:57:33.670 26192 26192 F DEBUG   :     r8 00000004  r9 f3353114  sl f3313900  fp 00000000
+06-15 19:57:33.670 26192 26192 F DEBUG   :     ip f3bd4d88  sp f127d9c8  lr f3b9cbc5  pc f3b65af4  cpsr 60000030
+06-15 19:57:33.676 26192 26192 F DEBUG   :
+06-15 19:57:33.676 26192 26192 F DEBUG   : backtrace:
+06-15 19:57:33.677 26192 26192 F DEBUG   :     #00 pc 00018af4  /system/lib/libc.so (strlen+71)
+06-15 19:57:33.677 26192 26192 F DEBUG   :     #01 pc 0004fbc1  /system/lib/libc.so (__strlen_chk+4)
+06-15 19:57:33.677 26192 26192 F DEBUG   :     #02 pc 0000c599  /system/lib/libutils.so (_ZN7android7String8C2EPKc+12)
+06-15 19:57:33.677 26192 26192 F DEBUG   :     #03 pc 0002fdbf  /system/lib/libaudiopolicymanagerdefault.so (_ZNK7android18HwModuleCollection19getDeviceDescriptorEjPKcS2_b+458)
+06-15 19:57:33.677 26192 26192 F DEBUG   :     #04 pc 0001de47  /system/lib/libaudiopolicymanagerdefault.so (_ZN7android18AudioPolicyManager27setDeviceConnectionStateIntEj24audio_policy_dev_state_tPKcS3_+178)
+06-15 19:57:33.677 26192 26192 F DEBUG   :     #05 pc 0000a009  /system/lib/libaudiopolicyservice.so
+06-15 19:57:33.677 26192 26192 F DEBUG   :     #06 pc 000a01a5  /system/lib/libmedia.so (_ZN7android20BnAudioPolicyService10onTransactEjRKNS_6ParcelEPS1_j+1256)
+06-15 19:57:33.677 26192 26192 F DEBUG   :     #07 pc 000359c3  /system/lib/libbinder.so (_ZN7android7BBinder8transactEjRKNS_6ParcelEPS1_j+70)
+06-15 19:57:33.677 26192 26192 F DEBUG   :     #08 pc 0003d1bb  /system/lib/libbinder.so (_ZN7android14IPCThreadState14executeCommandEi+702)
+06-15 19:57:33.677 26192 26192 F DEBUG   :     #09 pc 0003ce07  /system/lib/libbinder.so (_ZN7android14IPCThreadState20getAndExecuteCommandEv+114)
+06-15 19:57:33.677 26192 26192 F DEBUG   :     #10 pc 0003d31b  /system/lib/libbinder.so (_ZN7android14IPCThreadState14joinThreadPoolEb+46)
+06-15 19:57:33.678 26192 26192 F DEBUG   :     #11 pc 0004f8c5  /system/lib/libbinder.so
+06-15 19:57:33.678 26192 26192 F DEBUG   :     #12 pc 0000e345  /system/lib/libutils.so (_ZN7android6Thread11_threadLoopEPv+140)
+06-15 19:57:33.678 26192 26192 F DEBUG   :     #13 pc 000470b3  /system/lib/libc.so (_ZL15__pthread_startPv+22)
+06-15 19:57:33.678 26192 26192 F DEBUG   :     #14 pc 00019e3d  /system/lib/libc.so (__start_thread+6)
+06-15 19:57:33.839   934  2991 W NativeCrashListener: Couldn't find ProcessRecord for pid 12736
+06-15 19:57:33.846   934   952 I BootReceiver: Copying /data/tombstones/tombstone_01 to DropBox (SYSTEM_TOMBSTONE)
+06-15 19:57:33.847   379   379 W         : debuggerd: resuming target 12736
+06-15 19:57:33.854   414   414 I ServiceManager: service 'media.sound_trigger_hw' died
+06-15 19:57:33.854   414   414 I ServiceManager: service 'media.radio' died
+06-15 19:57:33.854   414   414 I ServiceManager: service 'media.audio_flinger' died
+06-15 19:57:33.854   414   414 I ServiceManager: service 'media.audio_policy' died
+06-15 19:57:33.855   934  3931 W AudioSystem: AudioFlinger server died!
+06-15 19:57:33.855   934  3904 W AudioSystem: AudioPolicyService server died!
+06-15 19:57:33.855   934  3904 W AudioSystem: AudioPolicyService server died!
+06-15 19:57:33.855   934  3931 W AudioSystem: AudioFlinger server died!
+06-15 19:57:33.857   541   631 I ThermalEngine: Thermal-Server: removing client on fd 52
+06-15 19:57:33.857   934  2948 E AudioService: Audioserver died.
+06-15 19:57:33.857   934   934 I ServiceManager: Waiting for service media.audio_policy...
+06-15 19:57:33.857   934  2948 E AudioService: Audioserver died.
+06-15 19:57:33.865 26022 26022 D path=   : /data/user/0/org.c0reteam.audiotest/files/poc
+06-15 19:57:33.866 26022 26022 D cmd=    : chmod 755 /data/user/0/org.c0reteam.audiotest/files/poc
+06-15 19:57:33.871   934 28743 W AudioTrack: dead IAudioTrack, PCM, creating a new one from processAudioBuffer()
+06-15 19:57:33.894 26022 26022 D exec return :
+06-15 19:57:33.894 26022 26022 D cmd=    : /data/user/0/org.c0reteam.audiotest/files/poc
+06-15 19:57:33.968 26200 26200 I         : fuzzIAudioPolicyService
+06-15 19:57:33.968 26200 26200 I ServiceManager: Waiting for service media.audio_policy...
+06-15 19:57:34.034 26201 26201 I         : sMaxFastTracks = 8
+06-15 19:57:34.035 26201 26201 I audioserver: ServiceManager: 0xe6b19420
+06-15 19:57:34.035 26201 26201 I AudioFlinger: Using 300 mSec as standby time.
+06-15 19:57:34.036 26201 26201 I AudioPolicyService: AudioPolicyService CSTOR in new mode
+06-15 19:57:34.048 26201 26201 D audio_hw_primary: adev_open: enter
+06-15 19:57:34.065 26201 26201 I audio_hw_extn: audio_extn_set_snd_card_split: snd_card_name(msm8994-tomtom-snd-card) device(msm8994) snd_card(tomtom) form_factor(snd)
+06-15 19:57:34.066 26201 26201 D msm8974_platform: platform_add_operator_specific_device: device[voice-dmic-ef] -> operator[verizon] mixer_path[voice-dmic-ef-vzwusc] acdb_id[130]
+06-15 19:57:34.066 26201 26201 D msm8974_platform: platform_add_operator_specific_device: device[voice-dmic-ef] -> operator[uscellular] mixer_path[voice-dmic-ef-vzwusc] acdb_id[130]
+06-15 19:57:34.066 26201 26201 D msm8974_platform: platform_add_operator_specific_device: device[voice-handset] -> operator[verizon] mixer_path[voice-handset-vzwusc] acdb_id[131]
+06-15 19:57:34.066 26201 26201 D msm8974_platform: platform_add_operator_specific_device: device[voice-handset] -> operator[uscellular] mixer_path[voice-handset-vzwusc] acdb_id[131]
+06-15 19:57:34.066 26201 26201 D msm8974_platform: platform_add_operator_specific_device: device[voice-headset-mic] -> operator[verizon] mixer_path[voice-headset-mic-vzwusc] acdb_id[132]
+06-15 19:57:34.066 26201 26201 D msm8974_platform: platform_add_operator_specific_device: device[voice-headset-mic] -> operator[uscellular] mixer_path[voice-headset-mic-vzwusc] acdb_id[132]
+06-15 19:57:34.066 26201 26201 D msm8974_platform: platform_add_operator_specific_device: device[voice-headphones] -> operator[verizon] mixer_path[voice-headphones-vzwusc] acdb_id[133]
+06-15 19:57:34.066 26201 26201 D msm8974_platform: platform_add_operator_specific_device: device[voice-headphones] -> operator[uscellular] mixer_path[voice-headphones-vzwusc] acdb_id[133]
+06-15 19:57:34.066 26201 26201 I msm8974_platform: platform_init: found sound card msm8994-tomtom-snd-card, primary sound card expeted is msm8994-tomtom-snd-card
+06-15 19:57:34.066 26201 26201 D msm8974_platform: platform_init: Loading mixer file: /system/etc/mixer_paths.xml
+06-15 19:57:34.390 26201 26201 E audio_route: Control 'MultiMedia4 Mixer MI2S_TX' doesn't exist - skipping
+06-15 19:57:34.390 26201 26201 E audio_route: Control 'MultiMedia7 Mixer MI2S_TX' doesn't exist - skipping
+06-15 19:57:34.390 26201 26201 E audio_route: Control 'MultiMedia10 Mixer MI2S_TX' doesn't exist - skipping
+06-15 19:57:34.390 26201 26201 E audio_route: Control 'MultiMedia11 Mixer MI2S_TX' doesn't exist - skipping
+06-15 19:57:34.391 26201 26201 E audio_route: Control 'MultiMedia12 Mixer MI2S_TX' doesn't exist - skipping
+06-15 19:57:34.391 26201 26201 E audio_route: Control 'MultiMedia13 Mixer MI2S_TX' doesn't exist - skipping
+06-15 19:57:34.391 26201 26201 E audio_route: Control 'MultiMedia14 Mixer MI2S_TX' doesn't exist - skipping
+06-15 19:57:34.391 26201 26201 E audio_route: Control 'MultiMedia15 Mixer MI2S_TX' doesn't exist - skipping
+06-15 19:57:34.391 26201 26201 E audio_route: Control 'MultiMedia16 Mixer MI2S_TX' doesn't exist - skipping
+06-15 19:57:34.394 26201 26201 E audio_route: Control 'RX4 DSM MUX' doesn't exist - skipping
+06-15 19:57:34.394 26201 26201 E audio_route: Control 'RX6 DSM MUX' doesn't exist - skipping
+06-15 19:57:34.394 26201 26201 E audio_route: Control 'AFE_PCM_RX Port Mixer PRI_MI2S_TX' doesn't exist - skipping
+06-15 19:57:34.394 26201 26201 E audio_route: unknown enum value string QUAT_MI2S_RX for ctl AUDIO_REF_EC_UL1 MUX
+06-15 19:57:34.395 26201 26201 E audio_route: unknown enum value string SEC_AUX_PCM_RX for ctl AUDIO_REF_EC_UL1 MUX
+06-15 19:57:34.397 26201 26201 E audio_route: Control 'MultiMedia8 Mixer SEC_AUX_PCM_UL_TX' doesn't exist - skipping
+06-15 19:57:34.398 26201 26201 E audio_route: Control 'MultiMedia5 Mixer PRI_MI2S_TX' doesn't exist - skipping
+06-15 19:57:34.407 26201 26201 E audio_route: Control 'HPHR DAC Switch' doesn't exist - skipping
+06-15 19:57:34.411 26201 26201 D msm8974_platform: platform_init: Opened sound card:0
+06-15 19:57:34.413 26201 26201 E msm8974_platform: platform_init: Could not find the symbol acdb_get_default_app_type from libacdbloader.so
+06-15 19:57:34.417 26201 26201 E MCS-RT-CTL: Can't open the configuration file /system/etc/aanc_tuning_mixer.txt.
+06-15 19:57:34.417 26201 26201 E ACDB-MCS: acdb_mcs_init: MCS routing control initialization failed.
+06-15 19:57:34.427 26201 26201 D audio_hw_spkr_prot: audio_extn_spkr_prot_init: Initialize speaker protection module
+06-15 19:57:34.428 26201 26201 I Thermal-Lib: Thermal-Lib-Client: Registraion successful for spkr with handle:1
+06-15 19:57:34.428 26201 26201 D audio_hw_spkr_prot: audio_extn_spkr_prot_init: spkr_prot thermal_client_register_callback success
+06-15 19:57:34.428 26201 26201 D audio_hw_spkr_prot: audio_extn_spkr_prot_init: Create calibration thread
+06-15 19:57:34.428 26201 26201 D hardware_cal: hw_util_open: Opening device /dev/snd/hwC0D1000
+06-15 19:57:34.428 26201 26201 D hardware_cal: hw_util_open: success
+06-15 19:57:34.428 26201 26201 D hardware_cal: send_codec_cal cal sent for anc_cal
+06-15 19:57:34.428 26201 26201 E ACDB-LOADER: ACDB -> send_codec_cal
+06-15 19:57:34.428 26201 26201 E ACDB-LOADER: ACDB -> ACDB_CMD_GET_CODEC_CAL_DATA
+06-15 19:57:34.428 26201 26201 D hardware_cal: send_codec_cal cal sent for mad_cal
+06-15 19:57:34.428 26201 26209 D audio_hw_spkr_prot: spkr_prot_thread enable prot Entry
+06-15 19:57:34.428 26201 26201 D hardware_cal: send_codec_cal cal sent for mbhc_cal
+06-15 19:57:34.428 26201 26209 D audio_hw_spkr_prot: set_spkr_prot_cal: quick calibration disabled
+06-15 19:57:34.428 26201 26201 E ext_speaker: open_speaker_bundle: DLOPEN failed for /system/lib/soundfx/libspeakerbundle.so
+06-15 19:57:34.428   541   631 I ThermalEngine: Thermal-Server: Adding thermal event listener on fd 52
+06-15 19:57:34.429 26201 26208 I Thermal-Lib: Thermal-Lib-Client: Client received msg camera 0
+06-15 19:57:34.429 26201 26208 E Thermal-Lib: Thermal-Lib-Client: No Callback registered for camera
+06-15 19:57:34.429 26201 26208 I Thermal-Lib: Thermal-Lib-Client: Client received msg camcorder 0
+06-15 19:57:34.429 26201 26208 E Thermal-Lib: Thermal-Lib-Client: No Callback registered for camcorder
+06-15 19:57:34.429 26201 26209 D audio_hw_spkr_prot: spkr_calibration_thread: wait for callback from thermal daemon
+06-15 19:57:34.429   541   631 I ThermalEngine: Thermal-Server: Thermal received msg from  spkr
+06-15 19:57:34.429   541   631 E ThermalEngine: Thermal-Server: No clients are connected for spkr
+06-15 19:57:34.429 26201 26210 I Thermal-Lib: Thermal-Lib-Client: Client request sent
+06-15 19:57:34.431 26201 26201 E msm8974_platform: platform_get_default_app_type_v2: Not implemented
+06-15 19:57:34.431 26201 26201 D audio_hw_extn: audio_extn_perf_lock_init: Perf lock handles Success
+06-15 19:57:34.431 26201 26201 D audio_hw_primary: adev_open: exit
+06-15 19:57:34.431 26201 26201 I AudioFlinger: loadHwModule() Loaded primary audio interface from QCOM Audio HAL (audio) handle 10
+06-15 19:57:34.431 26201 26201 I AudioFlinger: openOutput(), module 10 Device 2, SamplingRate 48000, Format 0x000001, Channels 3, flags 6
+06-15 19:57:34.431 26201 26201 I AudioFlinger: HAL output buffer size 192 frames, normal sink buffer size 960 frames
+06-15 19:57:34.435 26201 26201 D volume_listener: init_once Called
+06-15 19:57:34.436 26201 26201 D msm8974_platform: platform_get_gain_level_mapping: empty or currupted gain_mapping_table
+06-15 19:57:34.436 26201 26201 D volume_listener: init_once: using default volume table
+06-15 19:57:34.436 26201 26201 I BufferProvider: found effect "Downmixer" from Fraunhofer IIS
+06-15 19:57:34.436 26201 26201 I AudioFlinger: Using module 10 has the primary audio interface
+06-15 19:57:34.437 26201 26212 I AudioFlinger: AudioFlinger's thread 0xe5d83400 ready to run
+06-15 19:57:34.439 26201 26212 D audio_hw_primary: out_set_parameters: enter: usecase(1: low-latency-playback) kvpairs: routing=2
+06-15 19:57:34.439 26201 26212 W AudioFlinger: no wake lock to update, system not ready yet
+06-15 19:57:34.447 26201 26201 I AudioFlinger: openOutput(), module 10 Device 2, SamplingRate 48000, Format 0x000001, Channels 3, flags 104
+06-15 19:57:34.447 26201 26201 I AudioFlinger: HAL output buffer size 192 frames, normal sink buffer size 960 frames
+06-15 19:57:34.448 26201 26214 I AudioFlinger: AudioFlinger's thread 0xe5a03b00 ready to run
+06-15 19:57:34.448 26201 26214 D audio_hw_primary: out_set_parameters: enter: usecase(5: audio-ull-playback) kvpairs: routing=2
+06-15 19:57:34.449 26201 26214 W AudioFlinger: no wake lock to update, system not ready yet
+06-15 19:57:34.450 26201 26201 I AudioFlinger: openOutput(), module 10 Device 2, SamplingRate 48000, Format 0x000001, Channels 3, flags 8
+06-15 19:57:34.450 26201 26201 I AudioFlinger: HAL output buffer size 1920 frames, normal sink buffer size 1920 frames
+06-15 19:57:34.451 26201 26215 I AudioFlinger: AudioFlinger's thread 0xe5703840 ready to run
+06-15 19:57:34.451 26201 26215 D audio_hw_primary: out_set_parameters: enter: usecase(0: deep-buffer-playback) kvpairs: routing=2
+06-15 19:57:34.452 26201 26215 W AudioFlinger: no wake lock to update, system not ready yet
+06-15 19:57:34.456 26201 26201 I AudioFlinger: openOutput(), module 10 Device 10000, SamplingRate 48000, Format 0x000001, Channels 3, flags 0
+06-15 19:57:34.456 26201 26201 I AudioFlinger: HAL output buffer size 768 frames, normal sink buffer size 1152 frames
+06-15 19:57:34.457 26201 26217 I AudioFlinger: AudioFlinger's thread 0xe5583680 ready to run
+06-15 19:57:34.457 26201 26217 D audio_hw_primary: out_set_parameters: enter: usecase(22: afe-proxy-playback) kvpairs: routing=65536
+06-15 19:57:34.458 26201 26217 W AudioFlinger: no wake lock to update, system not ready yet
+06-15 19:57:34.459 26201 26218 I AudioFlinger: AudioFlinger's thread 0xe5283e80 ready to run
+06-15 19:57:34.461 26201 26219 I AudioFlinger: AudioFlinger's thread 0xe5203280 ready to run
+06-15 19:57:34.461 26201 26220 I AudioFlinger: AudioFlinger's thread 0xe5083cc0 ready to run
+06-15 19:57:34.462 26201 26201 I bt_a2dp_hw: adev_open:  adev_open in A2dp_hw module
+06-15 19:57:34.462 26201 26201 I AudioFlinger: loadHwModule() Loaded a2dp audio interface from A2DP Audio HW HAL (audio) handle 18
+06-15 19:57:34.463 26201 26201 I AudioFlinger: loadHwModule() Loaded usb audio interface from USB audio HW HAL (audio) handle 26
+06-15 19:57:34.464 26201 26201 I r_submix: adev_open(name=audio_hw_if)
+06-15 19:57:34.464 26201 26201 I r_submix: adev_init_check()
+06-15 19:57:34.464 26201 26201 I AudioFlinger: loadHwModule() Loaded r_submix audio interface from Wifi Display audio HAL (audio) handle 34
+06-15 19:57:34.464 26201 26201 D r_submix: adev_open_input_stream(addr=0)
+06-15 19:57:34.464 26201 26201 D r_submix: submix_audio_device_create_pipe_l(addr=0, idx=9)
+06-15 19:57:34.464 26201 26201 D r_submix:   now using address 0 for route 9
+06-15 19:57:34.464 26201 26221 I AudioFlinger: AudioFlinger's thread 0xe5183a80 ready to run
+06-15 19:57:34.465 26201 26201 D r_submix: adev_close_input_stream()
+06-15 19:57:34.465 26201 26201 D r_submix: submix_audio_device_release_pipe_l(idx=9) addr=0
+06-15 19:57:34.465 26201 26201 D r_submix: submix_audio_device_destroy_pipe_l(): pipe destroyed
+06-15 19:57:34.466 26201 26201 I RadioService: RadioService
+06-15 19:57:34.466 26201 26201 I RadioService: onFirstRef
+06-15 19:57:34.466 26201 26201 E RadioService: couldn't load radio module radio.primary (No such file or directory)
+06-15 19:57:34.468 26201 26201 D sound_trigger_hw: stdev_open: Enter
+06-15 19:57:34.468 26201 26201 I sound_trigger_platform: platform_stdev_init: Enter
+06-15 19:57:34.892 26201 26201 I sound_trigger_platform: platform_stdev_init: acdb_init: msm8994-tomtom-snd-card
+06-15 19:57:34.892 26201 26201 D sound_trigger_platform: platform_stdev_init Opening device /dev/snd/hwC0D1000
+06-15 19:57:34.893 26201 26201 W sound_trigger_platform: platform_stdev_init: dlopen failed for libsmwrapper.so
+06-15 19:57:34.894 26201 26201 I sound_trigger_hw: stdev_get_properties
+06-15 19:57:34.894 26201 26201 I SoundTriggerHwService: loaded default module Sound Trigger HAL, handle 1
+06-15 19:57:34.897 26201 26214 W AudioFlinger: no wake lock to update, system not ready yet
+06-15 19:57:34.898 26201 26215 W AudioFlinger: no wake lock to update, system not ready yet
+06-15 19:57:34.898 26201 26212 W AudioFlinger: no wake lock to update, system not ready yet
+06-15 19:57:34.898 26201 26217 W AudioFlinger: no wake lock to update, system not ready yet
+06-15 19:57:34.899   934  2948 W AudioTrack: dead IAudioTrack, PCM, creating a new one from start()
+06-15 19:57:34.956  3795  4155 W GCoreFlp: No location to return for getLastLocation()
+06-15 19:57:34.956  3795  4156 W FusedLocationProvider: location=null
+06-15 19:57:34.969 26200 26200 D         : InterfaceDescriptor is a
+06-15 19:57:34.970 26201 26227 D PermissionCache: checking android.permission.MODIFY_AUDIO_SETTINGS for uid=10197 => granted (562 us)
+06-15 19:57:35.129 26201 26212 W AudioFlinger: no wake lock to update, system not ready yet
+06-15 19:57:35.129   934  2948 E AudioService: Audioserver started.
+06-15 19:57:35.130 26201 26227 F libc    : Fatal signal 11 (SIGSEGV), code 1, fault addr 0x0 in tid 26227 (Binder:26201_3)
+06-15 19:57:35.130 26201 26228 D PermissionCache: checking android.permission.MODIFY_AUDIO_SETTINGS for uid=1000 => granted (318 us)
+06-15 19:57:35.130   379   379 W         : debuggerd: handling request: pid=26201 uid=1041 gid=1005 tid=26227
+06-15 19:57:35.131 26201 26212 D audio_hw_primary: select_devices: changing use case low-latency-playback output device from(0: none, acdb -1) to (2: speaker, acdb 14)
+06-15 19:57:35.191 26230 26230 F DEBUG   : *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
+06-15 19:57:35.191 26230 26230 F DEBUG   : Build fingerprint: 'google/bullhead/bullhead:7.1.2/N2G48C/4104010:userdebug/dev-keys'
+06-15 19:57:35.191 26230 26230 F DEBUG   : Revision: 'rev_1.0'
+06-15 19:57:35.191 26230 26230 F DEBUG   : ABI: 'arm'
+06-15 19:57:35.191 26230 26230 F DEBUG   : pid: 26201, tid: 26227, name: Binder:26201_3  >>> /system/bin/audioserver <<<
+06-15 19:57:35.191 26230 26230 F DEBUG   : signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0x0
+06-15 19:57:35.191 26230 26230 F DEBUG   :     r0 00000000  r1 00000000  r2 0000005f  r3 00000000
+06-15 19:57:35.191 26230 26230 F DEBUG   :     r4 ffffffff  r5 00000000  r6 e49bb000  r7 00000001
+06-15 19:57:35.191 26230 26230 F DEBUG   :     r8 00000004  r9 e6b53114  sl e6b13900  fp 00000000
+06-15 19:57:35.191 26230 26230 F DEBUG   :     ip e746bd88  sp e4c009c8  lr e7433bc5  pc e73fcaf4  cpsr 60000030
+06-15 19:57:35.195 26230 26230 F DEBUG   :
+06-15 19:57:35.195 26230 26230 F DEBUG   : backtrace:
+06-15 19:57:35.195 26230 26230 F DEBUG   :     #00 pc 00018af4  /system/lib/libc.so (strlen+71)
+06-15 19:57:35.195 26230 26230 F DEBUG   :     #01 pc 0004fbc1  /system/lib/libc.so (__strlen_chk+4)
+06-15 19:57:35.195 26230 26230 F DEBUG   :     #02 pc 0000c599  /system/lib/libutils.so (_ZN7android7String8C2EPKc+12)
+06-15 19:57:35.195 26230 26230 F DEBUG   :     #03 pc 0002fdbf  /system/lib/libaudiopolicymanagerdefault.so (_ZNK7android18HwModuleCollection19getDeviceDescriptorEjPKcS2_b+458)
+06-15 19:57:35.196 26230 26230 F DEBUG   :     #04 pc 0001de47  /system/lib/libaudiopolicymanagerdefault.so (_ZN7android18AudioPolicyManager27setDeviceConnectionStateIntEj24audio_policy_dev_state_tPKcS3_+178)
+06-15 19:57:35.196 26230 26230 F DEBUG   :     #05 pc 0000a009  /system/lib/libaudiopolicyservice.so
+06-15 19:57:35.196 26230 26230 F DEBUG   :     #06 pc 000a01a5  /system/lib/libmedia.so (_ZN7android20BnAudioPolicyService10onTransactEjRKNS_6ParcelEPS1_j+1256)
+06-15 19:57:35.196 26230 26230 F DEBUG   :     #07 pc 000359c3  /system/lib/libbinder.so (_ZN7android7BBinder8transactEjRKNS_6ParcelEPS1_j+70)
+06-15 19:57:35.196 26230 26230 F DEBUG   :     #08 pc 0003d1bb  /system/lib/libbinder.so (_ZN7android14IPCThreadState14executeCommandEi+702)
+06-15 19:57:35.196 26230 26230 F DEBUG   :     #09 pc 0003ce07  /system/lib/libbinder.so (_ZN7android14IPCThreadState20getAndExecuteCommandEv+114)
+06-15 19:57:35.196 26230 26230 F DEBUG   :     #10 pc 0003d31b  /system/lib/libbinder.so (_ZN7android14IPCThreadState14joinThreadPoolEb+46)
+06-15 19:57:35.196 26230 26230 F DEBUG   :     #11 pc 0004f8c5  /system/lib/libbinder.so
+06-15 19:57:35.196 26230 26230 F DEBUG   :     #12 pc 0000e345  /system/lib/libutils.so (_ZN7android6Thread11_threadLoopEPv+140)
+06-15 19:57:35.196 26230 26230 F DEBUG   :     #13 pc 000470b3  /system/lib/libc.so (_ZL15__pthread_startPv+22)
+06-15 19:57:35.196 26230 26230 F DEBUG   :     #14 pc 00019e3d  /system/lib/libc.so (__start_thread+6)
+06-15 19:57:35.346   934  2991 W NativeCrashListener: Couldn't find ProcessRecord for pid 26201
+06-15 19:57:35.346 26230 26230 E         : AM data write failed: Broken pipe
+06-15 19:57:35.352   541   631 I ThermalEngine: Thermal-Server: removing client on fd 52
+06-15 19:57:35.354   379   379 W         : debuggerd: resuming target 26201
+06-15 19:57:35.355   414   414 I ServiceManager: service 'media.sound_trigger_hw' died
+06-15 19:57:35.355   414   414 I ServiceManager: service 'media.radio' died
+06-15 19:57:35.355   934   952 I BootReceiver: Copying /data/tombstones/tombstone_02 to DropBox (SYSTEM_TOMBSTONE)
+06-15 19:57:35.355   414   414 I ServiceManager: service 'media.audio_flinger' died
+06-15 19:57:35.355   414   414 I ServiceManager: service 'media.audio_policy' died
+06-15 19:57:35.355   934  3904 W AudioSystem: AudioFlinger server died!
+06-15 19:57:35.355   934  2994 W AudioSystem: AudioPolicyService server died!
+06-15 19:57:35.355   934  3904 W AudioSystem: AudioFlinger server died!
+06-15 19:57:35.356   934   934 I ServiceManager: Waiting for service media.audio_policy...
+06-15 19:57:35.356   934  2948 E AudioService: Audioserver died.
+06-15 19:57:35.363 26022 26022 I Choreographer: Skipped 89 frames!  The application may be doing too much work on its main thread.
+06-15 19:57:35.366 26022 26022 D path=   : /data/user/0/org.c0reteam.audiotest/files/poc
+06-15 19:57:35.366 26022 26022 D cmd=    : chmod 755 /data/user/0/org.c0reteam.audiotest/files/poc
+06-15 19:57:35.373   934 28743 W AudioTrack: dead IAudioTrack, PCM, creating a new one from processAudioBuffer()
+06-15 19:57:35.383 26022 26022 D exec return :
+06-15 19:57:35.383 26022 26022 D cmd=    : /data/user/0/org.c0reteam.audiotest/files/poc
+06-15 19:57:35.384   934 31329 W AudioTrack: dead IAudioTrack, PCM, creating a new one from processAudioBuffer()
+06-15 19:57:35.473 26239 26239 I         : fuzzIAudioPolicyService
+06-15 19:57:35.473 26239 26239 I ServiceManager: Waiting for service media.audio_policy...
+06-15 19:57:35.857   934  2948 E AudioService: Audioserver died.
+06-15 19:57:36.356   934   934 I ServiceManager: Waiting for service media.audio_policy...
+06-15 19:57:36.356   934  2948 I ServiceManager: Waiting for service media.audio_flinger...
+06-15 19:57:36.474 26239 26239 I ServiceManager: Waiting for service media.audio_policy...
+06-15 19:57:36.623  5847  5976 W Finsky  : [299] com.google.android.finsky.application.FinskyAppImpl.V(1772): No account configured on this device.
+06-15 19:57:36.625  5847  5976 I Finsky  : [299] com.google.android.finsky.d.e.run(1151): Replicating app states via AMAS.
+06-15 19:57:36.626  5847  5976 W Finsky  : [299] com.google.android.finsky.application.FinskyAppImpl.V(1772): No account configured on this device.
+06-15 19:57:36.725  5847  5976 I Finsky  : [299] com.google.android.finsky.d.c.a(313): Completed 0 account content syncs with 0 successful.
+06-15 19:57:36.726  5847  5847 I Finsky  : [1] com.google.android.finsky.services.j.a(148): Installation state replication succeeded.
+06-15 19:57:37.357   934   934 I ServiceManager: Waiting for service media.audio_policy...
+06-15 19:57:37.357   934  2948 I ServiceManager: Waiting for service media.audio_flinger...
+06-15 19:57:37.474 26239 26239 I ServiceManager: Waiting for service media.audio_policy...
+06-15 19:57:38.357   934  2948 I ServiceManager: Waiting for service media.audio_flinger...
+06-15 19:57:38.358   934   934 I ServiceManager: Waiting for service media.audio_policy...
+06-15 19:57:38.475 26239 26239 I ServiceManager: Waiting for service media.audio_policy...
+06-15 19:57:39.358   934   934 W AudioSystem: AudioPolicyService not published, waiting...
+06-15 19:57:39.359   934  2948 I ServiceManager: Waiting for service media.audio_flinger...
+06-15 19:57:39.475 26239 26239 I         : mediaAudioPolicyService == NULL
+06-15 19:57:39.482   934  2906 I InputDispatcher: Window 'Window{4b32796 u0 org.c0reteam.audiotest/org.c0reteam.audiotest.AudioTest}' spent 4115.0ms processing the last input event: MotionEvent(deviceId=7, source=0x00001002, action=0, actionButton=0x00000000, flags=0x00000000, metaState=0x00000000, buttonState=0x00000000, edgeFlags=0x00000000, xPrecision=1.0, yPrecision=1.0, displayId=0, pointers=[0: (972.0, 1648.0)]), policyFlags=0x62000000
+06-15 19:57:39.484   934  2906 I InputDispatcher: Window 'Window{4b32796 u0 org.c0reteam.audiotest/org.c0reteam.audiotest.AudioTest}' spent 4116.7ms processing the last input event: MotionEvent(deviceId=7, source=0x00001002, action=1, actionButton=0x00000000, flags=0x00000000, metaState=0x00000000, buttonState=0x00000000, edgeFlags=0x00000000, xPrecision=1.0, yPrecision=1.0, displayId=0, pointers=[0: (972.0, 1648.0)]), policyFlags=0x62000000
+06-15 19:57:39.485   934  2906 I InputDispatcher: Window 'Window{4b32796 u0 org.c0reteam.audiotest/org.c0reteam.audiotest.AudioTest}' spent 4117.8ms processing the last input event: MotionEvent(deviceId=7, source=0x00001002, action=0, actionButton=0x00000000, flags=0x00000000, metaState=0x00000000, buttonState=0x00000000, edgeFlags=0x00000000, xPrecision=1.0, yPrecision=1.0, displayId=0, pointers=[0: (973.0, 1644.0)]), policyFlags=0x62000000
+06-15 19:57:39.485   934  2906 I InputDispatcher: Window 'Window{4b32796 u0 org.c0reteam.audiotest/org.c0reteam.audiotest.AudioTest}' spent 4118.2ms processing the last input event: MotionEvent(deviceId=7, source=0x00001002, action=1, actionButton=0x00000000, flags=0x00000000, metaState=0x00000000, buttonState=0x00000000, edgeFlags=0x00000000, xPrecision=1.0, yPrecision=1.0, displayId=0, pointers=[0: (973.0, 1644.0)]), policyFlags=0x62000000
+06-15 19:57:39.486   934  2906 I InputDispatcher: Window 'Window{4b32796 u0 org.c0reteam.audiotest/org.c0reteam.audiotest.AudioTest}' spent 4118.8ms processing the last input event: MotionEvent(deviceId=7, source=0x00001002, action=0, actionButton=0x00000000, flags=0x00000000, metaState=0x00000000, buttonState=0x00000000, edgeFlags=0x00000000, xPrecision=1.0, yPrecision=1.0, displayId=0, pointers=[0: (972.0, 1654.0)]), policyFlags=0x62000000
+06-15 19:57:39.486   934  2906 I InputDispatcher: Window 'Window{4b32796 u0 org.c0reteam.audiotest/org.c0reteam.audiotest.AudioTest}' spent 4119.0ms processing the last input event: MotionEvent(deviceId=7, source=0x00001002, action=1, actionButton=0x00000000, flags=0x00000000, metaState=0x00000000, buttonState=0x00000000, edgeFlags=0x00000000, xPrecision=1.0, yPrecision=1.0, displayId=0, pointers=[0: (972.0, 1654.0)]), policyFlags=0x62000000
+06-15 19:57:39.487   934  2906 I InputDispatcher: Window 'Window{4b32796 u0 org.c0reteam.audiotest/org.c0reteam.audiotest.AudioTest}' spent 4119.6ms processing the last input event: MotionEvent(deviceId=7, source=0x00001002, action=0, actionButton=0x00000000, flags=0x00000000, metaState=0x00000000, buttonState=0x00000000, edgeFlags=0x00000000, xPrecision=1.0, yPrecision=1.0, displayId=0, pointers=[0: (962.0, 1641.0)]), policyFlags=0x62000000
+06-15 19:57:39.487   934  2906 I InputDispatcher: Window 'Window{4b32796 u0 org.c0reteam.audiotest/org.c0reteam.audiotest.AudioTest}' spent 4073.6ms processing the last input event: MotionEvent(deviceId=7, source=0x00001002, action=1, actionButton=0x00000000, flags=0x00000000, metaState=0x00000000, buttonState=0x00000000, edgeFlags=0x00000000, xPrecision=1.0, yPrecision=1.0, displayId=0, pointers=[0: (962.0, 1641.0)]), policyFlags=0x62000000
+06-15 19:57:39.488   934  2906 I InputDispatcher: Window 'Window{4b32796 u0 org.c0reteam.audiotest/org.c0reteam.audiotest.AudioTest}' spent 3973.8ms processing the last input event: MotionEvent(deviceId=7, source=0x00001002, action=0, actionButton=0x00000000, flags=0x00000000, metaState=0x00000000, buttonState=0x00000000, edgeFlags=0x00000000, xPrecision=1.0, yPrecision=1.0, displayId=0, pointers=[0: (974.0, 1648.0)]), policyFlags=0x62000000
+06-15 19:57:39.488   934  2906 I InputDispatcher: Window 'Window{4b32796 u0 org.c0reteam.audiotest/org.c0reteam.audiotest.AudioTest}' spent 3866.9ms processing the last input event: MotionEvent(deviceId=7, source=0x00001002, action=1, actionButton=0x00000000, flags=0x00000000, metaState=0x00000000, buttonState=0x00000000, edgeFlags=0x00000000, xPrecision=1.0, yPrecision=1.0, displayId=0, pointers=[0: (974.0, 1648.0)]), policyFlags=0x62000000
+06-15 19:57:39.489   934  2906 I InputDispatcher: Window 'Window{4b32796 u0 org.c0reteam.audiotest/org.c0reteam.audiotest.AudioTest}' spent 3742.5ms processing the last input event: MotionEvent(deviceId=7, source=0x00001002, action=0, actionButton=0x00000000, flags=0x00000000, metaState=0x00000000, buttonState=0x00000000, edgeFlags=0x00000000, xPrecision=1.0, yPrecision=1.0, displayId=0, pointers=[0: (978.0, 1635.0)]), policyFlags=0x62000000
+06-15 19:57:39.489   934  2906 I InputDispatcher: Window 'Window{4b32796 u0 org.c0reteam.audiotest/org.c0reteam.audiotest.AudioTest}' spent 3660.4ms processing the last input event: MotionEvent(deviceId=7, source=0x00001002, action=1, actionButton=0x00000000, flags=0x00000000, metaState=0x00000000, buttonState=0x00000000, edgeFlags=0x00000000, xPrecision=1.0, yPrecision=1.0, displayId=0, pointers=[0: (978.0, 1635.0)]), policyFlags=0x62000000
+06-15 19:57:39.491 26022 26022 D path=   : /data/user/0/org.c0reteam.audiotest/files/poc
+06-15 19:57:39.491 26022 26022 D cmd=    : chmod 755 /data/user/0/org.c0reteam.audiotest/files/poc
+06-15 19:57:39.510 26246 26246 I         : sMaxFastTracks = 8
+06-15 19:57:39.511 26246 26246 I audioserver: ServiceManager: 0xed919420
+06-15 19:57:39.513 26246 26246 I AudioFlinger: Using 300 mSec as standby time.
+06-15 19:57:39.514 26246 26246 I AudioPolicyService: AudioPolicyService CSTOR in new mode
+06-15 19:57:39.514 26022 26022 D exec return :
+06-15 19:57:39.514 26022 26022 D cmd=    : /data/user/0/org.c0reteam.audiotest/files/poc
+06-15 19:57:39.522 26246 26246 D audio_hw_primary: adev_open: enter
+06-15 19:57:39.541 26246 26246 I audio_hw_extn: audio_extn_set_snd_card_split: snd_card_name(msm8994-tomtom-snd-card) device(msm8994) snd_card(tomtom) form_factor(snd)
+06-15 19:57:39.541 26246 26246 D msm8974_platform: platform_add_operator_specific_device: device[voice-dmic-ef] -> operator[verizon] mixer_path[voice-dmic-ef-vzwusc] acdb_id[130]
+06-15 19:57:39.542 26246 26246 D msm8974_platform: platform_add_operator_specific_device: device[voice-dmic-ef] -> operator[uscellular] mixer_path[voice-dmic-ef-vzwusc] acdb_id[130]
+06-15 19:57:39.542 26246 26246 D msm8974_platform: platform_add_operator_specific_device: device[voice-handset] -> operator[verizon] mixer_path[voice-handset-vzwusc] acdb_id[131]
+06-15 19:57:39.542 26246 26246 D msm8974_platform: platform_add_operator_specific_device: device[voice-handset] -> operator[uscellular] mixer_path[voice-handset-vzwusc] acdb_id[131]
+06-15 19:57:39.542 26246 26246 D msm8974_platform: platform_add_operator_specific_device: device[voice-headset-mic] -> operator[verizon] mixer_path[voice-headset-mic-vzwusc] acdb_id[132]
+06-15 19:57:39.542 26246 26246 D msm8974_platform: platform_add_operator_specific_device: device[voice-headset-mic] -> operator[uscellular] mixer_path[voice-headset-mic-vzwusc] acdb_id[132]
+06-15 19:57:39.542 26246 26246 D msm8974_platform: platform_add_operator_specific_device: device[voice-headphones] -> operator[verizon] mixer_path[voice-headphones-vzwusc] acdb_id[133]
+06-15 19:57:39.542 26246 26246 D msm8974_platform: platform_add_operator_specific_device: device[voice-headphones] -> operator[uscellular] mixer_path[voice-headphones-vzwusc] acdb_id[133]
+06-15 19:57:39.542 26246 26246 I msm8974_platform: platform_init: found sound card msm8994-tomtom-snd-card, primary sound card expeted is msm8994-tomtom-snd-card
+06-15 19:57:39.542 26246 26246 D msm8974_platform: platform_init: Loading mixer file: /system/etc/mixer_paths.xml
+06-15 19:57:39.579 26255 26255 I         : fuzzIAudioPolicyService
+06-15 19:57:39.579 26255 26255 I ServiceManager: Waiting for service media.audio_policy...
+06-15 19:57:39.600 26246 26246 E audio_route: Control 'MultiMedia4 Mixer MI2S_TX' doesn't exist - skipping
+06-15 19:57:39.600 26246 26246 E audio_route: Control 'MultiMedia7 Mixer MI2S_TX' doesn't exist - skipping
+06-15 19:57:39.600 26246 26246 E audio_route: Control 'MultiMedia10 Mixer MI2S_TX' doesn't exist - skipping
+06-15 19:57:39.601 26246 26246 E audio_route: Control 'MultiMedia11 Mixer MI2S_TX' doesn't exist - skipping
+06-15 19:57:39.601 26246 26246 E audio_route: Control 'MultiMedia12 Mixer MI2S_TX' doesn't exist - skipping
+06-15 19:57:39.601 26246 26246 E audio_route: Control 'MultiMedia13 Mixer MI2S_TX' doesn't exist - skipping
+06-15 19:57:39.601 26246 26246 E audio_route: Control 'MultiMedia14 Mixer MI2S_TX' doesn't exist - skipping
+06-15 19:57:39.601 26246 26246 E audio_route: Control 'MultiMedia15 Mixer MI2S_TX' doesn't exist - skipping
+06-15 19:57:39.601 26246 26246 E audio_route: Control 'MultiMedia16 Mixer MI2S_TX' doesn't exist - skipping
+06-15 19:57:39.603 26246 26246 E audio_route: Control 'RX4 DSM MUX' doesn't exist - skipping
+06-15 19:57:39.603 26246 26246 E audio_route: Control 'RX6 DSM MUX' doesn't exist - skipping
+06-15 19:57:39.603 26246 26246 E audio_route: Control 'AFE_PCM_RX Port Mixer PRI_MI2S_TX' doesn't exist - skipping
+06-15 19:57:39.603 26246 26246 E audio_route: unknown enum value string QUAT_MI2S_RX for ctl AUDIO_REF_EC_UL1 MUX
+06-15 19:57:39.603 26246 26246 E audio_route: unknown enum value string SEC_AUX_PCM_RX for ctl AUDIO_REF_EC_UL1 MUX
+06-15 19:57:39.605 26246 26246 E audio_route: Control 'MultiMedia8 Mixer SEC_AUX_PCM_UL_TX' doesn't exist - skipping
+06-15 19:57:39.606 26246 26246 E audio_route: Control 'MultiMedia5 Mixer PRI_MI2S_TX' doesn't exist - skipping
+06-15 19:57:39.612 26246 26246 E audio_route: Control 'HPHR DAC Switch' doesn't exist - skipping
+06-15 19:57:39.615 26246 26246 D msm8974_platform: platform_init: Opened sound card:0
+06-15 19:57:39.618 26246 26246 E msm8974_platform: platform_init: Could not find the symbol acdb_get_default_app_type from libacdbloader.so
+06-15 19:57:39.625 26246 26246 E MCS-RT-CTL: Can't open the configuration file /system/etc/aanc_tuning_mixer.txt.
+06-15 19:57:39.625 26246 26246 E ACDB-MCS: acdb_mcs_init: MCS routing control initialization failed.
+06-15 19:57:39.631 26246 26246 D audio_hw_spkr_prot: audio_extn_spkr_prot_init: Initialize speaker protection module
+06-15 19:57:39.632 26246 26246 I Thermal-Lib: Thermal-Lib-Client: Registraion successful for spkr with handle:1
+06-15 19:57:39.632 26246 26246 D audio_hw_spkr_prot: audio_extn_spkr_prot_init: spkr_prot thermal_client_register_callback success
+06-15 19:57:39.632 26246 26246 D audio_hw_spkr_prot: audio_extn_spkr_prot_init: Create calibration thread
+06-15 19:57:39.632 26246 26246 D hardware_cal: hw_util_open: Opening device /dev/snd/hwC0D1000
+06-15 19:57:39.632 26246 26246 D hardware_cal: hw_util_open: success
+06-15 19:57:39.632 26246 26246 D hardware_cal: send_codec_cal cal sent for anc_cal
+06-15 19:57:39.632   541   631 I ThermalEngine: Thermal-Server: Adding thermal event listener on fd 52
+06-15 19:57:39.632 26246 26246 E ACDB-LOADER: ACDB -> send_codec_cal
+06-15 19:57:39.632 26246 26246 E ACDB-LOADER: ACDB -> ACDB_CMD_GET_CODEC_CAL_DATA
+06-15 19:57:39.632 26246 26246 D hardware_cal: send_codec_cal cal sent for mad_cal
+06-15 19:57:39.632 26246 26246 D hardware_cal: send_codec_cal cal sent for mbhc_cal
+06-15 19:57:39.632 26246 26258 D audio_hw_spkr_prot: spkr_prot_thread enable prot Entry
+06-15 19:57:39.632 26246 26258 D audio_hw_spkr_prot: set_spkr_prot_cal: quick calibration disabled
+06-15 19:57:39.633 26246 26246 E ext_speaker: open_speaker_bundle: DLOPEN failed for /system/lib/soundfx/libspeakerbundle.so
+06-15 19:57:39.633 26246 26257 I Thermal-Lib: Thermal-Lib-Client: Client received msg camera 0
+06-15 19:57:39.633 26246 26257 E Thermal-Lib: Thermal-Lib-Client: No Callback registered for camera
+06-15 19:57:39.633 26246 26257 I Thermal-Lib: Thermal-Lib-Client: Client received msg camcorder 0
+06-15 19:57:39.633 26246 26257 E Thermal-Lib: Thermal-Lib-Client: No Callback registered for camcorder
+06-15 19:57:39.633 26246 26258 D audio_hw_spkr_prot: spkr_calibration_thread: wait for callback from thermal daemon
+06-15 19:57:39.634   541   631 I ThermalEngine: Thermal-Server: Thermal received msg from  spkr
+06-15 19:57:39.634   541   631 E ThermalEngine: Thermal-Server: No clients are connected for spkr
+06-15 19:57:39.634 26246 26259 I Thermal-Lib: Thermal-Lib-Client: Client request sent
+06-15 19:57:39.636 26246 26246 E msm8974_platform: platform_get_default_app_type_v2: Not implemented
+06-15 19:57:39.636 26246 26246 D audio_hw_extn: audio_extn_perf_lock_init: Perf lock handles Success
+06-15 19:57:39.636 26246 26246 D audio_hw_primary: adev_open: exit
+06-15 19:57:39.636 26246 26246 I AudioFlinger: loadHwModule() Loaded primary audio interface from QCOM Audio HAL (audio) handle 10
+06-15 19:57:39.636 26246 26246 I AudioFlinger: openOutput(), module 10 Device 2, SamplingRate 48000, Format 0x000001, Channels 3, flags 6
+06-15 19:57:39.637 26246 26246 I AudioFlinger: HAL output buffer size 192 frames, normal sink buffer size 960 frames
+06-15 19:57:39.640 26246 26246 D volume_listener: init_once Called
+06-15 19:57:39.640 26246 26246 D msm8974_platform: platform_get_gain_level_mapping: empty or currupted gain_mapping_table
+06-15 19:57:39.640 26246 26246 D volume_listener: init_once: using default volume table
+06-15 19:57:39.640 26246 26246 I BufferProvider: found effect "Downmixer" from Fraunhofer IIS
+06-15 19:57:39.641 26246 26246 I AudioFlinger: Using module 10 has the primary audio interface
+06-15 19:57:39.641 26246 26261 I AudioFlinger: AudioFlinger's thread 0xecb83800 ready to run
+06-15 19:57:39.642 26246 26261 D audio_hw_primary: out_set_parameters: enter: usecase(1: low-latency-playback) kvpairs: routing=2
+06-15 19:57:39.642 26246 26261 W AudioFlinger: no wake lock to update, system not ready yet
+06-15 19:57:39.643 26246 26246 I AudioFlinger: openOutput(), module 10 Device 2, SamplingRate 48000, Format 0x000001, Channels 3, flags 104
+06-15 19:57:39.643 26246 26246 I AudioFlinger: HAL output buffer size 192 frames, normal sink buffer size 960 frames
+06-15 19:57:39.644 26246 26263 I AudioFlinger: AudioFlinger's thread 0xec803600 ready to run
+06-15 19:57:39.644 26246 26263 D audio_hw_primary: out_set_parameters: enter: usecase(5: audio-ull-playback) kvpairs: routing=2
+06-15 19:57:39.644 26246 26263 W AudioFlinger: no wake lock to update, system not ready yet
+06-15 19:57:39.645 26246 26246 I AudioFlinger: openOutput(), module 10 Device 2, SamplingRate 48000, Format 0x000001, Channels 3, flags 8
+06-15 19:57:39.645 26246 26246 I AudioFlinger: HAL output buffer size 1920 frames, normal sink buffer size 1920 frames
+06-15 19:57:39.645 26246 26264 I AudioFlinger: AudioFlinger's thread 0xec503f80 ready to run
+06-15 19:57:39.645 26246 26264 D audio_hw_primary: out_set_parameters: enter: usecase(0: deep-buffer-playback) kvpairs: routing=2
+06-15 19:57:39.645 26246 26264 W AudioFlinger: no wake lock to update, system not ready yet
+06-15 19:57:39.646 26246 26246 I AudioFlinger: openOutput(), module 10 Device 10000, SamplingRate 48000, Format 0x000001, Channels 3, flags 0
+06-15 19:57:39.646 26246 26246 I AudioFlinger: HAL output buffer size 768 frames, normal sink buffer size 1152 frames
+06-15 19:57:39.646 26246 26266 I AudioFlinger: AudioFlinger's thread 0xec383bc0 ready to run
+06-15 19:57:39.646 26246 26266 D audio_hw_primary: out_set_parameters: enter: usecase(22: afe-proxy-playback) kvpairs: routing=65536
+06-15 19:57:39.647 26246 26266 W AudioFlinger: no wake lock to update, system not ready yet
+06-15 19:57:39.648 26246 26267 I AudioFlinger: AudioFlinger's thread 0xec083ac0 ready to run
+06-15 19:57:39.648 26246 26268 I AudioFlinger: AudioFlinger's thread 0xec003300 ready to run
+06-15 19:57:39.648 26246 26269 I AudioFlinger: AudioFlinger's thread 0xebf83e00 ready to run
+06-15 19:57:39.649 26246 26246 I bt_a2dp_hw: adev_open:  adev_open in A2dp_hw module
+06-15 19:57:39.649 26246 26246 I AudioFlinger: loadHwModule() Loaded a2dp audio interface from A2DP Audio HW HAL (audio) handle 18
+06-15 19:57:39.650 26246 26246 I AudioFlinger: loadHwModule() Loaded usb audio interface from USB audio HW HAL (audio) handle 26
+06-15 19:57:39.650 26246 26246 I r_submix: adev_open(name=audio_hw_if)
+06-15 19:57:39.650 26246 26246 I r_submix: adev_init_check()
+06-15 19:57:39.650 26246 26246 I AudioFlinger: loadHwModule() Loaded r_submix audio interface from Wifi Display audio HAL (audio) handle 34
+06-15 19:57:39.651 26246 26246 D r_submix: adev_open_input_stream(addr=0)
+06-15 19:57:39.651 26246 26246 D r_submix: submix_audio_device_create_pipe_l(addr=0, idx=9)
+06-15 19:57:39.651 26246 26246 D r_submix:   now using address 0 for route 9
+06-15 19:57:39.651 26246 26270 I AudioFlinger: AudioFlinger's thread 0xebf038c0 ready to run
+06-15 19:57:39.651 26246 26246 D r_submix: adev_close_input_stream()
+06-15 19:57:39.651 26246 26246 D r_submix: submix_audio_device_release_pipe_l(idx=9) addr=0
+06-15 19:57:39.651 26246 26246 D r_submix: submix_audio_device_destroy_pipe_l(): pipe destroyed
+06-15 19:57:39.652 26246 26246 I RadioService: RadioService
+06-15 19:57:39.652 26246 26246 I RadioService: onFirstRef
+06-15 19:57:39.652 26246 26246 E RadioService: couldn't load radio module radio.primary (No such file or directory)
+06-15 19:57:39.653 26246 26246 D sound_trigger_hw: stdev_open: Enter
+06-15 19:57:39.653 26246 26246 I sound_trigger_platform: platform_stdev_init: Enter
+06-15 19:57:39.728 26246 26246 I sound_trigger_platform: platform_stdev_init: acdb_init: msm8994-tomtom-snd-card
+06-15 19:57:39.728 26246 26246 D sound_trigger_platform: platform_stdev_init Opening device /dev/snd/hwC0D1000
+06-15 19:57:39.728 26246 26246 W sound_trigger_platform: platform_stdev_init: dlopen failed for libsmwrapper.so
+06-15 19:57:39.729 26246 26246 I sound_trigger_hw: stdev_get_properties
+06-15 19:57:39.729 26246 26246 I SoundTriggerHwService: loaded default module Sound Trigger HAL, handle 1
+06-15 19:57:39.860   934  2994 W AudioSystem: AudioPolicyService server died!
+06-15 19:57:39.861   934  2994 W AudioSystem: AudioPolicyService server died!
+06-15 19:57:39.898  3795  4155 W GCoreFlp: No location to return for getLastLocation()
+06-15 19:57:39.898  3795  4156 W FusedLocationProvider: location=null
+06-15 19:57:40.363 26246 26266 W AudioFlinger: no wake lock to update, system not ready yet
+06-15 19:57:40.364 26246 26261 W AudioFlinger: no wake lock to update, system not ready yet
+06-15 19:57:40.364 26246 26263 W AudioFlinger: no wake lock to update, system not ready yet
+06-15 19:57:40.365   934  2948 E AudioService: Audioserver started.
+06-15 19:57:40.365 26246 26277 I AudioFlinger: systemReady
+06-15 19:57:40.366 26246 26264 W AudioFlinger: no wake lock to update, system not ready yet
+06-15 19:57:40.367   934  3009 W AudioTrack: dead IAudioTrack, PCM, creating a new one from start()
+06-15 19:57:40.369 26246 26277 D PermissionCache: checking android.permission.MODIFY_AUDIO_SETTINGS for uid=1000 => granted (1675 us)
+06-15 19:57:40.580 26255 26255 D         : InterfaceDescriptor is a
+06-15 19:57:40.582 26246 26282 D PermissionCache: checking android.permission.MODIFY_AUDIO_SETTINGS for uid=10197 => granted (645 us)
+06-15 19:57:40.597 26246 26261 E AudioFlinger: no wake lock to update, but system ready!
+06-15 19:57:40.597 26246 26277 W APM::AudioPolicyEngine: setPhoneState() setting same state 0
+06-15 19:57:40.597 26246 26277 W APM_AudioPolicyManager: setPhoneState() invalid or same state 0
+06-15 19:57:40.599 26246 26261 D audio_hw_primary: select_devices: changing use case low-latency-playback output device from(0: none, acdb -1) to (2: speaker, acdb 14)
+06-15 19:57:40.599 26246 26282 F libc    : Fatal signal 11 (SIGSEGV), code 1, fault addr 0x0 in tid 26282 (Binder:26246_5)
+06-15 19:57:40.600   379   379 W         : debuggerd: handling request: pid=26246 uid=1041 gid=1005 tid=26282
+06-15 19:57:40.605 26246 26261 D audio_hw_primary: enable_snd_device: snd_device(78: vi-feedback)
+06-15 19:57:40.606 26246 26261 D audio_hw_primary: enable_audio_route: usecase(21) apply and update mixer path: spkr-vi-record
+06-15 19:57:40.673 26283 26283 F DEBUG   : *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
+06-15 19:57:40.674 26283 26283 F DEBUG   : Build fingerprint: 'google/bullhead/bullhead:7.1.2/N2G48C/4104010:userdebug/dev-keys'
+06-15 19:57:40.674 26283 26283 F DEBUG   : Revision: 'rev_1.0'
+06-15 19:57:40.674 26283 26283 F DEBUG   : ABI: 'arm'
+06-15 19:57:40.674 26283 26283 F DEBUG   : pid: 26246, tid: 26282, name: Binder:26246_5  >>> /system/bin/audioserver <<<
+06-15 19:57:40.674 26283 26283 F DEBUG   : signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0x0
+06-15 19:57:40.674 26283 26283 F DEBUG   :     r0 00000000  r1 00000000  r2 0000005f  r3 00000000
+06-15 19:57:40.674 26283 26283 F DEBUG   :     r4 ffffffff  r5 00000000  r6 eb750000  r7 00000001
+06-15 19:57:40.674 26283 26283 F DEBUG   :     r8 00000004  r9 ed953114  sl ed913900  fp 00000000
+06-15 19:57:40.674 26283 26283 F DEBUG   :     ip eda8bd88  sp eb4fd9c8  lr eda53bc5  pc eda1caf4  cpsr 60000030
+06-15 19:57:40.679 26283 26283 F DEBUG   :
+06-15 19:57:40.679 26283 26283 F DEBUG   : backtrace:
+06-15 19:57:40.679 26283 26283 F DEBUG   :     #00 pc 00018af4  /system/lib/libc.so (strlen+71)
+06-15 19:57:40.679 26283 26283 F DEBUG   :     #01 pc 0004fbc1  /system/lib/libc.so (__strlen_chk+4)
+06-15 19:57:40.679 26283 26283 F DEBUG   :     #02 pc 0000c599  /system/lib/libutils.so (_ZN7android7String8C2EPKc+12)
+06-15 19:57:40.679 26283 26283 F DEBUG   :     #03 pc 0002fdbf  /system/lib/libaudiopolicymanagerdefault.so (_ZNK7android18HwModuleCollection19getDeviceDescriptorEjPKcS2_b+458)
+06-15 19:57:40.679 26283 26283 F DEBUG   :     #04 pc 0001de47  /system/lib/libaudiopolicymanagerdefault.so (_ZN7android18AudioPolicyManager27setDeviceConnectionStateIntEj24audio_policy_dev_state_tPKcS3_+178)
+06-15 19:57:40.679 26283 26283 F DEBUG   :     #05 pc 0000a009  /system/lib/libaudiopolicyservice.so
+06-15 19:57:40.680 26283 26283 F DEBUG   :     #06 pc 000a01a5  /system/lib/libmedia.so (_ZN7android20BnAudioPolicyService10onTransactEjRKNS_6ParcelEPS1_j+1256)
+06-15 19:57:40.680 26283 26283 F DEBUG   :     #07 pc 000359c3  /system/lib/libbinder.so (_ZN7android7BBinder8transactEjRKNS_6ParcelEPS1_j+70)
+06-15 19:57:40.680 26283 26283 F DEBUG   :     #08 pc 0003d1bb  /system/lib/libbinder.so (_ZN7android14IPCThreadState14executeCommandEi+702)
+06-15 19:57:40.680 26283 26283 F DEBUG   :     #09 pc 0003ce07  /system/lib/libbinder.so (_ZN7android14IPCThreadState20getAndExecuteCommandEv+114)
+06-15 19:57:40.680 26283 26283 F DEBUG   :     #10 pc 0003d31b  /system/lib/libbinder.so (_ZN7android14IPCThreadState14joinThreadPoolEb+46)
+06-15 19:57:40.680 26283 26283 F DEBUG   :     #11 pc 0004f8c5  /system/lib/libbinder.so
+06-15 19:57:40.680 26283 26283 F DEBUG   :     #12 pc 0000e345  /system/lib/libutils.so (_ZN7android6Thread11_threadLoopEPv+140)
+06-15 19:57:40.680 26283 26283 F DEBUG   :     #13 pc 000470b3  /system/lib/libc.so (_ZL15__pthread_startPv+22)
+06-15 19:57:40.680 26283 26283 F DEBUG   :     #14 pc 00019e3d  /system/lib/libc.so (__start_thread+6)
+06-15 19:57:40.882   934  2991 W NativeCrashListener: Couldn't find ProcessRecord for pid 26246
+06-15 19:57:40.889   934   952 I BootReceiver: Copying /data/tombstones/tombstone_03 to DropBox (SYSTEM_TOMBSTONE)
+06-15 19:57:40.889   379   379 W         : debuggerd: resuming target 26246
+06-15 19:57:40.893   934  3009 W IAudioTrack: start() error: Broken pipe
+06-15 19:57:40.894   934  3009 W AudioTrack: restoreTrack_l() failed status -32
+06-15 19:57:40.894   934  3009 E AudioTrack: start() status -32
+06-15 19:57:40.895   934  3931 W AudioSystem: AudioFlinger server died!
+06-15 19:57:40.895   934   971 W AudioSystem: AudioPolicyService server died!
+06-15 19:57:40.895   414   414 I ServiceManager: service 'media.sound_trigger_hw' died
+06-15 19:57:40.895   934   971 W AudioSystem: AudioPolicyService server died!
+06-15 19:57:40.895   414   414 I ServiceManager: service 'media.radio' died
+06-15 19:57:40.895   934   971 W AudioSystem: AudioPolicyService server died!
+06-15 19:57:40.895   414   414 I ServiceManager: service 'media.audio_flinger' died
+06-15 19:57:40.895   934   971 W AudioSystem: AudioPolicyService server died!
+06-15 19:57:40.895   414   414 I ServiceManager: service 'media.audio_policy' died
+06-15 19:57:40.897   934  2948 I ServiceManager: Waiting for service media.audio_flinger...
+06-15 19:57:40.897   934   934 I ServiceManager: Waiting for service media.audio_policy...
+06-15 19:57:40.898   541   631 I ThermalEngine: Thermal-Server: removing client on fd 52
+06-15 19:57:40.902   934 28743 W AudioTrack: dead IAudioTrack, PCM, creating a new one from processAudioBuffer()
+06-15 19:57:40.916 26022 26022 D path=   : /data/user/0/org.c0reteam.audiotest/files/poc
+06-15 19:57:40.916 26022 26022 D cmd=    : chmod 755 /data/user/0/org.c0reteam.audiotest/files/poc
+06-15 19:57:40.934 26022 26022 D exec return :
+06-15 19:57:40.934 26022 26022 D cmd=    : /data/user/0/org.c0reteam.audiotest/files/poc
+06-15 19:57:40.938   934 31329 W AudioTrack: dead IAudioTrack, PCM, creating a new one from processAudioBuffer()
+06-15 19:57:41.007 26292 26292 I         : fuzzIAudioPolicyService
+06-15 19:57:41.008 26292 26292 I ServiceManager: Waiting for service media.audio_policy...
+--------- beginning of main
+09-23 01:55:32.198   156   156 W auditd  : type=2000 audit(0.0:1): initialized
+09-23 01:55:33.872   156   156 I auditd  : type=1403 audit(0.0:2): policy loaded auid=4294967295 ses=4294967295
+09-23 01:55:33.872   156   156 W auditd  : type=1404 audit(0.0:3): enforcing=1 old_enforcing=0 auid=4294967295 ses=4294967295
+09-23 01:55:34.998   166   166 I         : debuggerd: starting
+09-23 01:55:35.041   165   165 I         : debuggerd: starting
+--------- beginning of system
+09-23 01:55:35.048   167   167 I vold    : Vold 3.0 (the awakening) firing up
+09-23 01:55:35.049   167   167 V vold    : Detected support for: ext4 vfat
+09-23 01:55:35.060   167   174 D vold    : e4crypt_init_user0
+09-23 01:55:35.061   167   174 D vold    : e4crypt_prepare_user_storage for volume null, user 0, serial 0, flags 1
+09-23 01:55:35.061   167   174 D vold    : Preparing: /data/system/users/0
+09-23 01:55:35.061   167   174 D vold    : Preparing: /data/misc/profiles/cur/0
+09-23 01:55:35.061   167   174 D vold    : Preparing: /data/misc/profiles/cur/0/foreign-dex
+09-23 01:55:35.061   167   174 D vold    : Preparing: /data/system_de/0
+09-23 01:55:35.061   167   174 D vold    : Preparing: /data/misc_de/0
+09-23 01:55:35.061   167   174 D vold    : Preparing: /data/user_de/0
+09-23 01:55:35.061   167   174 D vold    : e4crypt_unlock_user_key 0 serial=0 token_present=0
+09-23 01:55:35.062   167   174 E vold    : Failed to chmod /data/system_ce/0: No such file or directory
+09-23 01:55:35.062   167   174 E vold    : Failed to chmod /data/misc_ce/0: No such file or directory
+09-23 01:55:35.062   167   174 E vold    : Failed to chmod /data/media/0: No such file or directory
+09-23 01:55:35.062     1     1 I vdc     : 200 168 Command succeeded
+09-23 01:55:35.073   175   175 I /system/bin/tzdatacheck: tzdata file /data/misc/zoneinfo/current/tzdata does not exist. No action required.
+09-23 01:55:35.117   167   174 D VoldCryptCmdListener: cryptfs mountdefaultencrypted
+09-23 01:55:35.118   182   182 I lowmemorykiller: Using in-kernel low memory killer interface
+09-23 01:55:35.120   167   191 I Cryptfs : cryptfs_check_passwd
+09-23 01:55:35.121   167   191 D Cryptfs : crypt_ftr->fs_size = 51869696
+09-23 01:55:35.121   167   191 I Cryptfs : Using scrypt with keymaster for cryptfs KDF
+09-23 01:55:35.155   184   184 I SurfaceFlinger: SurfaceFlinger is starting
+09-23 01:55:35.155   184   184 I SurfaceFlinger: SurfaceFlinger's main thread ready to run. Initializing graphics H/W...
+09-23 01:55:35.173   184   184 D libEGL  : loaded /vendor/lib64/egl/libEGL_tegra.so
+09-23 01:55:35.206   184   184 D libEGL  : loaded /vendor/lib64/egl/libGLESv1_CM_tegra.so
+09-23 01:55:35.221   184   184 D libEGL  : loaded /vendor/lib64/egl/libGLESv2_tegra.so
+09-23 01:55:35.231   184   184 D NvOsDebugPrintf: NvRmPrivGetChipPlatform: Could not read platform information
+09-23 01:55:35.231   184   184 D NvOsDebugPrintf: Expected on kernels without fuse support, using silicon
+09-23 01:55:35.265   184   184 E hwc-drm-plane: Could not get rotation property
+09-23 01:55:35.265   184   184 I hwc-drm-plane: Could not get alpha property
+09-23 01:55:35.267   184   184 I SurfaceFlinger: Using composer version 1.4
+09-23 01:55:35.267   184   200 W hwc-gl-worker: EGL_ANDROID_native_fence_sync extension not supported
+09-23 01:55:35.267   184   184 E hwcomposer-drm: Failed to get connector for display 1
+09-23 01:55:35.382   184   184 W SurfaceFlinger: no suitable EGLConfig found, trying a simpler query
+09-23 01:55:35.382   184   184 I SurfaceFlinger: EGL information:
+09-23 01:55:35.382   184   184 I SurfaceFlinger: vendor    : Android
+09-23 01:55:35.382   184   184 I SurfaceFlinger: version   : 1.4 Android META-EGL
+09-23 01:55:35.382   184   184 I SurfaceFlinger: extensions: EGL_KHR_get_all_proc_addresses EGL_ANDROID_presentation_time EGL_KHR_swap_buffers_with_damage EGL_ANDROID_create_native_client_buffer EGL_ANDROID_front_buffer_auto_refresh EGL_KHR_image EGL_KHR_image_base EGL_KHR_gl_texture_2D_image EGL_KHR_gl_texture_cubemap_image EGL_KHR_gl_renderbuffer_image EGL_KHR_reusable_sync EGL_KHR_fence_sync EGL_KHR_create_context EGL_KHR_config_attribs EGL_KHR_surfaceless_context EGL_EXT_create_context_robustness EGL_NV_system_time EGL_ANDROID_image_native_buffer EGL_KHR_wait_sync EGL_ANDROID_recordable EGL_KHR_partial_update EGL_EXT_buffer_age EGL_KHR_create_context_no_error EGL_KHR_mutable_render_buffer
+09-23 01:55:35.382   184   184 I SurfaceFlinger: Client API: OpenGL_ES
+09-23 01:55:35.382   184   184 I SurfaceFlinger: EGLSurface: 8-8-8-8, config=0xcaf32c
+09-23 01:55:35.478   184   184 I SurfaceFlinger: OpenGL ES informations:
+09-23 01:55:35.478   184   184 I SurfaceFlinger: vendor    : NVIDIA Corporation
+09-23 01:55:35.478   184   184 I SurfaceFlinger: renderer  : NVIDIA Tegra
+09-23 01:55:35.478   184   184 I SurfaceFlinger: version   : OpenGL ES 3.2 NVIDIA 361.00
+09-23 01:55:35.478   184   184 I SurfaceFlinger: extensions: GL_EXT_debug_marker GL_EXT_base_instance GL_EXT_blend_func_extended GL_EXT_blend_minmax GL_EXT_buffer_storage GL_EXT_color_buffer_float GL_EXT_color_buffer_half_float GL_EXT_copy_image GL_EXT_debug_label GL_EXT_discard_framebuffer GL_EXT_disjoint_timer_query GL_EXT_draw_buffers_indexed GL_EXT_draw_elements_base_vertex GL_EXT_float_blend GL_EXT_frag_depth GL_EXT_geometry_point_size GL_EXT_geometry_shader GL_EXT_gpu_shader5 GL_EXT_map_buffer_range GL_EXT_multi_draw_indirect GL_EXT_multisample_compatibility GL_EXT_occlusion_query_boolean GL_EXT_post_depth_coverage GL_EXT_primitive_bounding_box GL_EXT_raster_multisample GL_EXT_render_snorm GL_EXT_robustness GL_EXT_separate_shader_objects GL_EXT_shader_implicit_conversions GL_EXT_shader_integer_mix GL_EXT_shader_io_blocks GL_EXT_shader_non_constant_global_initializers GL_EXT_shader_texture_lod GL_EXT_shadow_samplers GL_EXT_sparse_texture GL_EXT_sparse_texture2 GL_EXT_sRGB GL_EXT_sRGB_write_control GL_EXT_tessellation_point_size GL_EXT_tessellation_sha
+09-23 01:55:35.478   184   184 I SurfaceFlinger: GL_MAX_TEXTURE_SIZE = 16384
+09-23 01:55:35.478   184   184 I SurfaceFlinger: GL_MAX_VIEWPORT_DIMS = 16384
+09-23 01:55:35.498   184   200 E hwc-drm-display-compositor: Create blob_id 27
+09-23 01:55:35.583   167   191 I Cryptfs : keymaster module name is TLK Keymaster1 HAL
+09-23 01:55:35.583   167   191 I Cryptfs : keymaster version is 256
+09-23 01:55:35.583   167   191 I Cryptfs : Found keymaster1 module, using keymaster1 API.
+09-23 01:55:35.583   167   191 I TLKKeymaster: Creating device
+09-23 01:55:35.583   167   191 I TLKKeymaster: Sending 0 byte request
+09-23 01:55:35.583   167   191 D TLKKeymaster: Received tlk_call, cmd: 7, in_buf 0x7c53d02b58, in_size: 0, out_buf: 0x7c53d00b58, out_size: 8192
+09-23 01:55:35.583   167   191 D TLKKeymaster: TLK returned 7
+09-23 01:55:35.583   167   191 I TLKKeymaster: Received 7 byte response
+09-23 01:55:35.583   167   191 I TLKKeymaster: TLK keymaster version is 1.1.0
+09-23 01:55:35.584   167   191 I TLKKeymaster: TLK keymaster message version is 2
+09-23 01:55:35.584   167   191 I Cryptfs : Signing safely-padded object
+09-23 01:55:35.584   167   191 I TLKKeymaster: Sending 1373 byte request
+09-23 01:55:35.584   167   191 D TLKKeymaster: Received tlk_call, cmd: 1, in_buf 0x7c53d02ae8, in_size: 1373, out_buf: 0x7c53d00ae8, out_size: 8192
+09-23 01:55:35.584   167   191 D TLKKeymaster: TLK returned 24
+09-23 01:55:35.584   167   191 I TLKKeymaster: Received 24 byte response
+09-23 01:55:35.584   167   191 I TLKKeymaster: Sending 280 byte request
+09-23 01:55:35.584   167   191 D TLKKeymaster: Received tlk_call, cmd: 2, in_buf 0x7c53d02a88, in_size: 280, out_buf: 0x7c53d00a88, out_size: 8192
+09-23 01:55:35.584   167   191 D TLKKeymaster: TLK returned 24
+09-23 01:55:35.584   167   191 I TLKKeymaster: Received 24 byte response
+09-23 01:55:35.584   167   191 I TLKKeymaster: Sending 24 byte request
+09-23 01:55:35.584   167   191 D TLKKeymaster: Received tlk_call, cmd: 3, in_buf 0x7c53d02a78, in_size: 24, out_buf: 0x7c53d00a78, out_size: 8192
+09-23 01:55:35.599   167   191 D TLKKeymaster: TLK returned 276
+09-23 01:55:35.599   167   191 I TLKKeymaster: Received 276 byte response
+09-23 01:55:35.638   184   184 D SurfaceFlinger: shader cache generated - 24 shaders in 127.546768 ms
+09-23 01:55:35.639   184   184 D SurfaceFlinger: Set power mode=2, type=0 flinger=0x7ca9c47000
+09-23 01:55:36.051   167   191 I Cryptfs : Enabling support for allow_discards in dmcrypt.
+09-23 01:55:36.051   167   172 D vold    : Disk at 253:2 changed
+09-23 01:55:36.145   210   219 D libEGL  : loaded /vendor/lib64/egl/libEGL_tegra.so
+09-23 01:55:36.151   210   219 D libEGL  : loaded /vendor/lib64/egl/libGLESv1_CM_tegra.so
+09-23 01:55:36.166   210   219 D libEGL  : loaded /vendor/lib64/egl/libGLESv2_tegra.so
+09-23 01:55:36.177   210   219 D NvOsDebugPrintf: NvRmPrivGetChipPlatform: Could not read platform information
+09-23 01:55:36.177   210   219 D NvOsDebugPrintf: Expected on kernels without fuse support, using silicon
+09-23 01:55:36.513   167   191 I Cryptfs : Password matches
+09-23 01:55:36.514   167   191 D Cryptfs : test_mount_encrypted_fs(): Master key saved
+09-23 01:55:36.514   167   191 I Cryptfs : keymaster module name is TLK Keymaster1 HAL
+09-23 01:55:36.514   167   191 I Cryptfs : keymaster version is 256
+09-23 01:55:36.514   167   191 I Cryptfs : Found keymaster1 module, using keymaster1 API.
+09-23 01:55:36.514   167   191 I TLKKeymaster: Creating device
+09-23 01:55:36.514   167   191 I TLKKeymaster: Sending 0 byte request
+09-23 01:55:36.514   167   191 D TLKKeymaster: Received tlk_call, cmd: 7, in_buf 0x7c53d02e78, in_size: 0, out_buf: 0x7c53d00e78, out_size: 8192
+09-23 01:55:36.514   167   191 D TLKKeymaster: TLK returned 7
+09-23 01:55:36.514   167   191 I TLKKeymaster: Received 7 byte response
+09-23 01:55:36.514   167   191 I TLKKeymaster: TLK keymaster version is 1.1.0
+09-23 01:55:36.514   167   191 I TLKKeymaster: TLK keymaster message version is 2
+09-23 01:55:36.514   167   191 D Cryptfs : Password is default - restarting filesystem
+09-23 01:55:36.515   167   191 D Cryptfs : unmounting /data succeeded
+09-23 01:55:37.089   167   191 D Cryptfs : Just triggered post_fs_data
+09-23 01:55:37.126   167   174 D vold    : e4crypt_init_user0
+09-23 01:55:37.126   167   174 D vold    : e4crypt_prepare_user_storage for volume null, user 0, serial 0, flags 1
+09-23 01:55:37.126   167   174 D vold    : Preparing: /data/system/users/0
+09-23 01:55:37.127   167   174 D vold    : Preparing: /data/misc/profiles/cur/0
+09-23 01:55:37.127   167   174 D vold    : Preparing: /data/misc/profiles/cur/0/foreign-dex
+09-23 01:55:37.128   167   174 D vold    : Preparing: /data/system_de/0
+09-23 01:55:37.128   167   174 D vold    : Preparing: /data/misc_de/0
+09-23 01:55:37.129   167   174 D vold    : Preparing: /data/user_de/0
+09-23 01:55:37.129   167   174 D vold    : e4crypt_unlock_user_key 0 serial=0 token_present=0
+09-23 01:55:37.130     1     1 I vdc     : 200 230 Command succeeded
+09-23 01:55:37.141   231   231 I /system/bin/tzdatacheck: tzdata file /data/misc/zoneinfo/current/tzdata does not exist. No action required.
+09-23 01:55:37.178   236   236 I bootstat: Service started: /system/bin/bootstat -r post_decrypt_time_elapsed
+09-23 01:55:37.189   167   191 D Cryptfs : post_fs_data done
+09-23 01:55:37.189   167   191 D Cryptfs : Just triggered restart_framework
+09-23 01:55:37.210   245   245 I         : installd firing up
+09-23 01:55:37.228   239   239 I TLK_Daemon: started
+09-23 01:55:37.228   239   239 I TLK_Daemon: ss buffer configured: addr 0x451000 size 0x2018 flags 0x1
+09-23 01:55:37.229   253   253 D fwtool  : Using flash device 'spi'
+09-23 01:55:37.229   253   253 D fwtool  : MTD /dev/mtd/mtd0: size 16777216 erasesize 4096 min_io_size 1
+09-23 01:55:37.236   253   253 D fwtool  : Searching FMAP @0x00300000
+09-23 01:55:37.259   254   254 I gatekeeperd: Starting gatekeeperd...
+09-23 01:55:37.279   255   255 I perfprofd: starting Android Wide Profiling daemon
+09-23 01:55:37.280   252   252 I Netd    : Netd 1.0 starting
+09-23 01:55:37.282   253   253 I fwtool  : Writing new entry into NVRAM @ 0xf22bf0
+09-23 01:55:37.283   253   253 D fwtool  : NVRAM updated.
+09-23 01:55:37.283   252   252 D TetherController: Setting IP forward enable = 0
+09-23 01:55:37.286   255   255 E perfprofd: unable to open configuration file /data/data/com.google.android.gms/files/perfprofd.conf
+09-23 01:55:37.286   255   255 I perfprofd: random seed set to 2818381965
+09-23 01:55:37.327   253   253 I fwtool  : Writing new entry into NVRAM @ 0xf22bf0
+09-23 01:55:37.328   253   253 D fwtool  : NVRAM updated.
+09-23 01:55:37.328   253   253 D fwtool  : Cur fwid: Google_Smaug.7900.50.0
+09-23 01:55:37.332   253   253 D fwtool  : Old fwid: Google_Smaug.7900.50.0
+09-23 01:55:37.332   253   253 D fwtool  : Slots already synced.
+09-23 01:55:37.350   246   246 I keystore: Found keymaster1 module TLK Keymaster1 HAL, version 100
+09-23 01:55:37.350   246   246 I SoftKeymaster: system/keymaster/soft_keymaster_device.cpp, Line 131: Creating device
+09-23 01:55:37.350   246   246 D SoftKeymaster: system/keymaster/soft_keymaster_device.cpp, Line 132: Device address: 0x76eea3d000
+09-23 01:55:37.350   246   246 I TLKKeymaster: Creating device
+09-23 01:55:37.366   246   246 I TLKKeymaster: Sending 0 byte request
+09-23 01:55:37.366   246   246 D TLKKeymaster: Received tlk_call, cmd: 7, in_buf 0x7ff8c2bc88, in_size: 0, out_buf: 0x7ff8c29c88, out_size: 8192
+09-23 01:55:37.367   246   246 D TLKKeymaster: TLK returned 7
+09-23 01:55:37.367   246   246 I TLKKeymaster: Received 7 byte response
+09-23 01:55:37.371   246   246 I TLKKeymaster: TLK keymaster version is 1.1.0
+09-23 01:55:37.371   246   246 I TLKKeymaster: TLK keymaster message version is 2
+09-23 01:55:37.371   246   246 D keystore: Wrapping keymaster1 module TLK Keymaster1 HAL with SofKeymasterDevice
+09-23 01:55:37.371   246   246 D SoftKeymaster: system/keymaster/soft_keymaster_device.cpp, Line 178: Reinitializing SoftKeymasterDevice to use HW keymaster1
+09-23 01:55:37.371   246   246 I TLKKeymaster: Sending 8 byte request
+09-23 01:55:37.371   246   246 D TLKKeymaster: Received tlk_call, cmd: 12, in_buf 0x7ff8c2bbd8, in_size: 8, out_buf: 0x7ff8c29bd8, out_size: 8192
+09-23 01:55:37.371   246   246 D TLKKeymaster: TLK returned 36
+09-23 01:55:37.371   246   246 I TLKKeymaster: Received 36 byte response
+09-23 01:55:37.371   246   246 I TLKKeymaster: Sending 8 byte request
+09-23 01:55:37.371   246   246 D TLKKeymaster: Received tlk_call, cmd: 12, in_buf 0x7ff8c2bbd8, in_size: 8, out_buf: 0x7ff8c29bd8, out_size: 8192
+09-23 01:55:37.373   246   246 D TLKKeymaster: TLK returned 36
+09-23 01:55:37.373   246   246 I TLKKeymaster: Received 36 byte response
+09-23 01:55:37.373   246   246 I TLKKeymaster: Sending 8 byte request
+09-23 01:55:37.373   246   246 D TLKKeymaster: Received tlk_call, cmd: 12, in_buf 0x7ff8c2bbd8, in_size: 8, out_buf: 0x7ff8c29bd8, out_size: 8192
+09-23 01:55:37.373   246   246 D TLKKeymaster: TLK returned 32
+09-23 01:55:37.373   246   246 I TLKKeymaster: Received 32 byte response
+09-23 01:55:37.373   246   246 I TLKKeymaster: Sending 8 byte request
+09-23 01:55:37.373   246   246 D TLKKeymaster: Received tlk_call, cmd: 12, in_buf 0x7ff8c2bbd8, in_size: 8, out_buf: 0x7ff8c29bd8, out_size: 8192
+09-23 01:55:37.373   246   246 D TLKKeymaster: TLK returned 32
+09-23 01:55:37.373   246   246 I TLKKeymaster: Received 32 byte response
+09-23 01:55:37.373   246   246 I TLKKeymaster: Sending 8 byte request
+09-23 01:55:37.373   246   246 D TLKKeymaster: Received tlk_call, cmd: 12, in_buf 0x7ff8c2bbd8, in_size: 8, out_buf: 0x7ff8c29bd8, out_size: 8192
+09-23 01:55:37.373   246   246 D TLKKeymaster: TLK returned 36
+09-23 01:55:37.373   246   246 I TLKKeymaster: Received 36 byte response
+09-23 01:55:37.373   246   246 I TLKKeymaster: Sending 8 byte request
+09-23 01:55:37.373   246   246 D TLKKeymaster: Received tlk_call, cmd: 12, in_buf 0x7ff8c2bbd8, in_size: 8, out_buf: 0x7ff8c29bd8, out_size: 8192
+09-23 01:55:37.373   246   246 D TLKKeymaster: TLK returned 36
+09-23 01:55:37.373   246   246 I TLKKeymaster: Received 36 byte response
+09-23 01:55:37.374   246   246 I SoftKeymaster: system/keymaster/soft_keymaster_device.cpp, Line 131: Creating device
+09-23 01:55:37.374   246   246 D SoftKeymaster: system/keymaster/soft_keymaster_device.cpp, Line 132: Device address: 0x76eea3d400
+09-23 01:55:37.404   243   243 I cameraserver: ServiceManager: 0xecf193a0
+09-23 01:55:37.404   243   243 I CameraService: CameraService started (pid=243)
+09-23 01:55:37.404   243   243 I CameraService: CameraService process starting
+09-23 01:55:37.404   243   243 W BatteryNotifier: batterystats service unavailable!
+09-23 01:55:37.404   243   243 W BatteryNotifier: batterystats service unavailable!
+09-23 01:55:37.576   247   247 I mediacodec: @@@ mediacodecservice starting
+09-23 01:55:37.582   247   247 W /system/bin/mediacodec: libminijail: allowing syscall: clock_gettime
+09-23 01:55:37.582   247   247 W /system/bin/mediacodec: libminijail: allowing syscall: connect
+09-23 01:55:37.582   247   247 W /system/bin/mediacodec: libminijail: allowing syscall: fcntl64
+09-23 01:55:37.582   247   247 W /system/bin/mediacodec: libminijail: allowing syscall: socket
+09-23 01:55:37.582   247   247 W /system/bin/mediacodec: libminijail: allowing syscall: writev
+09-23 01:55:37.585   247   247 W /system/bin/mediacodec: libminijail: logging seccomp filter failures
+09-23 01:55:37.678   242   242 I         : sMaxFastTracks = 8
+09-23 01:55:37.679   242   242 I audioserver: ServiceManager: 0xf51993a0
+09-23 01:55:37.679   242   242 W BatteryNotifier: batterystats service unavailable!
+09-23 01:55:37.679   242   242 I AudioFlinger: Using default 3000 mSec as standby time.
+09-23 01:55:37.679   242   242 I AudioPolicyService: AudioPolicyService CSTOR in new mode
+09-23 01:55:37.693   292   292 I recovery: Recovery image already installed
+09-23 01:55:37.730   249   249 V MediaUtils: physMem: 2922409984
+09-23 01:55:37.730   249   249 V MediaUtils: requested limit: 584481980
+09-23 01:55:37.730   249   249 V MediaUtils: actual limit: 584481980
+09-23 01:55:37.730   249   249 V MediaUtils: original limits: 4294967295/4294967295
+09-23 01:55:37.730   249   249 V MediaUtils: new limits: 584481980/4294967295
+09-23 01:55:37.730   249   249 W /system/bin/mediaextractor: libminijail: allowing syscall: clock_gettime
+09-23 01:55:37.730   249   249 W /system/bin/mediaextractor: libminijail: allowing syscall: connect
+09-23 01:55:37.730   249   249 W /system/bin/mediaextractor: libminijail: allowing syscall: fcntl64
+09-23 01:55:37.730   249   249 W /system/bin/mediaextractor: libminijail: allowing syscall: socket
+09-23 01:55:37.735   248   248 I mediaserver: ServiceManager: 0xea819400
+09-23 01:55:37.735   249   249 W /system/bin/mediaextractor: libminijail: allowing syscall: writev
+09-23 01:55:37.736   249   249 W /system/bin/mediaextractor: libminijail: logging seccomp filter failures
+09-23 01:55:37.775   240   240 D AndroidRuntime: >>>>>> START com.android.internal.os.ZygoteInit uid 0 <<<<<<
+09-23 01:55:37.787   250   250 I mediaserver: ServiceManager: 0xf5599400
+09-23 01:55:37.789   250   250 W BatteryNotifier: batterystats service unavailable!
+09-23 01:55:37.802   240   240 D AndroidRuntime: CheckJNI is OFF
+09-23 01:55:37.813   240   240 I art     : option[0]=-Xzygote
+09-23 01:55:37.813   240   240 I art     : option[1]=-Xstacktracefile:/data/anr/traces.txt
+09-23 01:55:37.813   240   240 I art     : option[2]=exit
+09-23 01:55:37.813   240   240 I art     : option[3]=vfprintf
+09-23 01:55:37.813   240   240 I art     : option[4]=sensitiveThread
+09-23 01:55:37.813   240   240 I art     : option[5]=-verbose:gc
+09-23 01:55:37.813   240   240 I art     : option[6]=-Xms16m
+09-23 01:55:37.813   240   240 I art     : option[7]=-Xmx512m
+09-23 01:55:37.813   240   240 I art     : option[8]=-XX:HeapGrowthLimit=192m
+09-23 01:55:37.813   240   240 I art     : option[9]=-XX:HeapMinFree=512k
+09-23 01:55:37.813   240   240 I art     : option[10]=-XX:HeapMaxFree=8m
+09-23 01:55:37.813   240   240 I art     : option[11]=-XX:HeapTargetUtilization=0.75
+09-23 01:55:37.813   240   240 I art     : option[12]=-Xusejit:true
+09-23 01:55:37.813   240   240 I art     : option[13]=-Xjitsaveprofilinginfo
+09-23 01:55:37.813   240   240 I art     : option[14]=-agentlib:jdwp=transport=dt_android_adb,suspend=n,server=y
+09-23 01:55:37.813   240   240 I art     : option[15]=-Xlockprofthreshold:500
+09-23 01:55:37.813   240   240 I art     : option[16]=-Ximage-compiler-option
+09-23 01:55:37.813   240   240 I art     : option[17]=--runtime-arg
+09-23 01:55:37.813   240   240 I art     : option[18]=-Ximage-compiler-option
+09-23 01:55:37.813   240   240 I art     : option[19]=-Xms64m
+09-23 01:55:37.813   240   240 I art     : option[20]=-Ximage-compiler-option
+09-23 01:55:37.813   240   240 I art     : option[21]=--runtime-arg
+09-23 01:55:37.813   240   240 I art     : option[22]=-Ximage-compiler-option
+09-23 01:55:37.814   240   240 I art     : option[23]=-Xmx64m
+09-23 01:55:37.814   240   240 I art     : option[24]=-Ximage-compiler-option
+09-23 01:55:37.814   240   240 I art     : option[25]=--image-classes=/system/etc/preloaded-classes
+09-23 01:55:37.814   240   240 I art     : option[26]=-Ximage-compiler-option
+09-23 01:55:37.814   240   240 I art     : option[27]=--compiled-classes=/system/etc/compiled-classes
+09-23 01:55:37.814   240   240 I art     : option[28]=-Xcompiler-option
+09-23 01:55:37.814   240   240 I art     : option[29]=--runtime-arg
+09-23 01:55:37.814   240   240 I art     : option[30]=-Xcompiler-option
+09-23 01:55:37.814   240   240 I art     : option[31]=-Xms64m
+09-23 01:55:37.814   240   240 I art     : option[32]=-Xcompiler-option
+09-23 01:55:37.814   240   240 I art     : option[33]=--runtime-arg
+09-23 01:55:37.814   240   240 I art     : option[34]=-Xcompiler-option
+09-23 01:55:37.814   240   240 I art     : option[35]=-Xmx512m
+09-23 01:55:37.814   240   240 I art     : option[36]=-Ximage-compiler-option
+09-23 01:55:37.814   240   240 I art     : option[37]=--instruction-set-variant=cortex-a53
+09-23 01:55:37.814   240   240 I art     : option[38]=-Xcompiler-option
+09-23 01:55:37.814   240   240 I art     : option[39]=--instruction-set-variant=cortex-a53
+09-23 01:55:37.814   240   240 I art     : option[40]=-Ximage-compiler-option
+09-23 01:55:37.814   240   240 I art     : option[41]=--instruction-set-features=default
+09-23 01:55:37.814   240   240 I art     : option[42]=-Xcompiler-option
+09-23 01:55:37.814   240   240 I art     : option[43]=--instruction-set-features=default
+09-23 01:55:37.814   240   240 I art     : option[44]=-Duser.locale=en-US
+09-23 01:55:37.814   240   240 I art     : option[45]=--cpu-abilist=arm64-v8a
+09-23 01:55:37.814   240   240 I art     : option[46]=-Xfingerprint:google/ryu/dragon:7.1.2/N2G48C/4104010:userdebug/dev-keys
+09-23 01:55:37.815   242   242 I AudioFlinger: loadHwModule() Loaded primary audio interface from NVIDIA Tegra Audio HAL (audio) handle 10
+09-23 01:55:37.815   242   242 I AudioFlinger: openOutput(), module 10 Device 2, SamplingRate 48000, Format 0x000001, Channels 3, flags 2
+09-23 01:55:37.815   242   242 I AudioFlinger: HAL output buffer size 512 frames, normal sink buffer size 1024 frames
+09-23 01:55:37.841   242   242 I BufferProvider: found effect "Multichannel Downmix To Stereo" from The Android Open Source Project
+09-23 01:55:37.842   242   242 I AudioFlinger: Using module 10 has the primary audio interface
+09-23 01:55:37.848   242   310 I AudioFlinger: AudioFlinger's thread 0xf4b03100 ready to run
+09-23 01:55:37.848   242   310 W BatteryNotifier: batterystats service unavailable!
+09-23 01:55:37.848   242   310 W BatteryNotifier: batterystats service unavailable!
+09-23 01:55:37.849   242   312 I AudioFlinger: AudioFlinger's thread 0xf46839c0 ready to run
+09-23 01:55:37.852   242   310 W BatteryNotifier: batterystats service unavailable!
+09-23 01:55:37.852   242   310 W AudioFlinger: no wake lock to update, system not ready yet
+09-23 01:55:37.856   242   242 I bt_a2dp_hw: adev_open:  adev_open in A2dp_hw module
+09-23 01:55:37.856   242   242 I AudioFlinger: loadHwModule() Loaded a2dp audio interface from A2DP Audio HW HAL (audio) handle 18
+09-23 01:55:37.862   242   242 I AudioFlinger: loadHwModule() Loaded usb audio interface from USB audio HW HAL (audio) handle 26
+09-23 01:55:37.864   242   242 I r_submix: adev_open(name=audio_hw_if)
+09-23 01:55:37.864   242   242 I r_submix: adev_init_check()
+09-23 01:55:37.865   242   242 I AudioFlinger: loadHwModule() Loaded r_submix audio interface from Wifi Display audio HAL (audio) handle 34
+09-23 01:55:37.865   242   242 D r_submix: adev_open_input_stream(addr=0)
+09-23 01:55:37.865   242   242 D r_submix: submix_audio_device_create_pipe_l(addr=0, idx=9)
+09-23 01:55:37.865   242   242 D r_submix:   now using address 0 for route 9
+09-23 01:55:37.865   242   314 I AudioFlinger: AudioFlinger's thread 0xf4603a80 ready to run
+09-23 01:55:37.866   242   242 D r_submix: adev_close_input_stream()
+09-23 01:55:37.866   242   242 D r_submix: submix_audio_device_release_pipe_l(idx=9) addr=0
+09-23 01:55:37.866   242   242 D r_submix: submix_audio_device_destroy_pipe_l(): pipe destroyed
+09-23 01:55:37.866   242   242 I RadioService: RadioService
+09-23 01:55:37.866   242   242 I RadioService: onFirstRef
+09-23 01:55:37.867   242   242 E RadioService: couldn't load radio module radio.primary (No such file or directory)
+09-23 01:55:37.898   242   242 I sound_trigger_hw_dragon: stdev_get_properties
+09-23 01:55:37.898   242   242 I SoundTriggerHwService: loaded default module Dragon OK Google , handle 1
+09-23 01:55:38.218   241   241 D AndroidRuntime: >>>>>> START com.android.internal.os.ZygoteInit uid 0 <<<<<<
+09-23 01:55:38.263   241   241 D AndroidRuntime: CheckJNI is OFF
+09-23 01:55:38.277   241   241 I art     : option[0]=-Xzygote
+09-23 01:55:38.277   241   241 I art     : option[1]=-Xstacktracefile:/data/anr/traces.txt
+09-23 01:55:38.277   241   241 I art     : option[2]=exit
+09-23 01:55:38.278   241   241 I art     : option[3]=vfprintf
+09-23 01:55:38.278   241   241 I art     : option[4]=sensitiveThread
+09-23 01:55:38.278   241   241 I art     : option[5]=-verbose:gc
+09-23 01:55:38.278   241   241 I art     : option[6]=-Xms16m
+09-23 01:55:38.278   241   241 I art     : option[7]=-Xmx512m
+09-23 01:55:38.278   241   241 I art     : option[8]=-XX:HeapGrowthLimit=192m
+09-23 01:55:38.278   241   241 I art     : option[9]=-XX:HeapMinFree=512k
+09-23 01:55:38.278   241   241 I art     : option[10]=-XX:HeapMaxFree=8m
+09-23 01:55:38.278   241   241 I art     : option[11]=-XX:HeapTargetUtilization=0.75
+09-23 01:55:38.278   241   241 I art     : option[12]=-Xusejit:true
+09-23 01:55:38.278   241   241 I art     : option[13]=-Xjitsaveprofilinginfo
+09-23 01:55:38.278   241   241 I art     : option[14]=-agentlib:jdwp=transport=dt_android_adb,suspend=n,server=y
+09-23 01:55:38.278   241   241 I art     : option[15]=-Xlockprofthreshold:500
+09-23 01:55:38.278   241   241 I art     : option[16]=-Ximage-compiler-option
+09-23 01:55:38.278   241   241 I art     : option[17]=--runtime-arg
+09-23 01:55:38.278   241   241 I art     : option[18]=-Ximage-compiler-option
+09-23 01:55:38.278   241   241 I art     : option[19]=-Xms64m
+09-23 01:55:38.278   241   241 I art     : option[20]=-Ximage-compiler-option
+09-23 01:55:38.278   241   241 I art     : option[21]=--runtime-arg
+09-23 01:55:38.278   241   241 I art     : option[22]=-Ximage-compiler-option
+09-23 01:55:38.279   241   241 I art     : option[23]=-Xmx64m
+09-23 01:55:38.279   241   241 I art     : option[24]=-Ximage-compiler-option
+09-23 01:55:38.279   241   241 I art     : option[25]=--image-classes=/system/etc/preloaded-classes
+09-23 01:55:38.279   241   241 I art     : option[26]=-Ximage-compiler-option
+09-23 01:55:38.279   241   241 I art     : option[27]=--compiled-classes=/system/etc/compiled-classes
+09-23 01:55:38.279   241   241 I art     : option[28]=-Xcompiler-option
+09-23 01:55:38.279   241   241 I art     : option[29]=--runtime-arg
+09-23 01:55:38.279   241   241 I art     : option[30]=-Xcompiler-option
+09-23 01:55:38.279   241   241 I art     : option[31]=-Xms64m
+09-23 01:55:38.279   241   241 I art     : option[32]=-Xcompiler-option
+09-23 01:55:38.279   241   241 I art     : option[33]=--runtime-arg
+09-23 01:55:38.279   241   241 I art     : option[34]=-Xcompiler-option
+09-23 01:55:38.279   241   241 I art     : option[35]=-Xmx512m
+09-23 01:55:38.279   241   241 I art     : option[36]=-Ximage-compiler-option
+09-23 01:55:38.279   241   241 I art     : option[37]=--instruction-set-variant=cortex-a7
+09-23 01:55:38.279   241   241 I art     : option[38]=-Xcompiler-option
+09-23 01:55:38.279   241   241 I art     : option[39]=--instruction-set-variant=cortex-a7
+09-23 01:55:38.279   241   241 I art     : option[40]=-Ximage-compiler-option
+09-23 01:55:38.279   241   241 I art     : option[41]=--instruction-set-features=default
+09-23 01:55:38.279   241   241 I art     : option[42]=-Xcompiler-option
+09-23 01:55:38.279   241   241 I art     : option[43]=--instruction-set-features=default
+09-23 01:55:38.279   241   241 I art     : option[44]=-Duser.locale=en-US
+09-23 01:55:38.279   241   241 I art     : option[45]=--cpu-abilist=armeabi-v7a,armeabi
+09-23 01:55:38.279   241   241 I art     : option[46]=-Xfingerprint:google/ryu/dragon:7.1.2/N2G48C/4104010:userdebug/dev-keys
+09-23 01:55:38.291   243   243 D NvOsDebugPrintf: NvRmPrivGetChipPlatform: Could not read platform information
+09-23 01:55:38.291   243   243 D NvOsDebugPrintf: Expected on kernels without fuse support, using silicon
+09-23 01:55:38.312   240   240 D ICU     : No timezone override file found: /data/misc/zoneinfo/current/icu/icu_tzdata.dat
+09-23 01:55:38.322   243   243 E libEGL  : validate_display:99 error 3008 (EGL_BAD_DISPLAY)
+09-23 01:55:38.332   243   243 D libEGL  : loaded /vendor/lib/egl/libEGL_tegra.so
+09-23 01:55:38.380   243   243 D libEGL  : loaded /vendor/lib/egl/libGLESv1_CM_tegra.so
+09-23 01:55:38.411   243   243 D libEGL  : loaded /vendor/lib/egl/libGLESv2_tegra.so
+09-23 01:55:38.556   243   243 D NvOsDebugPrintf: NvPclStateControllerOpen: NvPclHwModule list[0]: A44_rear_4BA808P1 position0
+09-23 01:55:38.556   243   243 D NvOsDebugPrintf: NvPclStateControllerOpen: NvPclHwModule list[1]: A44_front_4BF215T1 position1
+09-23 01:55:38.559   243   243 D NvOsDebugPrintf: On-sensor flash not supported.
+09-23 01:55:38.564   243   243 D NvOsDebugPrintf: NvPclStateControllerOpen: NvPclHwModule list[0]: A44_rear_4BA808P1 position0
+09-23 01:55:38.564   243   243 D NvOsDebugPrintf: NvPclStateControllerOpen: NvPclHwModule list[1]: A44_front_4BF215T1 position1
+09-23 01:55:38.565   243   243 D NvOsDebugPrintf: On-sensor flash not supported.
+09-23 01:55:38.569   243   243 D NvOsDebugPrintf: NvPclStateControllerOpen: NvPclHwModule list[0]: A44_rear_4BA808P1 position0
+09-23 01:55:38.569   243   243 D NvOsDebugPrintf: NvPclStateControllerOpen: NvPclHwModule list[1]: A44_front_4BF215T1 position1
+09-23 01:55:38.587   243   243 D NvOsDebugPrintf: CAM-SWAP: serial no file can't be opened to get serial number
+09-23 01:55:38.630   243   243 D NvOsDebugPrintf: Blob: Blob Version = 1, 4, 0
+09-23 01:55:38.630   243   243 D NvOsDebugPrintf: Blob: Program Number = 114
+09-23 01:55:38.630   243   243 D NvOsDebugPrintf: Blob: Tool Version = 2, 15, 3
+09-23 01:55:38.630   243   243 D NvOsDebugPrintf: Blob: Config File Date = 10993596009661071360
+09-23 01:55:38.630   243   243 D NvOsDebugPrintf: Blob: fuse ID matched!
+09-23 01:55:38.630   243   243 D NvOsDebugPrintf: Blob: SUCCESS? -- factory data fuse id is zero. Set as valid!
+09-23 01:55:38.633   243   243 D NvOsDebugPrintf: CAM-SWAP: serial no file can't be opened to get serial number
+09-23 01:55:38.669   243   243 I NvCameraHalLogging: NvCameraHalLogging:Preview profile reset
+09-23 01:55:38.669   243   243 D NvOsDebugPrintf: getDisplayOrientation: Failed to read tegra display device mode.
+09-23 01:55:38.669   243   243 D NvOsDebugPrintf: Bad value of display orientation
+09-23 01:55:38.669   243   243 D NvOsDebugPrintf: plugCamera: Calculated orientation is a bad value 0 err 196611
+09-23 01:55:38.669   243   243 I NvCameraHalLogging: NvCameraHalLogging:Preview profile reset
+09-23 01:55:38.670   243   243 D NvOsDebugPrintf: getDisplayOrientation: Failed to read tegra display device mode.
+09-23 01:55:38.670   243   243 D NvOsDebugPrintf: Bad value of display orientation
+09-23 01:55:38.670   243   243 D NvOsDebugPrintf: plugCamera: Calculated orientation is a bad value 0 err 196611
+09-23 01:55:38.670   243   243 I NvCameraHalLogging: NvCameraHalLogging:Preview profile reset
+09-23 01:55:38.670   243   243 I NvCameraHalLogging: NvCameraHalLogging:Preview profile reset
+09-23 01:55:38.670   243   243 I NvCameraHalLogging: NvCameraHalLogging:Preview profile reset
+09-23 01:55:38.670   243   243 I NvCameraHalLogging: NvCameraHalLogging:Preview profile reset
+09-23 01:55:38.670   243   243 I NvCameraHalLogging: NvCameraHalLogging:Preview profile reset
+09-23 01:55:38.674   243   243 I CameraService: Loaded "NVIDIA Development Platform Camera HAL" camera module
+09-23 01:55:38.674   243   243 I ServiceManager: Waiting for service media.camera.proxy...
+09-23 01:55:38.754   240   240 I Radio-JNI: register_android_hardware_Radio DONE
+09-23 01:55:38.785   240   240 I SamplingProfilerIntegration: Profiling disabled.
+09-23 01:55:38.787   240   240 D Zygote  : begin preload
+09-23 01:55:38.787   240   240 I Zygote  : Installing ICU cache reference pinning...
+09-23 01:55:38.788   240   240 I Zygote  : Preloading ICU data...
+09-23 01:55:38.829   241   241 D ICU     : No timezone override file found: /data/misc/zoneinfo/current/icu/icu_tzdata.dat
+09-23 01:55:38.908   240   240 I Zygote  : Preloading classes...
+09-23 01:55:38.918   240   240 W Zygote  : Class not found for preloading: [Landroid.view.Display$ColorTransform;
+09-23 01:55:39.050   252   252 I iptables: iptables v1.4.20: can't initialize iptables table `nat': Table does not exist (do you need to insmod?)
+09-23 01:55:39.050   252   252 I iptables: Perhaps iptables or your kernel needs to be upgraded.
+09-23 01:55:39.052   252   252 I iptables: iptables terminated by exit(3)
+09-23 01:55:39.052   252   252 E Netd    : exec() res=0, status=768 for /system/bin/iptables -w -t nat -N oem_nat_pre
+09-23 01:55:39.058   252   252 I iptables: iptables v1.4.20: can't initialize iptables table `nat': Table does not exist (do you need to insmod?)
+09-23 01:55:39.058   252   252 I iptables: Perhaps iptables or your kernel needs to be upgraded.
+09-23 01:55:39.061   252   252 I iptables: iptables terminated by exit(3)
+09-23 01:55:39.061   252   252 E Netd    : exec() res=0, status=768 for /system/bin/iptables -w -t nat -A PREROUTING -j oem_nat_pre
+09-23 01:55:39.092   252   252 I iptables: iptables v1.4.20: can't initialize iptables table `nat': Table does not exist (do you need to insmod?)
+09-23 01:55:39.092   252   252 I iptables: Perhaps iptables or your kernel needs to be upgraded.
+09-23 01:55:39.095   252   252 I iptables: iptables terminated by exit(3)
+09-23 01:55:39.095   252   252 E Netd    : exec() res=0, status=768 for /system/bin/iptables -w -t nat -N natctrl_nat_POSTROUTING
+09-23 01:55:39.100   252   252 I iptables: iptables v1.4.20: can't initialize iptables table `nat': Table does not exist (do you need to insmod?)
+09-23 01:55:39.100   252   252 I iptables: Perhaps iptables or your kernel needs to be upgraded.
+09-23 01:55:39.102   252   252 I iptables: iptables terminated by exit(3)
+09-23 01:55:39.103   252   252 E Netd    : exec() res=0, status=768 for /system/bin/iptables -w -t nat -A POSTROUTING -j natctrl_nat_POSTROUTING
+09-23 01:55:39.125   241   241 I Radio-JNI: register_android_hardware_Radio DONE
+09-23 01:55:39.149   241   241 I SamplingProfilerIntegration: Profiling disabled.
+09-23 01:55:39.152   241   241 D Zygote  : begin preload
+09-23 01:55:39.152   241   241 I Zygote  : Installing ICU cache reference pinning...
+09-23 01:55:39.153   241   241 I Zygote  : Preloading ICU data...
+09-23 01:55:39.205   241   241 I Zygote  : Preloading classes...
+09-23 01:55:39.215   241   241 W Zygote  : Class not found for preloading: [Landroid.view.Display$ColorTransform;
+09-23 01:55:39.219   252   252 V NatController: runCmd(/system/bin/iptables -w -F natctrl_FORWARD) res=0
+09-23 01:55:39.228   252   252 V NatController: runCmd(/system/bin/ip6tables -w -F natctrl_FORWARD) res=0
+09-23 01:55:39.235   252   252 V NatController: runCmd(/system/bin/iptables -w -A natctrl_FORWARD -j DROP) res=0
+09-23 01:55:39.247   252   252 V NatController: runCmd(/system/bin/iptables -w -t nat -F natctrl_nat_POSTROUTING) res=3
+09-23 01:55:39.293   240   240 E Typeface: Error mapping font file /system/fonts/DroidSansFallback.ttf
+09-23 01:55:39.325   241   241 E Typeface: Error mapping font file /system/fonts/DroidSansFallback.ttf
+09-23 01:55:39.382   252   252 E Netd    : cannot find interface dummy0
+09-23 01:55:39.382   252   252 E Netd    : Unable to create netlink socket: Protocol not supported
+09-23 01:55:39.383   252   252 W Netd    : Unable to open qlog quota socket, check if xt_quota2 can send via UeventHandler
+09-23 01:55:39.383   252   252 D MDnsDS  : MDnsSdListener::Hander starting up
+09-23 01:55:39.383   252   508 D MDnsDS  : MDnsSdListener starting to monitor
+09-23 01:55:39.383   252   508 D MDnsDS  : Going to poll with pollCount 1
+09-23 01:55:39.490   240   240 I art     : Thread[1,tid=240,Native,Thread*=0x76abe95a00,peer=0x12c060d0,"main"] recursive attempt to load library "/system/lib64/libmedia_jni.so"
+09-23 01:55:39.491   240   240 D MtpDeviceJNI: register_android_mtp_MtpDevice
+09-23 01:55:39.493   240   240 I art     : Thread[1,tid=240,Native,Thread*=0x76abe95a00,peer=0x12c060d0,"main"] recursive attempt to load library "/system/lib64/libmedia_jni.so"
+09-23 01:55:39.493   240   240 I art     : Thread[1,tid=240,Native,Thread*=0x76abe95a00,peer=0x12c060d0,"main"] recursive attempt to load library "/system/lib64/libmedia_jni.so"
+09-23 01:55:39.507   241   241 I art     : Thread[1,tid=241,Native,Thread*=0xe7a05400,peer=0x12c060d0,"main"] recursive attempt to load library "/system/lib/libmedia_jni.so"
+09-23 01:55:39.511   241   241 D MtpDeviceJNI: register_android_mtp_MtpDevice
+09-23 01:55:39.512   241   241 I art     : Thread[1,tid=241,Native,Thread*=0xe7a05400,peer=0x12c060d0,"main"] recursive attempt to load library "/system/lib/libmedia_jni.so"
+09-23 01:55:39.512   241   241 I art     : Thread[1,tid=241,Native,Thread*=0xe7a05400,peer=0x12c060d0,"main"] recursive attempt to load library "/system/lib/libmedia_jni.so"
+09-23 01:55:39.675   243   243 I ServiceManager: Waiting for service media.camera.proxy...
+09-23 01:55:39.732   240   240 W Zygote  : Class not found for preloading: android.view.Display$ColorTransform
+09-23 01:55:39.732   240   240 W Zygote  : Class not found for preloading: android.view.Display$ColorTransform$1
+09-23 01:55:39.736   241   241 W Zygote  : Class not found for preloading: android.view.Display$ColorTransform
+09-23 01:55:39.737   241   241 W Zygote  : Class not found for preloading: android.view.Display$ColorTransform$1
+09-23 01:55:39.884   240   240 I System  : Loaded time zone names for "" in 44ms (42ms in ICU)
+09-23 01:55:39.894   241   241 I System  : Loaded time zone names for "" in 36ms (34ms in ICU)
+09-23 01:55:39.899   240   240 I System  : Loaded time zone names for "en_US" in 14ms (12ms in ICU)
+09-23 01:55:39.909   241   241 I System  : Loaded time zone names for "en_US" in 15ms (13ms in ICU)
+09-23 01:55:39.924   240   240 I Zygote  : ...preloaded 4158 classes in 1016ms.
+09-23 01:55:39.924   240   240 I art     : VMRuntime.preloadDexCaches starting
+09-23 01:55:39.934   241   241 I Zygote  : ...preloaded 4158 classes in 728ms.
+09-23 01:55:39.934   241   241 I art     : VMRuntime.preloadDexCaches starting
+09-23 01:55:40.011   240   240 I art     : VMRuntime.preloadDexCaches strings total=284348 before=39764 after=39764
+09-23 01:55:40.011   240   240 I art     : VMRuntime.preloadDexCaches types total=23615 before=7880 after=7908
+09-23 01:55:40.011   240   240 I art     : VMRuntime.preloadDexCaches fields total=112259 before=40951 after=41168
+09-23 01:55:40.011   240   240 I art     : VMRuntime.preloadDexCaches methods total=197810 before=82503 after=83069
+09-23 01:55:40.011   240   240 I art     : VMRuntime.preloadDexCaches finished
+09-23 01:55:40.012   240   240 I Zygote  : Preloading resources...
+09-23 01:55:40.042   241   241 I art     : VMRuntime.preloadDexCaches strings total=284348 before=39764 after=39764
+09-23 01:55:40.042   241   241 I art     : VMRuntime.preloadDexCaches types total=23615 before=7880 after=7908
+09-23 01:55:40.042   241   241 I art     : VMRuntime.preloadDexCaches fields total=112259 before=40951 after=41168
+09-23 01:55:40.042   241   241 I art     : VMRuntime.preloadDexCaches methods total=197810 before=82503 after=83069
+09-23 01:55:40.042   241   241 I art     : VMRuntime.preloadDexCaches finished
+09-23 01:55:40.043   241   241 I Zygote  : Preloading resources...
+09-23 01:55:40.063   240   240 W Resources: Preloaded drawable resource #0x108025c (android:drawable/dialog_background_material) that varies with configuration!!
+09-23 01:55:40.071   240   240 W Resources: Preloaded color resource #0x10600ea (android:color/material_grey_800) that varies with configuration!!
+09-23 01:55:40.071   240   240 W Resources: Preloaded drawable resource #0x10802c9 (android:drawable/floating_popup_background_dark) that varies with configuration!!
+09-23 01:55:40.075   241   241 W Resources: Preloaded drawable resource #0x108025c (android:drawable/dialog_background_material) that varies with configuration!!
+09-23 01:55:40.077   241   241 W Resources: Preloaded color resource #0x10600ea (android:color/material_grey_800) that varies with configuration!!
+09-23 01:55:40.077   241   241 W Resources: Preloaded drawable resource #0x10802c9 (android:drawable/floating_popup_background_dark) that varies with configuration!!
+09-23 01:55:40.134   240   240 I Zygote  : ...preloaded 114 resources in 122ms.
+09-23 01:55:40.134   241   241 I Zygote  : ...preloaded 114 resources in 91ms.
+09-23 01:55:40.137   240   240 W Resources: Preloaded color resource #0x1060114 (android:color/background_cache_hint_selector_material_dark) that varies with configuration!!
+09-23 01:55:40.137   241   241 W Resources: Preloaded color resource #0x1060114 (android:color/background_cache_hint_selector_material_dark) that varies with configuration!!
+09-23 01:55:40.137   241   241 W Resources: Preloaded color resource #0x1060119 (android:color/btn_default_material_dark) that varies with configuration!!
+09-23 01:55:40.137   240   240 W Resources: Preloaded color resource #0x1060119 (android:color/btn_default_material_dark) that varies with configuration!!
+09-23 01:55:40.137   240   240 I Zygote  : ...preloaded 41 resources in 4ms.
+09-23 01:55:40.137   241   241 I Zygote  : ...preloaded 41 resources in 4ms.
+09-23 01:55:40.140   240   240 D libEGL  : loaded /vendor/lib64/egl/libEGL_tegra.so
+09-23 01:55:40.141   241   241 D libEGL  : loaded /vendor/lib/egl/libEGL_tegra.so
+09-23 01:55:40.146   241   241 D libEGL  : loaded /vendor/lib/egl/libGLESv1_CM_tegra.so
+09-23 01:55:40.147   240   240 D libEGL  : loaded /vendor/lib64/egl/libGLESv1_CM_tegra.so
+09-23 01:55:40.160   240   240 D libEGL  : loaded /vendor/lib64/egl/libGLESv2_tegra.so
+09-23 01:55:40.161   241   241 D libEGL  : loaded /vendor/lib/egl/libGLESv2_tegra.so
+09-23 01:55:40.171   240   240 I Zygote  : Preloading shared libraries...
+09-23 01:55:40.174   241   241 I Zygote  : Preloading shared libraries...
+09-23 01:55:40.187   240   240 I Zygote  : Uninstalled ICU cache reference pinning...
+09-23 01:55:40.189   241   241 I Zygote  : Uninstalled ICU cache reference pinning...
+09-23 01:55:40.192   240   240 I Zygote  : Installed AndroidKeyStoreProvider in 5ms.
+09-23 01:55:40.195   241   241 I Zygote  : Installed AndroidKeyStoreProvider in 6ms.
+09-23 01:55:40.200   240   240 I Zygote  : Warmed up JCA providers in 8ms.
+09-23 01:55:40.200   240   240 D Zygote  : end preload
+09-23 01:55:40.200   240   240 I art     : Starting a blocking GC Explicit
+09-23 01:55:40.206   241   241 I Zygote  : Warmed up JCA providers in 11ms.
+09-23 01:55:40.206   241   241 D Zygote  : end preload
+09-23 01:55:40.206   241   241 I art     : Starting a blocking GC Explicit
+09-23 01:55:40.214   240   240 I art     : Explicit concurrent mark sweep GC freed 55611(6MB) AllocSpace objects, 133(2MB) LOS objects, 40% free, 4MB/6MB, paused 73us total 14.100ms
+09-23 01:55:40.217   240   240 I art     : Starting a blocking GC Explicit
+09-23 01:55:40.223   240   240 I art     : Explicit concurrent mark sweep GC freed 4822(178KB) AllocSpace objects, 0(0B) LOS objects, 39% free, 3MB/6MB, paused 76us total 6.727ms
+09-23 01:55:40.224   240   399 I art     : Starting a blocking GC HeapTrim
+09-23 01:55:40.224   241   241 I art     : Explicit concurrent mark sweep GC freed 55477(6MB) AllocSpace objects, 133(2MB) LOS objects, 39% free, 4MB/6MB, paused 126us total 18.223ms
+09-23 01:55:40.227   241   241 I art     : Starting a blocking GC Explicit
+09-23 01:55:40.231   240   240 I art     : Starting a blocking GC Background
+09-23 01:55:40.235   241   241 I art     : Explicit concurrent mark sweep GC freed 4822(178KB) AllocSpace objects, 0(0B) LOS objects, 39% free, 3MB/6MB, paused 122us total 7.865ms
+09-23 01:55:40.235   241   241 I Zygote  : Accepting command socket connections
+09-23 01:55:40.257   240   240 I Zygote  : System server process 516 has been created
+09-23 01:55:40.258   240   240 I Zygote  : Accepting command socket connections
+09-23 01:55:40.275   516   516 I Zygote  : Process: zygote socket opened, supported ABIS: armeabi-v7a,armeabi
+09-23 01:55:40.276   516   516 I InstallerConnection: connecting...
+09-23 01:55:40.276   245   245 I         : new connection
+09-23 01:55:40.287   516   516 I InstallerConnection: disconnecting...
+09-23 01:55:40.287   245   245 E         : eof
+09-23 01:55:40.287   245   245 E         : failed to read size
+09-23 01:55:40.287   245   245 I         : closing connection
+09-23 01:55:40.326   516   516 I SystemServer: Entered the Android system server!
+09-23 01:55:40.452   516   516 I SystemServiceManager: Starting com.android.server.pm.Installer
+09-23 01:55:40.458   516   516 I Installer: Waiting for installd to be ready.
+09-23 01:55:40.458   516   516 I InstallerConnection: connecting...
+09-23 01:55:40.459   245   245 I         : new connection
+09-23 01:55:40.459   516   516 I SystemServiceManager: Starting com.android.server.am.ActivityManagerService$Lifecycle
+09-23 01:55:40.504   516   516 I ActivityManager: Memory class: 192
+09-23 01:55:40.509   516   530 I ServiceThread: Enabled StrictMode logging for ActivityManager looper.
+09-23 01:55:40.511   516   531 I ServiceThread: Enabled StrictMode logging for android.ui looper.
+09-23 01:55:40.547   516   516 D BatteryStatsImpl: Reading daily items from /data/system/batterystats-daily.xml
+09-23 01:55:40.673   516   516 I IntentFirewall: Read new rules (A:0 B:0 S:0)
+09-23 01:55:40.675   243   243 I ServiceManager: Waiting for service media.camera.proxy...
+09-23 01:55:40.680   516   537 I ServiceThread: Enabled StrictMode logging for android.display looper.
+09-23 01:55:40.684   516   516 D AppOps  : AppOpsService published
+09-23 01:55:40.684   516   516 I SystemServiceManager: Starting com.android.server.power.PowerManagerService
+09-23 01:55:40.688   516   539 I ServiceThread: Enabled StrictMode logging for PowerManagerService looper.
+09-23 01:55:40.690   516   540 I powerHAL::TimedQosManager: threadLoop [GPU] starting
+09-23 01:55:40.690   516   516 W libsuspend: Error writing 'on' to /sys/power/state: Invalid argument
+09-23 01:55:40.690   516   516 I libsuspend: Selected wakeup count
+09-23 01:55:40.700   516   516 I SystemServiceManager: Starting com.android.server.lights.LightsService
+09-23 01:55:40.705   516   516 I SystemServiceManager: Starting com.android.server.display.DisplayManagerService
+09-23 01:55:40.710   516   516 I SystemServiceManager: Starting phase 100
+09-23 01:55:40.714   516   537 I DisplayManagerService: Display device added: DisplayDeviceInfo{"Built-in Screen": uniqueId="local:0", 2560 x 1800, modeId 1, defaultModeId 1, supportedModes [{id=1, width=2560, height=1800, fps=60.0}], colorMode 0, supportedColorModes [0], HdrCapabilities android.view.Display$HdrCapabilities@a69d6308, density 320, 308.17 x 308.918 dpi, appVsyncOff 7500000, presDeadline 12666667, touch INTERNAL, rotation 0, type BUILT_IN, state UNKNOWN, FLAG_DEFAULT_DISPLAY, FLAG_ROTATES_WITH_CONTENT, FLAG_SECURE, FLAG_SUPPORTS_PROTECTED_BUFFERS}
+09-23 01:55:40.715   184   184 D SurfaceFlinger: Set power mode=2, type=0 flinger=0x7ca9c47000
+09-23 01:55:40.715   184   184 D SurfaceFlinger: Screen type=0 is already mode=2
+09-23 01:55:40.724   516   516 I SystemServer: StartPackageManagerService
+09-23 01:55:40.724   516   537 I DisplayManagerService: Display device changed state: "Built-in Screen", ON
+09-23 01:55:40.795   516   516 D SELinuxMMAC: Using policy file /system/etc/security/mac_permissions.xml
+09-23 01:55:40.817   516   516 D PackageSettings: Read domain verification for package: com.google.android.youtube
+09-23 01:55:40.824   516   516 D PackageSettings: Read domain verification for package: com.android.vending
+09-23 01:55:40.828   516   516 D PackageSettings: Read domain verification for package: com.google.android.music
+09-23 01:55:40.830   516   516 D PackageSettings: Read domain verification for package: com.google.android.apps.docs
+09-23 01:55:40.831   516   516 D PackageSettings: Read domain verification for package: com.google.android.apps.maps
+09-23 01:55:40.840   516   516 D PackageSettings: Read domain verification for package: com.google.android.videos
+09-23 01:55:40.841   516   516 D PackageSettings: Read domain verification for package: com.google.android.apps.photos
+09-23 01:55:40.841   516   516 D PackageSettings: Read domain verification for package: com.google.android.calendar
+09-23 01:55:40.849   516   516 D PackageSettings: Read domain verification for package: com.google.android.talk
+09-23 01:55:40.952   516   516 E art     : DexFile_getDexOptNeeded file '/system/framework/org.apache.http.legacy.jar' does not exist
+09-23 01:55:40.953   516   516 W PackageManager: Library not found: /system/framework/org.apache.http.legacy.jar
+09-23 01:55:40.971   516   516 E art     : DexFile_getDexOptNeeded file '/system/framework/org.apache.http.legacy.jar' does not exist
+09-23 01:55:40.971   516   516 W PackageManager: Library not found: /system/framework/org.apache.http.legacy.jar
+09-23 01:55:40.975   516   516 D PackageManager: No files in app dir /vendor/overlay
+09-23 01:55:40.980   516   516 W PackageManager: Failed to parse /system/framework/arm: Missing base APK in /system/framework/arm
+09-23 01:55:40.981   516   516 W PackageManager: Failed to parse /system/framework/arm64: Missing base APK in /system/framework/arm64
+09-23 01:55:41.004   516   516 W PackageManager: Failed to parse /system/framework/oat: Missing base APK in /system/framework/oat
+09-23 01:55:41.069   516   516 W PackageManager: Permission android.permission.DOWNLOAD_WITHOUT_NOTIFICATION from package com.android.providers.downloads in an unknown group android.permission-group.NETWORK
+09-23 01:55:41.123   516   516 W PackageParser: No actions in intent filter at /system/priv-app/GoogleContacts/GoogleContacts.apk Binary XML file line #307
+09-23 01:55:41.135   516   516 W PackageParser: Unknown element under <manifest>: uses-library at /system/priv-app/GoogleFeedback/GoogleFeedback.apk Binary XML file line #33
+09-23 01:55:41.192   516   516 W PackageParser: Ignoring duplicate uses-permissions/uses-permissions-sdk-m: com.google.android.providers.gsf.permission.READ_GSERVICES in package: com.google.android.partnersetup at: Binary XML file line #32
+09-23 01:55:41.214   516   516 W PackageManager: Permission com.google.android.googleapps.permission.GOOGLE_AUTH from package com.google.android.gsf in an unknown group android.permission-group.ACCOUNTS
+09-23 01:55:41.214   516   516 W PackageManager: Permission com.google.android.googleapps.permission.GOOGLE_AUTH.ALL_SERVICES from package com.google.android.gsf in an unknown group android.permission-group.ACCOUNTS
+09-23 01:55:41.214   516   516 W PackageManager: Permission com.google.android.googleapps.permission.GOOGLE_AUTH.OTHER_SERVICES from package com.google.android.gsf in an unknown group android.permission-group.ACCOUNTS
+09-23 01:55:41.214   516   516 W PackageManager: Permission com.google.android.googleapps.permission.GOOGLE_AUTH.mail from package com.google.android.gsf in an unknown group android.permission-group.ACCOUNTS
+09-23 01:55:41.214   516   516 W PackageManager: Permission com.google.android.googleapps.permission.GOOGLE_AUTH.cl from package com.google.android.gsf in an unknown group android.permission-group.ACCOUNTS
+09-23 01:55:41.214   516   516 W PackageManager: Permission com.google.android.googleapps.permission.GOOGLE_AUTH.android from package com.google.android.gsf in an unknown group android.permission-group.ACCOUNTS
+09-23 01:55:41.214   516   516 W PackageManager: Permission com.google.android.googleapps.permission.GOOGLE_AUTH.androidsecure from package com.google.android.gsf in an unknown group android.permission-group.ACCOUNTS
+09-23 01:55:41.214   516   516 W PackageManager: Permission com.google.android.googleapps.permission.GOOGLE_AUTH.sierra from package com.google.android.gsf in an unknown group android.permission-group.ACCOUNTS
+09-23 01:55:41.214   516   516 W PackageManager: Permission com.google.android.googleapps.permission.GOOGLE_AUTH.sierraqa from package com.google.android.gsf in an unknown group android.permission-group.ACCOUNTS
+09-23 01:55:41.214   516   516 W PackageManager: Permission com.google.android.googleapps.permission.GOOGLE_AUTH.sierrasandbox from package com.google.android.gsf in an unknown group android.permission-group.ACCOUNTS
+09-23 01:55:41.214   516   516 W PackageManager: Permission com.google.android.googleapps.permission.GOOGLE_AUTH.youtube from package com.google.android.gsf in an unknown group android.permission-group.ACCOUNTS
+09-23 01:55:41.214   516   516 W PackageManager: Permission com.google.android.googleapps.permission.GOOGLE_AUTH.YouTubeUser from package com.google.android.gsf in an unknown group android.permission-group.ACCOUNTS
+09-23 01:55:41.214   516   516 W PackageManager: Permission com.google.android.googleapps.permission.GOOGLE_AUTH.talk from package com.google.android.gsf in an unknown group android.permission-group.ACCOUNTS
+09-23 01:55:41.214   516   516 W PackageManager: Permission com.google.android.googleapps.permission.GOOGLE_AUTH.ig from package com.google.android.gsf in an unknown group android.permission-group.ACCOUNTS
+09-23 01:55:41.214   516   516 W PackageManager: Permission com.google.android.googleapps.permission.GOOGLE_AUTH.lh2 from package com.google.android.gsf in an unknown group android.permission-group.ACCOUNTS
+09-23 01:55:41.214   516   516 W PackageManager: Permission com.google.android.googleapps.permission.GOOGLE_AUTH.mobile from package com.google.android.gsf in an unknown group android.permission-group.ACCOUNTS
+09-23 01:55:41.214   516   516 W PackageManager: Permission com.google.android.googleapps.permission.GOOGLE_AUTH.cp from package com.google.android.gsf in an unknown group android.permission-group.ACCOUNTS
+09-23 01:55:41.214   516   516 W PackageManager: Permission com.google.android.googleapps.permission.GOOGLE_AUTH.adsense from package com.google.android.gsf in an unknown group android.permission-group.ACCOUNTS
+09-23 01:55:41.214   516   516 W PackageManager: Permission com.google.android.googleapps.permission.GOOGLE_AUTH.adwords from package com.google.android.gsf in an unknown group android.permission-group.ACCOUNTS
+09-23 01:55:41.214   516   516 W PackageManager: Permission com.google.android.googleapps.permission.GOOGLE_AUTH.blogger from package com.google.android.gsf in an unknown group android.permission-group.ACCOUNTS
+09-23 01:55:41.214   516   516 W PackageManager: Permission com.google.android.googleapps.permission.GOOGLE_AUTH.dodgeball from package com.google.android.gsf in an unknown group android.permission-group.ACCOUNTS
+09-23 01:55:41.214   516   516 W PackageManager: Permission com.google.android.googleapps.permission.GOOGLE_AUTH.gbase from package com.google.android.gsf in an unknown group android.permission-group.ACCOUNTS
+09-23 01:55:41.214   516   516 W PackageManager: Permission com.google.android.googleapps.permission.GOOGLE_AUTH.groups2 from package com.google.android.gsf in an unknown group android.permission-group.ACCOUNTS
+09-23 01:55:41.214   516   516 W PackageManager: Permission com.google.android.googleapps.permission.GOOGLE_AUTH.health from package com.google.android.gsf in an unknown group android.permission-group.ACCOUNTS
+09-23 01:55:41.215   516   516 W PackageManager: Permission com.google.android.googleapps.permission.GOOGLE_AUTH.jotspot from package com.google.android.gsf in an unknown group android.permission-group.ACCOUNTS
+09-23 01:55:41.215   516   516 W PackageManager: Permission com.google.android.googleapps.permission.GOOGLE_AUTH.knol from package com.google.android.gsf in an unknown group android.permission-group.ACCOUNTS
+09-23 01:55:41.215   516   516 W PackageManager: Permission com.google.android.googleapps.permission.GOOGLE_AUTH.news from package com.google.android.gsf in an unknown group android.permission-group.ACCOUNTS
+09-23 01:55:41.215   516   516 W PackageManager: Permission com.google.android.googleapps.permission.GOOGLE_AUTH.orkut from package com.google.android.gsf in an unknown group android.permission-group.ACCOUNTS
+09-23 01:55:41.215   516   516 W PackageManager: Permission com.google.android.googleapps.permission.GOOGLE_AUTH.print from package com.google.android.gsf in an unknown group android.permission-group.ACCOUNTS
+09-23 01:55:41.215   516   516 W PackageManager: Permission com.google.android.googleapps.permission.GOOGLE_AUTH.sitemaps from package com.google.android.gsf in an unknown group android.permission-group.ACCOUNTS
+09-23 01:55:41.215   516   516 W PackageManager: Permission com.google.android.googleapps.permission.GOOGLE_AUTH.wifi from package com.google.android.gsf in an unknown group android.permission-group.ACCOUNTS
+09-23 01:55:41.215   516   516 W PackageManager: Permission com.google.android.googleapps.permission.GOOGLE_AUTH.finance from package com.google.android.gsf in an unknown group android.permission-group.ACCOUNTS
+09-23 01:55:41.215   516   516 W PackageManager: Permission com.google.android.googleapps.permission.GOOGLE_AUTH.local from package com.google.android.gsf in an unknown group android.permission-group.ACCOUNTS
+09-23 01:55:41.215   516   516 W PackageManager: Permission com.google.android.googleapps.permission.GOOGLE_AUTH.ah from package com.google.android.gsf in an unknown group android.permission-group.ACCOUNTS
+09-23 01:55:41.215   516   516 W PackageManager: Permission com.google.android.googleapps.permission.GOOGLE_AUTH.notebook from package com.google.android.gsf in an unknown group android.permission-group.ACCOUNTS
+09-23 01:55:41.215   516   516 W PackageManager: Permission com.google.android.googleapps.permission.GOOGLE_AUTH.writely from package com.google.android.gsf in an unknown group android.permission-group.ACCOUNTS
+09-23 01:55:41.215   516   516 W PackageManager: Permission com.google.android.googleapps.permission.GOOGLE_AUTH.wise from package com.google.android.gsf in an unknown group android.permission-group.ACCOUNTS
+09-23 01:55:41.215   516   516 W PackageManager: Permission com.google.android.googleapps.permission.GOOGLE_AUTH.grandcentral from package com.google.android.gsf in an unknown group android.permission-group.ACCOUNTS
+09-23 01:55:41.215   516   516 W PackageManager: Permission com.google.android.googleapps.permission.GOOGLE_AUTH.speechpersonalization from package com.google.android.gsf in an unknown group android.permission-group.ACCOUNTS
+09-23 01:55:41.215   516   516 W PackageManager: Permission com.google.android.googleapps.permission.GOOGLE_AUTH.speech from package com.google.android.gsf in an unknown group android.permission-group.ACCOUNTS
+09-23 01:55:41.215   516   516 W PackageManager: Permission com.google.android.providers.talk.permission.READ_ONLY from package com.google.android.gsf in an unknown group android.permission-group.MESSAGES
+09-23 01:55:41.215   516   516 W PackageManager: Permission com.google.android.providers.talk.permission.WRITE_ONLY from package com.google.android.gsf in an unknown group android.permission-group.MESSAGES
+09-23 01:55:41.215   516   516 W PackageManager: Permission com.google.android.gtalkservice.permission.GTALK_SERVICE from package com.google.android.gsf in an unknown group android.permission-group.MESSAGES
+09-23 01:55:41.215   516   516 W PackageManager: Permission com.google.android.gtalkservice.permission.SEND_HEARTBEAT from package com.google.android.gsf in an unknown group android.permission-group.NETWORK
+09-23 01:55:41.215   516   516 W PackageManager: Permission com.google.android.permission.BROADCAST_DATA_MESSAGE from package com.google.android.gsf in an unknown group android.permission-group.NETWORK
+09-23 01:55:41.215   516   516 W PackageManager: Permission com.google.android.c2dm.permission.SEND from package com.google.android.gsf in an unknown group android.permission-group.NETWORK
+09-23 01:55:41.215   516   516 W PackageManager: Permission com.google.android.c2dm.permission.RECEIVE from package com.google.android.gsf in an unknown group android.permission-group.NETWORK
+09-23 01:55:41.215   516   516 W PackageManager: Permission com.google.android.xmpp.permission.BROADCAST from package com.google.android.gsf in an unknown group android.permission-group.NETWORK
+09-23 01:55:41.215   516   516 W PackageManager: Permission com.google.android.xmpp.permission.SEND_RECEIVE from package com.google.android.gsf in an unknown group android.permission-group.NETWORK
+09-23 01:55:41.215   516   516 W PackageManager: Permission com.google.android.xmpp.permission.XMPP_ENDPOINT_BROADCAST from package com.google.android.gsf in an unknown group android.permission-group.NETWORK
+09-23 01:55:41.215   516   516 W PackageManager: Permission com.google.android.xmpp.permission.USE_XMPP_ENDPOINT from package com.google.android.gsf in an unknown group android.permission-group.NETWORK
+09-23 01:55:41.216   516   516 W PackageManager: Permission com.google.android.providers.gsf.permission.READ_GSERVICES from package com.google.android.gsf in an unknown group android.permission-group.ACCOUNTS
+09-23 01:55:41.328   516   516 W PackageManager: Permission com.android.vending.CHECK_LICENSE from package com.android.vending in an unknown group android.permission-group.NETWORK
+09-23 01:55:41.328   516   516 W PackageManager: Permission com.android.vending.BILLING from package com.android.vending in an unknown group android.permission-group.NETWORK
+09-23 01:55:41.343   516   516 W PackageManager: Permission com.google.android.apps.pixelclauncher.permission.READ_SETTINGS from package com.google.android.apps.pixelclauncher in an unknown group android.permission-group.SYSTEM_TOOLS
+09-23 01:55:41.343   516   516 W PackageManager: Permission com.google.android.apps.pixelclauncher.permission.WRITE_SETTINGS from package com.google.android.apps.pixelclauncher in an unknown group android.permission-group.SYSTEM_TOOLS
+09-23 01:55:41.343   516   516 W PackageManager: Permission com.google.android.apps.pixelclauncher.permission.QSB from package com.google.android.apps.pixelclauncher in an unknown group android.permission-group.SYSTEM_TOOLS
+09-23 01:55:41.343   516   516 W PackageManager: Permission com.android.launcher.permission.INSTALL_SHORTCUT from package com.google.android.apps.pixelclauncher in an unknown group android.permission-group.SYSTEM_TOOLS
+09-23 01:55:41.487   516   516 W PackageManager: Permission com.google.android.gms.permission.ACTIVITY_RECOGNITION from package com.google.android.gms in an unknown group android.permission-group.PERSONAL_INFO
+09-23 01:55:41.600   516   516 W PackageParser: Ignoring duplicate uses-permissions/uses-permissions-sdk-m: android.permission.USE_CREDENTIALS in package: com.android.settings at: Binary XML file line #52
+09-23 01:55:41.600   516   516 W PackageParser: Ignoring duplicate uses-permissions/uses-permissions-sdk-m: android.permission.READ_SYNC_SETTINGS in package: com.android.settings at: Binary XML file line #57
+09-23 01:55:41.600   516   516 W PackageParser: Ignoring duplicate uses-permissions/uses-permissions-sdk-m: android.permission.WRITE_SYNC_SETTINGS in package: com.android.settings at: Binary XML file line #58
+09-23 01:55:41.671   516   516 W PackageParser: Ignoring duplicate uses-permissions/uses-permissions-sdk-m: android.permission.INSTALL_GRANT_RUNTIME_PERMISSIONS in package: com.android.shell at: Binary XML file line #102
+09-23 01:55:41.675   243   243 I ServiceManager: Waiting for service media.camera.proxy...
+09-23 01:55:41.735   516   516 W PackageParser: Ignoring duplicate uses-permissions/uses-permissions-sdk-m: android.permission.CONFIGURE_WIFI_DISPLAY in package: com.android.systemui at: Binary XML file line #117
+09-23 01:55:41.876   516   516 W PackageParser: Ignoring duplicate uses-permissions/uses-permissions-sdk-m: android.permission.READ_PHONE_STATE in package: com.google.android.googlequicksearchbox at: Binary XML file line #143
+09-23 01:55:41.876   516   516 W PackageParser: Ignoring duplicate uses-permissions/uses-permissions-sdk-m: android.permission.CAMERA in package: com.google.android.googlequicksearchbox at: Binary XML file line #144
+09-23 01:55:41.893   516   516 W PackageManager: Permission com.google.android.launcher.permission.READ_SETTINGS from package com.google.android.googlequicksearchbox in an unknown group android.permission-group.SYSTEM_TOOLS
+09-23 01:55:41.893   516   516 W PackageManager: Permission com.google.android.launcher.permission.WRITE_SETTINGS from package com.google.android.googlequicksearchbox in an unknown group android.permission-group.SYSTEM_TOOLS
+09-23 01:55:41.894   516   516 W PackageManager: Permission com.android.launcher.permission.INSTALL_SHORTCUT from package com.google.android.googlequicksearchbox in an unknown group android.permission-group.SYSTEM_TOOLS
+09-23 01:55:41.936   516   516 W PackageParser: Ignoring duplicate uses-permissions/uses-permissions-sdk-m: android.permission.READ_CONTACTS in package: com.android.bluetooth at: Binary XML file line #61
+09-23 01:55:41.937   516   516 W PackageParser: No actions in intent filter at /system/app/Bluetooth/Bluetooth.apk Binary XML file line #222
+09-23 01:55:42.008   516   516 W PackageManager: Non-privileged app; cap priority to 0; package: com.google.android.calendar activity: com.android.calendar.event.LaunchInfoActivity origPrio: 50
+09-23 01:55:42.008   516   516 W PackageManager: Non-privileged app; cap priority to 0; package: com.google.android.calendar activity: com.android.calendar.event.LaunchInfoActivity origPrio: 50
+09-23 01:55:42.062   516   516 W PackageManager: Permission com.android.chrome.permission.DEBUG from package com.android.chrome in an unknown group android.permission-group.DEVELOPMENT_TOOLS
+09-23 01:55:42.085   516   516 W PackageManager: Non-privileged app; cap priority to 0; package: com.android.cts.ctsshim activity: com.android.cts.ctsshim.InstallPriority origPrio: 100
+09-23 01:55:42.085   516   516 W PackageManager: Non-privileged app; cap priority to 0; package: com.android.cts.ctsshim activity: com.android.cts.ctsshim.InstallPriority origPrio: 100
+09-23 01:55:42.085   516   516 W PackageManager: Non-privileged app; cap priority to 0; package: com.android.cts.ctsshim activity: com.android.cts.ctsshim.InstallPriority origPrio: 100
+09-23 01:55:42.085   516   516 W PackageManager: Non-privileged app; cap priority to 0; package: com.android.cts.ctsshim activity: com.android.cts.ctsshim.InstallPriority origPrio: 100
+09-23 01:55:42.085   516   516 W PackageManager: Non-privileged app; cap priority to 0; package: com.android.cts.ctsshim activity: com.android.cts.ctsshim.InstallPriority origPrio: 100
+09-23 01:55:42.142   516   516 W PackageManager: Permission com.google.android.apps.docs.permission.READ_MY_DATA from package com.google.android.apps.docs in an unknown group android.permission-group.PERSONAL_INFO
+09-23 01:55:42.142   516   516 W PackageManager: Permission com.google.android.apps.docs.permission.SYNC_STATUS from package com.google.android.apps.docs in an unknown group android.permission-group.PERSONAL_INFO
+09-23 01:55:42.437   516   516 W PackageManager: Non-privileged app; cap priority to 0; package: com.google.android.talk activity: com.google.android.apps.hangouts.phone.BabelHomeActivity origPrio: 999
+09-23 01:55:42.437   516   516 W PackageManager: Non-privileged app; cap priority to 0; package: com.google.android.talk activity: com.google.android.apps.hangouts.phone.HangoutUrlHandlerActivity origPrio: 999
+09-23 01:55:42.437   516   516 W PackageManager: Non-privileged app; cap priority to 0; package: com.google.android.talk activity: com.google.android.apps.hangouts.phone.HangoutUrlHandlerActivity origPrio: 999
+09-23 01:55:42.437   516   516 W PackageManager: Non-privileged app; cap priority to 0; package: com.google.android.talk activity: com.google.android.apps.hangouts.phone.ConversationUrlHandlerActivity origPrio: 999
+09-23 01:55:42.437   516   516 W PackageManager: Non-privileged app; cap priority to 0; package: com.google.android.talk activity: com.google.android.apps.hangouts.phone.ConversationUrlHandlerActivity origPrio: 999
+09-23 01:55:42.539   516   516 W PackageParser: Ignoring duplicate uses-permissions/uses-permissions-sdk-m: android.permission.WAKE_LOCK in package: com.google.android.apps.maps at: Binary XML file line #120
+09-23 01:55:42.720   516   516 W PackageManager: Non-privileged app; cap priority to 0; package: com.google.android.play.games activity: com.google.android.gms.games.ui.restricted.matches.RestrictedParticipantListActivity origPrio: 10
+09-23 01:55:42.720   516   516 W PackageManager: Non-privileged app; cap priority to 0; package: com.google.android.play.games activity: com.google.android.gms.games.ui.client.achievements.ClientAchievementListActivity origPrio: 10
+09-23 01:55:42.720   516   516 W PackageManager: Non-privileged app; cap priority to 0; package: com.google.android.play.games activity: com.google.android.gms.games.ui.client.achievements.ClientAchievementListActivity origPrio: 10
+09-23 01:55:42.720   516   516 W PackageManager: Non-privileged app; cap priority to 0; package: com.google.android.play.games activity: com.google.android.gms.games.ui.restricted.achievements.RestrictedAchievementDescriptionActivity origPrio: 10
+09-23 01:55:42.721   516   516 W PackageManager: Non-privileged app; cap priority to 0; package: com.google.android.play.games activity: com.google.android.gms.games.ui.client.leaderboards.ClientLeaderboardListActivity origPrio: 10
+09-23 01:55:42.721   516   516 W PackageManager: Non-privileged app; cap priority to 0; package: com.google.android.play.games activity: com.google.android.gms.games.ui.client.leaderboards.ClientLeaderboardListActivity origPrio: 10
+09-23 01:55:42.721   516   516 W PackageManager: Non-privileged app; cap priority to 0; package: com.google.android.play.games activity: com.google.android.gms.games.ui.client.leaderboards.ClientLeaderboardScoreActivity origPrio: 10
+09-23 01:55:42.721   516   516 W PackageManager: Non-privileged app; cap priority to 0; package: com.google.android.play.games activity: com.google.android.gms.games.ui.client.leaderboards.ClientLeaderboardScoreActivity origPrio: 10
+09-23 01:55:42.721   516   516 W PackageManager: Non-privileged app; cap priority to 0; package: com.google.android.play.games activity: com.google.android.gms.games.ui.client.matches.SelectOpponentsActivity origPrio: 10
+09-23 01:55:42.721   516   516 W PackageManager: Non-privileged app; cap priority to 0; package: com.google.android.play.games activity: com.google.android.gms.games.ui.client.matches.SelectOpponentsActivity origPrio: 10
+09-23 01:55:42.721   516   516 W PackageManager: Non-privileged app; cap priority to 0; package: com.google.android.play.games activity: com.google.android.gms.games.ui.client.matches.SelectOpponentsActivity origPrio: 10
+09-23 01:55:42.721   516   516 W PackageManager: Non-privileged app; cap priority to 0; package: com.google.android.play.games activity: com.google.android.gms.games.ui.client.matches.SelectOpponentsActivity origPrio: 10
+09-23 01:55:42.721   516   516 W PackageManager: Non-privileged app; cap priority to 0; package: com.google.android.play.games activity: com.google.android.gms.games.ui.client.players.ClientPlayerSearchActivity origPrio: 10
+09-23 01:55:42.721   516   516 W PackageManager: Non-privileged app; cap priority to 0; package: com.google.android.play.games activity: com.google.android.gms.games.ui.client.players.ClientPlayerSearchActivity origPrio: 10
+09-23 01:55:42.721   516   516 W PackageManager: Non-privileged app; cap priority to 0; package: com.google.android.play.games activity: com.google.android.gms.games.ui.client.matches.RealTimeWaitingRoomActivity origPrio: 10
+09-23 01:55:42.721   516   516 W PackageManager: Non-privileged app; cap priority to 0; package: com.google.android.play.games activity: com.google.android.gms.games.ui.client.matches.RealTimeWaitingRoomActivity origPrio: 10
+09-23 01:55:42.721   516   516 W PackageManager: Non-privileged app; cap priority to 0; package: com.google.android.play.games activity: com.google.android.gms.games.ui.client.matches.ClientMultiplayerInboxActivity origPrio: 10
+09-23 01:55:42.721   516   516 W PackageManager: Non-privileged app; cap priority to 0; package: com.google.android.play.games activity: com.google.android.gms.games.ui.client.matches.ClientMultiplayerInboxActivity origPrio: 10
+09-23 01:55:42.721   516   516 W PackageManager: Non-privileged app; cap priority to 0; package: com.google.android.play.games activity: com.google.android.gms.games.ui.client.matches.ClientMultiplayerInboxActivity origPrio: 10
+09-23 01:55:42.721   516   516 W PackageManager: Non-privileged app; cap priority to 0; package: com.google.android.play.games activity: com.google.android.gms.games.ui.client.matches.ClientPublicInvitationActivity origPrio: 10
+09-23 01:55:42.721   516   516 W PackageManager: Non-privileged app; cap priority to 0; package: com.google.android.play.games activity: com.google.android.gms.games.ui.client.requests.SendRequestActivity origPrio: 10
+09-23 01:55:42.721   516   516 W PackageManager: Non-privileged app; cap priority to 0; package: com.google.android.play.games activity: com.google.android.gms.games.ui.client.requests.ClientRequestInboxActivity origPrio: 10
+09-23 01:55:42.721   516   516 W PackageManager: Non-privileged app; cap priority to 0; package: com.google.android.play.games activity: com.google.android.gms.games.ui.client.requests.ClientPublicRequestActivity origPrio: 10
+09-23 01:55:42.721   516   516 W PackageManager: Non-privileged app; cap priority to 0; package: com.google.android.play.games activity: com.google.android.gms.games.ui.client.main.ClientSettingsActivity origPrio: 10
+09-23 01:55:42.721   516   516 W PackageManager: Non-privileged app; cap priority to 0; package: com.google.android.play.games activity: com.google.android.gms.games.ui.client.main.ClientSettingsActivity origPrio: 10
+09-23 01:55:42.721   516   516 W PackageManager: Non-privileged app; cap priority to 0; package: com.google.android.play.games activity: com.google.android.gms.games.ui.client.snapshots.ClientSnapshotListActivity origPrio: 10
+09-23 01:55:42.722   516   516 W PackageManager: Non-privileged app; cap priority to 0; package: com.google.android.play.games activity: com.google.android.gms.games.ui.client.quests.ClientQuestListActivity origPrio: 10
+09-23 01:55:42.722   516   516 W PackageManager: Non-privileged app; cap priority to 0; package: com.google.android.play.games activity: com.google.android.gms.games.ui.client.quests.ClientQuestDetailActivity origPrio: 10
+09-23 01:55:42.722   516   516 W PackageManager: Non-privileged app; cap priority to 0; package: com.google.android.play.games activity: com.google.android.gms.games.ui.dialog.InterstitialVideoDialogLauncher origPrio: 10
+09-23 01:55:42.722   516   516 W PackageManager: Non-privileged app; cap priority to 0; package: com.google.android.play.games activity: com.google.android.gms.games.ui.dialog.InterstitialVideoDialogLauncher origPrio: 10
+09-23 01:55:42.722   516   516 W PackageManager: Non-privileged app; cap priority to 0; package: com.google.android.play.games activity: com.google.android.gms.games.ui.dialog.CaptureHeadlessPermissionActivity origPrio: 10
+09-23 01:55:42.722   516   516 W PackageManager: Non-privileged app; cap priority to 0; package: com.google.android.play.games activity: com.google.android.gms.games.ui.dialog.CaptureHeadlessPermissionActivity origPrio: 10
+09-23 01:55:42.722   516   516 W PackageManager: Non-privileged app; cap priority to 0; package: com.google.android.play.games activity: com.google.android.gms.games.ui.restricted.videos.RestrictedVideoCapturedActivity origPrio: 10
+09-23 01:55:42.722   516   516 W PackageManager: Non-privileged app; cap priority to 0; package: com.google.android.play.games activity: com.google.android.gms.games.testcompat.ParcelTestCompatActivity origPrio: 10
+09-23 01:55:42.722   516   516 W PackageManager: Non-privileged app; cap priority to 0; package: com.google.android.play.games activity: com.google.android.gms.games.testcompat.ParcelTestCompatActivity origPrio: 10
+09-23 01:55:42.722   516   516 W PackageManager: Non-privileged app; cap priority to 0; package: com.google.android.play.games activity: com.google.android.gms.games.ui.GamesSettingsActivity origPrio: 10
+09-23 01:55:42.722   516   516 W PackageManager: Non-privileged app; cap priority to 0; package: com.google.android.play.games activity: com.google.android.gms.games.ui.GamesSettingsDebugActivity origPrio: 10
+09-23 01:55:42.722   516   516 W PackageManager: Non-privileged app; cap priority to 0; package: com.google.android.play.games activity: com.google.android.gms.games.ui.signin.SignInActivity origPrio: 10
+09-23 01:55:42.801   516   516 W PackageParser: No actions in intent filter at /system/app/PrebuiltGmail/PrebuiltGmail.apk Binary XML file line #265
+09-23 01:55:42.808   516   516 W PackageManager: Permission com.google.android.gm.email.permission.READ_ATTACHMENT from package com.google.android.gm in an unknown group android.permission-group.MESSAGES
+09-23 01:55:42.808   516   516 W PackageManager: Permission com.google.android.gm.permission.READ_GMAIL from package com.google.android.gm in an unknown group android.permission-group.MESSAGES
+09-23 01:55:42.808   516   516 W PackageManager: Permission com.google.android.gm.permission.WRITE_GMAIL from package com.google.android.gm in an unknown group android.permission-group.MESSAGES
+09-23 01:55:42.808   516   516 W PackageManager: Permission com.google.android.gm.permission.AUTO_SEND from package com.google.android.gm in an unknown group android.permission-group.MESSAGES
+09-23 01:55:42.808   516   516 W PackageManager: Permission com.google.android.gm.permission.READ_CONTENT_PROVIDER from package com.google.android.gm in an unknown group android.permission-group.MESSAGES
+09-23 01:55:42.994   516   516 D PackageManager: No files in app dir /vendor/app
+09-23 01:55:42.994   516   516 D PackageManager: No files in app dir /oem/app
+09-23 01:55:42.995   516   516 D PackageManager: No files in app dir /data/app
+09-23 01:55:42.995   516   516 D PackageManager: No files in app dir /data/app-private
+09-23 01:55:42.996   516   516 D PackageManager: No files in app dir /data/app-ephemeral
+09-23 01:55:42.997   516   516 W PackageManager: Protected action; cap priority to 0; package: com.android.cts.priv.ctsshim activity: com.android.cts.priv.ctsshim.InstallPriority origPrio: 100
+09-23 01:55:42.997   516   516 W PackageManager: Protected action; cap priority to 0; package: com.android.cts.priv.ctsshim activity: com.android.cts.priv.ctsshim.InstallPriority origPrio: 100
+09-23 01:55:42.997   516   516 W PackageManager: Protected action; cap priority to 0; package: com.android.cts.priv.ctsshim activity: com.android.cts.priv.ctsshim.InstallPriority origPrio: 100
+09-23 01:55:42.997   516   516 W PackageManager: Protected action; cap priority to 0; package: com.android.cts.priv.ctsshim activity: com.android.cts.priv.ctsshim.InstallPriority origPrio: 100
+09-23 01:55:42.997   516   516 W PackageManager: Protected action; cap priority to 0; package: com.google.android.packageinstaller activity: com.android.packageinstaller.PackageInstallerActivity origPrio: 1
+09-23 01:55:42.997   516   516 W PackageManager: Protected action; cap priority to 0; package: com.google.android.gms activity: com.google.android.gms.appinvite.AppInviteAcceptInvitationActivity origPrio: 900
+09-23 01:55:42.997   516   516 W PackageManager: Protected action; cap priority to 0; package: com.google.android.gms activity: com.google.android.gms.appinvite.AppInviteAcceptInvitationActivity origPrio: 900
+09-23 01:55:42.997   516   516 W PackageManager: Protected action; cap priority to 0; package: com.google.android.gms activity: com.google.android.gms.appinvite.AppInviteAcceptInvitationActivity origPrio: 900
+09-23 01:55:42.997   516   516 W PackageManager: Protected action; cap priority to 0; package: com.google.android.gms activity: com.google.android.gms.walletp2p.feature.transfer.TransferMoneyActivity origPrio: 900
+09-23 01:55:42.997   516   516 W PackageManager: Package com.google.android.gms desires unavailable shared library com.google.android.ble; ignoring!
+09-23 01:55:42.997   516   516 W PackageManager: Package com.google.android.GoogleCamera desires unavailable shared library com.google.android.gestureservice; ignoring!
+09-23 01:55:42.997   516   516 W PackageManager: Package com.google.android.GoogleCamera desires unavailable shared library com.google.android.camera2; ignoring!
+09-23 01:55:42.997   516   516 W PackageManager: Package com.google.android.GoogleCamera desires unavailable shared library com.google.android.camera.experimental2015; ignoring!
+09-23 01:55:42.997   516   516 I PackageManager: Adjusting ABI for com.android.providers.downloads.ui to arm64-v8a (requirer=com.android.mtp, scannedPackage=null)
+09-23 01:55:42.998   516   516 I PackageManager: Adjusting ABI for com.android.providers.downloads to arm64-v8a (requirer=com.android.mtp, scannedPackage=null)
+09-23 01:55:42.999   516   516 I PackageManager: Adjusting ABI for com.android.providers.media to arm64-v8a (requirer=com.android.mtp, scannedPackage=null)
+09-23 01:55:42.999   516   516 I PackageManager: Adjusting ABI for com.google.android.gsf.login to arm64-v8a (requirer=com.google.android.gms, scannedPackage=null)
+09-23 01:55:42.999   516   516 I PackageManager: Adjusting ABI for com.google.android.backuptransport to arm64-v8a (requirer=com.google.android.gms, scannedPackage=null)
+09-23 01:55:43.000   516   516 I PackageManager: Adjusting ABI for com.google.android.gsf to arm64-v8a (requirer=com.google.android.gms, scannedPackage=null)
+09-23 01:55:43.000   516   516 I PackageManager: Adjusting ABI for com.android.wallpaperbackup to arm64-v8a (requirer=android, scannedPackage=null)
+09-23 01:55:43.000   516   516 I PackageManager: Adjusting ABI for com.android.location.fused to arm64-v8a (requirer=android, scannedPackage=null)
+09-23 01:55:43.000   516   516 I PackageManager: Adjusting ABI for com.android.providers.settings to arm64-v8a (requirer=android, scannedPackage=null)
+09-23 01:55:43.000   516   516 I PackageManager: Adjusting ABI for com.android.dragonkeyboardfirmwareupdater to arm64-v8a (requirer=android, scannedPackage=null)
+09-23 01:55:43.001   516   516 I PackageManager: Adjusting ABI for com.android.server.telecom to arm64-v8a (requirer=android, scannedPackage=null)
+09-23 01:55:43.001   516   516 I PackageManager: Adjusting ABI for com.android.settings to arm64-v8a (requirer=android, scannedPackage=null)
+09-23 01:55:43.001   516   516 I PackageManager: Adjusting ABI for com.android.inputdevices to arm64-v8a (requirer=android, scannedPackage=null)
+09-23 01:55:43.001   516   516 I PackageManager: Adjusting ABI for com.android.keychain to arm64-v8a (requirer=android, scannedPackage=null)
+09-23 01:55:43.001   516   516 I PackageManager: Adjusting ABI for com.android.crashreportprovider to arm64-v8a (requirer=android, scannedPackage=null)
+09-23 01:55:43.006   516   516 I PackageManager: Time to scan packages: 2.076 seconds
+09-23 01:55:43.006   516   516 W PackageManager: Not granting permission android.permission.MANAGE_DOCUMENTS to package com.google.android.youtube (protectionLevel=2 flags=0x3c59be45)
+09-23 01:55:43.006   516   516 W PackageManager: Unknown permission com.google.android.launcher.permission.CONTENT_REDIRECT in package com.google.android.googlequicksearchbox
+09-23 01:55:43.006   516   516 W PackageManager: Unknown permission com.google.android.voicesearch.SHORTCUTS_ACCESS in package com.google.android.googlequicksearchbox
+09-23 01:55:43.006   516   516 W PackageManager: Unknown permission com.google.android.voicesearch.ACCESS_SETTINGS in package com.google.android.googlequicksearchbox
+09-23 01:55:43.006   516   516 W PackageManager: Unknown permission com.android.browser.permission.PRELOAD in package com.google.android.googlequicksearchbox
+09-23 01:55:43.006   516   516 W PackageManager: Unknown permission com.google.android.ears.permission.WRITE in package com.google.android.googlequicksearchbox
+09-23 01:55:43.006   516   516 W PackageManager: Unknown permission com.google.android.apps.googlevoice.permission.AUTO_SEND in package com.google.android.googlequicksearchbox
+09-23 01:55:43.006   516   516 W PackageManager: Unknown permission com.android.chrome.PRERENDER_URL in package com.google.android.googlequicksearchbox
+09-23 01:55:43.006   516   516 W PackageManager: Not granting permission com.google.android.googleapps.permission.GOOGLE_AUTH to package com.android.providers.calendar (protectionLevel=2 flags=0x30083e45)
+09-23 01:55:43.006   516   516 W PackageManager: Not granting permission com.google.android.googleapps.permission.GOOGLE_AUTH.cl to package com.android.providers.calendar (protectionLevel=2 flags=0x30083e45)
+09-23 01:55:43.007   516   516 W PackageManager: Unknown permission com.android.launcher.permission.READ_SETTINGS in package com.google.android.apps.pixelclauncher
+09-23 01:55:43.007   516   516 W PackageManager: Not granting permission android.permission.WRITE_SECURE_SETTINGS to package com.google.android.apps.enterprise.dmagent (protectionLevel=50 flags=0x38083e05)
+09-23 01:55:43.007   516   516 W PackageManager: Not granting permission android.permission.CONNECTIVITY_INTERNAL to package com.google.android.apps.enterprise.dmagent (protectionLevel=18 flags=0x38083e05)
+09-23 01:55:43.007   516   516 W PackageManager: Not granting permission android.permission.MANAGE_USB to package com.google.android.apps.enterprise.dmagent (protectionLevel=18 flags=0x38083e05)
+09-23 01:55:43.007   516   516 W PackageManager: Not granting permission android.permission.CHANGE_COMPONENT_ENABLED_STATE to package com.google.android.apps.enterprise.dmagent (protectionLevel=18 flags=0x38083e05)
+09-23 01:55:43.007   516   516 W PackageManager: Not granting permission android.permission.MANAGE_CA_CERTIFICATES to package com.google.android.apps.enterprise.dmagent (protectionLevel=18 flags=0x38083e05)
+09-23 01:55:43.007   516   516 W PackageManager: Not granting permission android.permission.MANAGE_USERS to package com.google.android.apps.enterprise.dmagent (protectionLevel=18 flags=0x38083e05)
+09-23 01:55:43.007   516   516 W PackageManager: Not granting permission android.permission.SEND_DOWNLOAD_COMPLETED_INTENTS to package com.android.vending (protectionLevel=2 flags=0x384abe45)
+09-23 01:55:43.007   516   516 I PackageManager: Un-granting permission android.permission.INSTALL_GRANT_RUNTIME_PERMISSIONS from package com.android.vending (protectionLevel=770 flags=0x384abe45)
+09-23 01:55:43.007   516   516 I PackageManager: Un-granting permission android.permission.GRANT_RUNTIME_PERMISSIONS from package com.android.vending (protectionLevel=770 flags=0x384abe45)
+09-23 01:55:43.007   516   516 I PackageManager: Un-granting permission android.permission.REVOKE_RUNTIME_PERMISSIONS from package com.android.vending (protectionLevel=770 flags=0x384abe45)
+09-23 01:55:43.007   516   516 W PackageManager: Unknown permission com.google.android.email.permission.ACCESS_PROVIDER in package com.google.android.gm
+09-23 01:55:43.007   516   516 W PackageManager: Unknown permission com.google.android.gm.exchange.BIND in package com.google.android.gm
+09-23 01:55:43.007   516   516 W PackageManager: Unknown permission com.android.email.partnerprovider.PARTNER_PROVIDER in package com.google.android.gm
+09-23 01:55:43.008   516   516 W PackageManager: Unknown permission com.samsung.android.providers.context.permission.WRITE_USE_APP_FEATURE_SURVEY in package com.google.android.music
+09-23 01:55:43.008   516   516 W PackageManager: Unknown permission android.permission.WRITE_SYNC_STATS in package com.google.android.apps.docs
+09-23 01:55:43.008   516   516 W PackageManager: Not granting permission android.permission.INTERACT_ACROSS_USERS to package com.google.android.syncadapters.contacts (protectionLevel=50 flags=0x38083e45)
+09-23 01:55:43.008   516   516 W PackageManager: Unknown permission com.google.android.syncadapters.contacts.permission.GAL_SEARCH in package com.google.android.syncadapters.contacts
+09-23 01:55:43.009   516   516 W PackageManager: Unknown permission com.chrome.permission.DEVICE_EXTRAS in package com.android.chrome
+09-23 01:55:43.009   516   516 W PackageManager: Unknown permission com.sec.enterprise.knox.MDM_CONTENT_PROVIDER in package com.android.chrome
+09-23 01:55:43.009   516   516 I PackageManager: Un-granting permission android.permission.CLEAR_APP_USER_DATA from package com.google.android.packageinstaller (protectionLevel=258 flags=0x38483e45)
+09-23 01:55:43.009   516   516 I PackageManager: Un-granting permission android.permission.GRANT_RUNTIME_PERMISSIONS from package com.google.android.packageinstaller (protectionLevel=770 flags=0x38483e45)
+09-23 01:55:43.009   516   516 I PackageManager: Un-granting permission android.permission.REVOKE_RUNTIME_PERMISSIONS from package com.google.android.packageinstaller (protectionLevel=770 flags=0x38483e45)
+09-23 01:55:43.009   516   516 I PackageManager: Un-granting permission android.permission.INSTALL_GRANT_RUNTIME_PERMISSIONS from package com.google.android.packageinstaller (protectionLevel=770 flags=0x38483e45)
+09-23 01:55:43.009   516   516 I PackageManager: Un-granting permission android.permission.INTERACT_ACROSS_USERS_FULL from package com.google.android.packageinstaller (protectionLevel=258 flags=0x38483e45)
+09-23 01:55:43.009   516   516 I PackageManager: Un-granting permission android.permission.KILL_UID from package com.google.android.packageinstaller (protectionLevel=258 flags=0x38483e45)
+09-23 01:55:43.009   516   516 I PackageManager: Un-granting permission android.permission.MANAGE_APP_OPS_RESTRICTIONS from package com.google.android.packageinstaller (protectionLevel=258 flags=0x38483e45)
+09-23 01:55:43.009   516   516 W PackageManager: Unknown permission com.google.android.permission.INSTALL_WEARABLE_PACKAGES in package com.google.android.packageinstaller
+09-23 01:55:43.009   516   516 W PackageManager: Unknown permission com.google.android.wearable.READ_SETTINGS in package com.google.android.gms
+09-23 01:55:43.009   516   516 W PackageManager: Unknown permission com.google.android.wh.supervisor.permission.ACCESS_METADATA_SERVICE in package com.google.android.gms
+09-23 01:55:43.010   516   516 W PackageManager: Unknown permission com.android.launcher.permission.PRELOAD_WORKSPACE in package com.google.android.partnersetup
+09-23 01:55:43.010   516   516 W PackageManager: Not granting permission com.google.android.googleapps.permission.GOOGLE_AUTH to package com.google.android.videos (protectionLevel=2 flags=0x385bbe45)
+09-23 01:55:43.010   516   516 W PackageManager: Unknown permission com.google.android.gallery3d.permission.PICASA_STORE in package com.google.android.apps.photos
+09-23 01:55:43.010   516   516 W PackageManager: Not granting permission android.permission.WRITE_MEDIA_STORAGE to package com.google.android.apps.photos (protectionLevel=18 flags=0x3858be45)
+09-23 01:55:43.010   516   516 W PackageManager: Unknown permission com.google.android.gm.exchange.BIND in package com.google.android.calendar
+09-23 01:55:43.010   516   516 W PackageManager: Not granting permission android.permission.DUMP to package com.google.android.apps.internal.betterbug (protectionLevel=50 flags=0x3808be45)
+09-23 01:55:43.010   516   516 W PackageManager: Not granting permission android.permission.CONTROL_KEYGUARD to package com.google.android.gsf.login (protectionLevel=2 flags=0x3048be45)
+09-23 01:55:43.010   516   516 W PackageManager: Unknown permission com.android.vending.billing.IBillingAccountService.BIND2 in package com.google.android.gsf.login
+09-23 01:55:43.010   516   516 W PackageManager: Unknown permission com.android.launcher.permission.READ_SETTINGS in package com.android.settings
+09-23 01:55:43.010   516   516 W PackageManager: Unknown permission com.android.launcher.permission.WRITE_SETTINGS in package com.android.settings
+09-23 01:55:43.010   516   516 W PackageManager: Not granting permission android.permission.REGISTER_CONNECTION_MANAGER to package com.google.android.talk (protectionLevel=18 flags=0x3059be45)
+09-23 01:55:43.011   516   516 W PackageManager: Unknown permission com.android.smspush.WAPPUSH_MANAGER_BIND in package com.android.phone
+09-23 01:55:43.011   516   516 W PackageManager: Unknown permission com.google.android.gallery3d.permission.GALLERY_PROVIDER in package com.android.bluetooth
+09-23 01:55:43.011   516   516 W PackageManager: Unknown permission com.android.gallery3d.permission.GALLERY_PROVIDER in package com.android.bluetooth
+09-23 01:55:43.011   516   516 W PackageManager: Not granting permission android.permission.BIND_WALLPAPER to package com.google.android.GoogleCamera (protectionLevel=18 flags=0x30583c45)
+09-23 01:55:43.011   516   516 W PackageManager: Unknown permission com.google.android.gallery3d.permission.GALLERY_PROVIDER in package com.google.android.GoogleCamera
+09-23 01:55:43.012   516   516 V PackageManager: reconcileAppsData for null u0 0x3
+09-23 01:55:43.013   516   516 W PackageManager: Destroying /data/user/0/poc due to: com.android.server.pm.PackageManagerException: Package poc is unknown
+09-23 01:55:43.016   245   245 E         : Couldn't opendir /data/data/poc: Not a directory
+09-23 01:55:43.016   516   516 W PackageManager: Failed to destroy: com.android.internal.os.InstallerConnection$InstallerException: Failed to execute destroy_app_data [null, poc, 0, 2, 0]: -20
+09-23 01:55:43.017   516   516 W PackageManager: Destroying /data/user/0/tmp due to: com.android.server.pm.PackageManagerException: Package tmp is unknown
+09-23 01:55:43.021   245   245 E         : Couldn't opendir /data/data/tmp: Not a directory
+09-23 01:55:43.021   516   516 W PackageManager: Failed to destroy: com.android.internal.os.InstallerConnection$InstallerException: Failed to execute destroy_app_data [null, tmp, 0, 2, 0]: -20
+09-23 01:55:43.021   516   516 W PackageManager: Destroying /data/user/0/mktemp: due to: com.android.server.pm.PackageManagerException: Package mktemp: is unknown
+09-23 01:55:43.022   245   245 E         : invalid package name 'mktemp:'
+09-23 01:55:43.022   245   245 F installd: utils.cpp:67] Check failed: is_valid_package_name(package_name) == 0
+--------- beginning of crash
+09-23 01:55:43.022   245   245 F libc    : Fatal signal 6 (SIGABRT), code -6 in tid 245 (installd)
+09-23 01:55:43.022   166   166 W         : debuggerd: handling request: pid=245 uid=0 gid=0 tid=245
+09-23 01:55:43.026   546   546 E         : debuggerd: Unable to connect to activity manager (connect failed: Connection refused)
+09-23 01:55:43.076   546   546 F DEBUG   : *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
+09-23 01:55:43.076   546   546 F DEBUG   : Build fingerprint: 'google/ryu/dragon:7.1.2/N2G48C/4104010:userdebug/dev-keys'
+09-23 01:55:43.076   546   546 F DEBUG   : Revision: '0'
+09-23 01:55:43.076   546   546 F DEBUG   : ABI: 'arm64'
+09-23 01:55:43.077   546   546 F DEBUG   : pid: 245, tid: 245, name: installd  >>> /system/bin/installd <<<
+09-23 01:55:43.077   546   546 F DEBUG   : signal 6 (SIGABRT), code -6 (SI_TKILL), fault addr --------
+09-23 01:55:43.077   546   546 F DEBUG   : Abort message: 'utils.cpp:67] Check failed: is_valid_package_name(package_name) == 0 '
+09-23 01:55:43.077   546   546 F DEBUG   :     x0   0000000000000000  x1   00000000000000f5  x2   0000000000000006  x3   0000000000000008
+09-23 01:55:43.078   546   546 F DEBUG   :     x4   0000000000000000  x5   0000000000000000  x6   00000076a4172000  x7   0000000000000000
+09-23 01:55:43.078   546   546 F DEBUG   :     x8   0000000000000083  x9   ffffffffffffffdf  x10  0000000000000000  x11  0000000000000001
+09-23 01:55:43.078   546   546 F DEBUG   :     x12  0000000000000018  x13  0000000000000000  x14  0000000000000000  x15  000157de95b365f0
+09-23 01:55:43.078   546   546 F DEBUG   :     x16  00000076a4099ee0  x17  00000076a4043b24  x18  0000000000000000  x19  00000076a4227b40
+09-23 01:55:43.078   546   546 F DEBUG   :     x20  0000000000000006  x21  00000076a4227a98  x22  0000000000000014  x23  0000000000000005
+09-23 01:55:43.078   546   546 F DEBUG   :     x24  00000076a3834040  x25  0000000000000000  x26  0000000000000005  x27  0000000000000006
+09-23 01:55:43.078   546   546 F DEBUG   :     x28  0000007ff8a77879  x29  0000007ff8a777f0  x30  00000076a4040f50
+09-23 01:55:43.078   546   546 F DEBUG   :     sp   0000007ff8a777d0  pc   00000076a4043b2c  pstate 0000000060000000
+09-23 01:55:43.081   546   546 F DEBUG   :
+09-23 01:55:43.081   546   546 F DEBUG   : backtrace:
+09-23 01:55:43.081   546   546 F DEBUG   :     #00 pc 000000000006bb2c  /system/lib64/libc.so (tgkill+8)
+09-23 01:55:43.081   546   546 F DEBUG   :     #01 pc 0000000000068f4c  /system/lib64/libc.so (pthread_kill+64)
+09-23 01:55:43.081   546   546 F DEBUG   :     #02 pc 0000000000023f58  /system/lib64/libc.so (raise+24)
+09-23 01:55:43.081   546   546 F DEBUG   :     #03 pc 000000000001c810  /system/lib64/libc.so (abort+52)
+09-23 01:55:43.081   546   546 F DEBUG   :     #04 pc 000000000000609c  /system/lib64/libbase.so (_ZN7android4base10LogMessageD1Ev+1084)
+09-23 01:55:43.082   546   546 F DEBUG   :     #05 pc 000000000001bbd4  /system/bin/installd
+09-23 01:55:43.082   546   546 F DEBUG   :     #06 pc 000000000001be38  /system/bin/installd
+09-23 01:55:43.082   546   546 F DEBUG   :     #07 pc 0000000000007f08  /system/bin/installd
+09-23 01:55:43.082   546   546 F DEBUG   :     #08 pc 0000000000005bd4  /system/bin/installd
+09-23 01:55:43.082   546   546 F DEBUG   :     #09 pc 000000000001a594  /system/lib64/libc.so (__libc_init+88)
+09-23 01:55:43.082   546   546 F DEBUG   :     #10 pc 0000000000004818  /system/bin/installd
+09-23 01:55:43.093   166   166 W         : debuggerd: resuming target 245
+09-23 01:55:43.132   516   516 E InstallerConnection: read exception
+09-23 01:55:43.132   516   516 I InstallerConnection: disconnecting...
+09-23 01:55:43.133   516   516 W PackageManager: Failed to destroy: com.android.internal.os.InstallerConnection$InstallerException: Failed to execute destroy_app_data [null, mktemp:, 0, 2, 0]: -1
+09-23 01:55:43.134   516   516 W PackageManager: Destroying /data/user/0/trg_out due to: com.android.server.pm.PackageManagerException: Package trg_out is unknown
+09-23 01:55:43.134   516   516 I InstallerConnection: connecting...
+09-23 01:55:43.135   516   516 I InstallerConnection: disconnecting...
+09-23 01:55:43.135   516   516 E InstallerConnection: connection failed
+09-23 01:55:43.135   516   516 W PackageManager: Failed to destroy: com.android.internal.os.InstallerConnection$InstallerException: Failed to execute destroy_app_data [null, trg_out, 0, 2, 0]: -1
+09-23 01:55:43.136   516   516 W PackageManager: Destroying /data/user/0/dragon_kernel_poc due to: com.android.server.pm.PackageManagerException: Package dragon_kernel_poc is unknown
+09-23 01:55:43.136   516   516 I InstallerConnection: connecting...
+09-23 01:55:43.137   516   516 I InstallerConnection: disconnecting...
+09-23 01:55:43.137   516   516 E InstallerConnection: connection failed
+09-23 01:55:43.137   516   516 W PackageManager: Failed to destroy: com.android.internal.os.InstallerConnection$InstallerException: Failed to execute destroy_app_data [null, dragon_kernel_poc, 0, 2, 0]: -1
+09-23 01:55:43.139   516   516 W PackageManager: Destroying /data/user_de/0/com.google.android.apps.pixelhealthservices due to: com.android.server.pm.PackageManagerException: Package com.google.android.apps.pixelhealthservices is unknown
+09-23 01:55:43.140   516   516 I InstallerConnection: connecting...
+09-23 01:55:43.140   516   516 I InstallerConnection: disconnecting...
+09-23 01:55:43.140   516   516 E InstallerConnection: connection failed
+09-23 01:55:43.140   516   516 W PackageManager: Failed to destroy: com.android.internal.os.InstallerConnection$InstallerException: Failed to execute destroy_app_data [null, com.google.android.apps.pixelhealthservices, 0, 1, 0]: -1
+09-23 01:55:43.142   516   516 I InstallerConnection: connecting...
+09-23 01:55:43.142   516   516 I InstallerConnection: disconnecting...
+09-23 01:55:43.142   516   516 E InstallerConnection: connection failed
+09-23 01:55:43.142   516   516 E PackageManager: Failed to create app data for com.android.cts.priv.ctsshim, but trying to recover: com.android.internal.os.InstallerConnection$InstallerException: Failed to execute create_app_data [null, com.android.cts.priv.ctsshim, 0, 3, 10006, default:privapp, 24]: -1
+09-23 01:55:43.143   516   516 I InstallerConnection: connecting...
+09-23 01:55:43.143   516   516 I InstallerConnection: disconnecting...
+09-23 01:55:43.143   553   553 I         : installd firing up
+09-23 01:55:43.143   516   516 E InstallerConnection: connection failed
+09-23 01:55:43.144   516   516 W PackageManager: com.android.internal.os.InstallerConnection$InstallerException: Failed to execute destroy_app_data [null, com.android.cts.priv.ctsshim, 0, 3, 1105974]: -1
+09-23 01:55:43.144   516   516 I InstallerConnection: connecting...
+09-23 01:55:43.144   553   553 I         : new connection
+09-23 01:55:43.147   553   553 I SELinux : SELinux: Loaded file_contexts contexts from /file_contexts.bin.
+09-23 01:55:43.150   516   516 D PackageManager: Recovery succeeded!
+09-23 01:55:43.400   516   516 V PackageManager: reconcileAppsData finished 110 packages
+09-23 01:55:43.473   516   516 V PackageManager: Ephemeral resolver found; pkg: com.google.android.gms, info:ResolveInfo{53e2377 com.google.android.gms/.chimera.PersistentBoundBrokerService m=0x108000}
+09-23 01:55:43.474   516   516 I PackageManager: Ephemeral deactivated; missing installer
+09-23 01:55:43.474   516   516 I art     : Starting a blocking GC Explicit
+09-23 01:55:43.502   516   516 I art     : Explicit concurrent mark sweep GC freed 12128(1132KB) AllocSpace objects, 4(80KB) LOS objects, 33% free, 7MB/10MB, paused 255us total 27.970ms
+09-23 01:55:43.503   516   516 I SystemServer: StartOtaDexOptService
+09-23 01:55:43.504   516   516 I SystemServer: StartUserManagerService
+09-23 01:55:43.504   516   516 I SystemServiceManager: Starting com.android.server.pm.UserManagerService$LifeCycle
+09-23 01:55:43.510   182   182 I lowmemorykiller: ActivityManager connected
+09-23 01:55:43.510   516   516 I SystemServiceManager: Starting com.android.server.BatteryService
+09-23 01:55:43.511   516   555 D SensorService: nuSensorService starting...
+09-23 01:55:43.514   516   555 D CrosECSensor: new trigger 'cros-ec-ring-trigger6'
+09-23 01:55:43.514   516   555 E CrosECSensor: Unable to read /sys/bus/iio/devices/iio_sysfs_trigger/name
+09-23 01:55:43.540   516   533 E BatteryStatsService: power: Missing API
+09-23 01:55:43.542   516   516 I SystemServiceManager: Starting com.android.server.usage.UsageStatsService
+09-23 01:55:43.556   516   516 I SystemServiceManager: Starting com.android.server.webkit.WebViewUpdateService
+09-23 01:55:43.559   516   555 D CrosECSensor: new dev 'iio:device0' handle: 0
+09-23 01:55:43.563   516   516 I SystemServer: Reading configuration...
+09-23 01:55:43.563   516   516 I SystemServer: StartSchedulingPolicyService
+09-23 01:55:43.563   516   516 I SystemServiceManager: Starting com.android.server.telecom.TelecomLoaderService
+09-23 01:55:43.565   516   516 I SystemServer: StartTelephonyRegistry
+09-23 01:55:43.569   516   516 I SystemServer: StartEntropyMixer
+09-23 01:55:43.581   516   555 D CrosECSensor: new dev 'iio:device1' handle: 1
+09-23 01:55:43.583   516   555 D CrosECSensor: new dev 'iio:device2' handle: 2
+09-23 01:55:43.583   516   555 D CrosECSensor: new dev 'iio:device3' handle: 3
+09-23 01:55:43.583   516   555 D CrosECSensor: looking at /sys/bus/iio/devices/iio:device5/events:
+09-23 01:55:43.583   516   555 D CrosECSensor: new gesture 'in_activity_still_change_falling_en' on device 'iio:device5' : handle: 1
+09-23 01:55:43.584   516   555 D CrosECSensor: counting sensors: count 0: sensor_list_ 0x0
+09-23 01:55:43.725   516   516 I EntropyMixer: Added HW RNG output to entropy pool
+09-23 01:55:43.725   516   516 I EntropyMixer: Writing entropy...
+09-23 01:55:43.732   516   516 I SystemServer: Camera Service
+09-23 01:55:43.734   516   516 I SystemServiceManager: Starting com.android.server.camera.CameraService
+09-23 01:55:43.739   516   561 I ServiceThread: Enabled StrictMode logging for CameraService_proxy looper.
+09-23 01:55:43.740   516   516 I SystemServer: StartAccountManagerService
+09-23 01:55:43.742   516   516 I SystemServiceManager: Starting com.android.server.accounts.AccountManagerService$Lifecycle
+09-23 01:55:43.757   516   516 I SystemServer: StartContentService
+09-23 01:55:43.759   516   516 I SystemServiceManager: Starting com.android.server.content.ContentService$Lifecycle
+09-23 01:55:43.763   516   516 I SystemServer: InstallSystemProviders
+09-23 01:55:43.772   516   516 W System  : ClassLoader referenced unknown path: /system/priv-app/SettingsProvider/lib/arm64
+09-23 01:55:43.794   516   516 I SystemServer: StartVibratorService
+09-23 01:55:43.796   516   516 E         : Vibrator file does not exist : -1
+09-23 01:55:43.796   516   516 E         : Vibrator device does not exist. Cannot start vibrator
+09-23 01:55:43.796   516   516 W VibratorService: Tried to stop vibrating but there is no vibrator device.
+09-23 01:55:43.798   516   516 I SystemServer: StartConsumerIrService
+09-23 01:55:43.798   516   516 E ConsumerIrService: Can't open consumer IR HW Module, error: -2
+09-23 01:55:43.798   516   516 I SystemServer: StartAlarmManagerService
+09-23 01:55:43.799   516   516 I SystemServiceManager: Starting com.android.server.AlarmManagerService
+09-23 01:55:43.805   516   516 I SystemServer: InitWatchdog
+09-23 01:55:43.805   516   516 I SystemServer: StartInputManagerService
+09-23 01:55:43.807   516   516 I InputManager: Initializing input manager, mUseDevInputEventForAudioJack=true
+09-23 01:55:43.808   516   516 I SystemServer: StartWindowManagerService
+09-23 01:55:43.834   516   537 I WindowManager: No existing display settings /data/system/display_settings.xml; starting empty
+09-23 01:55:43.851   516   531 I ServiceManager: Waiting for service sensorservice...
+09-23 01:55:43.882   516   555 D CrosECSensor: counting sensors: count 5: sensor_list_ 0x7694256a00
+09-23 01:55:43.882   516   555 D CrosECSensor: counting sensors: count 5: sensor_list_ 0x7694256a00
+09-23 01:55:43.883   516   565 D SensorService: nuSensorService thread starting...
+09-23 01:55:43.883   516   564 D SensorService: new thread SensorEventAckReceiver
+09-23 01:55:44.945   516   516 I SystemServer: StartVrManagerService
+09-23 01:55:44.946   516   516 I SystemServiceManager: Starting com.android.server.vr.VrManagerService
+09-23 01:55:44.947   516   516 W VrManagerService: init_native: Could not open VR hardware module, error No such file or directory (-2).
+09-23 01:55:44.950   516   516 I InputManager: Starting input manager
+09-23 01:55:44.951   516   571 D EventHub: No input device configuration file found for device 'hid-over-i2c 06CB:3370'.
+09-23 01:55:44.951   516   571 I EventHub: New device: id=1, fd=99, path='/dev/input/event0', name='hid-over-i2c 06CB:3370', classes=0x14, configuration='', keyLayout='', keyCharacterMap='', builtinKeyboard=false, wakeMechanism=EPOLLWAKEUP, usingClockIoctl=true
+09-23 01:55:44.952   516   571 D EventHub: No input device configuration file found for device 'gpio-keys'.
+09-23 01:55:44.953   516   516 I SystemServiceManager: Starting com.android.server.BluetoothService
+09-23 01:55:44.956   516   571 W EventHub: Unable to disable kernel key repeat for /dev/input/event2: Function not implemented
+09-23 01:55:44.956   516   571 I EventHub: New device: id=2, fd=100, path='/dev/input/event2', name='gpio-keys', classes=0x81, configuration='', keyLayout='/system/usr/keylayout/Generic.kl', keyCharacterMap='/system/usr/keychars/Generic.kcm', builtinKeyboard=false, wakeMechanism=EPOLLWAKEUP, usingClockIoctl=true
+09-23 01:55:44.956   516   571 D EventHub: No input device configuration file found for device 'tegra-snd-t210ref-mobile-rt5677 Headset Jack'.
+09-23 01:55:44.958   516   571 W EventHub: Unable to disable kernel key repeat for /dev/input/event1: Function not implemented
+09-23 01:55:44.958   516   571 I EventHub: New device: id=3, fd=101, path='/dev/input/event1', name='tegra-snd-t210ref-mobile-rt5677 Headset Jack', classes=0x81, configuration='', keyLayout='/system/usr/keylayout/Generic.kl', keyCharacterMap='/system/usr/keychars/Generic.kcm', builtinKeyboard=false, wakeMechanism=EPOLLWAKEUP, usingClockIoctl=true
+09-23 01:55:44.958   516   516 D BluetoothManagerService: Loading stored name and address
+09-23 01:55:44.959   516   516 D BluetoothManagerService: Stored bluetooth Name=Pixel C,Address=22:22:E3:AC:CE:F2
+09-23 01:55:44.959   516   516 D BluetoothManagerService: Bluetooth persisted state: 1
+09-23 01:55:44.959   516   516 D BluetoothManagerService: Startup: Bluetooth persisted state is ON.
+09-23 01:55:44.959   516   516 I SystemServer: ConnectivityMetricsLoggerService
+09-23 01:55:44.959   516   516 I SystemServiceManager: Starting com.android.server.connectivity.MetricsLoggerService
+09-23 01:55:44.960   516   571 I InputReader: Device added: id=-1, name='Virtual', sources=0x00000301
+09-23 01:55:44.960   516   571 I InputReader: Device added: id=3, name='tegra-snd-t210ref-mobile-rt5677 Headset Jack', sources=0x80000101
+09-23 01:55:44.961   516   571 I InputReader: Device added: id=2, name='gpio-keys', sources=0x80000101
+09-23 01:55:44.961   516   571 I InputReader:   Touch device 'hid-over-i2c 06CB:3370' could not query the properties of its associated display.  The device will be inoperable until the display size becomes available.
+09-23 01:55:44.961   516   571 I InputReader: Device added: id=1, name='hid-over-i2c 06CB:3370', sources=0x00001002
+09-23 01:55:44.961   516   516 I SystemServer: IpConnectivityMetrics
+09-23 01:55:44.962   516   516 I SystemServiceManager: Starting com.android.server.connectivity.IpConnectivityMetrics
+09-23 01:55:44.962   516   516 I SystemServer: PinnerService
+09-23 01:55:44.962   516   516 I SystemServiceManager: Starting com.android.server.PinnerService
+09-23 01:55:44.963   516   516 I SystemServiceManager: Starting com.android.server.InputMethodManagerService$Lifecycle
+09-23 01:55:45.021   516   516 I SystemServer: StartAccessibilityManagerService
+09-23 01:55:45.027   516   516 I ActivityManager: Config changes=1df8 {1.0 ?mcc?mnc [en_US] ldltr sw900dp w1280dp h900dp 320dpi xlrg land ?uimode ?night -touch -keyb/v/h -nav/h s.2}
+09-23 01:55:45.034   516   537 I ActivityManager: Config changes=400 {1.0 ?mcc?mnc [en_US] ldltr sw900dp w1280dp h820dp 320dpi xlrg land ?uimode ?night -touch -keyb/v/h -nav/h s.3}
+09-23 01:55:45.041   516   516 I ActivityManager: Config changes=8 {1.0 ?mcc?mnc [en_US] ldltr sw900dp w1280dp h820dp 320dpi xlrg land ?uimode ?night finger -keyb/v/h -nav/h s.4}
+09-23 01:55:45.053   516   529 I UsageStatsService: User[0] Rollover scheduled @ 2017-09-23 01:43:54(1506131034120)
+09-23 01:55:45.055   516   529 I UsageStatsService: User[0] Rolling over usage stats
+09-23 01:55:45.055   516   516 I SystemServiceManager: Starting com.android.server.MountService$Lifecycle
+09-23 01:55:45.056   516   571 I InputReader: Reconfiguring input devices.  changes=0x00000004
+09-23 01:55:45.056   516   571 I InputReader: Device reconfigured: id=1, name='hid-over-i2c 06CB:3370', size 2560x1800, orientation 0, mode 1, display id 0
+09-23 01:55:45.062   516   516 I SystemServiceManager: Starting com.android.server.UiModeManagerService
+09-23 01:55:45.062   516   573 D MountService: Thinking about init, mSystemReady=false, mDaemonConnected=true
+09-23 01:55:45.062   516   573 D MountService: Thinking about reset, mSystemReady=false, mDaemonConnected=true
+09-23 01:55:45.063   516   573 D MountService: Thinking about init, mSystemReady=false, mDaemonConnected=true
+09-23 01:55:45.063   516   573 D MountService: Thinking about reset, mSystemReady=false, mDaemonConnected=true
+09-23 01:55:45.063   516   573 D CryptdConnector: SND -> {1 cryptfs getfield SystemLocale}
+09-23 01:55:45.063   516   516 I ActivityManager: Config changes=200 {1.0 ?mcc?mnc [en_US] ldltr sw900dp w1280dp h820dp 320dpi xlrg land finger -keyb/v/h -nav/h s.5}
+09-23 01:55:45.066   516   575 D CryptdConnector: RCV <- {113 1 en-US}
+09-23 01:55:45.067   516   575 D CryptdConnector: RCV <- {200 1 0}
+09-23 01:55:45.067   516   573 D MountService: Got locale en-US from mount service
+09-23 01:55:45.069   516   529 I UsageStatsService: User[0] Rollover scheduled @ 2017-09-24 01:55:45(1506218145027)
+09-23 01:55:45.069   516   529 I UsageStatsService: User[0] Rolling over usage stats complete. Took 14 milliseconds
+09-23 01:55:45.071   516   516 I SystemServer: StartLockSettingsService
+09-23 01:55:45.071   516   516 I SystemServiceManager: Starting com.android.server.LockSettingsService$Lifecycle
+09-23 01:55:45.074   516   573 D MountService: Setting system properties to en-US from mount service
+09-23 01:55:45.078   516   573 W MountService: No primary storage mounted!
+09-23 01:55:45.078   516   573 D VoldConnector: SND -> {1 asec list}
+09-23 01:55:45.079   516   574 D VoldConnector: RCV <- {200 1 asec operation succeeded}
+09-23 01:55:45.079   516   573 I PackageManager: No secure containers found
+09-23 01:55:45.079   516   573 W PackageManager: Not granting permission android.permission.MANAGE_DOCUMENTS to package com.google.android.youtube (protectionLevel=2 flags=0x3c59be45)
+09-23 01:55:45.079   516   573 W PackageManager: Unknown permission com.google.android.launcher.permission.CONTENT_REDIRECT in package com.google.android.googlequicksearchbox
+09-23 01:55:45.079   516   573 W PackageManager: Unknown permission com.google.android.voicesearch.SHORTCUTS_ACCESS in package com.google.android.googlequicksearchbox
+09-23 01:55:45.079   516   573 W PackageManager: Unknown permission com.google.android.voicesearch.ACCESS_SETTINGS in package com.google.android.googlequicksearchbox
+09-23 01:55:45.079   516   573 W PackageManager: Unknown permission com.android.browser.permission.PRELOAD in package com.google.android.googlequicksearchbox
+09-23 01:55:45.079   516   573 W PackageManager: Unknown permission com.google.android.ears.permission.WRITE in package com.google.android.googlequicksearchbox
+09-23 01:55:45.080   516   573 W PackageManager: Unknown permission com.google.android.apps.googlevoice.permission.AUTO_SEND in package com.google.android.googlequicksearchbox
+09-23 01:55:45.080   516   573 W PackageManager: Unknown permission com.android.chrome.PRERENDER_URL in package com.google.android.googlequicksearchbox
+09-23 01:55:45.080   516   573 W PackageManager: Not granting permission com.google.android.googleapps.permission.GOOGLE_AUTH to package com.android.providers.calendar (protectionLevel=2 flags=0x30083e45)
+09-23 01:55:45.080   516   573 W PackageManager: Not granting permission com.google.android.googleapps.permission.GOOGLE_AUTH.cl to package com.android.providers.calendar (protectionLevel=2 flags=0x30083e45)
+09-23 01:55:45.080   516   573 W PackageManager: Unknown permission com.android.launcher.permission.READ_SETTINGS in package com.google.android.apps.pixelclauncher
+09-23 01:55:45.080   516   573 W PackageManager: Not granting permission android.permission.WRITE_SECURE_SETTINGS to package com.google.android.apps.enterprise.dmagent (protectionLevel=50 flags=0x38083e05)
+09-23 01:55:45.080   516   573 W PackageManager: Not granting permission android.permission.CONNECTIVITY_INTERNAL to package com.google.android.apps.enterprise.dmagent (protectionLevel=18 flags=0x38083e05)
+09-23 01:55:45.080   516   573 W PackageManager: Not granting permission android.permission.MANAGE_USB to package com.google.android.apps.enterprise.dmagent (protectionLevel=18 flags=0x38083e05)
+09-23 01:55:45.080   516   573 W PackageManager: Not granting permission android.permission.CHANGE_COMPONENT_ENABLED_STATE to package com.google.android.apps.enterprise.dmagent (protectionLevel=18 flags=0x38083e05)
+09-23 01:55:45.080   516   573 W PackageManager: Not granting permission android.permission.MANAGE_CA_CERTIFICATES to package com.google.android.apps.enterprise.dmagent (protectionLevel=18 flags=0x38083e05)
+09-23 01:55:45.080   516   573 W PackageManager: Not granting permission android.permission.MANAGE_USERS to package com.google.android.apps.enterprise.dmagent (protectionLevel=18 flags=0x38083e05)
+09-23 01:55:45.080   516   573 W PackageManager: Not granting permission android.permission.SEND_DOWNLOAD_COMPLETED_INTENTS to package com.android.vending (protectionLevel=2 flags=0x384abe45)
+09-23 01:55:45.081   516   573 W PackageManager: Unknown permission com.google.android.email.permission.ACCESS_PROVIDER in package com.google.android.gm
+09-23 01:55:45.081   516   573 W PackageManager: Unknown permission com.google.android.gm.exchange.BIND in package com.google.android.gm
+09-23 01:55:45.081   516   573 W PackageManager: Unknown permission com.android.email.partnerprovider.PARTNER_PROVIDER in package com.google.android.gm
+09-23 01:55:45.081   516   573 W PackageManager: Unknown permission com.samsung.android.providers.context.permission.WRITE_USE_APP_FEATURE_SURVEY in package com.google.android.music
+09-23 01:55:45.081   516   573 W PackageManager: Unknown permission android.permission.WRITE_SYNC_STATS in package com.google.android.apps.docs
+09-23 01:55:45.081   516   573 W PackageManager: Not granting permission android.permission.INTERACT_ACROSS_USERS to package com.google.android.syncadapters.contacts (protectionLevel=50 flags=0x38083e45)
+09-23 01:55:45.082   516   516 I SystemServiceManager: Starting com.android.server.PersistentDataBlockService
+09-23 01:55:45.082   516   573 W PackageManager: Unknown permission com.google.android.syncadapters.contacts.permission.GAL_SEARCH in package com.google.android.syncadapters.contacts
+09-23 01:55:45.082   516   573 W PackageManager: Unknown permission com.chrome.permission.DEVICE_EXTRAS in package com.android.chrome
+09-23 01:55:45.082   516   573 W PackageManager: Unknown permission com.sec.enterprise.knox.MDM_CONTENT_PROVIDER in package com.android.chrome
+09-23 01:55:45.082   516   573 W PackageManager: Unknown permission com.google.android.permission.INSTALL_WEARABLE_PACKAGES in package com.google.android.packageinstaller
+09-23 01:55:45.082   516   573 W PackageManager: Unknown permission com.google.android.wearable.READ_SETTINGS in package com.google.android.gms
+09-23 01:55:45.082   516   573 W PackageManager: Unknown permission com.google.android.wh.supervisor.permission.ACCESS_METADATA_SERVICE in package com.google.android.gms
+09-23 01:55:45.083   516   573 W PackageManager: Unknown permission com.android.launcher.permission.PRELOAD_WORKSPACE in package com.google.android.partnersetup
+09-23 01:55:45.083   516   573 W PackageManager: Not granting permission com.google.android.googleapps.permission.GOOGLE_AUTH to package com.google.android.videos (protectionLevel=2 flags=0x385bbe45)
+09-23 01:55:45.083   516   573 W PackageManager: Unknown permission com.google.android.gallery3d.permission.PICASA_STORE in package com.google.android.apps.photos
+09-23 01:55:45.083   516   573 W PackageManager: Not granting permission android.permission.WRITE_MEDIA_STORAGE to package com.google.android.apps.photos (protectionLevel=18 flags=0x3858be45)
+09-23 01:55:45.083   516   573 W PackageManager: Unknown permission com.google.android.gm.exchange.BIND in package com.google.android.calendar
+09-23 01:55:45.083   516   573 W PackageManager: Not granting permission android.permission.DUMP to package com.google.android.apps.internal.betterbug (protectionLevel=50 flags=0x3808be45)
+09-23 01:55:45.083   516   573 W PackageManager: Not granting permission android.permission.CONTROL_KEYGUARD to package com.google.android.gsf.login (protectionLevel=2 flags=0x3048be45)
+09-23 01:55:45.083   516   573 W PackageManager: Unknown permission com.android.vending.billing.IBillingAccountService.BIND2 in package com.google.android.gsf.login
+09-23 01:55:45.083   516   573 W PackageManager: Unknown permission com.android.launcher.permission.READ_SETTINGS in package com.android.settings
+09-23 01:55:45.083   516   573 W PackageManager: Unknown permission com.android.launcher.permission.WRITE_SETTINGS in package com.android.settings
+09-23 01:55:45.084   516   573 W PackageManager: Not granting permission android.permission.REGISTER_CONNECTION_MANAGER to package com.google.android.talk (protectionLevel=18 flags=0x3059be45)
+09-23 01:55:45.084   516   573 W PackageManager: Unknown permission com.android.smspush.WAPPUSH_MANAGER_BIND in package com.android.phone
+09-23 01:55:45.084   516   573 W PackageManager: Unknown permission com.google.android.gallery3d.permission.GALLERY_PROVIDER in package com.android.bluetooth
+09-23 01:55:45.084   516   573 W PackageManager: Unknown permission com.android.gallery3d.permission.GALLERY_PROVIDER in package com.android.bluetooth
+09-23 01:55:45.084   516   573 W PackageManager: Not granting permission android.permission.BIND_WALLPAPER to package com.google.android.GoogleCamera (protectionLevel=18 flags=0x30583c45)
+09-23 01:55:45.084   516   573 W PackageManager: Unknown permission com.google.android.gallery3d.permission.GALLERY_PROVIDER in package com.google.android.GoogleCamera
+09-23 01:55:45.138   516   573 W MountService: No primary storage defined yet; hacking together a stub
+09-23 01:55:45.139   516   573 W MountService: No primary storage defined yet; hacking together a stub
+09-23 01:55:45.139   516   573 W MountService: No primary storage mounted!
+09-23 01:55:45.139   516   573 D VoldConnector: SND -> {2 asec list}
+09-23 01:55:45.140   516   574 D VoldConnector: RCV <- {200 2 asec operation succeeded}
+09-23 01:55:45.151   516   516 I SystemServiceManager: Starting com.android.server.DeviceIdleController
+09-23 01:55:45.156   516   516 I SystemServiceManager: Starting com.android.server.devicepolicy.DevicePolicyManagerService$Lifecycle
+09-23 01:55:45.164   516   516 I SystemServer: StartStatusBarManagerService
+09-23 01:55:45.167   516   516 I SystemServer: StartClipboardService
+09-23 01:55:45.168   516   516 I SystemServer: StartNetworkManagementService
+09-23 01:55:45.170   516   576 I NetworkManagement: onDaemonConnected()
+09-23 01:55:45.171   516   516 I SystemServiceManager: Starting com.android.server.TextServicesManagerService$Lifecycle
+09-23 01:55:45.172   516   516 W TextServicesManagerService: no available spell checker services found
+09-23 01:55:45.173   516   516 I SystemServer: StartNetworkScoreService
+09-23 01:55:45.174   516   516 I SystemServer: StartNetworkStatsService
+09-23 01:55:45.181   516   516 I SystemServer: StartNetworkPolicyManagerService
+09-23 01:55:45.187   516   516 I SystemServer: No Wi-Fi NAN Service (NAN support Not Present)
+09-23 01:55:45.202   516   516 I SystemServiceManager: Starting com.android.server.wifi.p2p.WifiP2pService
+09-23 01:55:45.220   516   516 I WifiP2pService: Registering wifip2p
+09-23 01:55:45.221   516   516 I SystemServiceManager: Starting com.android.server.wifi.WifiService
+09-23 01:55:45.231   516   516 D WifiCountryCode: Country code will be reverted to US on MCC loss
+09-23 01:55:45.264   516   516 D HS20    : Passpoint is enabled
+09-23 01:55:45.274   252   512 D CommandListener: Clearing all IP addresses on wlan0
+09-23 01:55:45.476   516   516 W art     : Long monitor contention with owner WifiStateMachine (581) at boolean com.android.server.wifi.WifiNative.unloadDriverNative()(WifiNative.java:-2) waiters=0 in java.lang.String com.android.server.wifi.WifiNative.doStringCommand(java.lang.String) for 201ms
+09-23 01:55:45.476   516   581 D WifiApConfigStore: 2G band allowed channels are:1,6,11
+09-23 01:55:45.477   516   516 E WifiLogger: no ring buffers found
+09-23 01:55:45.477   516   516 E WifiLogger: Failed to start packet fate monitoring
+09-23 01:55:45.489   516   516 D WifiController: isAirplaneModeOn = false, isWifiEnabled = false, isScanningAvailable = false
+09-23 01:55:45.493   516   516 I WifiService: Registering wifi
+09-23 01:55:45.498   516   516 I SystemServiceManager: Starting com.android.server.wifi.scanner.WifiScanningService
+09-23 01:55:45.499   516   516 I WifiScanningService: Creating wifiscanner
+09-23 01:55:45.500   516   516 I WifiScanningService: Publishing wifiscanner
+09-23 01:55:45.503   516   516 I SystemServiceManager: Starting com.android.server.wifi.RttService
+09-23 01:55:45.504   516   516 I RttService: Creating rttmanager
+09-23 01:55:45.505   516   516 I RttService: Starting rttmanager
+09-23 01:55:45.507   516   516 I SystemServiceManager: Starting com.android.server.ethernet.EthernetService
+09-23 01:55:45.507   516   516 I EthernetServiceImpl: Creating EthernetConfigStore
+09-23 01:55:45.510   516   516 E IpConfigStore: Error parsing configuration: java.io.FileNotFoundException: /data/misc/ethernet/ipconfig.txt (No such file or directory)
+09-23 01:55:45.510   516   516 W EthernetConfigStore: No Ethernet configuration found. Using default.
+09-23 01:55:45.510   516   516 I EthernetServiceImpl: Read stored IP configuration: IP assignment: DHCP
+09-23 01:55:45.510   516   516 I EthernetServiceImpl: Proxy settings: NONE
+09-23 01:55:45.511   516   516 I EthernetService: Registering service ethernet
+09-23 01:55:45.512   516   516 I SystemServer: StartConnectivityService
+09-23 01:55:45.516   516   516 D ConnectivityService: ConnectivityService starting up
+09-23 01:55:45.518   516   516 D ConnectivityService: wifiOnly=true
+09-23 01:55:45.519   516   516 D ConnectivityService: networkAttributes - ignoring mobile as this dev is wifiOnly 0
+09-23 01:55:45.519   516   516 D ConnectivityService: networkAttributes - ignoring mobile as this dev is wifiOnly 2
+09-23 01:55:45.519   516   516 D ConnectivityService: networkAttributes - ignoring mobile as this dev is wifiOnly 3
+09-23 01:55:45.519   516   516 D ConnectivityService: networkAttributes - ignoring mobile as this dev is wifiOnly 5
+09-23 01:55:45.519   516   516 D ConnectivityService: networkAttributes - ignoring mobile as this dev is wifiOnly 10
+09-23 01:55:45.519   516   516 D ConnectivityService: networkAttributes - ignoring mobile as this dev is wifiOnly 11
+09-23 01:55:45.519   516   516 D ConnectivityService: networkAttributes - ignoring mobile as this dev is wifiOnly 12
+09-23 01:55:45.519   516   516 D ConnectivityService: networkAttributes - ignoring mobile as this dev is wifiOnly 14
+09-23 01:55:45.519   516   516 D ConnectivityService: networkAttributes - ignoring mobile as this dev is wifiOnly 15
+09-23 01:55:45.519   516   516 E ConnectivityService: Ignoring protectedNetwork 10
+09-23 01:55:45.519   516   516 E ConnectivityService: Ignoring protectedNetwork 11
+09-23 01:55:45.519   516   516 E ConnectivityService: Ignoring protectedNetwork 12
+09-23 01:55:45.519   516   516 E ConnectivityService: Ignoring protectedNetwork 14
+09-23 01:55:45.519   516   516 E ConnectivityService: Ignoring protectedNetwork 15
+09-23 01:55:45.528   516   516 I SystemServer: StartNsdService
+09-23 01:55:45.530   516   516 I SystemServer: StartUpdateLockService
+09-23 01:55:45.531   516   516 I SystemServiceManager: Starting com.android.server.RecoverySystemService
+09-23 01:55:45.533   516   516 I SystemServiceManager: Starting com.android.server.notification.NotificationManagerService
+09-23 01:55:45.546   516   516 D ConditionProviders.SCP: new ScheduleConditionProvider()
+09-23 01:55:45.549   516   516 D ZenLog  : config: readXml,ZenModeConfig[user=0,allowCalls=true,allowRepeatCallers=false,allowMessages=false,allowCallsFrom=contacts,allowMessagesFrom=contacts,allowReminders=true,allowEvents=true,allowWhenScreenOff=true,allowWhenScreenOn=true,automaticRules={c93987e11cb54bfa82b61e97da8efdc8=ZenRule[enabled=false,snoozing=false,name=Weekend,zenMode=ZEN_MODE_ALARMS,conditionId=condition://android/schedule?days=6.7&start=23.30&end=10.0&exitAtAlarm=false,condition=Condition[id=condition://android/schedule?days=6.7&start=23.30&end=10.0&exitAtAlarm=false,summary=...,line1=...,line2=...,icon=0,state=STATE_TRUE,flags=2],component=ComponentInfo{android/com.android.server.notification.ScheduleConditionProvider},id=c93987e11cb54bfa82b61e97da8efdc8,creationTime=1486411995872,enabler=null], 998a4fdfb8f2465bb809753f8f5172f1=ZenRule[enabled=false,snoozing=false,name=Event,zenMode=ZEN_MODE_ALARMS,conditionId=condition://android/event?userId=-10000&calendar=&reply=1,condition=Condition[id=condition://android/event?userId=-10000&calendar=&reply=1,summary=...,line1=...,line2=...,icon=0,state=STATE_FALSE,flags=2],component=ComponentInfo{android/com.android.server.notification.EventConditionProvider},id=998a4fdfb8f2465bb809753f8f5172f1,creationTime=1486411995872,enabler=null], 651bcefad2f047e19a76a25bbaa7f090=ZenRule[enabled=false,snoozing=false,name=Weeknight,zenMode=ZEN_MODE_ALARMS,conditionId=condition://android/schedule?days=1.2.3.4.5&start=22.0&end=7.0&exitAtAlarm=false,condition=Condition[id=condition://android/schedule?days=1.2.3.4.5&start=22.0&end=7.0&exitAtAlarm=false,summary=...,line1=...,line2=...,icon=0,state=STATE_FALSE,flags=2],component=ComponentInfo{android/com.android.server.notification.ScheduleConditionProvider},id=651bcefad2f047e19a76a25bbaa7f090,creationTime=1486411995872,enabler=null]},manualRule=null],Diff[automaticRule[c93987e11cb54bfa82b61e97da8efdc8]:insert,automaticRule[998a4fdfb8f2465bb809753f8f5172f1]:insert,automaticRule[651bcefad2f047e19a76a25bbaa7f090]:insert,automaticRule[e900f8de626841178d2d5341b52022f6]:delete,automaticRule[64268aeb60ea490494fa0ad8b7f219e7]:delete,automaticRule[8dfa06ca63ed4300865ccb6788966ec7]:delete]
+09-23 01:55:45.556   516   516 D ZenLog  : set_zen_mode: off,init
+09-23 01:55:45.558   516   516 I SystemServiceManager: Starting com.android.server.storage.DeviceStorageMonitorService
+09-23 01:55:45.561   516   516 I SystemServer: StartLocationManagerService
+09-23 01:55:45.564   516   516 I SystemServer: StartCountryDetectorService
+09-23 01:55:45.565   516   516 I SystemServer: StartSearchManagerService
+09-23 01:55:45.565   516   516 I SystemServiceManager: Starting com.android.server.search.SearchManagerService$Lifecycle
+09-23 01:55:45.566   516   516 I SystemServiceManager: Starting com.android.server.DropBoxManagerService
+09-23 01:55:45.568   516   516 I SystemServer: StartWallpaperManagerService
+09-23 01:55:45.568   516   516 I SystemServiceManager: Starting com.android.server.wallpaper.WallpaperManagerService$Lifecycle
+09-23 01:55:45.570   516   516 E BitmapFactory: Unable to decode stream: java.io.FileNotFoundException: /data/system/users/0/wallpaper_orig (No such file or directory)
+09-23 01:55:45.570   516   516 E WallpaperManagerService: Invalid wallpaper data
+09-23 01:55:45.570   516   516 E WallpaperManagerService: Unable to apply new wallpaper
+09-23 01:55:45.571   516   516 I SystemServer: StartAudioService
+09-23 01:55:45.571   516   516 I SystemServiceManager: Starting com.android.server.audio.AudioService$Lifecycle
+09-23 01:55:45.578   242   320 D PermissionCache: checking android.permission.MODIFY_AUDIO_SETTINGS for uid=1000 => granted (354 us)
+09-23 01:55:45.580   516   516 W TelecomManager: Telecom Service not found.
+09-23 01:55:45.582   242   310 W AudioFlinger: no wake lock to update, system not ready yet
+09-23 01:55:45.604   516   516 I SystemServiceManager: Starting com.android.server.DockObserver
+09-23 01:55:45.604   516   516 W DockObserver: This kernel does not have dock station support
+09-23 01:55:45.606   516   516 I SystemServer: StartWiredAccessoryManager
+09-23 01:55:45.607   516   516 W WiredAccessoryManager: This kernel does not have usb audio support
+09-23 01:55:45.607   516   516 W WiredAccessoryManager: This kernel does not have HDMI audio support
+09-23 01:55:45.607   516   516 I SystemServiceManager: Starting com.android.server.midi.MidiService$Lifecycle
+09-23 01:55:45.609   516   516 I SystemServiceManager: Starting com.android.server.usb.UsbService$Lifecycle
+09-23 01:55:45.616   516   516 E UsbDeviceManager: failed to write to /sys/class/android_usb/android0/f_rndis/ethaddr
+09-23 01:55:45.616   516   516 I UsbDeviceManager: Setting USB config to adb
+09-23 01:55:45.731   516   516 I SystemServer: StartSerialService
+09-23 01:55:45.734   516   516 E HardwarePropertiesManagerService-JNI: Couldn't load thermal module (No such file or directory)
+09-23 01:55:45.736   516   516 I SystemServiceManager: Starting com.android.server.twilight.TwilightService
+09-23 01:55:45.738   516   516 I SystemServiceManager: Starting com.android.server.job.JobSchedulerService
+09-23 01:55:45.741   516   516 D JobStore: Start tag: job-info
+09-23 01:55:45.745   516   516 I SystemServiceManager: Starting com.android.server.soundtrigger.SoundTriggerService
+09-23 01:55:45.746   516   516 I SystemServiceManager: Starting com.android.server.backup.BackupManagerService$Lifecycle
+09-23 01:55:45.748   516   516 I SystemServiceManager: Starting com.android.server.appwidget.AppWidgetService
+09-23 01:55:45.757   516   516 I SystemServiceManager: Starting com.android.server.voiceinteraction.VoiceInteractionManagerService
+09-23 01:55:45.759   516   516 I SystemServer: Gesture Launcher Service
+09-23 01:55:45.759   516   516 I SystemServiceManager: Starting com.android.server.GestureLauncherService
+09-23 01:55:45.759   516   516 I SystemServiceManager: Starting com.android.server.SensorNotificationService
+09-23 01:55:45.759   516   516 I SystemServiceManager: Starting com.android.server.ContextHubSystemService
+09-23 01:55:45.763   516   516 E ContextHubService: ** Could not load context_hub module : err No such file or directory
+09-23 01:55:45.763   516   516 W ContextHubService: No Context Hub Module present
+09-23 01:55:45.763   516   516 I SystemServer: StartDiskStatsService
+09-23 01:55:45.765   516   516 I SystemServer: StartSamplingProfilerService
+09-23 01:55:45.769   516   516 I SystemServer: StartNetworkTimeUpdateService
+09-23 01:55:45.770   516   516 I SystemServer: StartCommonTimeManagementService
+09-23 01:55:45.771   516   516 I SystemServer: CertBlacklister
+09-23 01:55:45.773   516   516 I SystemServiceManager: Starting com.android.server.emergency.EmergencyAffordanceService
+09-23 01:55:45.774   516   516 I SystemServiceManager: Starting com.android.server.dreams.DreamManagerService
+09-23 01:55:45.775   516   516 I SystemServer: StartAssetAtlasService
+09-23 01:55:45.777   516   516 I SystemServiceManager: Starting com.android.server.print.PrintManagerService
+09-23 01:55:45.778   516   600 D AssetAtlas: Loaded configuration: SliceMinArea (960x576) flags=0x2 count=98
+09-23 01:55:45.784   516   516 I SystemServiceManager: Starting com.android.server.restrictions.RestrictionsManagerService
+09-23 01:55:45.785   516   516 I SystemServiceManager: Starting com.android.server.media.MediaSessionService
+09-23 01:55:45.791   516   516 I SystemServer: StartMediaRouterService
+09-23 01:55:45.793   516   516 I SystemServiceManager: Starting com.android.server.trust.TrustManagerService
+09-23 01:55:45.795   516   516 I SystemServer: StartBackgroundDexOptService
+09-23 01:55:45.796   516   516 I SystemServiceManager: Starting com.android.server.pm.ShortcutService$Lifecycle
+09-23 01:55:45.803   516   516 I SystemServiceManager: Starting com.android.server.pm.LauncherAppsService
+09-23 01:55:45.806   516   516 I SystemServiceManager: Starting com.android.server.media.projection.MediaProjectionManagerService
+09-23 01:55:45.806   516   600 D NvOsDebugPrintf: NvRmPrivGetChipPlatform: Could not read platform information
+09-23 01:55:45.806   516   600 D NvOsDebugPrintf: Expected on kernels without fuse support, using silicon
+09-23 01:55:45.809   516   516 V MediaRouter: Adding route: RouteInfo{ name=Tablet, description=null, status=null, category=RouteCategory{ name=null types=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO  groupable=false }, supportedTypes=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO , presentationDisplay=null }
+09-23 01:55:45.810   516   516 V MediaRouter: Updating audio routes: AudioRoutesInfo{ type=SPEAKER }
+09-23 01:55:45.811   516   516 V MediaRouter: Selecting route: RouteInfo{ name=Tablet, description=null, status=null, category=RouteCategory{ name=null types=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO  groupable=false }, supportedTypes=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO , presentationDisplay=null }
+09-23 01:55:45.812   516   516 I WindowManager: SAFE MODE not enabled
+09-23 01:55:45.812   516   516 I SystemServiceManager: Starting com.android.server.MmsServiceBroker
+09-23 01:55:45.815   516   516 W VibratorService: Tried to stop vibrating but there is no vibrator device.
+09-23 01:55:45.835   516   516 E LockSettingsStorage: Cannot read file java.io.FileNotFoundException: /data/system/gatekeeper.password.key: open failed: ENOENT (No such file or directory)
+09-23 01:55:45.835   516   516 E LockSettingsStorage: Cannot read file java.io.FileNotFoundException: /data/system/password.key: open failed: ENOENT (No such file or directory)
+09-23 01:55:45.836   516   516 E LockSettingsStorage: Cannot read file java.io.FileNotFoundException: /data/system/gatekeeper.pattern.key: open failed: ENOENT (No such file or directory)
+09-23 01:55:45.836   516   516 E LockSettingsStorage: Cannot read file java.io.FileNotFoundException: /data/system/gatekeeper.gesture.key: open failed: ENOENT (No such file or directory)
+09-23 01:55:45.836   516   516 E LockSettingsStorage: Cannot read file java.io.FileNotFoundException: /data/system/gesture.key: open failed: ENOENT (No such file or directory)
+09-23 01:55:45.836   516   516 I SystemServiceManager: Starting phase 480
+09-23 01:55:45.840   516   516 I DevicePolicyManagerService: Set ro.device_owner property to false
+09-23 01:55:45.842   516   516 I SystemServiceManager: Starting phase 500
+09-23 01:55:45.844   516   516 D ConnectivityMetricsLoggerService: onBootPhase: PHASE_SYSTEM_SERVICES_READY
+09-23 01:55:45.849   516   516 I WifiService: WifiService starting up with Wi-Fi disabled
+09-23 01:55:45.850   516   516 I WifiScanningService: Starting wifiscanner
+09-23 01:55:45.853   516   516 I RttService: Registering rttmanager
+09-23 01:55:45.853   516   516 I EthernetServiceImpl: Starting Ethernet service
+09-23 01:55:45.855   516   516 D Ethernet: Registering NetworkFactory
+09-23 01:55:45.855   516   585 D ConnectivityService: Got NetworkFactory Messenger for Ethernet
+09-23 01:55:45.856   516   603 D Ethernet: got request NetworkRequest [ REQUEST id=1, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN] ] with score 0
+09-23 01:55:45.858   516   516 D ZenLog  : config: cleanUpZenRules,ZenModeConfig[user=0,allowCalls=true,allowRepeatCallers=false,allowMessages=false,allowCallsFrom=contacts,allowMessagesFrom=contacts,allowReminders=true,allowEvents=true,allowWhenScreenOff=true,allowWhenScreenOn=true,automaticRules={c93987e11cb54bfa82b61e97da8efdc8=ZenRule[enabled=false,snoozing=false,name=Weekend,zenMode=ZEN_MODE_ALARMS,conditionId=condition://android/schedule?days=6.7&start=23.30&end=10.0&exitAtAlarm=false,condition=Condition[id=condition://android/schedule?days=6.7&start=23.30&end=10.0&exitAtAlarm=false,summary=...,line1=...,line2=...,icon=0,state=STATE_TRUE,flags=2],component=ComponentInfo{android/com.android.server.notification.ScheduleConditionProvider},id=c93987e11cb54bfa82b61e97da8efdc8,creationTime=1486411995872,enabler=null], 998a4fdfb8f2465bb809753f8f5172f1=ZenRule[enabled=false,snoozing=false,name=Event,zenMode=ZEN_MODE_ALARMS,conditionId=condition://android/event?userId=-10000&calendar=&reply=1,condition=Condition[id=condition://android/event?userId=-10000&calendar=&reply=1,summary=...,line1=...,line2=...,icon=0,state=STATE_FALSE,flags=2],component=ComponentInfo{android/com.android.server.notification.EventConditionProvider},id=998a4fdfb8f2465bb809753f8f5172f1,creationTime=1486411995872,enabler=null], 651bcefad2f047e19a76a25bbaa7f090=ZenRule[enabled=false,snoozing=false,name=Weeknight,zenMode=ZEN_MODE_ALARMS,conditionId=condition://android/schedule?days=1.2.3.4.5&start=22.0&end=7.0&exitAtAlarm=false,condition=Condition[id=condition://android/schedule?days=1.2.3.4.5&start=22.0&end=7.0&exitAtAlarm=false,summary=...,line1=...,line2=...,icon=0,state=STATE_FALSE,flags=2],component=ComponentInfo{android/com.android.server.notification.ScheduleConditionProvider},id=651bcefad2f047e19a76a25bbaa7f090,creationTime=1486411995872,enabler=null]},manualRule=null],Diff[]
+09-23 01:55:45.858   516   516 D ZenLog  : set_zen_mode: off,onSystemReady
+09-23 01:55:45.859   242   320 D PermissionCache: checking android.permission.CAPTURE_AUDIO_HOTWORD for uid=1000 => granted (146 us)
+09-23 01:55:45.859   516   516 D ContextHubSystemService: onBootPhase: PHASE_SYSTEM_SERVICES_READY
+09-23 01:55:45.872   516   516 V UserManagerService: Found /data/user_de/0 with serial number 0
+09-23 01:55:45.872   516   516 V UserManagerService: Found /data/user/0 with serial number 0
+09-23 01:55:45.873   516   516 V UserManagerService: Found /data/system_de/0 with serial number 0
+09-23 01:55:45.873   516   516 V UserManagerService: Found /data/system_ce/0 with serial number 0
+09-23 01:55:45.874   516   539 W KeyguardServiceDelegate: onScreenTurningOn(): no keyguard service!
+09-23 01:55:45.876   516   516 I ActivityManager: System now ready
+09-23 01:55:45.889   516   516 I SystemServer: Making services ready
+09-23 01:55:45.889   516   516 I SystemServiceManager: Starting phase 550
+09-23 01:55:45.914   516   516 D BluetoothManagerService: Bluetooth boot completed
+09-23 01:55:45.914   516   516 D BluetoothManagerService: Auto-enabling Bluetooth.
+09-23 01:55:45.914   516   536 D BluetoothManagerService: MESSAGE_ENABLE(0): mBluetooth = null
+09-23 01:55:45.914   516   516 E InputMethodManagerService: Ignoring updateSystemUiLocked due to an invalid token. uid:1000 token:null
+09-23 01:55:45.926   516   536 I Zygote  : Process: zygote socket opened, supported ABIS: arm64-v8a
+09-23 01:55:45.936   516   536 I Zygote  : Process: zygote socket opened, supported ABIS: armeabi-v7a,armeabi
+09-23 01:55:45.937   241   241 I art     : Starting a blocking GC Background
+09-23 01:55:45.967   516   536 W ActivityManager: Slow operation: 52ms so far, now at startProcess: returned from zygote!
+09-23 01:55:45.967   516   536 W ActivityManager: Slow operation: 52ms so far, now at startProcess: done updating battery stats
+09-23 01:55:45.967   516   536 W ActivityManager: Slow operation: 52ms so far, now at startProcess: building log message
+09-23 01:55:45.967   516   536 I ActivityManager: Start proc 611:com.android.bluetooth/1002 for service com.android.bluetooth/.btservice.AdapterService
+09-23 01:55:45.967   516   536 W ActivityManager: Slow operation: 52ms so far, now at startProcess: starting to update pids map
+09-23 01:55:45.967   516   536 W ActivityManager: Slow operation: 52ms so far, now at startProcess: done updating pids map
+09-23 01:55:45.967   516   536 W ActivityManager: Slow operation: 52ms so far, now at startProcess: done starting proc!
+09-23 01:55:45.971   516   600 D AssetAtlas: Rendered atlas in 186.03ms (18.86+167.17ms)
+09-23 01:55:45.979   516   516 I ActivityManager: Start proc 616:com.google.android.inputmethod.latin/u0a65 for service com.google.android.inputmethod.latin/com.android.inputmethod.latin.LatinIME
+09-23 01:55:45.979   516   516 V InputMethodManagerService: Adding window token: android.os.Binder@1751544
+09-23 01:55:45.979   516   573 D MountService: Thinking about init, mSystemReady=true, mDaemonConnected=true
+09-23 01:55:45.980   516   573 D MountService: Setting up emulation state, initlocked=false
+09-23 01:55:45.980   516   516 W TextServicesManagerService: no available spell checker services found
+09-23 01:55:45.980   516   573 D CryptdConnector: SND -> {2 cryptfs unlock_user_key 0 0 ! !}
+09-23 01:55:45.980   167   174 D vold    : e4crypt_unlock_user_key 0 serial=0 token_present=0
+09-23 01:55:45.981   516   575 D CryptdConnector: RCV <- {200 2 Command succeeded}
+09-23 01:55:45.981   516   573 D MountService: Thinking about reset, mSystemReady=true, mDaemonConnected=true
+09-23 01:55:45.981   516   573 D VoldConnector: SND -> {3 volume reset}
+09-23 01:55:45.981   516   516 D UsbAlsaManager: Adding ALSA device AlsaDevice: [card: 0, device: 87, type: 2]
+09-23 01:55:45.981   516   516 D UsbAlsaManager: Adding ALSA device AlsaDevice: [card: 0, device: 9, type: 1]
+09-23 01:55:45.981   516   516 D UsbAlsaManager: Adding ALSA device AlsaDevice: [card: 0, device: 8, type: 1]
+09-23 01:55:45.981   516   516 D UsbAlsaManager: Adding ALSA device AlsaDevice: [card: 0, device: 9, type: 2]
+09-23 01:55:45.981   516   516 D UsbAlsaManager: Adding ALSA device AlsaDevice: [card: 0, device: 7, type: 1]
+09-23 01:55:45.981   516   516 D UsbAlsaManager: Adding ALSA device AlsaDevice: [card: 0, device: 8, type: 2]
+09-23 01:55:45.981   516   516 D UsbAlsaManager: Adding ALSA device AlsaDevice: [card: 0, device: 6, type: 1]
+09-23 01:55:45.982   516   574 D VoldConnector: RCV <- {651 emulated 7}
+09-23 01:55:45.982   516   516 D UsbAlsaManager: Adding ALSA device AlsaDevice: [card: 0, device: 7, type: 2]
+09-23 01:55:45.982   516   516 D UsbAlsaManager: Adding ALSA device AlsaDevice: [card: 0, device: 5, type: 1]
+09-23 01:55:45.982   516   516 D UsbAlsaManager: Adding ALSA device AlsaDevice: [card: 0, device: 6, type: 2]
+09-23 01:55:45.982   516   516 D UsbAlsaManager: Adding ALSA device AlsaDevice: [card: 0, device: 4, type: 1]
+09-23 01:55:45.982   516   516 D UsbAlsaManager: Adding ALSA device AlsaDevice: [card: 0, device: 5, type: 2]
+09-23 01:55:45.982   516   574 D VoldConnector: RCV <- {659 emulated}
+09-23 01:55:45.982   516   516 D UsbAlsaManager: Adding ALSA device AlsaDevice: [card: 0, device: 3, type: 1]
+09-23 01:55:45.982   516   516 D UsbAlsaManager: Adding ALSA device AlsaDevice: [card: 0, device: 4, type: 2]
+09-23 01:55:45.982   516   516 D UsbAlsaManager: Adding ALSA device AlsaDevice: [card: 0, device: 2, type: 1]
+09-23 01:55:45.982   516   516 D UsbAlsaManager: Adding ALSA device AlsaDevice: [card: 0, device: 3, type: 2]
+09-23 01:55:45.982   516   574 D VoldConnector: RCV <- {650 emulated 2 "" ""}
+09-23 01:55:45.982   516   516 D UsbAlsaManager: Adding ALSA device AlsaDevice: [card: 0, device: 1, type: 1]
+09-23 01:55:45.982   516   516 D UsbAlsaManager: Adding ALSA device AlsaDevice: [card: 0, device: 2, type: 2]
+09-23 01:55:45.982   516   516 D UsbAlsaManager: Adding ALSA device AlsaDevice: [card: 0, device: 0, type: 1]
+09-23 01:55:45.982   516   574 D VoldConnector: RCV <- {651 emulated 0}
+09-23 01:55:45.982   516   516 D UsbAlsaManager: Adding ALSA device AlsaDevice: [card: 0, device: 1, type: 2]
+09-23 01:55:45.982   516   516 D UsbAlsaManager: Adding ALSA device AlsaDevice: [card: 0, device: 0, type: 2]
+09-23 01:55:45.982   516   574 D VoldConnector: RCV <- {200 3 Command succeeded}
+09-23 01:55:45.982   516   530 I ActivityManager: Force stopping com.android.providers.media appid=10009 user=-1: vold reset
+09-23 01:55:45.983   516   573 D VoldConnector: SND -> {4 volume user_added 0 0}
+09-23 01:55:45.983   516   535 V MountService: Found primary storage at VolumeInfo{emulated}:
+09-23 01:55:45.983   516   535 V MountService:     type=EMULATED diskId=null partGuid=null mountFlags=0 mountUserId=-1
+09-23 01:55:45.983   516   535 V MountService:     state=UNMOUNTED
+09-23 01:55:45.983   516   535 V MountService:     fsType=null fsUuid=null fsLabel=null
+09-23 01:55:45.983   516   535 V MountService:     path=null internalPath=null
+09-23 01:55:45.983   516   574 D VoldConnector: RCV <- {200 4 Command succeeded}
+09-23 01:55:45.984   516   516 I SystemServer: WebViewFactory preparation
+09-23 01:55:45.986   516   573 D VoldConnector: SND -> {5 volume mount emulated 3 -1}
+09-23 01:55:45.987   516   592 D BluetoothManagerService: Creating new ProfileServiceConnections object for profile: 1
+09-23 01:55:45.987   516   592 E BluetoothManagerService: Fail to bind to: Intent { act=android.bluetooth.IBluetoothHeadset }
+09-23 01:55:45.987   516   592 W BluetoothManagerService: Unable to bind with intent: Intent { act=android.bluetooth.IBluetoothHeadset }
+09-23 01:55:45.988   167   173 V vold    : Waiting for FUSE to spin up...
+09-23 01:55:45.989   516   574 D VoldConnector: RCV <- {651 emulated 1}
+09-23 01:55:45.989   516   574 D VoldConnector: RCV <- {656 emulated /data/media}
+09-23 01:55:45.989   516   574 D VoldConnector: RCV <- {655 emulated /storage/emulated}
+09-23 01:55:45.989   516   535 I UsbPortManager: USB port added: port=UsbPort{id=otg_default, supportedModes=dual}, status=UsbPortStatus{connected=true, currentMode=ufp, currentPowerRole=sink, currentDataRole=device, supportedRoleCombinations=[sink:device]}, canChangeMode=false, canChangePowerRole=false, canChangeDataRole=false
+09-23 01:55:45.992   242   320 I AudioFlinger: systemReady
+09-23 01:55:45.994   516   516 D WebViewFactory: Setting new address space to 116905264
+09-23 01:55:46.001   241   615 I art     : Starting a blocking GC HeapTrim
+09-23 01:55:46.007   516   630 E WVMExtractor: Failed to open libwvm.so: dlopen failed: library "libwvm.so" not found
+09-23 01:55:46.010   624   624 W sdcard  : Device explicitly disabled sdcardfs
+09-23 01:55:46.010   516   516 I ActivityManager: Start proc 643:WebViewLoader-armeabi-v7a/1037 [android.webkit.WebViewFactory$RelroFileCreator] for
+09-23 01:55:46.021   643   643 V WebViewFactory: RelroFileCreator (64bit = false),  32-bit lib: /system/app/Chrome/Chrome.apk!/lib/armeabi-v7a/libmonochrome.so, 64-bit lib: /system/app/Chrome/Chrome.apk!/lib/arm64-v8a/libmonochrome.so
+09-23 01:55:46.021   516   516 I ActivityManager: Start proc 653:WebViewLoader-arm64-v8a/1037 [android.webkit.WebViewFactory$RelroFileCreator] for
+09-23 01:55:46.023   250   250 I MediaPlayerService: MediaPlayerService::getOMX
+09-23 01:55:46.033   653   653 V WebViewFactory: RelroFileCreator (64bit = true),  32-bit lib: /system/app/Chrome/Chrome.apk!/lib/armeabi-v7a/libmonochrome.so, 64-bit lib: /system/app/Chrome/Chrome.apk!/lib/arm64-v8a/libmonochrome.so
+09-23 01:55:46.033   516   516 I ActivityManager: Start proc 671:com.android.systemui/u0a31 for service com.android.systemui/.SystemUIService
+09-23 01:55:46.034   516   516 D NetworkManagement: enabling bandwidth control
+09-23 01:55:46.042   516   574 D VoldConnector: RCV <- {651 emulated 2}
+09-23 01:55:46.042   516   574 D VoldConnector: RCV <- {200 5 Command succeeded}
+09-23 01:55:46.081   616   616 W System  : ClassLoader referenced unknown path: /system/app/LatinIMEGooglePrebuilt/lib/arm64
+09-23 01:55:46.111   671   671 W System  : ClassLoader referenced unknown path: /system/priv-app/SystemUIGoogle/lib/arm64
+09-23 01:55:46.138   643   643 I art     : System.exit called, status: 0
+09-23 01:55:46.138   643   643 I AndroidRuntime: VM exiting with result code 0, cleanup skipped.
+09-23 01:55:46.146   516   516 W NetworkManagement: setDataSaverMode(): already false
+09-23 01:55:46.166   653   653 I art     : System.exit called, status: 0
+09-23 01:55:46.166   653   653 I AndroidRuntime: VM exiting with result code 0, cleanup skipped.
+09-23 01:55:46.207   516   516 D NetworkPolicy: setRestrictBackgroundUL(): false
+09-23 01:55:46.208   516   516 W NetworkManagement: setDataSaverMode(): already false
+09-23 01:55:46.285   611   611 D AdapterServiceConfig: Adding A2dpService
+09-23 01:55:46.286   611   611 D AdapterServiceConfig: Adding HidService
+09-23 01:55:46.286   611   611 D AdapterServiceConfig: Adding HealthService
+09-23 01:55:46.286   611   611 D AdapterServiceConfig: Adding PanService
+09-23 01:55:46.286   611   611 D AdapterServiceConfig: Adding GattService
+09-23 01:55:46.295   671   671 V SystemUIService: Starting SystemUI services for user 0.
+09-23 01:55:46.332   671   671 V MediaRouter: Adding route: RouteInfo{ name=Tablet, description=null, status=null, category=RouteCategory{ name=null types=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO  groupable=false }, supportedTypes=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO , presentationDisplay=null }
+09-23 01:55:46.332   516   516 I SystemServiceManager: Starting phase 600
+09-23 01:55:46.334   671   671 V MediaRouter: Updating audio routes: AudioRoutesInfo{ type=SPEAKER }
+09-23 01:55:46.335   671   671 V MediaRouter: Selecting route: RouteInfo{ name=Tablet, description=null, status=null, category=RouteCategory{ name=null types=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO  groupable=false }, supportedTypes=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO , presentationDisplay=null }
+09-23 01:55:46.348   516   516 I ActivityManager: Start proc 726:com.ustwo.lwp/u0a83 for service com.ustwo.lwp/.wallpapers.timelapse.TimelapseWallpaperService
+09-23 01:55:46.354   516   516 D SensorNotificationService: Cannot obtain dynamic meta sensor, not supported.
+09-23 01:55:46.355   671   671 V FingerprintManager: FingerprintManagerService was null
+09-23 01:55:46.356   671   671 W FingerprintManager: isFingerprintHardwareDetected(): Service not connected!
+09-23 01:55:46.356   671   671 W FingerprintManager: addLockoutResetCallback(): Service not connected!
+09-23 01:55:46.358   516   516 W LocationProviderProxy-network: Odd, no component found for service com.android.location.service.v3.NetworkLocationProvider
+09-23 01:55:46.361   516   516 W GeocoderProxy: Odd, no component found for service com.android.location.service.GeocodeProvider
+09-23 01:55:46.364   611   611 D BluetoothAdapterService: onCreate()
+09-23 01:55:46.369   611   611 D BluetoothAdapterState: make() - Creating AdapterState
+09-23 01:55:46.372   516   516 E FlpHardwareProvider: Error hw_get_module 'flp': -2
+09-23 01:55:46.372   516   516 D LocationManagerService: FLP HAL not supported
+09-23 01:55:46.374   516   516 W GeofenceProxy: Odd, no component found for service com.android.location.service.GeofenceProvider
+09-23 01:55:46.376   516   516 E ActivityRecognitionHardware: Error hw_get_module: -2
+09-23 01:55:46.376   516   516 D LocationManagerService: Hardware Activity-Recognition not supported.
+09-23 01:55:46.377   516   516 W ActivityRecognitionProxy: Odd, no component found for service com.android.location.service.ActivityRecognitionProvider
+09-23 01:55:46.380   611   611 I bt_btif : init
+09-23 01:55:46.381   611   740 I BluetoothAdapterState: Entering OffState
+09-23 01:55:46.385   671   743 E WVMExtractor: Failed to open libwvm.so: dlopen failed: library "libwvm.so" not found
+09-23 01:55:46.385   516   516 I CommonTimeManagementService: No common time service detected on this platform.  Common time services will be unavailable.
+09-23 01:55:46.385   726   726 W System  : ClassLoader referenced unknown path: /system/app/WallpapersUsTwo/lib/arm64
+09-23 01:55:46.387   516   571 I InputReader: Reconfiguring input devices.  changes=0x00000020
+09-23 01:55:46.391   516   571 I InputReader: Reconfiguring input devices.  changes=0x00000010
+09-23 01:55:46.392   611   741 W bt_osi_thread: run_thread: thread id 741, thread name stack_manager started
+09-23 01:55:46.393   611   741 I bt_stack_manager: event_init_stack is initializing the stack
+09-23 01:55:46.393   611   741 I bt_core_module: module_init Initializing module "osi_module"
+09-23 01:55:46.393   611   741 I bt_core_module: module_init Initialized module "osi_module"
+09-23 01:55:46.393   611   741 I bt_core_module: module_init Initializing module "bt_utils_module"
+09-23 01:55:46.393   611   741 I bt_core_module: module_init Initialized module "bt_utils_module"
+09-23 01:55:46.393   611   741 I bt_core_module: module_init Initializing module "btif_config_module"
+09-23 01:55:46.394   516   516 I MmsServiceBroker: Delay connecting to MmsService until an API is called
+09-23 01:55:46.401   611   747 W bt_osi_thread: run_thread: thread id 747, thread name alarm_default_ca started
+09-23 01:55:46.401   611   749 W bt_osi_thread: run_thread: thread id 749, thread name alarm_dispatcher started
+09-23 01:55:46.401   611   741 I bt_core_module: module_init Initialized module "btif_config_module"
+09-23 01:55:46.401   611   741 I bt_core_module: module_init Initializing module "interop_module"
+09-23 01:55:46.401   611   741 I bt_core_module: module_init Initialized module "interop_module"
+09-23 01:55:46.401   611   741 I bt_core_module: module_init Initializing module "stack_config_module"
+09-23 01:55:46.401   611   741 I bt_stack_config: init attempt to load stack conf from /etc/bluetooth/bt_stack.conf
+09-23 01:55:46.409   611   741 I bt_core_module: module_init Initialized module "stack_config_module"
+09-23 01:55:46.412   611   751 W bt_osi_thread: run_thread: thread id 751, thread name bt_jni_workqueue started
+09-23 01:55:46.412   611   741 I bt_stack_manager: event_init_stack finished
+09-23 01:55:46.412   611   611 I bt_osi_wakelock: wakelock_set_os_callouts set to non-native
+09-23 01:55:46.412   611   611 I bt_btif : get_profile_interface socket
+09-23 01:55:46.416   611   751 D BluetoothAdapterProperties: Address is:22:22:E3:AC:CE:F2
+09-23 01:55:46.416   516   516 I ActivityManager: Start proc 754:com.android.phone/1001 for added application com.android.phone
+09-23 01:55:46.417   516   516 I ActivityManager: START u0 {act=android.intent.action.MAIN cat=[android.intent.category.HOME] flg=0x10000100 cmp=com.android.settings/.FallbackHome} from uid 0 on display 0
+09-23 01:55:46.418   516   516 W System  : ClassLoader referenced unknown path:
+09-23 01:55:46.418   516   516 W System  : ClassLoader referenced unknown path: /system/priv-app/SettingsGoogle/lib/arm64
+09-23 01:55:46.419   516   516 D ApplicationLoaders: ignored Vulkan layer search path /system/priv-app/SettingsGoogle/lib/arm64:/system/priv-app/SettingsGoogle/SettingsGoogle.apk!/lib/arm64-v8a:/system/lib64:/vendor/lib64 for namespace 0x76afaa6160
+09-23 01:55:46.424   611   611 I bt_btif : get_profile_interface sdp
+09-23 01:55:46.426   516   516 I ActivityManager: Loaded persisted task ids for user 0
+09-23 01:55:46.429   726   726 D zz      : App.onCreate()
+09-23 01:55:46.429   726   726 D zz      : ----------------------------------------------------------------------------------
+09-23 01:55:46.433   726   726 D zz      : FlavorTypeOverride.afterCreate() flavor: typeall
+09-23 01:55:46.441   516   516 I ActivityManager: Start proc 771:com.android.settings/1000 for activity com.android.settings/.FallbackHome
+09-23 01:55:46.443   516   516 I SystemServer: Enabled StrictMode for system server main thread.
+09-23 01:55:46.445   516   516 D ConditionProviders.SCP: onConnected
+09-23 01:55:46.445   516   516 D ZenLog  : set_zen_mode: off,readXml
+09-23 01:55:46.447   611   751 D BluetoothAdapterProperties: Name is: Pixel C
+09-23 01:55:46.449   516   516 D ConditionProviders: Subscribing to condition://android/schedule?days=6.7&start=23.30&end=10.0&exitAtAlarm=false with ComponentInfo{android/com.android.server.notification.ScheduleConditionProvider}
+09-23 01:55:46.449   516   516 D ZenLog  : subscribe: condition://android/schedule?days=6.7&start=23.30&end=10.0&exitAtAlarm=false,ok
+09-23 01:55:46.450   516   516 D ConditionProviders: Subscribing to condition://android/event?userId=-10000&calendar=&reply=1 with ComponentInfo{android/com.android.server.notification.EventConditionProvider}
+09-23 01:55:46.450   516   516 D ZenLog  : subscribe: condition://android/event?userId=-10000&calendar=&reply=1,ok
+09-23 01:55:46.450   516   516 D ConditionProviders: Subscribing to condition://android/schedule?days=1.2.3.4.5&start=22.0&end=7.0&exitAtAlarm=false with ComponentInfo{android/com.android.server.notification.ScheduleConditionProvider}
+09-23 01:55:46.450   516   516 D ZenLog  : subscribe: condition://android/schedule?days=1.2.3.4.5&start=22.0&end=7.0&exitAtAlarm=false,ok
+09-23 01:55:46.451   611   611 D BluetoothAdapterService: setAdapterService() - set to: null
+09-23 01:55:46.451   611   611 D BluetoothAdapterService: onBind()
+09-23 01:55:46.451   726   726 D zz      : TimelapseWallpaperService.onCreate()
+09-23 01:55:46.467   516   529 W LocationProviderProxy-network: Odd, no component found for service com.android.location.service.v3.NetworkLocationProvider
+09-23 01:55:46.467   516   529 W GeocoderProxy: Odd, no component found for service com.android.location.service.GeocodeProvider
+09-23 01:55:46.467   516   529 W GeofenceProxy: Odd, no component found for service com.android.location.service.GeofenceProvider
+09-23 01:55:46.467   516   529 W ActivityRecognitionProxy: Odd, no component found for service com.android.location.service.ActivityRecognitionProvider
+09-23 01:55:46.476   516   516 D RttService: SCAN_AVAILABLE : 1
+09-23 01:55:46.477   516   583 I WifiScanningService: wifi driver unloaded
+09-23 01:55:46.477   516   516 D ZenLog  : set_zen_mode: off,cleanUpZenRules
+09-23 01:55:46.480   516   584 D RttService: DefaultState got{ when=-3ms what=160513 target=com.android.internal.util.StateMachine$SmHandler }
+09-23 01:55:46.481   754   754 W System  : ClassLoader referenced unknown path: /system/priv-app/TeleService/lib/arm64
+09-23 01:55:46.485   516   516 W System  : ClassLoader referenced unknown path: /system/priv-app/Telecom/lib/arm64
+09-23 01:55:46.487   516   516 D ApplicationLoaders: ignored Vulkan layer search path /system/priv-app/Telecom/lib/arm64:/system/priv-app/Telecom/Telecom.apk!/lib/arm64-v8a:/system/lib64:/vendor/lib64 for namespace 0x76afaa61d0
+09-23 01:55:46.520   771   771 W System  : ClassLoader referenced unknown path: /system/priv-app/SettingsGoogle/lib/arm64
+09-23 01:55:46.549   250   250 D NvOsDebugPrintf: Inside NvxLiteH264DecoderLowLatencyInit
+09-23 01:55:46.549   250   250 D NvOsDebugPrintf: NvxLiteH264DecoderLowLatencyInit set DPB and Mjstreaming
+09-23 01:55:46.561   754   754 W System  : ClassLoader referenced unknown path: /system/priv-app/TelephonyProvider/lib/arm64
+09-23 01:55:46.561   754   754 D ApplicationLoaders: ignored Vulkan layer search path /system/priv-app/TelephonyProvider/lib/arm64:/system/lib64:/vendor/lib64 for namespace 0x76afb680f0
+09-23 01:55:46.575   516   516 D BluetoothManagerService: Creating new ProfileServiceConnections object for profile: 1
+09-23 01:55:46.575   516   516 E BluetoothManagerService: Fail to bind to: Intent { act=android.bluetooth.IBluetoothHeadset }
+09-23 01:55:46.575   516   516 W BluetoothManagerService: Unable to bind with intent: Intent { act=android.bluetooth.IBluetoothHeadset }
+09-23 01:55:46.589   516   516 I Telecom : SystemStateProvider: Registering car mode receiver: android.content.IntentFilter@424bc0f: TS.init@AAA
+09-23 01:55:46.602   516   797 I Telecom : Telecom: Non-call EVENT: AUDIO_ROUTE, Entering state QuiescentEarpieceRoute
+09-23 01:55:46.610   754   754 D TelephonyProvider: dbh.onOpen: ok, queried table=siminfo
+09-23 01:55:46.611   754   754 D TelephonyProvider: dbh.onOpen: ok, queried table=carriers
+09-23 01:55:46.612   516   798 I Telecom : CallAudioModeStateMachine: Message received: null.: TS.init->CAMSM.pM_1@AAA_0
+09-23 01:55:46.616   516   799 E ActivityThread: Failed to find provider info for call_log
+09-23 01:55:46.617   516   516 D BluetoothManagerService: Creating new ProfileServiceConnections object for profile: 1
+09-23 01:55:46.617   516   516 E BluetoothManagerService: Fail to bind to: Intent { act=android.bluetooth.IBluetoothHeadset }
+09-23 01:55:46.617   516   516 W BluetoothManagerService: Unable to bind with intent: Intent { act=android.bluetooth.IBluetoothHeadset }
+09-23 01:55:46.620   671   671 I vol.Events: writeEvent collection_started
+09-23 01:55:46.627   671   802 I vol.Events: writeEvent external_ringer_mode_changed normal
+09-23 01:55:46.627   671   802 I vol.Events: writeEvent internal_ringer_mode_changed normal
+09-23 01:55:46.627   516   516 I Telecom : Class: TelecomSystem.INSTANCE being set
+09-23 01:55:46.628   516   516 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.startService:1357 android.content.ContextWrapper.startService:613 com.android.server.telecom.components.TelecomService.initializeTelecomSystem:186 com.android.server.telecom.components.TelecomService.onBind:62 android.app.ActivityThread.handleBindService:3219
+09-23 01:55:46.630   516   516 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.startService:1357 com.android.server.content.SyncManager$13.run:658 android.os.Handler.handleCallback:751 android.os.Handler.dispatchMessage:95 android.os.Looper.loop:154
+09-23 01:55:46.653   516   516 W System  : ClassLoader referenced unknown path: /system/priv-app/FusedLocation/lib/arm64
+09-23 01:55:46.654   516   516 D ApplicationLoaders: ignored Vulkan layer search path /system/priv-app/FusedLocation/lib/arm64:/system/priv-app/FusedLocation/FusedLocation.apk!/lib/arm64-v8a:/system/lib64:/vendor/lib64 for namespace 0x76afaa6240
+09-23 01:55:46.662   516   516 V WiredAccessoryManager: notifyWiredAccessoryChanged: when=0 bits= mask=54
+09-23 01:55:46.662   516   516 V WiredAccessoryManager: newName=h2w newState=0 headsetState=0 prev headsetState=0
+09-23 01:55:46.662   516   516 E WiredAccessoryManager: No state change.
+09-23 01:55:46.662   516   516 V WiredAccessoryManager: init()
+09-23 01:55:46.671   771   807 D NvOsDebugPrintf: NvRmPrivGetChipPlatform: Could not read platform information
+09-23 01:55:46.671   771   807 D NvOsDebugPrintf: Expected on kernels without fuse support, using silicon
+09-23 01:55:46.688   771   807 I OpenGLRenderer: Initialized EGL, version 1.4
+09-23 01:55:46.688   771   807 D OpenGLRenderer: Swap behavior 2
+09-23 01:55:46.718   516   516 W VibratorService: Tried to stop vibrating but there is no vibrator device.
+09-23 01:55:46.721   516   516 D BluetoothManagerService: Bluetooth Adapter name changed to Pixel C
+09-23 01:55:46.721   516   516 D BluetoothManagerService: Stored Bluetooth name: Pixel C
+09-23 01:55:46.721   516   516 D ConditionProviders.SCP: onSubscribe condition://android/schedule?days=6.7&start=23.30&end=10.0&exitAtAlarm=false
+09-23 01:55:46.722   516   516 D ConditionProviders.SCP: setRegistered true
+09-23 01:55:46.722   516   516 D ConditionProviders.SCP: notifyCondition condition://android/schedule?days=6.7&start=23.30&end=10.0&exitAtAlarm=false STATE_TRUE reason=meetsSchedule
+09-23 01:55:46.728   516   516 D ConditionProviders.SCP: Scheduling evaluate for Sat Sep 23 10:00:00 GMT+00:00 2017 (1506160800000), in +8h4m13s278ms, now=Sat Sep 23 01:55:46 GMT+00:00 2017 (1506131746722)
+09-23 01:55:46.728   516   516 D ConditionProviders.SCP: onSubscribe condition://android/schedule?days=1.2.3.4.5&start=22.0&end=7.0&exitAtAlarm=false
+09-23 01:55:46.728   516   516 D ConditionProviders.SCP: notifyCondition condition://android/schedule?days=6.7&start=23.30&end=10.0&exitAtAlarm=false STATE_TRUE reason=meetsSchedule
+09-23 01:55:46.728   516   516 D ConditionProviders.SCP: notifyCondition condition://android/schedule?days=1.2.3.4.5&start=22.0&end=7.0&exitAtAlarm=false STATE_FALSE reason=!meetsSchedule
+09-23 01:55:46.730   516   516 D ConditionProviders.SCP: Scheduling evaluate for Sat Sep 23 07:00:00 GMT+00:00 2017 (1506150000000), in +5h4m13s272ms, now=Sat Sep 23 01:55:46 GMT+00:00 2017 (1506131746728)
+09-23 01:55:46.731   516   516 D BluetoothManagerService: BluetoothServiceConnection: com.android.bluetooth.btservice.AdapterService
+09-23 01:55:46.731   516   536 D BluetoothManagerService: MESSAGE_BLUETOOTH_SERVICE_CONNECTED: 1
+09-23 01:55:46.732   611   649 I bt_btif : config_hci_snoop_log
+09-23 01:55:46.737   516   536 D BluetoothManagerService: Broadcasting onBluetoothServiceUp() to 2 receivers.
+09-23 01:55:46.737   516   536 D BluetoothAdapter: onBluetoothServiceUp: android.bluetooth.IBluetooth$Stub$Proxy@ba0d5a8
+09-23 01:55:46.738   611   649 D BluetoothAdapter: onBluetoothServiceUp: com.android.bluetooth.btservice.AdapterService$AdapterServiceBinder@65335ec
+09-23 01:55:46.738   611   649 D BluetoothAdapterService: enable() - Enable called with quiet mode status =  false
+09-23 01:55:46.738   611   740 D BluetoothAdapterState: Current state: OFF, message: 0
+09-23 01:55:46.739   611   740 D BluetoothAdapterProperties: Setting state to 14
+09-23 01:55:46.739   611   740 I BluetoothAdapterState: Bluetooth adapter state changed: 10-> 14
+09-23 01:55:46.739   611   740 D BluetoothAdapterService: updateAdapterState() - Broadcasting state to 1 receivers.
+09-23 01:55:46.739   611   740 D BluetoothAdapterService: BleOnProcessStart()
+09-23 01:55:46.739   516   536 D BluetoothManagerService: MESSAGE_BLUETOOTH_STATE_CHANGE: OFF > BLE_TURNING_ON
+09-23 01:55:46.739   516   536 D BluetoothManagerService: Sending BLE State Change: OFF > BLE_TURNING_ON
+09-23 01:55:46.740   611   740 D BluetoothAdapterService: BleOnProcessStart() - Make Bond State Machine
+09-23 01:55:46.740   611   740 D BluetoothBondStateMachine: make
+09-23 01:55:46.745   516   516 I Telecom : WiredHeadsetManager: ACTION_HEADSET_PLUG event, plugged in: false, : WHC.oADA@AAE
+09-23 01:55:46.756   516   516 I ActivityManager: user 0 is still locked. Cannot load recents
+09-23 01:55:46.760   611   820 I BluetoothBondStateMachine: StableState(): Entering Off State
+09-23 01:55:46.760   611   740 D BluetoothAdapterService: setProfileServiceState() - Starting service com.android.bluetooth.gatt.GattService
+09-23 01:55:46.768   726   726 D zz      : UtRenderer.<init>()
+09-23 01:55:46.769   611   611 I BtGatt.JNI: classInitNative(L922): classInitNative: Success!
+09-23 01:55:46.770   726   726 V zz      : TimelapseRenderer.updateWeatherCondition() CLEAR
+09-23 01:55:46.771   611   611 D BtGatt.DebugUtils: handleDebugAction() action=null
+09-23 01:55:46.771   611   611 D BluetoothAdapterService: getAdapterService() - returning com.android.bluetooth.btservice.AdapterService@9abbaf9
+09-23 01:55:46.772   611   740 I BluetoothAdapterState: Entering PendingCommandState
+09-23 01:55:46.779   726   726 V zz      : UtWallpaperService$UtEngine.initGravitySensor() accelerometer sensor - vendor: Google version: 1 power: 0.18
+09-23 01:55:46.779   726   726 V zz      : UtWallpaperService$UtEngine.initGravitySensor() gravity sensor - vendor: AOSP version: 3 power: 6.0299997
+09-23 01:55:46.780   726   726 V zz      : UtWallpaperService$UtEngine.initGravitySensor() sensor type: gravity
+09-23 01:55:46.784   611   611 D BtGatt.GattService: Received start request. Starting profile...
+09-23 01:55:46.787   611   611 D BtGatt.GattService: start()
+09-23 01:55:46.787   611   611 I bt_btif : get_profile_interface gatt
+09-23 01:55:46.789   611   611 D BluetoothAdapterService: getAdapterService() - returning com.android.bluetooth.btservice.AdapterService@9abbaf9
+09-23 01:55:46.789   611   611 D BtGatt.AdvertiseManager: advertise manager created
+09-23 01:55:46.799   611   611 D BluetoothAdapterService: getAdapterService() - returning com.android.bluetooth.btservice.AdapterService@9abbaf9
+09-23 01:55:46.800   611   611 D BluetoothAdapterService: handleMessage() - Message: 1
+09-23 01:55:46.800   611   611 D BluetoothAdapterService: handleMessage() - MESSAGE_PROFILE_SERVICE_STATE_CHANGED
+09-23 01:55:46.800   611   611 D BluetoothAdapterService: processProfileServiceStateChanged() serviceName=com.android.bluetooth.gatt.GattService, state=12, doUpdate=true
+09-23 01:55:46.800   611   611 V BluetoothAdapterState: isTurningOff()=false
+09-23 01:55:46.800   611   611 V BluetoothAdapterState: isTurningOn()=false
+09-23 01:55:46.800   611   611 V BluetoothAdapterState: isBleTurningOn()=true
+09-23 01:55:46.800   611   611 V BluetoothAdapterState: isBleTurningOff()=false
+09-23 01:55:46.800   611   611 D BluetoothAdapterService: processProfileServiceStateChanged() - serviceName=com.android.bluetooth.gatt.GattService isTurningOn=false isTurningOff=false isBleTurningOn=true isBleTurningOff=false
+09-23 01:55:46.801   611   611 D BluetoothAdapterService: GattService is started
+09-23 01:55:46.801   611   740 D BluetoothAdapterState: Current state: PENDING_COMMAND, message: 4
+09-23 01:55:46.802   611   740 I bt_btif : enable: start restricted = 0
+09-23 01:55:46.802   611   741 I bt_stack_manager: event_start_up_stack is bringing up the stack
+09-23 01:55:46.802   611   741 I bt_core_module: module_start_up Starting module "btif_config_module"
+09-23 01:55:46.802   516   591 E ActivityThread: Failed to find provider info for com.android.calendar
+09-23 01:55:46.802   611   741 I bt_core_module: module_start_up Started module "btif_config_module"
+09-23 01:55:46.802   611   741 I bt_core_module: module_start_up Starting module "btsnoop_module"
+09-23 01:55:46.802   611   741 I bt_core_module: module_start_up Started module "btsnoop_module"
+09-23 01:55:46.802   611   741 I bt_core_module: module_start_up Starting module "hci_module"
+09-23 01:55:46.802   611   741 I bt_hci  : start_up
+09-23 01:55:46.803   611   833 W bt_osi_thread: run_thread: thread id 833, thread name hci_thread started
+09-23 01:55:46.803   516   591 E ActivityThread: Failed to find provider info for com.android.calendar
+09-23 01:55:46.812   726   726 D zz      : UtRenderer.onSurfaceRedrawNeeded()
+09-23 01:55:46.814   611   741 I bt_vendor: alloc value 0xcdd6df61
+09-23 01:55:46.814   611   741 I bt_vendor: init
+09-23 01:55:46.814   611   741 I bt_vnd_conf: Attempt to load conf from /etc/bluetooth/bt_vendor.conf
+09-23 01:55:46.815   726   829 D NvOsDebugPrintf: NvRmPrivGetChipPlatform: Could not read platform information
+09-23 01:55:46.816   726   829 D NvOsDebugPrintf: Expected on kernels without fuse support, using silicon
+09-23 01:55:46.820   611   741 D bt_hci  : start_up starting async portion
+09-23 01:55:46.820   611   833 I bt_hci  : event_finish_startup
+09-23 01:55:46.820   611   833 I bt_hci_h4: hal_open
+09-23 01:55:46.820   611   833 I bt_userial_vendor: userial vendor open: opening /dev/ttyTHS3
+09-23 01:55:46.820   516   530 V KeyguardServiceDelegate: *** Keyguard started
+09-23 01:55:46.821   516   530 W KeyguardServiceDelegate: onScreenTurningOn(): no keyguard service!
+09-23 01:55:46.826   516   537 I ActivityManager: Displayed com.android.settings/.FallbackHome: +397ms
+09-23 01:55:46.827   611   833 I bt_userial_vendor: device fd = 74 open
+09-23 01:55:46.828   611   836 W bt_osi_thread: run_thread: thread id 836, thread name hci_single_chann started
+09-23 01:55:46.836   671   802 I vol.Events: writeEvent level_changed STREAM_ALARM 6
+09-23 01:55:46.837   671   802 I vol.Events: writeEvent level_changed STREAM_BLUETOOTH_SCO 7
+09-23 01:55:46.838   671   802 I vol.Events: writeEvent level_changed STREAM_MUSIC 11
+09-23 01:55:46.840   671   802 I vol.Events: writeEvent level_changed STREAM_RING 5
+09-23 01:55:46.841   671   802 I vol.Events: writeEvent level_changed STREAM_SYSTEM 5
+09-23 01:55:46.844   671   802 I vol.Events: writeEvent level_changed STREAM_VOICE_CALL 4
+09-23 01:55:46.868   516   590 D NotificationSQLiteLog: Pruned event entries: 0
+09-23 01:55:46.892   516   529 I SyncManager: Got SyncJobService instance.
+09-23 01:55:46.894   671   671 D StorageNotification: Notifying about private volume: VolumeInfo{private}:
+09-23 01:55:46.894   671   671 D StorageNotification:     type=PRIVATE diskId=null partGuid=null mountFlags=0 mountUserId=-1
+09-23 01:55:46.894   671   671 D StorageNotification:     state=MOUNTED
+09-23 01:55:46.894   671   671 D StorageNotification:     fsType=null fsUuid=null fsLabel=null
+09-23 01:55:46.894   671   671 D StorageNotification:     path=/data internalPath=null
+09-23 01:55:46.895   516   516 I FusedLocation: engine started (com.android.location.fused)
+09-23 01:55:46.904   611   833 I bt_hwcfg: bt vendor lib: set UART baud 3000000
+09-23 01:55:46.921   516   531 V KeyguardServiceDelegate: *** Keyguard connected (yay!)
+09-23 01:55:46.927   516   544 D CryptdConnector: SND -> {3 cryptfs getpw}
+09-23 01:55:46.927   167   174 D VoldCryptCmdListener: cryptfs getpw
+09-23 01:55:46.927   516   575 D CryptdConnector: RCV <- {200 3 -1}
+09-23 01:55:46.928   516   544 D CryptdConnector: SND -> {4 cryptfs clearpw}
+09-23 01:55:46.928   167   174 D VoldCryptCmdListener: cryptfs clearpw
+09-23 01:55:46.928   516   575 D CryptdConnector: RCV <- {200 4 0}
+09-23 01:55:46.936   611   833 D bt_hwcfg: Chipset BCM4350C0
+09-23 01:55:46.936   611   833 D bt_hwcfg: Target name = [BCM4350C0]
+09-23 01:55:46.936   611   833 I bt_hwcfg: Found patchfile: /vendor/firmware//bcm4350c0.hcd
+09-23 01:55:46.954   516   768 I StatusBarManagerService: registerStatusBar bar=com.android.internal.statusbar.IStatusBar$Stub$Proxy@37ec94b
+09-23 01:55:46.970   671   846 D LocalBluetoothProfileManager: Adding local MAP profile
+09-23 01:55:46.974   726   829 D zz      : UtRenderer.onSurfaceCreated()
+09-23 01:55:46.978   726   829 V zz      : ShaderUtil.validateProgram() is valid
+09-23 01:55:46.994   754   754 D PhoneSwitcherNetworkRequstListener: Registering NetworkFactory
+09-23 01:55:46.995   516   585 D ConnectivityService: Got NetworkFactory Messenger for PhoneSwitcherNetworkRequstListener
+09-23 01:55:46.999   726   829 V zz      : TextureUtil.loadTexture() 1440x1130
+09-23 01:55:47.005   516   585 D ConnectivityService: Got NetworkFactory Messenger for TelephonyNetworkFactory[0]
+09-23 01:55:47.021   754   754 D CarrierConfigLoader: CarrierConfigLoader has started
+09-23 01:55:47.023   516   768 D BluetoothManagerService: Creating new ProfileServiceConnections object for profile: 1
+09-23 01:55:47.024   516   768 E BluetoothManagerService: Fail to bind to: Intent { act=android.bluetooth.IBluetoothHeadset }
+09-23 01:55:47.024   516   768 W BluetoothManagerService: Unable to bind with intent: Intent { act=android.bluetooth.IBluetoothHeadset }
+09-23 01:55:47.038   247   247 D NvOsDebugPrintf: Inside NvxLiteH264DecoderLowLatencyInit
+09-23 01:55:47.038   247   247 D NvOsDebugPrintf: NvxLiteH264DecoderLowLatencyInit set DPB and Mjstreaming
+09-23 01:55:47.038   250   250 I OMXClient: MuxOMX ctor
+09-23 01:55:47.039   250   250 I MediaPlayerService: MediaPlayerService::getOMX
+09-23 01:55:47.040   250   250 I OMXClient: MuxOMX ctor
+09-23 01:55:47.040   247   247 I OMXMaster: makeComponentInstance(OMX.Nvidia.mp4.decode) in mediacodec process
+09-23 01:55:47.051   726   829 V zz      : TextureUtil.loadTexture() 1440x1800
+09-23 01:55:47.054   754   853 E ActivityThread: Failed to find provider info for com.android.contacts
+09-23 01:55:47.054   754   853 W CallerInfoCache: cursor is null
+09-23 01:55:47.055   247   247 D NvOsDebugPrintf: NvMMLiteOpen : Block : BlockType = 260
+09-23 01:55:47.056   247   247 D NvOsDebugPrintf: TVMR: NvMMLiteTVMRDecBlockOpen: 6633: NvMMLiteBlockOpen
+09-23 01:55:47.060   754   754 I Telephony: TtyManager: updateUiTtyMode -1 -> 0
+09-23 01:55:47.061   671   846 D BluetoothMap: Create BluetoothMap proxy object
+09-23 01:55:47.063   671   846 E BluetoothMap: Could not bind to Bluetooth MAP Service with Intent { act=android.bluetooth.IBluetoothMap }
+09-23 01:55:47.077   726   829 D zz      : UtRenderer.onSurfaceChanged() 2560x1800
+09-23 01:55:47.080   726   726 D zz      : UtWallpaperService$UtEngine.onVisibilityChanged() true
+09-23 01:55:47.082   671   846 D LocalBluetoothProfileManager: LocalBluetoothProfileManager construction complete
+09-23 01:55:47.126   247   247 D NvOsDebugPrintf: NvMMLiteBlockCreate : Block : BlockType = 260
+09-23 01:55:47.127   247   855 E OMXNodeInstance: getExtensionIndex(f70001:Nvidia.mp4.decode, OMX.google.android.index.configureVideoTunnelMode) ERROR: NotImplemented(0x80001006)
+09-23 01:55:47.128   247   860 D NvOsDebugPrintf: TVMR: TVMRFrameStatusReporting: 5184: Closing TVMR Frame Status Thread -------------
+09-23 01:55:47.128   247   861 D NvOsDebugPrintf: TVMR: TVMRVPRFloorSizeSettingThread: 5001: Closing TVMRVPRFloorSizeSettingThread -------------
+09-23 01:55:47.128   247   859 D NvOsDebugPrintf: TVMR: TVMRFrameDelivery: 5033: Closing TVMR Frame Delivery Thread -------------
+09-23 01:55:47.128   247   247 D NvOsDebugPrintf: TVMR: NvMMLiteTVMRDecBlockClose: 6793: Done
+09-23 01:55:47.129   250   250 I MediaPlayerService: MediaPlayerService::getOMX
+09-23 01:55:47.130   250   250 I OMXClient: MuxOMX ctor
+09-23 01:55:47.130   247   285 I OMXMaster: makeComponentInstance(OMX.Nvidia.h263.decode) in mediacodec process
+09-23 01:55:47.131   247   855 D NvOsDebugPrintf: NvMMLiteOpen : Block : BlockType = 260
+09-23 01:55:47.131   247   855 D NvOsDebugPrintf: TVMR: NvMMLiteTVMRDecBlockOpen: 6633: NvMMLiteBlockOpen
+09-23 01:55:47.132   247   855 D NvOsDebugPrintf: NvMMLiteBlockCreate : Block : BlockType = 260
+09-23 01:55:47.132   247   855 E OMXNodeInstance: getExtensionIndex(f70002:Nvidia.h263.decode, OMX.google.android.index.configureVideoTunnelMode) ERROR: NotImplemented(0x80001006)
+09-23 01:55:47.134   247   866 D NvOsDebugPrintf: TVMR: TVMRFrameStatusReporting: 5184: Closing TVMR Frame Status Thread -------------
+09-23 01:55:47.134   247   867 D NvOsDebugPrintf: TVMR: TVMRVPRFloorSizeSettingThread: 5001: Closing TVMRVPRFloorSizeSettingThread -------------
+09-23 01:55:47.134   247   865 D NvOsDebugPrintf: TVMR: TVMRFrameDelivery: 5033: Closing TVMR Frame Delivery Thread -------------
+09-23 01:55:47.134   247   247 D NvOsDebugPrintf: TVMR: NvMMLiteTVMRDecBlockClose: 6793: Done
+09-23 01:55:47.136   250   250 I MediaPlayerService: MediaPlayerService::getOMX
+09-23 01:55:47.136   250   250 I OMXClient: MuxOMX ctor
+09-23 01:55:47.136   247   285 I OMXMaster: makeComponentInstance(OMX.Nvidia.h264.decode) in mediacodec process
+09-23 01:55:47.137   247   855 D NvOsDebugPrintf: NvMMLiteOpen : Block : BlockType = 261
+09-23 01:55:47.137   247   855 D NvOsDebugPrintf: TVMR: NvMMLiteTVMRDecBlockOpen: 6633: NvMMLiteBlockOpen
+09-23 01:55:47.138   247   855 D NvOsDebugPrintf: NvMMLiteBlockCreate : Block : BlockType = 261
+09-23 01:55:47.141   247   247 E OMXNodeInstance: getExtensionIndex(f70003:Nvidia.h264.decode, OMX.google.android.index.configureVideoTunnelMode) ERROR: NotImplemented(0x80001006)
+09-23 01:55:47.145   247   872 D NvOsDebugPrintf: TVMR: TVMRFrameStatusReporting: 5184: Closing TVMR Frame Status Thread -------------
+09-23 01:55:47.145   247   873 D NvOsDebugPrintf: TVMR: TVMRVPRFloorSizeSettingThread: 5001: Closing TVMRVPRFloorSizeSettingThread -------------
+09-23 01:55:47.145   247   871 D NvOsDebugPrintf: TVMR: TVMRFrameDelivery: 5033: Closing TVMR Frame Delivery Thread -------------
+09-23 01:55:47.145   247   285 D NvOsDebugPrintf: TVMR: NvMMLiteTVMRDecBlockClose: 6793: Done
+09-23 01:55:47.146   250   250 I MediaPlayerService: MediaPlayerService::getOMX
+09-23 01:55:47.146   250   250 I OMXClient: MuxOMX ctor
+09-23 01:55:47.146   247   855 I OMXMaster: makeComponentInstance(OMX.Nvidia.h264.decode.secure) in mediacodec process
+09-23 01:55:47.151   247   855 D NvOsDebugPrintf: NvMMLiteOpen : Block : BlockType = 261
+09-23 01:55:47.151   247   855 D NvOsDebugPrintf: TVMR: NvMMLiteTVMRDecBlockOpen: 6633: NvMMLiteBlockOpen
+09-23 01:55:47.161   754   754 D PhoneSwitcherNetworkRequstListener: got request NetworkRequest [ REQUEST id=1, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN] ] with score 0
+09-23 01:55:47.163   754   754 D TelephonyDebugService: TelephonyDebugService()
+09-23 01:55:47.163   754   754 D CarrierConfigLoader: mHandler: 12 phoneId: 0
+09-23 01:55:47.167   754   754 E PhoneInterfaceManager: [PhoneIntfMgr] getIccId: No UICC
+09-23 01:55:47.175   516   544 W Telecom : : registerPhoneAccount not allowed on non-voice capable device.: TSI.rPA@AAM
+09-23 01:55:47.176   754   754 I Telephony: AccountEntry: Registered phoneAccount: [[ ] PhoneAccount: ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [e0184adedf913b076626646d3f52c3b49c39ad6d], UserHandle{0} Capabilities: CallProvider MultiUser PlaceEmerg SimSub  Audio Routes: BESW Schemes: tel voicemail  Extras: null GroupId: [da39a3ee5e6b4b0d3255bfef95601890afd80709]] with handle: ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [e0184adedf913b076626646d3f52c3b49c39ad6d], UserHandle{0}
+09-23 01:55:47.178   754   754 I Telephony: PstnIncomingCallNotifier: Registering: Handler (com.android.internal.telephony.GsmCdmaPhone) {23bdbd7}
+09-23 01:55:47.185   247   855 D NvOsDebugPrintf: NvMMLiteBlockCreate : Block : BlockType = 261
+09-23 01:55:47.186   247   285 E OMXNodeInstance: getExtensionIndex(f70004:Nvidia.h264.decode.secure, OMX.google.android.index.configureVideoTunnelMode) ERROR: NotImplemented(0x80001006)
+09-23 01:55:47.186   754   754 E PhoneInterfaceManager: [PhoneIntfMgr] getIccId: No UICC
+09-23 01:55:47.186   247   878 D NvOsDebugPrintf: TVMR: TVMRFrameStatusReporting: 5184: Closing TVMR Frame Status Thread -------------
+09-23 01:55:47.187   247   879 D NvOsDebugPrintf: TVMR: TVMRVPRFloorSizeSettingThread: 5001: Closing TVMRVPRFloorSizeSettingThread -------------
+09-23 01:55:47.187   247   877 D NvOsDebugPrintf: TVMR: TVMRFrameDelivery: 5033: Closing TVMR Frame Delivery Thread -------------
+09-23 01:55:47.187   247   855 D NvOsDebugPrintf: TVMR: NvMMLiteTVMRDecBlockClose: 6793: Done
+09-23 01:55:47.188   250   250 I MediaPlayerService: MediaPlayerService::getOMX
+09-23 01:55:47.188   250   250 I OMXClient: MuxOMX ctor
+09-23 01:55:47.188   247   855 I OMXMaster: makeComponentInstance(OMX.Nvidia.vp8.decode) in mediacodec process
+09-23 01:55:47.190   247   247 D NvOsDebugPrintf: NvMMLiteOpen : Block : BlockType = 278
+09-23 01:55:47.191   247   247 D NvOsDebugPrintf: TVMR: NvMMLiteTVMRDecBlockOpen: 6633: NvMMLiteBlockOpen
+09-23 01:55:47.191   516   527 W Telecom : : registerPhoneAccount not allowed on non-voice capable device.: TSI.rPA@AAY
+09-23 01:55:47.191   247   247 D NvOsDebugPrintf: NvMMLiteBlockCreate : Block : BlockType = 278
+09-23 01:55:47.192   726   726 D zz      : UtWallpaperService$UtEngine.onVisibilityChanged() and is on lockscreen
+09-23 01:55:47.192   726   726 D zz      : UtRenderer.onVisibleAtLockScreen()
+09-23 01:55:47.193   726   726 W zz      : WeatherManager.doGet() no permissions
+09-23 01:55:47.194   726   726 W zz      : SunriseUtil.doGet() no permissions
+09-23 01:55:47.195   726   726 D zz      : UtWallpaperService$UtEngine.onVisibilityChanged() false
+09-23 01:55:47.195   247   285 E OMXNodeInstance: getExtensionIndex(f70005:Nvidia.vp8.decode, OMX.google.android.index.configureVideoTunnelMode) ERROR: NotImplemented(0x80001006)
+09-23 01:55:47.197   247   884 D NvOsDebugPrintf: TVMR: TVMRFrameStatusReporting: 5184: Closing TVMR Frame Status Thread -------------
+09-23 01:55:47.197   247   885 D NvOsDebugPrintf: TVMR: TVMRVPRFloorSizeSettingThread: 5001: Closing TVMRVPRFloorSizeSettingThread -------------
+09-23 01:55:47.197   247   883 D NvOsDebugPrintf: TVMR: TVMRFrameDelivery: 5033: Closing TVMR Frame Delivery Thread -------------
+09-23 01:55:47.197   247   247 D NvOsDebugPrintf: TVMR: NvMMLiteTVMRDecBlockClose: 6793: Done
+09-23 01:55:47.197   250   250 I MediaPlayerService: MediaPlayerService::getOMX
+09-23 01:55:47.198   250   250 I OMXClient: MuxOMX ctor
+09-23 01:55:47.198   247   855 I OMXMaster: makeComponentInstance(OMX.Nvidia.vp9.decode) in mediacodec process
+09-23 01:55:47.200   247   285 D NvOsDebugPrintf: NvMMLiteOpen : Block : BlockType = 280
+09-23 01:55:47.200   247   285 D NvOsDebugPrintf: TVMR: NvMMLiteTVMRDecBlockOpen: 6633: NvMMLiteBlockOpen
+09-23 01:55:47.207   247   285 D NvOsDebugPrintf: NvMMLiteBlockCreate : Block : BlockType = 280
+09-23 01:55:47.207   247   855 E OMXNodeInstance: getExtensionIndex(f70006:Nvidia.vp9.decode, OMX.google.android.index.configureVideoTunnelMode) ERROR: NotImplemented(0x80001006)
+09-23 01:55:47.208   247   890 D NvOsDebugPrintf: TVMR: TVMRFrameStatusReporting: 5184: Closing TVMR Frame Status Thread -------------
+09-23 01:55:47.208   247   891 D NvOsDebugPrintf: TVMR: TVMRVPRFloorSizeSettingThread: 5001: Closing TVMRVPRFloorSizeSettingThread -------------
+09-23 01:55:47.208   247   889 D NvOsDebugPrintf: TVMR: TVMRFrameDelivery: 5033: Closing TVMR Frame Delivery Thread -------------
+09-23 01:55:47.208   247   247 D NvOsDebugPrintf: TVMR: NvMMLiteTVMRDecBlockClose: 6793: Done
+09-23 01:55:47.209   250   250 I MediaPlayerService: MediaPlayerService::getOMX
+09-23 01:55:47.209   250   250 I OMXClient: MuxOMX ctor
+09-23 01:55:47.209   247   285 I OMXMaster: makeComponentInstance(OMX.Nvidia.vp9.decode.secure) in mediacodec process
+09-23 01:55:47.210   247   855 D NvOsDebugPrintf: NvMMLiteOpen : Block : BlockType = 280
+09-23 01:55:47.210   247   855 D NvOsDebugPrintf: TVMR: NvMMLiteTVMRDecBlockOpen: 6633: NvMMLiteBlockOpen
+09-23 01:55:47.211   247   855 D NvOsDebugPrintf: NvMMLiteBlockCreate : Block : BlockType = 280
+09-23 01:55:47.211   247   855 E OMXNodeInstance: getExtensionIndex(f70007:Nvidia.vp9.decode.secure, OMX.google.android.index.configureVideoTunnelMode) ERROR: NotImplemented(0x80001006)
+09-23 01:55:47.212   247   896 D NvOsDebugPrintf: TVMR: TVMRFrameStatusReporting: 5184: Closing TVMR Frame Status Thread -------------
+09-23 01:55:47.212   247   897 D NvOsDebugPrintf: TVMR: TVMRVPRFloorSizeSettingThread: 5001: Closing TVMRVPRFloorSizeSettingThread -------------
+09-23 01:55:47.212   247   895 D NvOsDebugPrintf: TVMR: TVMRFrameDelivery: 5033: Closing TVMR Frame Delivery Thread -------------
+09-23 01:55:47.212   247   247 D NvOsDebugPrintf: TVMR: NvMMLiteTVMRDecBlockClose: 6793: Done
+09-23 01:55:47.213   250   250 I MediaPlayerService: MediaPlayerService::getOMX
+09-23 01:55:47.213   250   250 I OMXClient: MuxOMX ctor
+09-23 01:55:47.213   247   285 I OMXMaster: makeComponentInstance(OMX.Nvidia.h265.decode) in mediacodec process
+09-23 01:55:47.214   247   855 D NvOsDebugPrintf: NvMMLiteOpen : Block : BlockType = 279
+09-23 01:55:47.214   247   855 D NvOsDebugPrintf: TVMR: NvMMLiteTVMRDecBlockOpen: 6633: NvMMLiteBlockOpen
+09-23 01:55:47.215   726   726 D zz      : UtRenderer.onNotVisible()
+09-23 01:55:47.216   726   726 D zz      : UtWallpaperService$UtEngine.onVisibilityChanged() true
+09-23 01:55:47.216   184   809 I SurfaceFlinger: Boot is finished (12061 ms)
+09-23 01:55:47.217   247   855 D NvOsDebugPrintf: NvMMLiteBlockCreate : Block : BlockType = 279
+09-23 01:55:47.218   247   247 E OMXNodeInstance: getExtensionIndex(f70008:Nvidia.h265.decode, OMX.google.android.index.configureVideoTunnelMode) ERROR: NotImplemented(0x80001006)
+09-23 01:55:47.219   247   902 D NvOsDebugPrintf: TVMR: TVMRFrameStatusReporting: 5184: Closing TVMR Frame Status Thread -------------
+09-23 01:55:47.219   247   903 D NvOsDebugPrintf: TVMR: TVMRVPRFloorSizeSettingThread: 5001: Closing TVMRVPRFloorSizeSettingThread -------------
+09-23 01:55:47.220   247   901 D NvOsDebugPrintf: TVMR: TVMRFrameDelivery: 5033: Closing TVMR Frame Delivery Thread -------------
+09-23 01:55:47.220   247   247 D NvOsDebugPrintf: TVMR: NvMMLiteTVMRDecBlockClose: 6793: Done
+09-23 01:55:47.220   250   250 I MediaPlayerService: MediaPlayerService::getOMX
+09-23 01:55:47.221   250   250 I OMXClient: MuxOMX ctor
+09-23 01:55:47.221   247   285 I OMXMaster: makeComponentInstance(OMX.Nvidia.h265.decode.secure) in mediacodec process
+09-23 01:55:47.222   247   855 D NvOsDebugPrintf: NvMMLiteOpen : Block : BlockType = 279
+09-23 01:55:47.222   247   855 D NvOsDebugPrintf: TVMR: NvMMLiteTVMRDecBlockOpen: 6633: NvMMLiteBlockOpen
+09-23 01:55:47.223   247   855 D NvOsDebugPrintf: NvMMLiteBlockCreate : Block : BlockType = 279
+09-23 01:55:47.224   247   855 E OMXNodeInstance: getExtensionIndex(f70009:Nvidia.h265.decode.secure, OMX.google.android.index.configureVideoTunnelMode) ERROR: NotImplemented(0x80001006)
+09-23 01:55:47.224   247   908 D NvOsDebugPrintf: TVMR: TVMRFrameStatusReporting: 5184: Closing TVMR Frame Status Thread -------------
+09-23 01:55:47.225   247   909 D NvOsDebugPrintf: TVMR: TVMRVPRFloorSizeSettingThread: 5001: Closing TVMRVPRFloorSizeSettingThread -------------
+09-23 01:55:47.225   247   907 D NvOsDebugPrintf: TVMR: TVMRFrameDelivery: 5033: Closing TVMR Frame Delivery Thread -------------
+09-23 01:55:47.225   247   247 D NvOsDebugPrintf: TVMR: NvMMLiteTVMRDecBlockClose: 6793: Done
+09-23 01:55:47.225   250   250 I MediaPlayerService: MediaPlayerService::getOMX
+09-23 01:55:47.226   250   250 I OMXClient: MuxOMX ctor
+09-23 01:55:47.226   247   285 I OMXMaster: makeComponentInstance(OMX.Nvidia.h264.encoder) in mediacodec process
+09-23 01:55:47.226   247   855 D NvOsDebugPrintf: NvMMLiteOpen : Block : BlockType = 4
+09-23 01:55:47.232   247   855 D NvOsDebugPrintf: ===== MSENC =====
+09-23 01:55:47.238   671   671 W System  : ClassLoader referenced unknown path:
+09-23 01:55:47.238   671   671 W System  : ClassLoader referenced unknown path: /system/app/GoogleCamera/lib/arm64
+09-23 01:55:47.239   671   671 D ApplicationLoaders: ignored Vulkan layer search path /system/app/GoogleCamera/lib/arm64:/system/app/GoogleCamera/GoogleCamera.apk!/lib/arm64-v8a:/system/lib64:/vendor/lib64 for namespace 0x76afb680f0
+09-23 01:55:47.252   247   855 D NvOsDebugPrintf: NvMMLiteBlockCreate : Block : BlockType = 4
+09-23 01:55:47.254   250   250 W ACodec  : do not know color format 0x7f000789 = 2130708361
+09-23 01:55:47.254   247   247 E OMXNodeInstance: getConfig(f7000a:Nvidia.h264.encoder, ConfigAndroidIntraRefresh(0x6f60000a)) ERROR: UnsupportedIndex(0x8000101a)
+09-23 01:55:47.255   250   250 I MediaPlayerService: MediaPlayerService::getOMX
+09-23 01:55:47.255   250   250 I OMXClient: MuxOMX ctor
+09-23 01:55:47.255   247   285 I OMXMaster: makeComponentInstance(OMX.Nvidia.vp8.encoder) in mediacodec process
+09-23 01:55:47.267   247   910 D NvOsDebugPrintf: NvMMLiteOpen : Block : BlockType = 7
+09-23 01:55:47.267   247   910 D NvOsDebugPrintf: ===== MSENC =====
+09-23 01:55:47.268   247   910 D NvOsDebugPrintf: NvMMLiteBlockCreate : Block : BlockType = 7
+09-23 01:55:47.270   250   250 W ACodec  : do not know color format 0x7f000789 = 2130708361
+09-23 01:55:47.270   247   247 E OMXNodeInstance: getConfig(f7000b:Nvidia.vp8.encoder, ConfigAndroidIntraRefresh(0x6f60000a)) ERROR: UnsupportedIndex(0x8000101a)
+09-23 01:55:47.271   250   250 I MediaPlayerService: MediaPlayerService::getOMX
+09-23 01:55:47.272   250   250 I OMXClient: MuxOMX ctor
+09-23 01:55:47.272   247   247 I OMXMaster: makeComponentInstance(OMX.google.mp3.decoder) in mediacodec process
+09-23 01:55:47.275   250   250 I MediaPlayerService: MediaPlayerService::getOMX
+09-23 01:55:47.275   250   250 I OMXClient: MuxOMX ctor
+09-23 01:55:47.275   247   247 I OMXMaster: makeComponentInstance(OMX.google.amrnb.decoder) in mediacodec process
+09-23 01:55:47.275   671   671 I OpaLayout: Setting opa enabled to false
+09-23 01:55:47.279   250   250 I MediaPlayerService: MediaPlayerService::getOMX
+09-23 01:55:47.279   250   250 I OMXClient: MuxOMX ctor
+09-23 01:55:47.279   247   247 I OMXMaster: makeComponentInstance(OMX.google.amrwb.decoder) in mediacodec process
+09-23 01:55:47.279   671   671 I OpaLayout: Setting opa enabled to false
+09-23 01:55:47.281   250   250 I MediaPlayerService: MediaPlayerService::getOMX
+09-23 01:55:47.281   250   250 I OMXClient: MuxOMX ctor
+09-23 01:55:47.281   247   910 I OMXMaster: makeComponentInstance(OMX.google.aac.decoder) in mediacodec process
+09-23 01:55:47.287   250   250 I MediaPlayerService: MediaPlayerService::getOMX
+09-23 01:55:47.288   250   250 I OMXClient: MuxOMX ctor
+09-23 01:55:47.288   247   910 I OMXMaster: makeComponentInstance(OMX.google.g711.alaw.decoder) in mediacodec process
+09-23 01:55:47.290   250   250 I MediaPlayerService: MediaPlayerService::getOMX
+09-23 01:55:47.290   250   250 I OMXClient: MuxOMX ctor
+09-23 01:55:47.291   247   910 I OMXMaster: makeComponentInstance(OMX.google.g711.mlaw.decoder) in mediacodec process
+09-23 01:55:47.293   250   250 I MediaPlayerService: MediaPlayerService::getOMX
+09-23 01:55:47.293   250   250 I OMXClient: MuxOMX ctor
+09-23 01:55:47.293   247   910 I OMXMaster: makeComponentInstance(OMX.google.vorbis.decoder) in mediacodec process
+09-23 01:55:47.296   250   250 I MediaPlayerService: MediaPlayerService::getOMX
+09-23 01:55:47.296   250   250 I OMXClient: MuxOMX ctor
+09-23 01:55:47.296   247   910 I OMXMaster: makeComponentInstance(OMX.google.opus.decoder) in mediacodec process
+09-23 01:55:47.299   250   250 I MediaPlayerService: MediaPlayerService::getOMX
+09-23 01:55:47.299   250   250 I OMXClient: MuxOMX ctor
+09-23 01:55:47.299   247   910 I OMXMaster: makeComponentInstance(OMX.google.raw.decoder) in mediacodec process
+09-23 01:55:47.301   250   250 I MediaPlayerService: MediaPlayerService::getOMX
+09-23 01:55:47.301   250   250 I OMXClient: MuxOMX ctor
+09-23 01:55:47.301   247   910 I OMXMaster: makeComponentInstance(OMX.google.aac.encoder) in mediacodec process
+09-23 01:55:47.309   250   250 I MediaPlayerService: MediaPlayerService::getOMX
+09-23 01:55:47.309   250   250 I OMXClient: MuxOMX ctor
+09-23 01:55:47.309   247   855 I OMXMaster: makeComponentInstance(OMX.google.amrnb.encoder) in mediacodec process
+09-23 01:55:47.314   250   250 I MediaPlayerService: MediaPlayerService::getOMX
+09-23 01:55:47.314   250   250 I OMXClient: MuxOMX ctor
+09-23 01:55:47.314   247   855 I OMXMaster: makeComponentInstance(OMX.google.amrwb.encoder) in mediacodec process
+09-23 01:55:47.317   250   250 I MediaPlayerService: MediaPlayerService::getOMX
+09-23 01:55:47.317   250   250 I OMXClient: MuxOMX ctor
+09-23 01:55:47.317   247   855 I OMXMaster: makeComponentInstance(OMX.google.flac.encoder) in mediacodec process
+09-23 01:55:47.323   250   250 I MediaPlayerService: MediaPlayerService::getOMX
+09-23 01:55:47.324   250   250 I OMXClient: MuxOMX ctor
+09-23 01:55:47.324   247   855 I OMXMaster: makeComponentInstance(OMX.google.mpeg4.decoder) in mediacodec process
+09-23 01:55:47.326   726   726 D zz      : UtWallpaperService$UtEngine.onVisibilityChanged() and is on lockscreen
+09-23 01:55:47.326   726   726 D zz      : UtRenderer.onVisibleAtLockScreen()
+09-23 01:55:47.326   726   726 W zz      : WeatherManager.doGet() no permissions
+09-23 01:55:47.328   726   726 W zz      : SunriseUtil.doGet() no permissions
+09-23 01:55:47.330   247   855 E OMXNodeInstance: getExtensionIndex(f70019:google.mpeg4.decoder, OMX.google.android.index.configureVideoTunnelMode) ERROR: UnsupportedIndex(0x8000101a)
+09-23 01:55:47.330   247   247 W OMXNodeInstance: [f70019:google.mpeg4.decoder] component does not support metadata mode; using fallback
+09-23 01:55:47.332   726   726 V zz      : TimelapseRenderer$1.onReceive() got sunrise broadcast - false
+09-23 01:55:47.332   726   726 V zz      : TimelapseRenderer$1.onReceive() got sunrise broadcast - false
+09-23 01:55:47.333   250   250 I MediaPlayerService: MediaPlayerService::getOMX
+09-23 01:55:47.333   250   250 I OMXClient: MuxOMX ctor
+09-23 01:55:47.333   247   247 I OMXMaster: makeComponentInstance(OMX.google.h263.decoder) in mediacodec process
+09-23 01:55:47.339   247   855 E OMXNodeInstance: getExtensionIndex(f7001a:google.h263.decoder, OMX.google.android.index.configureVideoTunnelMode) ERROR: UnsupportedIndex(0x8000101a)
+09-23 01:55:47.339   247   247 W OMXNodeInstance: [f7001a:google.h263.decoder] component does not support metadata mode; using fallback
+09-23 01:55:47.341   250   250 I MediaPlayerService: MediaPlayerService::getOMX
+09-23 01:55:47.342   250   250 I OMXClient: MuxOMX ctor
+09-23 01:55:47.342   247   247 I OMXMaster: makeComponentInstance(OMX.google.h264.decoder) in mediacodec process
+09-23 01:55:47.351   671   671 I CameraManagerGlobal: Connecting to camera service
+09-23 01:55:47.352   250   250 W ACodec  : [OMX.google.h264.decoder] stopping checking profiles after 32: 2/8000
+09-23 01:55:47.353   247   855 E OMXNodeInstance: getExtensionIndex(f7001b:google.h264.decoder, OMX.google.android.index.configureVideoTunnelMode) ERROR: UnsupportedIndex(0x8000101a)
+09-23 01:55:47.353   247   247 W OMXNodeInstance: [f7001b:google.h264.decoder] component does not support metadata mode; using fallback
+09-23 01:55:47.355   250   250 I MediaPlayerService: MediaPlayerService::getOMX
+09-23 01:55:47.355   250   250 I OMXClient: MuxOMX ctor
+09-23 01:55:47.355   247   247 I OMXMaster: makeComponentInstance(OMX.google.hevc.decoder) in mediacodec process
+09-23 01:55:47.362   247   247 E OMXNodeInstance: getExtensionIndex(f7001c:google.hevc.decoder, OMX.google.android.index.configureVideoTunnelMode) ERROR: UnsupportedIndex(0x8000101a)
+09-23 01:55:47.362   247   910 W OMXNodeInstance: [f7001c:google.hevc.decoder] component does not support metadata mode; using fallback
+09-23 01:55:47.363   250   250 I MediaPlayerService: MediaPlayerService::getOMX
+09-23 01:55:47.364   250   250 I OMXClient: MuxOMX ctor
+09-23 01:55:47.364   247   910 I OMXMaster: makeComponentInstance(OMX.google.vp8.decoder) in mediacodec process
+09-23 01:55:47.370   247   247 E OMXNodeInstance: getExtensionIndex(f7001d:google.vp8.decoder, OMX.google.android.index.configureVideoTunnelMode) ERROR: UnsupportedIndex(0x8000101a)
+09-23 01:55:47.370   247   910 W OMXNodeInstance: [f7001d:google.vp8.decoder] component does not support metadata mode; using fallback
+09-23 01:55:47.373   250   250 I MediaPlayerService: MediaPlayerService::getOMX
+09-23 01:55:47.373   250   250 I OMXClient: MuxOMX ctor
+09-23 01:55:47.373   247   910 I OMXMaster: makeComponentInstance(OMX.google.vp9.decoder) in mediacodec process
+09-23 01:55:47.375   247   910 E OMXNodeInstance: getExtensionIndex(f7001e:google.vp9.decoder, OMX.google.android.index.configureVideoTunnelMode) ERROR: UnsupportedIndex(0x8000101a)
+09-23 01:55:47.375   247   285 W OMXNodeInstance: [f7001e:google.vp9.decoder] component does not support metadata mode; using fallback
+09-23 01:55:47.376   250   250 I MediaPlayerService: MediaPlayerService::getOMX
+09-23 01:55:47.377   250   250 I OMXClient: MuxOMX ctor
+09-23 01:55:47.377   247   285 I OMXMaster: makeComponentInstance(OMX.google.h263.encoder) in mediacodec process
+09-23 01:55:47.380   247   285 I SoftMPEG4Encoder: Construct SoftMPEG4Encoder
+09-23 01:55:47.381   250   250 W ACodec  : do not know color format 0x7f000789 = 2130708361
+09-23 01:55:47.381   247   247 E OMXNodeInstance: getConfig(f7001f:google.h263.encoder, ConfigAndroidIntraRefresh(0x6f60000a)) ERROR: Undefined(0x80001001)
+09-23 01:55:47.382   250   250 I MediaPlayerService: MediaPlayerService::getOMX
+09-23 01:55:47.382   250   250 I OMXClient: MuxOMX ctor
+09-23 01:55:47.382   247   855 I OMXMaster: makeComponentInstance(OMX.google.h264.encoder) in mediacodec process
+09-23 01:55:47.390   250   250 W ACodec  : do not know color format 0x7f000789 = 2130708361
+09-23 01:55:47.391   250   250 I MediaPlayerService: MediaPlayerService::getOMX
+09-23 01:55:47.392   250   250 I OMXClient: MuxOMX ctor
+09-23 01:55:47.392   247   910 I OMXMaster: makeComponentInstance(OMX.google.mpeg4.encoder) in mediacodec process
+09-23 01:55:47.393   247   910 I SoftMPEG4Encoder: Construct SoftMPEG4Encoder
+09-23 01:55:47.394   250   250 W ACodec  : do not know color format 0x7f000789 = 2130708361
+09-23 01:55:47.394   247   855 E OMXNodeInstance: getConfig(f70021:google.mpeg4.encoder, ConfigAndroidIntraRefresh(0x6f60000a)) ERROR: Undefined(0x80001001)
+09-23 01:55:47.395   250   250 I MediaPlayerService: MediaPlayerService::getOMX
+09-23 01:55:47.395   250   250 I OMXClient: MuxOMX ctor
+09-23 01:55:47.395   247   285 I OMXMaster: makeComponentInstance(OMX.google.vp8.encoder) in mediacodec process
+09-23 01:55:47.401   250   250 W ACodec  : do not know color format 0x7f000789 = 2130708361
+09-23 01:55:47.402   247   855 E OMXNodeInstance: getConfig(f70022:google.vp8.encoder, ConfigAndroidIntraRefresh(0x6f60000a)) ERROR: Undefined(0x80001001)
+09-23 01:55:47.403   250   250 I MediaPlayerService: MediaPlayerService::getOMX
+09-23 01:55:47.403   250   250 I OMXClient: MuxOMX ctor
+09-23 01:55:47.406   250   250 I MediaPlayerService: MediaPlayerService::getOMX
+09-23 01:55:47.406   250   250 I OMXClient: MuxOMX ctor
+09-23 01:55:47.407   250   250 W MediaCodecList: unable to open media codecs configuration xml file: /data/misc/media/media_codecs_profiling_results.xml
+09-23 01:55:47.407   250   753 I MediaPlayerService: MediaPlayerService::getOMX
+09-23 01:55:47.408   250   304 I MediaPlayerService: MediaPlayerService::getOMX
+09-23 01:55:47.408   671   750 I OMXClient: MuxOMX ctor
+09-23 01:55:47.408   516   667 I OMXClient: MuxOMX ctor
+09-23 01:55:47.409   247   910 I OMXMaster: makeComponentInstance(OMX.google.vorbis.decoder) in mediacodec process
+09-23 01:55:47.410   247   247 I OMXMaster: makeComponentInstance(OMX.google.vorbis.decoder) in mediacodec process
+09-23 01:55:47.412   671   970 E ActivityThread: Failed to find provider info for com.android.contacts
+09-23 01:55:47.414   671   843 D OpenGLRenderer: profile bars disabled
+09-23 01:55:47.415   671   843 D OpenGLRenderer: ambientRatio = 1.50
+09-23 01:55:47.423   671   671 D PhoneStatusBar: disable: < EXPAND* icons alerts system_info BACK* HOME* RECENT* clock SEARCH* quick_settings >
+09-23 01:55:47.451   250   752 I MediaPlayerService: MediaPlayerService::getOMX
+09-23 01:55:47.452   671   976 I OMXClient: MuxOMX ctor
+09-23 01:55:47.453   247   855 I OMXMaster: makeComponentInstance(OMX.google.vorbis.decoder) in mediacodec process
+09-23 01:55:47.455   611   833 I bt_hwcfg: bt vendor lib: set UART baud 115200
+09-23 01:55:47.455   611   833 D bt_hwcfg: Settlement delay -- 100 ms
+09-23 01:55:47.455   611   833 I bt_hwcfg: Setting fw settlement delay to 100
+09-23 01:55:47.459   250   753 I MediaPlayerService: MediaPlayerService::getOMX
+09-23 01:55:47.460   516   979 I OMXClient: MuxOMX ctor
+09-23 01:55:47.461   247   910 I OMXMaster: makeComponentInstance(OMX.google.vorbis.decoder) in mediacodec process
+09-23 01:55:47.491   250   753 I MediaPlayerService: MediaPlayerService::getOMX
+09-23 01:55:47.492   671   671 D PhoneStatusBar: heads up is enabled
+09-23 01:55:47.492   516   982 I OMXClient: MuxOMX ctor
+09-23 01:55:47.493   247   285 I OMXMaster: makeComponentInstance(OMX.google.vorbis.decoder) in mediacodec process
+09-23 01:55:47.504   671   671 W KeyguardUpdateMonitor: invalid subId in handleSimStateChange()
+09-23 01:55:47.506   516   770 I ActivityManager: Setting hasTopUi=true for pid=671
+09-23 01:55:47.510   250   753 I MediaPlayerService: MediaPlayerService::getOMX
+09-23 01:55:47.511   671   986 I OMXClient: MuxOMX ctor
+09-23 01:55:47.514   247   247 I OMXMaster: makeComponentInstance(OMX.google.vorbis.decoder) in mediacodec process
+09-23 01:55:47.517   516   982 W AMessage: failed to deliver message as target handler 8 is gone.
+09-23 01:55:47.526   671   671 D PhoneStatusBar: disable: < EXPAND ICONS* alerts SYSTEM_INFO* BACK HOME RECENT clock SEARCH quick_settings >
+09-23 01:55:47.529   250   753 I MediaPlayerService: MediaPlayerService::getOMX
+09-23 01:55:47.531   671   671 W FingerprintManager: isFingerprintHardwareDetected(): Service not connected!
+09-23 01:55:47.531   671   671 D PhoneStatusBar: disable: < EXPAND ICONS alerts SYSTEM_INFO BACK HOME RECENT clock SEARCH quick_settings >
+09-23 01:55:47.531   516   989 I OMXClient: MuxOMX ctor
+09-23 01:55:47.533   671   671 W FingerprintManager: isFingerprintHardwareDetected(): Service not connected!
+09-23 01:55:47.534   247   285 I OMXMaster: makeComponentInstance(OMX.google.vorbis.decoder) in mediacodec process
+09-23 01:55:47.535   516   530 I VrManagerService: VR mode is disallowed
+09-23 01:55:47.539   671   671 W FingerprintManager: isFingerprintHardwareDetected(): Service not connected!
+09-23 01:55:47.547   516   770 V KeyguardServiceDelegate: **** SHOWN CALLED ****
+09-23 01:55:47.559   671   671 D ViewRootImpl[StatusBar]: changeCanvasOpacity: opaque=true
+09-23 01:55:47.563   611   833 I bt_hwcfg: bt vendor lib: set UART baud 3000000
+09-23 01:55:47.563   611   833 I bt_hwcfg: Setting local bd addr to 22:22:E3:AC:CE:F2
+09-23 01:55:47.572   726   726 D zz      : UtWallpaperService$UtEngine.onVisibilityChanged() false
+09-23 01:55:47.582   250   304 I MediaPlayerService: MediaPlayerService::getOMX
+09-23 01:55:47.583   516   992 I OMXClient: MuxOMX ctor
+09-23 01:55:47.584   247   910 I OMXMaster: makeComponentInstance(OMX.google.vorbis.decoder) in mediacodec process
+09-23 01:55:47.592   726   726 D zz      : UtRenderer.onNotVisible()
+09-23 01:55:47.592   611   833 I bt_hwcfg: vendor lib fwcfg completed
+09-23 01:55:47.592   611   833 I bt_vendor: firmware callback
+09-23 01:55:47.593   611   833 I bt_hci  : firmware_config_callback
+09-23 01:55:47.593   611   741 I bt_core_module: module_start_up Started module "hci_module"
+09-23 01:55:47.594   611   995 W bt_osi_thread: run_thread: thread id 995, thread name bt_workqueue started
+09-23 01:55:47.594   611   995 I bt_btu  : btu_task pending for preload complete event
+09-23 01:55:47.595   611   995 I bt_btu_task: Bluetooth chip preload is complete
+09-23 01:55:47.595   611   995 I bt_btu  : btu_task received preload complete event
+09-23 01:55:47.598   611   995 I bt_core_module: module_init Initializing module "bte_logmsg_module"
+09-23 01:55:47.598   611   995 I bt_bte  : BTE_InitTraceLevels -- TRC_HCI
+09-23 01:55:47.598   611   995 I bt_bte  : BTE_InitTraceLevels -- TRC_L2CAP
+09-23 01:55:47.599   611   995 I bt_bte  : BTE_InitTraceLevels -- TRC_RFCOMM
+09-23 01:55:47.599   611   995 I bt_bte  : BTE_InitTraceLevels -- TRC_AVDT
+09-23 01:55:47.599   611   995 I bt_bte  : BTE_InitTraceLevels -- TRC_AVRC
+09-23 01:55:47.599   611   995 I bt_bte  : BTE_InitTraceLevels -- TRC_A2D
+09-23 01:55:47.599   611   995 I bt_bte  : BTE_InitTraceLevels -- TRC_BNEP
+09-23 01:55:47.599   611   995 I bt_bte  : BTE_InitTraceLevels -- TRC_BTM
+09-23 01:55:47.599   611   995 I bt_bte  : BTE_InitTraceLevels -- TRC_GAP
+09-23 01:55:47.599   611   995 I bt_bte  : BTE_InitTraceLevels -- TRC_PAN
+09-23 01:55:47.599   611   995 I bt_bte  : BTE_InitTraceLevels -- TRC_SDP
+09-23 01:55:47.599   611   995 I bt_bte  : BTE_InitTraceLevels -- TRC_GATT
+09-23 01:55:47.599   611   995 I bt_bte  : BTE_InitTraceLevels -- TRC_SMP
+09-23 01:55:47.599   611   995 I bt_bte  : BTE_InitTraceLevels -- TRC_BTAPP
+09-23 01:55:47.599   611   995 I bt_bte  : BTE_InitTraceLevels -- TRC_BTIF
+09-23 01:55:47.599   611   995 I bt_core_module: module_init Initialized module "bte_logmsg_module"
+09-23 01:55:47.601   611   996 W bt_osi_thread: run_thread: thread id 996, thread name module_wrapper started
+09-23 01:55:47.602   611   996 I bt_core_module: module_start_up Starting module "controller_module"
+09-23 01:55:47.626   250   928 I MediaPlayerService: MediaPlayerService::getOMX
+09-23 01:55:47.627   516   997 I OMXClient: MuxOMX ctor
+09-23 01:55:47.627   247   285 I OMXMaster: makeComponentInstance(OMX.google.vorbis.decoder) in mediacodec process
+09-23 01:55:47.637   671   843 D NvOsDebugPrintf: NvRmPrivGetChipPlatform: Could not read platform information
+09-23 01:55:47.637   671   843 D NvOsDebugPrintf: Expected on kernels without fuse support, using silicon
+09-23 01:55:47.655   671   843 I OpenGLRenderer: Initialized EGL, version 1.4
+09-23 01:55:47.655   671   843 D OpenGLRenderer: Swap behavior 2
+09-23 01:55:47.752   671   671 I OpaLayout: Setting opa enabled to false
+09-23 01:55:47.754   671   671 I OpaLayout: Setting opa enabled to false
+09-23 01:55:47.758   516   580 D WifiService: New client listening to asynchronous messages
+09-23 01:55:47.771   671   671 W FingerprintManager: isFingerprintHardwareDetected(): Service not connected!
+09-23 01:55:47.772   671   671 W FingerprintManager: isFingerprintHardwareDetected(): Service not connected!
+09-23 01:55:47.773   671   671 W KeyguardUpdateMonitor: invalid subId in handleServiceStateChange()
+09-23 01:55:47.800   671   671 D PhoneStatusBar: disable: < expand* ICONS alerts SYSTEM_INFO back* HOME RECENT clock SEARCH quick_settings >
+09-23 01:55:47.800   726   726 D zz      : UtWallpaperService$UtEngine.onVisibilityChanged() true
+09-23 01:55:47.807   516   528 I ActivityManager: user 0 is still locked. Cannot load recents
+09-23 01:55:47.826   611   996 I bt_core_module: module_start_up Started module "controller_module"
+09-23 01:55:47.827   611   996 W bt_osi_thread: run_thread: thread id 996, thread name module_wrapper exited
+09-23 01:55:47.827   611   995 I bt_btm_sec: BTM_SecRegister p_cb_info->p_le_callback == 0x0xcdcfdcf9
+09-23 01:55:47.827   611   995 I bt_btm_sec: BTM_SecRegister btm_cb.api.p_le_callback = 0x0xcdcfdcf9
+09-23 01:55:47.916   611   751 D BluetoothAdapterProperties: BT_PROPERTY_LOCAL_LE_FEATURES: update from BT controller mNumOfAdvertisementInstancesSupported = 5 mRpaOffloadSupported = true mNumOfOffloadedIrkSupported = 128 mNumOfOffloadedScanFilterSupported = 16 mOffloadedScanResultStorageBytes= 1024 mIsActivityAndEnergyReporting = true mVersSupported = 55 mTotNumOfTrackableAdv = 0 mIsExtendedScanSupported = false mIsDebugLogSupported = false
+09-23 01:55:47.917   726   726 D zz      : UtWallpaperService$UtEngine.onVisibilityChanged() and is on lockscreen
+09-23 01:55:47.917   726   726 D zz      : UtRenderer.onVisibleAtLockScreen()
+09-23 01:55:47.918   726   726 W zz      : WeatherManager.doGet() no permissions
+09-23 01:55:47.919   611   751 I bt_btif_storage: btif_storage_get_adapter_property service_mask:0x20000000
+09-23 01:55:47.920   611   751 D BluetoothAdapterProperties: Address is:22:22:E3:AC:CE:F2
+09-23 01:55:47.920   726   726 W zz      : SunriseUtil.doGet() no permissions
+09-23 01:55:47.920   726   726 V zz      : TimelapseRenderer$1.onReceive() got sunrise broadcast - false
+09-23 01:55:47.922   516   516 D BluetoothManagerService: Bluetooth Adapter name changed to Pixel C
+09-23 01:55:47.922   516   516 D BluetoothManagerService: Stored Bluetooth name: Pixel C
+09-23 01:55:47.923   611   751 D BluetoothAdapterProperties: Name is: Pixel C
+09-23 01:55:47.924   611   751 D BluetoothAdapterProperties: Scan Mode:20
+09-23 01:55:47.924   611   751 D BluetoothAdapterProperties: Discoverable Timeout:120
+09-23 01:55:47.924   611   751 D bt_hci  : do_postload posting postload work item
+09-23 01:55:47.924   611   833 I bt_hci  : event_postload
+09-23 01:55:47.924   611   833 I bt_vendor: sco_config_cb
+09-23 01:55:47.924   611   833 I bt_hci  : sco_config_callback postload finished.
+09-23 01:55:47.925   611  1005 W bt_osi_thread: run_thread: thread id 1005, thread name btif_sock started
+09-23 01:55:47.925   611   751 D bt_bte_conf: Device ID record 1 : primary
+09-23 01:55:47.925   611   751 D bt_bte_conf:   vendorId            = 000f
+09-23 01:55:47.925   611   751 D bt_bte_conf:   vendorIdSource      = 0001
+09-23 01:55:47.925   611   751 D bt_bte_conf:   product             = 1200
+09-23 01:55:47.925   611   751 D bt_bte_conf:   version             = 1436
+09-23 01:55:47.925   611   751 D bt_bte_conf:   clientExecutableURL =
+09-23 01:55:47.926   611   751 D bt_bte_conf:   serviceDescription  =
+09-23 01:55:47.926   611   751 D bt_bte_conf:   documentationURL    =
+09-23 01:55:47.926   611   751 D bt_bte_conf: bte_load_did_conf no section named DID2.
+09-23 01:55:47.926   611   741 I bt_stack_manager: event_start_up_stack finished
+09-23 01:55:47.927   611   740 D BluetoothAdapterState: Current state: PENDING_COMMAND, message: 3
+09-23 01:55:47.927   611   740 D BluetoothAdapterProperties: Setting state to 15
+09-23 01:55:47.927   611   740 I BluetoothAdapterState: Bluetooth adapter state changed: 14-> 15
+09-23 01:55:47.927   611   740 D BluetoothAdapterService: updateAdapterState() - Broadcasting state to 1 receivers.
+09-23 01:55:47.927   516   536 D BluetoothManagerService: MESSAGE_BLUETOOTH_STATE_CHANGE: BLE_TURNING_ON > BLE_ON
+09-23 01:55:47.927   516   536 D BluetoothManagerService: Bluetooth is in LE only mode
+09-23 01:55:47.927   516   536 D BluetoothManagerService: Binding Bluetooth GATT service
+09-23 01:55:47.927   611   740 I BluetoothAdapterState: Entering BleOnState
+09-23 01:55:47.928   516   536 D BluetoothManagerService: Sending BLE State Change: BLE_TURNING_ON > BLE_ON
+09-23 01:55:47.928   516   516 D BluetoothManagerService: BluetoothServiceConnection: com.android.bluetooth.gatt.GattService
+09-23 01:55:47.928   516   536 D BluetoothManagerService: MESSAGE_BLUETOOTH_SERVICE_CONNECTED: 2
+09-23 01:55:47.928   516   536 D BluetoothManagerService: BluetoothGatt Service is Up
+09-23 01:55:47.930   611   740 D BluetoothAdapterState: Current state: BLE ON, message: 1
+09-23 01:55:47.930   611   740 D BluetoothAdapterProperties: Setting state to 11
+09-23 01:55:47.930   611   740 I BluetoothAdapterState: Bluetooth adapter state changed: 15-> 11
+09-23 01:55:47.930   611   740 D BluetoothAdapterService: updateAdapterState() - Broadcasting state to 1 receivers.
+09-23 01:55:47.930   516   536 D BluetoothManagerService: Persisting Bluetooth Setting: 1
+09-23 01:55:47.930   516   536 D BluetoothManagerService: MESSAGE_BLUETOOTH_STATE_CHANGE: BLE_ON > TURNING_ON
+09-23 01:55:47.930   516   536 D BluetoothManagerService: Sending BLE State Change: BLE_ON > TURNING_ON
+09-23 01:55:47.930   611   740 D BluetoothAdapterService: startCoreServices()
+09-23 01:55:47.930   611   740 D BluetoothAdapterService: setProfileServiceState() - Starting service com.android.bluetooth.a2dp.A2dpService
+09-23 01:55:47.933   611   740 D BluetoothAdapterService: setProfileServiceState() - Starting service com.android.bluetooth.hid.HidService
+09-23 01:55:47.935   516   516 D BluetoothA2dp: Proxy object connected
+09-23 01:55:47.935   611   740 D BluetoothAdapterService: setProfileServiceState() - Starting service com.android.bluetooth.hdp.HealthService
+09-23 01:55:47.936   611   611 D BluetoothAdapterService: getAdapterService() - returning com.android.bluetooth.btservice.AdapterService@9abbaf9
+09-23 01:55:47.937   611   740 D BluetoothAdapterService: setProfileServiceState() - Starting service com.android.bluetooth.pan.PanService
+09-23 01:55:47.938   611   611 D A2dpService: Received start request. Starting profile...
+09-23 01:55:47.939   611   611 I BluetoothAvrcpServiceJni: classInitNative: succeeds
+09-23 01:55:47.940   611   740 I BluetoothAdapterState: Entering PendingCommandState
+09-23 01:55:47.942   611   611 I bt_btif : get_profile_interface avrcp
+09-23 01:55:47.944   611   833 I bt_vendor: low_power_mode_cb
+09-23 01:55:47.946   611   611 I BluetoothA2dpServiceJni: classInitNative: succeeds
+09-23 01:55:47.946   611   611 D A2dpStateMachine: make
+09-23 01:55:47.946   611   611 I bt_btif : get_profile_interface a2dp
+09-23 01:55:47.946   611  1008 W bt_osi_thread: run_thread: thread id 1008, thread name media_worker started
+09-23 01:55:47.947   611   611 D BluetoothAdapterService: getAdapterService() - returning com.android.bluetooth.btservice.AdapterService@9abbaf9
+09-23 01:55:47.947   611  1007 D A2dpStateMachine: Enter Disconnected: -2
+09-23 01:55:47.947   611   751 I bt_btif_storage: btif_storage_get_adapter_property service_mask:0x20000008
+09-23 01:55:47.949   611   611 D BluetoothPbapReceiver: PbapReceiver onReceive action = android.bluetooth.adapter.action.STATE_CHANGED
+09-23 01:55:47.949   611   611 D BluetoothPbapReceiver: state = 11
+09-23 01:55:47.950   611   611 I BluetoothHidServiceJni: classInitNative: succeeds
+09-23 01:55:47.956   671   671 D BluetoothInputDevice: Proxy object connected
+09-23 01:55:47.957   671   671 D HidProfile: Bluetooth service connected
+09-23 01:55:47.957   611   611 D BluetoothAdapterService: getAdapterService() - returning com.android.bluetooth.btservice.AdapterService@9abbaf9
+09-23 01:55:47.958   611   611 D HidService: Received start request. Starting profile...
+09-23 01:55:47.958   611   611 I bt_btif : get_profile_interface hidhost
+09-23 01:55:47.958   611   751 I bt_bta_hh: BTA_HhEnable sec_mask:0x36 p_cback:0xcdd4b8a9
+09-23 01:55:47.958   611   751 I bt_btif_storage: btif_storage_get_adapter_property service_mask:0x20100008
+09-23 01:55:47.958   611   611 D HidService: setHidService(): set to: null
+09-23 01:55:47.958   611   611 D BluetoothAdapterService: getAdapterService() - returning com.android.bluetooth.btservice.AdapterService@9abbaf9
+09-23 01:55:47.958   611   611 I BluetoothHealthServiceJni: classInitNative: succeeds
+09-23 01:55:47.959   611   611 D BluetoothAdapterService: getAdapterService() - returning com.android.bluetooth.btservice.AdapterService@9abbaf9
+09-23 01:55:47.959   611   611 D HealthService: Received start request. Starting profile...
+09-23 01:55:47.960   611   611 I bt_btif : get_profile_interface health
+09-23 01:55:47.960   611   611 D BluetoothAdapterService: getAdapterService() - returning com.android.bluetooth.btservice.AdapterService@9abbaf9
+09-23 01:55:47.960   611   611 I BluetoothPanServiceJni: classInitNative(L102): succeeds
+09-23 01:55:47.961   671   671 D BluetoothPan: BluetoothPAN Proxy object connected
+09-23 01:55:47.961   671   671 D PanProfile: Bluetooth service connected
+09-23 01:55:47.961   611   611 D BluetoothAdapterService: getAdapterService() - returning com.android.bluetooth.btservice.AdapterService@9abbaf9
+09-23 01:55:47.961   611   611 D PanService: Received start request. Starting profile...
+09-23 01:55:47.962   611   611 D BluetoothPanServiceJni: initializeNative(L107): pan
+09-23 01:55:47.962   611   611 I bt_btif : get_profile_interface pan
+09-23 01:55:47.962   611   751 D BluetoothPanServiceJni: control_state_callback(L61): state:0, local_role:3, ifname:bt-pan
+09-23 01:55:47.962   611   611 D BluetoothAdapterService: getAdapterService() - returning com.android.bluetooth.btservice.AdapterService@9abbaf9
+09-23 01:55:47.962   611   611 D BluetoothAdapterService: handleMessage() - Message: 1
+09-23 01:55:47.962   611   611 D BluetoothAdapterService: handleMessage() - MESSAGE_PROFILE_SERVICE_STATE_CHANGED
+09-23 01:55:47.962   611   611 D BluetoothAdapterService: processProfileServiceStateChanged() serviceName=com.android.bluetooth.a2dp.A2dpService, state=12, doUpdate=true
+09-23 01:55:47.962   611   611 V BluetoothAdapterState: isTurningOff()=false
+09-23 01:55:47.962   611   611 V BluetoothAdapterState: isTurningOn()=true
+09-23 01:55:47.962   611   611 V BluetoothAdapterState: isBleTurningOn()=false
+09-23 01:55:47.962   611   611 V BluetoothAdapterState: isBleTurningOff()=false
+09-23 01:55:47.962   611   611 D BluetoothAdapterService: processProfileServiceStateChanged() - serviceName=com.android.bluetooth.a2dp.A2dpService isTurningOn=true isTurningOff=false isBleTurningOn=false isBleTurningOff=false
+09-23 01:55:47.963   611   611 D BluetoothAdapterService: Service: com.android.bluetooth.gatt.GattService
+09-23 01:55:47.963   611   611 D BluetoothAdapterService: Skip GATT service - already started before
+09-23 01:55:47.963   611   611 D BluetoothAdapterService: Service: com.android.bluetooth.hid.HidService
+09-23 01:55:47.963   611   611 D BluetoothAdapterService: onProfileServiceStateChange() - Profile still not running:com.android.bluetooth.hid.HidService
+09-23 01:55:47.963   611   611 D BluetoothAdapterService: handleMessage() - Message: 1
+09-23 01:55:47.963   611   611 D BluetoothAdapterService: handleMessage() - MESSAGE_PROFILE_SERVICE_STATE_CHANGED
+09-23 01:55:47.963   611   611 D BluetoothAdapterService: processProfileServiceStateChanged() serviceName=com.android.bluetooth.hid.HidService, state=12, doUpdate=true
+09-23 01:55:47.963   611   611 V BluetoothAdapterState: isTurningOff()=false
+09-23 01:55:47.963   611   611 V BluetoothAdapterState: isTurningOn()=true
+09-23 01:55:47.963   611   611 V BluetoothAdapterState: isBleTurningOn()=false
+09-23 01:55:47.963   611   611 V BluetoothAdapterState: isBleTurningOff()=false
+09-23 01:55:47.963   611   611 D BluetoothAdapterService: processProfileServiceStateChanged() - serviceName=com.android.bluetooth.hid.HidService isTurningOn=true isTurningOff=false isBleTurningOn=false isBleTurningOff=false
+09-23 01:55:47.963   611   611 D BluetoothAdapterService: Service: com.android.bluetooth.gatt.GattService
+09-23 01:55:47.963   611   611 D BluetoothAdapterService: Skip GATT service - already started before
+09-23 01:55:47.963   611   611 D BluetoothAdapterService: Service: com.android.bluetooth.hid.HidService
+09-23 01:55:47.963   611   611 D BluetoothAdapterService: Service: com.android.bluetooth.hdp.HealthService
+09-23 01:55:47.963   611   611 D BluetoothAdapterService: onProfileServiceStateChange() - Profile still not running:com.android.bluetooth.hdp.HealthService
+09-23 01:55:47.963   611   611 D BluetoothAdapterService: handleMessage() - Message: 1
+09-23 01:55:47.964   611   611 D BluetoothAdapterService: handleMessage() - MESSAGE_PROFILE_SERVICE_STATE_CHANGED
+09-23 01:55:47.964   611   611 D BluetoothAdapterService: processProfileServiceStateChanged() serviceName=com.android.bluetooth.hdp.HealthService, state=12, doUpdate=true
+09-23 01:55:47.964   611   611 V BluetoothAdapterState: isTurningOff()=false
+09-23 01:55:47.964   611   611 V BluetoothAdapterState: isTurningOn()=true
+09-23 01:55:47.964   611   611 V BluetoothAdapterState: isBleTurningOn()=false
+09-23 01:55:47.964   611   611 V BluetoothAdapterState: isBleTurningOff()=false
+09-23 01:55:47.964   611   611 D BluetoothAdapterService: processProfileServiceStateChanged() - serviceName=com.android.bluetooth.hdp.HealthService isTurningOn=true isTurningOff=false isBleTurningOn=false isBleTurningOff=false
+09-23 01:55:47.964   611   611 D BluetoothAdapterService: Service: com.android.bluetooth.gatt.GattService
+09-23 01:55:47.964   611   611 D BluetoothAdapterService: Skip GATT service - already started before
+09-23 01:55:47.964   611   611 D BluetoothAdapterService: Service: com.android.bluetooth.hid.HidService
+09-23 01:55:47.964   611   611 D BluetoothAdapterService: Service: com.android.bluetooth.hdp.HealthService
+09-23 01:55:47.964   611   611 D BluetoothAdapterService: Service: com.android.bluetooth.pan.PanService
+09-23 01:55:47.964   611   611 D BluetoothAdapterService: onProfileServiceStateChange() - Profile still not running:com.android.bluetooth.pan.PanService
+09-23 01:55:47.965   611   611 D BluetoothAdapterService: handleMessage() - Message: 1
+09-23 01:55:47.965   611   611 D BluetoothAdapterService: handleMessage() - MESSAGE_PROFILE_SERVICE_STATE_CHANGED
+09-23 01:55:47.966   611   611 D BluetoothAdapterService: processProfileServiceStateChanged() serviceName=com.android.bluetooth.pan.PanService, state=12, doUpdate=true
+09-23 01:55:47.966   611   611 V BluetoothAdapterState: isTurningOff()=false
+09-23 01:55:47.966   611   611 V BluetoothAdapterState: isTurningOn()=true
+09-23 01:55:47.966   611   611 V BluetoothAdapterState: isBleTurningOn()=false
+09-23 01:55:47.966   611   611 V BluetoothAdapterState: isBleTurningOff()=false
+09-23 01:55:47.966   611   611 D BluetoothAdapterService: processProfileServiceStateChanged() - serviceName=com.android.bluetooth.pan.PanService isTurningOn=true isTurningOff=false isBleTurningOn=false isBleTurningOff=false
+09-23 01:55:47.966   611   611 D BluetoothAdapterService: Service: com.android.bluetooth.gatt.GattService
+09-23 01:55:47.966   611   611 D BluetoothAdapterService: Skip GATT service - already started before
+09-23 01:55:47.966   611   611 D BluetoothAdapterService: Service: com.android.bluetooth.hid.HidService
+09-23 01:55:47.966   611   611 D BluetoothAdapterService: Service: com.android.bluetooth.hdp.HealthService
+09-23 01:55:47.966   611   611 D BluetoothAdapterService: Service: com.android.bluetooth.pan.PanService
+09-23 01:55:47.966   611   611 D BluetoothAdapterService: Service: com.android.bluetooth.a2dp.A2dpService
+09-23 01:55:47.966   611   611 D BluetoothAdapterService: onProfileServiceStateChange() - All profile services started.
+09-23 01:55:47.966   611   740 D BluetoothAdapterState: Current state: PENDING_COMMAND, message: 2
+09-23 01:55:47.966   611   740 D BluetoothAdapterProperties: ScanMode =  20
+09-23 01:55:47.966   611   740 D BluetoothAdapterProperties: State =  11
+09-23 01:55:47.967   611   740 D BluetoothAdapterProperties: Setting state to 12
+09-23 01:55:47.967   611   740 I BluetoothAdapterState: Bluetooth adapter state changed: 11-> 12
+09-23 01:55:47.967   611   740 D BluetoothAdapterService: updateAdapterState() - Broadcasting state to 1 receivers.
+09-23 01:55:47.968   516   536 D BluetoothManagerService: MESSAGE_BLUETOOTH_STATE_CHANGE: TURNING_ON > ON
+09-23 01:55:47.968   516   536 D BluetoothManagerService: Broadcasting onBluetoothStateChange(true) to 9 receivers.
+09-23 01:55:47.968   754   776 D BluetoothHeadset: onBluetoothStateChange: up=true
+09-23 01:55:47.968   611   751 D BluetoothAdapterProperties: Scan Mode:21
+09-23 01:55:47.968   611   751 D BluetoothAdapterProperties: Discoverable Timeout:120
+09-23 01:55:47.968   516   536 D BluetoothManagerService: Creating new ProfileServiceConnections object for profile: 1
+09-23 01:55:47.968   516   536 E BluetoothManagerService: Fail to bind to: Intent { act=android.bluetooth.IBluetoothHeadset }
+09-23 01:55:47.968   516   536 W BluetoothManagerService: Unable to bind with intent: Intent { act=android.bluetooth.IBluetoothHeadset }
+09-23 01:55:47.969   516   536 D BluetoothHeadset: onBluetoothStateChange: up=true
+09-23 01:55:47.969   516   536 D BluetoothManagerService: Creating new ProfileServiceConnections object for profile: 1
+09-23 01:55:47.969   516   536 E BluetoothManagerService: Fail to bind to: Intent { act=android.bluetooth.IBluetoothHeadset }
+09-23 01:55:47.969   516   536 W BluetoothManagerService: Unable to bind with intent: Intent { act=android.bluetooth.IBluetoothHeadset }
+09-23 01:55:47.969   516   536 D BluetoothHeadset: onBluetoothStateChange: up=true
+09-23 01:55:47.969   516   536 D BluetoothManagerService: Creating new ProfileServiceConnections object for profile: 1
+09-23 01:55:47.969   516   536 E BluetoothManagerService: Fail to bind to: Intent { act=android.bluetooth.IBluetoothHeadset }
+09-23 01:55:47.969   516   536 W BluetoothManagerService: Unable to bind with intent: Intent { act=android.bluetooth.IBluetoothHeadset }
+09-23 01:55:47.969   611   740 I BluetoothAdapterState: Entering OnState
+09-23 01:55:47.969   671   692 D BluetoothPbap: onBluetoothStateChange: up=true
+09-23 01:55:47.969   611   740 D BluetoothAdapterService: updateUuids() - Updating UUIDs for bonded devices
+09-23 01:55:47.971   671   690 D BluetoothInputDevice: onBluetoothStateChange: up=true
+09-23 01:55:47.971   516   536 D BluetoothA2dp: onBluetoothStateChange: up=true
+09-23 01:55:47.971   671   694 D BluetoothMap: onBluetoothStateChange: up=true
+09-23 01:55:47.971   671   694 E BluetoothMap: Could not bind to Bluetooth MAP Service with Intent { act=android.bluetooth.IBluetoothMap }
+09-23 01:55:47.972   611   740 D BluetoothAdapterService: isQuetModeEnabled() - Enabled = false
+09-23 01:55:47.972   611   740 D BluetoothAdapterService: autoConnect() - Initiate auto connection on BT on...
+09-23 01:55:47.972   516   536 D BluetoothHeadset: onBluetoothStateChange: up=true
+09-23 01:55:47.972   516   536 D BluetoothManagerService: Creating new ProfileServiceConnections object for profile: 1
+09-23 01:55:47.973   516   536 E BluetoothManagerService: Fail to bind to: Intent { act=android.bluetooth.IBluetoothHeadset }
+09-23 01:55:47.973   516   536 W BluetoothManagerService: Unable to bind with intent: Intent { act=android.bluetooth.IBluetoothHeadset }
+09-23 01:55:47.974   611   740 D A2dpSinkService: getA2dpSinkService(): service is NULL
+09-23 01:55:47.974   671   692 D BluetoothPan: onBluetoothStateChange on: true
+09-23 01:55:47.975   516   536 D BluetoothManagerService: Sending BLE State Change: TURNING_ON > ON
+09-23 01:55:47.975   516   516 I Telecom : BluetoothPhoneService: queryPhoneState: BPSI.qPS@AAk
+09-23 01:55:47.976   611   611 D BluetoothPbapReceiver: PbapReceiver onReceive action = android.bluetooth.adapter.action.STATE_CHANGED
+09-23 01:55:47.976   611   611 D BluetoothPbapReceiver: state = 12
+09-23 01:55:47.976   611   611 D BluetoothPbapReceiver: Calling start service with action = null
+09-23 01:55:47.982   671   943 D LocalBluetoothProfileManager: Adding local A2DP SRC profile
+09-23 01:55:47.984   771   771 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.startService:1357 android.content.ContextWrapper.startService:613 android.content.ContextWrapper.startService:613 com.android.settings.bluetooth.DockEventReceiver.beginStartingService:134 com.android.settings.bluetooth.DockEventReceiver.onReceive:115
+09-23 01:55:47.991   671   671 D BluetoothPbap: Proxy object connected
+09-23 01:55:47.992   671   671 D PbapServerProfile: Bluetooth service connected
+09-23 01:55:47.994   671   943 D LocalBluetoothProfileManager: Handsfree Uuid not found.
+09-23 01:55:47.994   671   671 D BluetoothA2dp: Proxy object connected
+09-23 01:55:48.011   611  1019 W BluetoothAdapter: getBluetoothService() called with no BluetoothManagerCallback
+09-23 01:55:48.013   771   771 D LocalBluetoothProfileManager: Adding local A2DP SRC profile
+09-23 01:55:48.021   771   771 D LocalBluetoothProfileManager: Handsfree Uuid not found.
+09-23 01:55:48.022   611  1023 W BluetoothAdapter: getBluetoothService() called with no BluetoothManagerCallback
+09-23 01:55:48.029   611  1023 I BtOppRfcommListener: Accept thread started.
+09-23 01:55:48.029   771   771 D LocalBluetoothProfileManager: Adding local MAP profile
+09-23 01:55:48.029   771   771 D BluetoothMap: Create BluetoothMap proxy object
+09-23 01:55:48.030   771   771 E BluetoothMap: Could not bind to Bluetooth MAP Service with Intent { act=android.bluetooth.IBluetoothMap }
+09-23 01:55:48.035   771   771 D LocalBluetoothProfileManager: LocalBluetoothProfileManager construction complete
+09-23 01:55:48.039   771   771 D DockEventReceiver: finishStartingService: stopping service
+09-23 01:55:48.041   771   771 D BluetoothA2dp: Proxy object connected
+09-23 01:55:48.043   771   771 D BluetoothInputDevice: Proxy object connected
+09-23 01:55:48.043   771   771 D HidProfile: Bluetooth service connected
+09-23 01:55:48.045   771   771 D BluetoothPan: BluetoothPAN Proxy object connected
+09-23 01:55:48.045   771   771 D PanProfile: Bluetooth service connected
+09-23 01:55:48.046   771   771 D BluetoothPbap: Proxy object connected
+09-23 01:55:48.046   771   771 D PbapServerProfile: Bluetooth service connected
+09-23 01:55:48.494   516   537 W WindowManager: App freeze timeout expired.
+09-23 01:55:52.058   163   163 W auditd  : type=1404 audit(0.0:4): enforcing=0 old_enforcing=1 auid=4294967295 ses=4294967295
+--------- beginning of main
+11-03 02:59:48.505  8049  8049 I stagefright: type=1400 audit(0.0:130): avc: denied { read } for path="/data/data/test1.mp4" dev="sda35" ino=868967 scontext=u:r:drmserver:s0 tcontext=u:object_r:system_data_file:s0 tclass=file permissive=1
+11-03 02:59:48.505  3939  3939 I chatty  : uid=10040(u0_a40) com.google.android.setupwizard expire 52528 lines
+11-03 02:59:48.559  8049  8054 I OMXClient: Treble IOmx obtained
+--------- beginning of crash
+11-03 02:59:48.892  6371  8072 F DEBUG   : *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
+11-03 02:59:48.892  6371  8072 F DEBUG   : Build fingerprint: 'google/marlin/marlin:8.0.0/OC/mspect11021711:userdebug/dev-keys'
+11-03 02:59:48.892  6371  8072 F DEBUG   : Revision: '0'
+11-03 02:59:48.892  6371  8072 F DEBUG   : ABI: 'arm'
+11-03 02:59:48.892  6371  8072 F DEBUG   : pid: 6371, tid: 8072, name: media.codec  >>> omx@1.0-service <<<
+11-03 02:59:48.892  6371  8072 F DEBUG   : signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0xed000000
+11-03 02:59:48.900  6371  8072 F DEBUG   :     r0 ecffdba0  r1 ed000000  r2 d44854c0  r3 00000070
+11-03 02:59:48.900  6371  8072 F DEBUG   :     r4 00000070  r5 000021a0  r6 00000070  r7 00000070
+11-03 02:59:48.900  6371  8072 F DEBUG   :     r8 00000040  r9 ffc2b278  sl ffffde70  fp 00000060
+11-03 02:59:48.900  6371  8072 F DEBUG   :     ip ffffffa0  sp d2fff620  lr 00004308  pc ed1c0e7c  cpsr a00f0010
+11-03 02:59:48.901  6371  8072 F DEBUG   :
+11-03 02:59:48.901  6371  8072 F DEBUG   : backtrace:
+11-03 02:59:48.901  6371  8072 F DEBUG   :     #00 pc 00034e7c  /system/lib/libstagefright_soft_hevcdec.so
+--------- beginning of system
+11-03 02:59:48.905  1135  1155 I BootReceiver: Copying /data/tombstones/tombstone_03 to DropBox (SYSTEM_TOMBSTONE)
+11-03 02:59:49.002  1135  1135 W WindowManager: removeWindowToken: Attempted to remove non-existing token: android.os.Binder@6959a9f
+11-03 02:59:50.607  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:50.616  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:50.625  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:50.635  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:50.644  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:50.654  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:50.663  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:50.672  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:50.682  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:50.691  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:50.691  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:50.692  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:50.692  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:50.692  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:50.692  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:50.692  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:50.701  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:50.711  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:50.720  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:50.729  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:50.738  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:50.748  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:50.757  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:50.766  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:50.775  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:50.785  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:50.794  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:50.804  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:50.813  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:50.822  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:50.832  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:50.841  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:50.850  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:50.860  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:50.869  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:50.879  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:50.888  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:50.897  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:50.906  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:50.916  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:50.925  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:50.935  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:50.944  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:50.953  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:50.963  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:50.972  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:50.982  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:50.991  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.000  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.000  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.000  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.010  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.010  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.010  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.010  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.010  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.010  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.010  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.010  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.010  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.019  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.020  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.020  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.020  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.020  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.020  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.020  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.020  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.020  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.020  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.020  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.020  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.020  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.020  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.020  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.020  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.020  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.020  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.020  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.020  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.020  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.020  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.020  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.020  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.020  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.020  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.020  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.020  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.021  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.021  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.021  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.021  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.021  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.021  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.021  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.021  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.021  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.021  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.021  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.021  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.021  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.021  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.021  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.021  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.021  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.021  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.021  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.021  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.021  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.021  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.021  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.021  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.021  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.022  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.022  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.022  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.022  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.022  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.022  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.022  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.022  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.022  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.022  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.022  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.022  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.022  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.022  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.022  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.022  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.031  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.042  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.054  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.054  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.054  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.054  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.054  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.055  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.055  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.055  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.055  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.055  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.055  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.055  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.055  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.055  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.055  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.055  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.055  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.055  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.055  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.055  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.056  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.056  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.056  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.056  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.056  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.056  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.056  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.056  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.056  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.056  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.056  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.056  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.056  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.056  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.056  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.056  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.056  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.056  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.056  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.056  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.056  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.057  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.057  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.057  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.057  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.057  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.057  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.057  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.057  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.057  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.057  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.057  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.057  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.057  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.057  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.057  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.057  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.057  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.057  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.057  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.057  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.057  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.058  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.058  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.058  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.058  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.058  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.058  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.058  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.058  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.058  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.058  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.058  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.058  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.058  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.058  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.058  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.058  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.058  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.058  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.058  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.059  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.059  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.059  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.059  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.059  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.059  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.059  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.059  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.059  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.059  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.071  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.071  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.071  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.071  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.071  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.071  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.071  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.071  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.071  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.071  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.071  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.071  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.071  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.071  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.071  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.071  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.071  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.072  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.072  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.072  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.072  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.072  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.072  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.072  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.072  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.072  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.072  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.072  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.072  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.072  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.072  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.072  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.072  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.072  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.072  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.072  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.072  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.072  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.072  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.072  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.073  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.073  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.073  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.073  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.073  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.073  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.073  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.073  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.073  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.073  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.073  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.073  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.073  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.073  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.073  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.073  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.073  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.073  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.073  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.073  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.073  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.073  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.073  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.074  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.074  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.074  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.074  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.074  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.074  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.074  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.074  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.074  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.074  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.074  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.086  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.086  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.086  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.086  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.086  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.086  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.086  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.086  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.086  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.086  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.086  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.086  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.086  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.087  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.087  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.087  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.087  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.087  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.087  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.087  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.087  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.087  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.087  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.087  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.087  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.087  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.087  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.087  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.087  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.087  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.087  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.087  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.087  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.087  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.087  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.087  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.088  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.088  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.088  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.088  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.088  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.088  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.088  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.088  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.088  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.088  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.088  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.088  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.088  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.088  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.088  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.088  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.088  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.088  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.088  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.088  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.089  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.089  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.089  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.089  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.089  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.089  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.089  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.089  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.089  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.089  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.089  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.089  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.089  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.089  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.089  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.089  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.089  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.089  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.089  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.089  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.101  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.101  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.101  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.101  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.101  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.101  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.101  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.101  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.101  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.101  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.102  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.102  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.102  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.102  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.102  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.102  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.102  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.102  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.102  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.102  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.102  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.102  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.102  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.102  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.102  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.102  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.102  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.102  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.102  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.102  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.102  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.102  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.103  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.103  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.103  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.103  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.103  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.103  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.103  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.103  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.103  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.103  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.103  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.103  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.103  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.103  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.103  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.103  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.103  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.103  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.103  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.103  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.103  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.103  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.103  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.104  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.104  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.104  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.104  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.104  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.104  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.104  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.104  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.104  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.104  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.104  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.104  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.104  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.104  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.104  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.104  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.104  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.104  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.104  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.105  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.105  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.105  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.105  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.105  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.105  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.105  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.105  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.105  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.105  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.105  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.105  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.105  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.105  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.105  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.105  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.105  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.105  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.105  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.105  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.105  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.105  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.106  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.106  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.106  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.106  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.106  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.106  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.106  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.106  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.106  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.106  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.106  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.106  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.106  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.106  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.106  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.106  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.106  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.106  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.106  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.106  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.106  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.106  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.107  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.107  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.107  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.107  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.107  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.107  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.107  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.107  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.107  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.107  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.107  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.107  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.107  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.107  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.107  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.107  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.107  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.107  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.107  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.107  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.107  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.107  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.107  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.108  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.108  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.108  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.108  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.108  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.108  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.108  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.108  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.108  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.108  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.108  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.108  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.108  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.108  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.108  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.108  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.108  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.108  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.108  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.108  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.109  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.109  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.109  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.109  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.109  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.109  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.109  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.109  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.109  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.109  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.109  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.109  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.109  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.109  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.109  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.109  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.109  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.109  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.121  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.121  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.121  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.121  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.121  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.121  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.121  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.121  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.121  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.121  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.121  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.121  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.133  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.145  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.157  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.157  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.157  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.157  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.157  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.157  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.157  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.157  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.157  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.157  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.157  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.157  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.157  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.157  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.157  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.157  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.157  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.158  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.158  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.158  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.170  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.182  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.182  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.194  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.206  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.218  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.230  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.242  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.242  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.242  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.242  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.242  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.242  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.242  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.242  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.242  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.242  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.242  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.242  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.242  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.242  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.243  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.243  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.243  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.243  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.243  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.243  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.243  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.243  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.243  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.243  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.243  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.243  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.243  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.243  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.243  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.243  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.243  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.243  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.243  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.243  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.243  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.243  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.243  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.243  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.244  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.244  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.244  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.244  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.244  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.244  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.244  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.244  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.244  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.244  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.244  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.244  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.244  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.244  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.244  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.244  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.244  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.244  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.244  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.244  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.244  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.244  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.245  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.245  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.245  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.245  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.245  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.245  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.245  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.245  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.245  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.245  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.245  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.245  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.245  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.245  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.245  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.245  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.245  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.245  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.245  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.245  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.245  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.245  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.246  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.246  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.246  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.246  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.246  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.246  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.246  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.246  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.246  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.246  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.246  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.246  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.246  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.246  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.246  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.246  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.246  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.246  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.246  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.246  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.246  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.247  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.247  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.247  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.247  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.247  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.247  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.247  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.247  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.247  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.247  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.247  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.247  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.247  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.247  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.247  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.247  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.247  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.247  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.247  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.247  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.247  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.247  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.248  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.248  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.248  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.248  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.259  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.271  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.271  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.271  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.283  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.295  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.295  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.295  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.295  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.295  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.295  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.295  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.295  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.307  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.307  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.307  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.307  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.307  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.308  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.308  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.308  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.308  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.308  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.308  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.308  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.308  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.308  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.308  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.308  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.308  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.308  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.308  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.308  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.308  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.308  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.308  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.309  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.309  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.309  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.309  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.309  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.309  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.309  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.309  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.309  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.309  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.309  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.309  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.309  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.309  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.309  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.309  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.309  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.309  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.309  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.309  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.309  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.310  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.310  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.310  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.321  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.333  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.333  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.333  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.333  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.333  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.333  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.333  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.333  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.333  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.333  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.333  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.333  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.333  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.333  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.334  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.334  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.334  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.334  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.334  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.334  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.334  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.334  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.334  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.334  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.334  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.334  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.334  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.343  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.343  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.343  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.343  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.343  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.343  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.343  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.343  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.344  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.344  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.344  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.344  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.353  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.362  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.371  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.380  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.388  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.388  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.388  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.397  3939  3939 E MediaPlayer: Error (-38,0)
+11-03 02:59:51.406  3939  3939 E MediaPlayerNative: error (-38, 0)
+11-03 02:59:51.415  3939  3939 E MediaPlayerNative: Attempt to perform seekTo in wrong state: mPlayer=0x7cf19ec840, mCurrentState=0
+11-03 02:59:51.424  3939  3939 E MediaPlayer: Error (-38,0)
+05-04 21:59:23.695  9363  9363 I crash_dump64: performing dump of process 8373 (target tid = 8414)
+05-04 21:59:23.695  9363  9363 F DEBUG   : *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
+05-04 21:59:23.696  9363  9363 F DEBUG   : Build fingerprint: 'google/taimen/taimen:8.1.0/OPM2.171026.006.A1/4756228:userdebug/dev-keys'
+05-04 21:59:23.696  9363  9363 F DEBUG   : Revision: 'rev_10'
+05-04 21:59:23.696  9363  9363 F DEBUG   : ABI: 'arm64'
+05-04 21:59:23.696  9363  9363 F DEBUG   : pid: 8373, tid: 8414, name: btu message loo  >>> com.android.bluetooth <<<
+05-04 21:59:23.696  9363  9363 F DEBUG   : signal 6 (SIGABRT), code -6 (SI_TKILL), fault addr --------
+05-04 21:59:23.700  9363  9363 F DEBUG   : Abort message: '[FATAL:allocation_tracker.cc(143)] Check failed: map_entry != allocations.end().
+05-04 21:59:23.700  9363  9363 F DEBUG   : '
+05-04 21:59:23.700  9363  9363 F DEBUG   :     x0   0000000000000000  x1   00000000000020de  x2   0000000000000006  x3   0000000000000008
+05-04 21:59:23.701  9363  9363 F DEBUG   :     x4   613a4c415441465b  x5   613a4c415441465b  x6   613a4c415441465b  x7   6f697461636f6c6c
+05-04 21:59:23.701  9363  9363 F DEBUG   :     x8   0000000000000083  x9   0000000010000000  x10  000000703a7a7c80  x11  0000000000000001
+05-04 21:59:23.701  9363  9363 F DEBUG   :     x12  746e655f70616d20  x13  6c61203d21207972  x14  ff00000000000000  x15  ffffffffffffffff
+05-04 21:59:23.701  9363  9363 F DEBUG   :     x16  0000006380f4afa8  x17  00000070d20af52c  x18  0000000000000000  x19  00000000000020b5
+05-04 21:59:23.701  9363  9363 F DEBUG   :     x20  00000000000020de  x21  0000000000000083  x22  000000703a7a9588  x23  000000703b8ee000
+05-04 21:59:23.701  9363  9363 F DEBUG   :     x24  000000703a7a7d01  x25  000000703a7a9588  x26  000000703bc7d948  x27  00000070484c92d8
+05-04 21:59:23.701  9363  9363 F DEBUG   :     x28  0000000000000006  x29  000000703a7a7cc0  x30  00000070d2064760
+05-04 21:59:23.701  9363  9363 F DEBUG   :     sp   000000703a7a7c80  pc   00000070d2064788  pstate 0000000060000000
+05-04 21:59:23.742  9363  9363 F DEBUG   :
+05-04 21:59:23.742  9363  9363 F DEBUG   : backtrace:
+05-04 21:59:23.743  9363  9363 F DEBUG   :     #00 pc 000000000001d788  /system/lib64/libc.so (abort+120)
+05-04 21:59:23.743  9363  9363 F DEBUG   :     #01 pc 0000000000083470  /system/lib64/libchrome.so (base::debug::BreakDebugger()+20)
+05-04 21:59:23.743  9363  9363 F DEBUG   :     #02 pc 000000000009affc  /system/lib64/libchrome.so (logging::LogMessage::~LogMessage()+1068)
+05-04 21:59:23.743  9363  9363 F DEBUG   :     #03 pc 0000000000199130  /system/lib64/hw/bluetooth.default.so (allocation_tracker_notify_free(unsigned char, void*)+720)
+05-04 21:59:23.743  9363  9363 F DEBUG   :     #04 pc 000000000019984c  /system/lib64/hw/bluetooth.default.so (osi_free(void*)+20)
+05-04 21:59:23.743  9363  9363 F DEBUG   :     #05 pc 0000000000163f1c  /system/lib64/hw/bluetooth.default.so (l2c_fcr_cleanup(t_l2c_ccb*)+92)
+05-04 21:59:23.743  9363  9363 F DEBUG   :     #06 pc 000000000016adc8  /system/lib64/hw/bluetooth.default.so (l2cu_release_ccb(t_l2c_ccb*)+176)
+05-04 21:59:23.743  9363  9363 F DEBUG   :     #07 pc 0000000000162ea0  /system/lib64/hw/bluetooth.default.so (l2c_csm_execute(t_l2c_ccb*, unsigned short, void*)+1852)
+05-04 21:59:23.743  9363  9363 F DEBUG   :     #08 pc 000000000015e4f4  /system/lib64/hw/bluetooth.default.so (L2CA_DisconnectRsp(unsigned short)+92)
+05-04 21:59:23.743  9363  9363 F DEBUG   :     #09 pc 00000000001838b0  /system/lib64/hw/bluetooth.default.so (sdp_disconnect_ind(unsigned short, bool)+52)
+05-04 21:59:23.743  9363  9363 F DEBUG   :     #10 pc 0000000000163574  /system/lib64/hw/bluetooth.default.so (l2c_csm_execute(t_l2c_ccb*, unsigned short, void*)+3600)
+05-04 21:59:23.743  9363  9363 F DEBUG   :     #11 pc 0000000000169f94  /system/lib64/hw/bluetooth.default.so (l2c_rcv_acl_data(BT_HDR*)+3980)
+05-04 21:59:23.743  9363  9363 F DEBUG   :     #12 pc 00000000000849cc  /system/lib64/libchrome.so (base::debug::TaskAnnotator::RunTask(char const*, base::PendingTask const&)+188)
+05-04 21:59:23.743  9363  9363 F DEBUG   :     #13 pc 000000000009efa4  /system/lib64/libchrome.so (base::MessageLoop::RunTask(base::PendingTask const&)+444)
+05-04 21:59:23.743  9363  9363 F DEBUG   :     #14 pc 000000000009f26c  /system/lib64/libchrome.so (base::MessageLoop::DeferOrRunPendingTask(base::PendingTask)+52)
+05-04 21:59:23.743  9363  9363 F DEBUG   :     #15 pc 000000000009f698  /system/lib64/libchrome.so (base::MessageLoop::DoWork()+356)
+05-04 21:59:23.743  9363  9363 F DEBUG   :     #16 pc 00000000000a08a8  /system/lib64/libchrome.so (base::MessagePumpDefault::Run(base::MessagePump::Delegate*)+220)
+05-04 21:59:23.743  9363  9363 F DEBUG   :     #17 pc 00000000000ba124  /system/lib64/libchrome.so (base::RunLoop::Run()+136)
+05-04 21:59:23.743  9363  9363 F DEBUG   :     #18 pc 0000000000138660  /system/lib64/hw/bluetooth.default.so (btu_message_loop_run(void*)+248)
+05-04 21:59:23.743  9363  9363 F DEBUG   :     #19 pc 00000000001a24fc  /system/lib64/hw/bluetooth.default.so (work_queue_read_cb(void*)+92)
+05-04 21:59:23.743  9363  9363 F DEBUG   :     #20 pc 00000000001a0758  /system/lib64/hw/bluetooth.default.so (run_reactor(reactor_t*, int)+320)
+05-04 21:59:23.743  9363  9363 F DEBUG   :     #21 pc 00000000001a05ec  /system/lib64/hw/bluetooth.default.so (reactor_start(reactor_t*)+84)
+05-04 21:59:23.743  9363  9363 F DEBUG   :     #22 pc 00000000001a1f94  /system/lib64/hw/bluetooth.default.so (run_thread(void*)+184)
+05-04 21:59:23.743  9363  9363 F DEBUG   :     #23 pc 0000000000067d80  /system/lib64/libc.so (__pthread_start(void*)+36)
+05-04 21:59:23.743  9363  9363 F DEBUG   :     #24 pc 000000000001ec18  /system/lib64/libc.so (__start_thread+68)
+1-25 19:47:35.417  8080 11665 F MPEG4Extractor: frameworks/av/media/libstagefright/MPEG4Extractor.cpp:6853 CHECK_EQ( (unsigned)ptr[0],1u) failed: 129 vs. 1
+11-25 19:47:35.417  8080 11665 F libc    : Fatal signal 6 (SIGABRT), code -6 in tid 11665 (generic)
+11-25 19:47:35.487   940   940 F DEBUG   : *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
+11-25 19:47:35.487   940   940 F DEBUG   : Build fingerprint: 'samsung/hero2qltezc/hero2qltechn:6.0.1/MMB29M/G9350ZCU2APJ6:user/release-keys'
+11-25 19:47:35.487   940   940 F DEBUG   : Revision: '15'
+11-25 19:47:35.487   940   940 F DEBUG   : ABI: 'arm'
+11-25 19:47:35.487   940   940 F DEBUG   : pid: 8080, tid: 11665, name: generic  >>> /system/bin/mediaserver <<<
+11-25 19:47:35.487   940   940 F DEBUG   : signal 6 (SIGABRT), code -6 (SI_TKILL), fault addr --------
+11-25 19:47:35.577   940   940 F DEBUG   : Abort message: 'frameworks/av/media/libstagefright/MPEG4Extractor.cpp:6853 CHECK_EQ( (unsigned)ptr[0],1u) failed: 129 vs. 1'
+11-25 19:47:35.577   940   940 F DEBUG   :     r0 00000000  r1 00002d91  r2 00000006  r3 eb23f978
+11-25 19:47:35.577   940   940 F DEBUG   :     r4 eb23f980  r5 eb23f930  r6 00000009  r7 0000010c
+11-25 19:47:35.577   940   940 F DEBUG   :     r8 e9e91140  r9 00000000  sl 00000000  fp 000003d3
+11-25 19:47:35.577   940   940 F DEBUG   :     ip 00000006  sp eb23db70  lr f701313d  pc f7015538  cpsr 40010010
+11-25 19:47:35.597   940   940 F DEBUG   :
+11-25 19:47:35.597   940   940 F DEBUG   : backtrace:
+11-25 19:47:35.597   940   940 F DEBUG   :     #00 pc 00042538  /system/lib/libc.so (tgkill+12)
+11-25 19:47:35.597   940   940 F DEBUG   :     #01 pc 00040139  /system/lib/libc.so (pthread_kill+32)
+11-25 19:47:35.597   940   940 F DEBUG   :     #02 pc 0001c783  /system/lib/libc.so (raise+10)
+11-25 19:47:35.597   940   940 F DEBUG   :     #03 pc 000199f1  /system/lib/libc.so (__libc_android_abort+34)
+11-25 19:47:35.597   940   940 F DEBUG   :     #04 pc 000175ac  /system/lib/libc.so (abort+4)
+11-25 19:47:35.597   940   940 F DEBUG   :     #05 pc 000085e7  /system/lib/libcutils.so (__android_log_assert+86)
+11-25 19:47:35.597   940   940 F DEBUG   :     #06 pc 000c1f49  /system/lib/libstagefright.so (_ZN7android14MPEG4Extractor25avcc_getCodecSpecificInfoERNS_2spINS_7ABufferEEEPKcj+392)
+11-25 19:47:35.597   940   940 F DEBUG   :     #07 pc 000c213f  /system/lib/libstagefright.so (_ZN7android14MPEG4Extractor15checkConfigDataEjRKNS_2spINS_8MetaDataEEE+218)
+11-25 19:47:35.597   940   940 F DEBUG   :     #08 pc 000bbd25  /system/lib/libstagefright.so (_ZN7android14MPEG4Extractor12checkSupportEjRKNS_2spINS_8MetaDataEEE+136)
+11-25 19:47:35.597   940   940 F DEBUG   :     #09 pc 000ba555  /system/lib/libstagefright.so (_ZN7android14MPEG4Extractor10parseChunkEPxi+13060)
+11-25 19:47:35.597   940   940 F DEBUG   :     #10 pc 000ba32d  /system/lib/libstagefright.so (_ZN7android14MPEG4Extractor10parseChunkEPxi+12508)
+11-25 19:47:35.597   940   940 F DEBUG   :     #11 pc 000b8a6f  /system/lib/libstagefright.so (_ZN7android14MPEG4Extractor10parseChunkEPxi+6174)
+11-25 19:47:35.597   940   940 F DEBUG   :     #12 pc 000b8a6f  /system/lib/libstagefright.so (_ZN7android14MPEG4Extractor10parseChunkEPxi+6174)
+11-25 19:47:35.597   940   940 F DEBUG   :     #13 pc 000b8a6f  /system/lib/libstagefright.so (_ZN7android14MPEG4Extractor10parseChunkEPxi+6174)
+11-25 19:47:35.597   940   940 F DEBUG   :     #14 pc 000b8a6f  /system/lib/libstagefright.so (_ZN7android14MPEG4Extractor10parseChunkEPxi+6174)
+11-25 19:47:35.597   940   940 F DEBUG   :     #15 pc 000b8a6f  /system/lib/libstagefright.so (_ZN7android14MPEG4Extractor10parseChunkEPxi+6174)
+11-25 19:47:35.597   940   940 F DEBUG   :     #16 pc 000b6e3b  /system/lib/libstagefright.so (_ZN7android14MPEG4Extractor12readMetaDataEv+94)
+11-25 19:47:35.597   940   940 F DEBUG   :     #17 pc 000b6daf  /system/lib/libstagefright.so (_ZN7android14MPEG4Extractor11getMetaDataEv+10)
+11-25 19:47:35.597   940   940 F DEBUG   :     #18 pc 00088c53  /system/lib/libmediaplayerservice.so (_ZN7android8NuPlayer13GenericSource18initFromDataSourceEv+386)
+11-25 19:47:35.597   940   940 F DEBUG   :     #19 pc 00089b43  /system/lib/libmediaplayerservice.so (_ZN7android8NuPlayer13GenericSource14onPrepareAsyncEv+238)
+11-25 19:47:35.597   940   940 F DEBUG   :     #20 pc 0000b405  /system/lib/libstagefright_foundation.so (_ZN7android8AHandler14deliverMessageERKNS_2spINS_8AMessageEEE+16)
+11-25 19:47:35.597   940   940 F DEBUG   :     #21 pc 0000d423  /system/lib/libstagefright_foundation.so (_ZN7android8AMessage7deliverEv+54)
+11-25 19:47:35.597   940   940 F DEBUG   :     #22 pc 0000be29  /system/lib/libstagefright_foundation.so (_ZN7android7ALooper4loopEv+224)
+11-25 19:47:35.597   940   940 F DEBUG   :     #23 pc 0001011d  /system/lib/libutils.so (_ZN7android6Thread11_threadLoopEPv+112)
+11-25 19:47:35.597   940   940 F DEBUG   :     #24 pc 0003fa3b  /system/lib/libc.so (_ZL15__pthread_startPv+30)
+11-25 19:47:35.597   940   940 F DEBUG   :     #25 pc 0001a085  /system/lib/libc.so (__start_thread+6)
+11-25 19:47:35.837   940   940 F DEBUG   :
+11-25 19:47:35.837   940   940 F DEBUG   : Tombstone written to: /data/tombstones/tombstone_01
diff --git a/common/util/tests/src/com/android/compatibility/common/util/CrashUtilsTest.java b/common/util/tests/src/com/android/compatibility/common/util/CrashUtilsTest.java
new file mode 100644
index 0000000..4eae54d
--- /dev/null
+++ b/common/util/tests/src/com/android/compatibility/common/util/CrashUtilsTest.java
@@ -0,0 +1,113 @@
+/*
+ * Copyright (C) 2018 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.android.compatibility.common.util;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertFalse;
+import static org.junit.Assert.assertTrue;
+
+import java.io.BufferedReader;
+import java.io.IOException;
+import java.io.InputStreamReader;
+import java.util.ArrayList;
+import java.util.List;
+
+import junit.framework.TestCase;
+
+import org.junit.Before;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
+
+
+@RunWith(JUnit4.class)
+public class CrashUtilsTest extends TestCase {
+
+    private String mLogcat;
+
+    @Before
+    public void setUp() throws IOException {
+        BufferedReader txtReader =
+                new BufferedReader(
+                        new InputStreamReader(
+                                getClass().getClassLoader().getResourceAsStream("logcat.txt")));
+        try {
+            StringBuffer input = new StringBuffer();
+            String tmp;
+            while ((tmp = txtReader.readLine()) != null) {
+                input.append(tmp + "\n");
+            }
+            mLogcat = input.toString();
+        } finally {
+            txtReader.close();
+        }
+    }
+
+    @Test
+    public void testGetAllCrashes() throws Exception {
+        List<Crash> expectedResults = new ArrayList<>();
+        expectedResults.add(new Crash(11071, 11189, "AudioOut_D", 3912761344L, "SIGSEGV"));
+        expectedResults.add(new Crash(12736, 12761, "Binder:12736_2", 0L, "SIGSEGV"));
+        expectedResults.add(new Crash(26201, 26227, "Binder:26201_3", 0L, "SIGSEGV"));
+        expectedResults.add(new Crash(26246, 26282, "Binder:26246_5", 0L, "SIGSEGV"));
+        expectedResults.add(new Crash(245, 245, "installd", null, "SIGABRT"));
+        expectedResults.add(new Crash(6371, 8072, "media.codec", 3976200192L, "SIGSEGV"));
+        expectedResults.add(new Crash(8373, 8414, "loo", null, "SIGABRT"));
+
+        List<Crash> actualCrashes = CrashUtils.getAllCrashes(mLogcat);
+
+        assertEquals(expectedResults, actualCrashes);
+    }
+
+    @Test
+    public void testValidCrash() throws Exception {
+        assertTrue(CrashUtils.detectCrash(new String[]{"AudioOut_D"}, true, mLogcat));
+    }
+
+    @Test
+    public void testMissingName() throws Exception {
+        assertFalse(CrashUtils.detectCrash(new String[]{""}, true, mLogcat));
+    }
+
+    @Test
+    public void testSIGABRT() throws Exception {
+        assertFalse(CrashUtils.detectCrash(new String[]{"installd"}, true, mLogcat));
+    }
+
+    @Test
+    public void testFaultAddressBelowMin() throws Exception {
+        assertFalse(
+                CrashUtils.detectCrash(new String[]{"Binder:12736_2"}, true, mLogcat));
+    }
+
+    @Test
+    public void testIgnoreMinAddressCheck() throws Exception {
+        assertTrue(
+                CrashUtils.detectCrash(new String[]{"Binder:12736_2"}, false, mLogcat));
+    }
+
+    @Test
+    public void testBadAbortMessage() throws Exception {
+        assertFalse(CrashUtils.detectCrash(new String[]{"generic"}, true, mLogcat));
+    }
+
+    @Test
+    public void testGoodAndBadCrashes() throws Exception {
+        assertTrue(
+                CrashUtils.detectCrash(new String[]{"AudioOut_D", "generic"}, true, mLogcat));
+    }
+}
diff --git a/common/util/tests/src/com/android/compatibility/common/util/UnitTests.java b/common/util/tests/src/com/android/compatibility/common/util/UnitTests.java
index 0a7dd47..7fac2d7 100644
--- a/common/util/tests/src/com/android/compatibility/common/util/UnitTests.java
+++ b/common/util/tests/src/com/android/compatibility/common/util/UnitTests.java
@@ -39,6 +39,7 @@
         addTestSuite(StatTest.class);
         addTestSuite(TestFilterTest.class);
         addTestSuite(TestResultTest.class);
+        addTestSuite(CrashUtilsTest.class);
     }
 
     public static Test suite() {
diff --git a/tests/tests/security/src/android/security/cts/StagefrightTest.java b/tests/tests/security/src/android/security/cts/StagefrightTest.java
index 97f72fd..8fa0552 100644
--- a/tests/tests/security/src/android/security/cts/StagefrightTest.java
+++ b/tests/tests/security/src/android/security/cts/StagefrightTest.java
@@ -22,6 +22,9 @@
  */
 package android.security.cts;
 
+import com.android.compatibility.common.util.CrashUtils;
+import com.android.compatibility.common.util.Crash;
+
 import android.test.AndroidTestCase;
 import android.util.Log;
 import android.content.Context;
@@ -53,6 +56,7 @@
 import java.io.InputStream;
 import java.net.Socket;
 import java.net.ServerSocket;
+import java.io.ObjectInputStream;
 import java.io.File;
 import java.util.ArrayList;
 import java.util.HashMap;
@@ -1001,10 +1005,38 @@
         return new Surface(surfaceTex);
     }
 
+    public ArrayList<Crash> getCrashReport(String testname, long timeout)
+            throws IOException {
+        Log.e(TAG, CrashUtils.UPLOAD_REQUEST);
+        File reportFile = new File(CrashUtils.DEVICE_PATH + testname);
+        File lockFile = new File(CrashUtils.DEVICE_PATH + CrashUtils.LOCK_FILENAME);
+        long checkInterval = 50;
+        while ((!reportFile.exists() || !lockFile.exists()) && timeout > 0) {
+            SystemClock.sleep(checkInterval);
+            timeout -= checkInterval;
+        }
+        if (!reportFile.exists() || !reportFile.isFile() || !lockFile.exists()) {
+            return null;
+        }
+        try (ObjectInputStream reader = new ObjectInputStream(new FileInputStream(reportFile))) {
+            return (ArrayList<Crash>) reader.readObject();
+        } catch (IOException e) {
+            throw e;
+        } catch (ClassNotFoundException e) {
+            Log.e(TAG, "Failed to deserialize crash list with error " + e.toString());
+            return null;
+        }
+    }
+
     class MediaPlayerCrashListener
     implements MediaPlayer.OnErrorListener,
         MediaPlayer.OnPreparedListener,
         MediaPlayer.OnCompletionListener {
+
+        private final String[] validProcessNames = {
+            "mediaserver", "mediadrmserver", "media.extractor", "media.codec", "media.metrics"
+        };
+
         @Override
         public boolean onError(MediaPlayer mp, int newWhat, int extra) {
             Log.i(TAG, "error: " + newWhat + "/" + extra);
@@ -1045,6 +1077,25 @@
                 // and see if more errors show up.
                 SystemClock.sleep(1000);
             }
+            if (what == MediaPlayer.MEDIA_ERROR_SERVER_DIED) {
+                try {
+                    ArrayList<Crash> crashes = getCrashReport(getName(), 5000);
+                    if (crashes == null) {
+                        Log.e(TAG, "Crash results not found for test " + getName());
+                        return 0;
+                    } else if (CrashUtils.detectCrash(validProcessNames, true, crashes)) {
+                        return what;
+                    } else {
+                        Log.i(TAG, "Crash ignored due to crash parser results for test " +
+                                getName());
+                        return 0;
+                    }
+                } catch (IOException e) {
+                    Log.e(TAG, "Failed to parse crash data with error " + e.toString());
+                    return 0;
+                }
+
+            }
             return what;
         }