Handy App Problem...fertige App läuft nicht

  • Antworten:85
  • Bentwortet
Tom20
  • Forum-Beiträge: 39

13.06.2020, 10:02:47 via Website

Hallo Forum
Ich habe eine Android Studio App für die Kommunikation mit einem Raspberry...leider läuft das fertige Programm nicht mehr und ich bräuchte mal Hilfe....folgende Fehlermeldung erscheint

java.lang.ArrayIndexOutOfBoundsException: length=1; index=1

Kommentieren
Beste Antwort
Jokel
  • Forum-Beiträge: 1.530

13.06.2020, 14:14:42 via Website

Hallo lade die Datei in eine Homepage hoch oder auch bei Google stelle den link hier rein ohne das Http:\
denn du kannst ja noch keine Links posten.

am einfachsten lädst du es bei Github hoch und gibst uns den Link zum Repos.

In Übrigen sagt die die Fehlermeldung das dein Array nur einen Eintrag hat. Du aber zur Laufzeit versuchst auf Elemente deines Arrays grösser den Grenzen zuzugreifen.

int arrayTest[] = {1,2};
int x = arrayTest[2];

Das würde dir genau deinen Fehler werfen.

— geändert am 13.06.2020, 14:14:56

Hilfreich?
Tom20
Kommentieren
Pascal P.
  • Admin
  • Forum-Beiträge: 11.286

13.06.2020, 11:22:51 via App

Ohne Code und Zeile kommen wir hier nicht weiter...

LG Pascal //It's not a bug, it's a feature. :) ;)

Hilfreich?
Kommentieren
Tom20
  • Forum-Beiträge: 39

13.06.2020, 12:21:50 via Website

Pascal P.

Ohne Code und Zeile kommen wir hier nicht weiter...

wie kann ich dir ein Zip mit dem code zukommen lassen???

Hilfreich?
Kommentieren
Beste Antwort
Jokel
  • Forum-Beiträge: 1.530

13.06.2020, 14:14:42 via Website

Hallo lade die Datei in eine Homepage hoch oder auch bei Google stelle den link hier rein ohne das Http:\
denn du kannst ja noch keine Links posten.

am einfachsten lädst du es bei Github hoch und gibst uns den Link zum Repos.

In Übrigen sagt die die Fehlermeldung das dein Array nur einen Eintrag hat. Du aber zur Laufzeit versuchst auf Elemente deines Arrays grösser den Grenzen zuzugreifen.

int arrayTest[] = {1,2};
int x = arrayTest[2];

Das würde dir genau deinen Fehler werfen.

— geändert am 13.06.2020, 14:14:56

Hilfreich?
Tom20
Kommentieren
Pascal P.
  • Admin
  • Forum-Beiträge: 11.286

13.06.2020, 15:47:49 via App

Am besten du Postest den passenden Code hier rein oder Verlinkst auf Github/Pastebin..

Ansonsten reichen 10 Posts zun Links schreiben.
Deine E-Mail Adresse hab ich aus Spamschutzgrunden mal entfernt.

LG Pascal //It's not a bug, it's a feature. :) ;)

Hilfreich?
Kommentieren
Tom20
  • Forum-Beiträge: 39

13.06.2020, 17:47:53 via Website

hallo Forum....hier habe ich das zip-file reingelegt....https noch voranstellen

://1drv.ms/u/s!AhMBHIwNTWbbjXasBlEsHM2IwdCs?e=eDEzkL

Das Problem ist, dass das APP auf dem Handy nicht läuft und die oben genannte Fehlermeldung erscheint

— geändert am 13.06.2020, 18:01:06

Hilfreich?
Kommentieren
Jokel
  • Forum-Beiträge: 1.530

13.06.2020, 19:11:22 via Website

Das Problem scheint mir ein zeitliches Problem zu sein in deiner get_bits Klasse. Klassen bitte Groß schreiben.
Und zwar lädst du erst die Daten vom Server. Zum Zeitpunkt wo du die For Schleife kommst sind die Daten bestimmt noch nicht vom Server da . deshalb auch der Fehler. Im Debugger mit Einzelschritt ging das bestimmt da war genug Zeit um die Daten in Hinderung zu laden.

URL url = null;
    try {
        //url = new URL("http://beran-solutions.de");
        url = new URL("http://192.168.178.53/Tom_skript.php");
    } catch (MalformedURLException e) {
        e.printStackTrace();
    }
    HttpURLConnection urlConnection = null;
    try {
        urlConnection = (HttpURLConnection) url.openConnection();
    } catch (IOException e) {
        e.printStackTrace();
    }
    try {
        InputStream in = new BufferedInputStream(urlConnection.getInputStream());
        ausgabe = convertStreamToString(in);
    } catch (IOException e) {
        e.printStackTrace();
    } finally {
        urlConnection.disconnect();
    }

    TextView editText = (TextView) view.findViewById(R.id.textView);
    //editText.setText(ausgabe);

    String[] lines = ausgabe.split("\\n");

    for (int i = 0; i < lines.length; i++) {

        String[] params = lines[i].split(":");
        String schaltern = params[0];
        String state = params[1];

        // Schalter 1
        if (schaltern.equals("0") && state.equals("0")) {

            sw1.setChecked(false);

        }........

Die Daten vom server sind zum Zeitpunkt der For Schleife noch nicht da.

Entweder warten du bist ja in einem Thread oder sinvoll asynchron abfragen des Servers.

— geändert am 13.06.2020, 19:17:21

Hilfreich?
Tom20
Kommentieren
Pascal P.
  • Admin
  • Forum-Beiträge: 11.286

13.06.2020, 19:49:43 via App

Oder gleich HTTP Libs wie Ion oder okHTTP nutzen

LG Pascal //It's not a bug, it's a feature. :) ;)

Hilfreich?
Tom20
Kommentieren
Tom20
  • Forum-Beiträge: 39

13.06.2020, 20:00:14 via Website

Hallo Jokel...vielen Dank für Deine sehr versierte Stellungsnahme...könntest Du mir helfen die App sicher zum laufen zu kriegen...sie ist für meine Heizung und ich brauch da einfach Zuverlässigkeit...ich kann kein Java und mein Programmierer hat Überlastung

Wir können es machen, wie Du möchtest...ich würde auch legal versteuert was zahlen oder Du möchtest es öffentlich im Forum machen

Viele Grüße Thomas

Hilfreich?
Kommentieren
Jokel
  • Forum-Beiträge: 1.530

13.06.2020, 20:25:26 via Website

Auch ein Punkt ist der selbst wenn der Server dir eine Leere Datei gibt was passiert dann du geht in die for Schleife und da keine daten vorhanden sind wird der fehler erzeugt. Du soltest schon vorher prüfen ob du auch daten hast. Ob dein inputstream auch etwas geliefert hat.
Denn auch wenn nichts in dem buffer ist wird die for Schleife mindestens einmal durchlaufen und das ist schon zuviel.

Auch wenn etwas mit deine connection schief geht fängst du das zwar in catch block ab. Aber in die for Schleife gehst du immer. Das ist falsch.

Eigentlich ist das so das er wartet bis in dem inputstream etwas ankommt. Prüfen ob du gültige Daten hast tust du nicht.
Auch bei einer fehlerhaften verbindung gehst du in den catch block soweit richtig. Nur wenn du in den catch warst geht es weiter mit der for Schleife. Falsch.

Als erstes setze die for Schleife auch in den try Block. Damit wenn ein Verbindungs Fehler passiert du nicht in die for Schleife kommst.
Und prüfe auf Inhalt vor der for Schleife.

Frage hast du den Code geschrieben oder dein Programmierer?

— geändert am 13.06.2020, 20:42:21

Hilfreich?
Tom20
Kommentieren
Pascal P.
  • Admin
  • Forum-Beiträge: 11.286

13.06.2020, 20:37:28 via App

Was soll denn die App machen? Vlt kannnst du xas ja als WebApp umsetzen weil PHP Skripte hast du ja schon geschafft

LG Pascal //It's not a bug, it's a feature. :) ;)

Hilfreich?
Kommentieren
Tom20
  • Forum-Beiträge: 39

13.06.2020, 20:56:30 via Website

Die Handy App dient als Visualisierung und Bedienfeld um über einen Raspberry 3 auf eine Siemens S7 300 zu gehen um einfach mit einer begrenzten Anzahl Taster und Schalter steuern zu können. Wir können das gerne öffentlich machen... brauche dann halt noch Mal einen Tipp...what to do

Hilfreich?
Kommentieren
Jokel
  • Forum-Beiträge: 1.530

13.06.2020, 21:06:12 via Website

Eine s7 sollte auch mit einem WLAN Modul laufen sein. Somit könntest du auch direkt ohne ras auf die sps zugreifen.

Du bist ja sowieso nur im lokalen Netz. Deine IP ist ja lokal.

https://www.google.com/aclk?sa=l&ai=DChcSEwjlgYPRvv_pAhUIgFAGHbojACkYABACGgJkZw&sig=AOD64_1n1AHsD9y4Zach3-EF7mlS7evYFA&q&adurl&ved=2ahUKEwju3vrQvv_pAhWtQkEAHchEAawQ0Qx6BAgPEAE

— geändert am 13.06.2020, 21:10:28

Hilfreich?
Tom20
Kommentieren
Pascal P.
  • Admin
  • Forum-Beiträge: 11.286

13.06.2020, 22:03:09 via Website

Entweder wie Jokel sagt oder auf dem PI eine WebApp bzw. mobile Seite, falls dies für dich einfacher ist.

LG Pascal //It's not a bug, it's a feature. :) ;)

Hilfreich?
Tom20
Kommentieren
Tom20
  • Forum-Beiträge: 39

14.06.2020, 09:47:03 via Website

Hallo Jokel, hallo Pascal, hallo Forum

ich möchte mein Projekt jetzt so vollends durchziehen mit Android studio, wie können wir die Problemlösung aufteilen, ich würde es gerne öffentlich machen, brauche hierfür aber eine Vorgehensanleitung

Hilfreich?
Kommentieren
Jokel
  • Forum-Beiträge: 1.530

14.06.2020, 10:13:05 via Website

Da würde ich eine Organisation auf github empfehlen. Wo du verschiedene Entwickler einlässt. Eine Organisation deshalb weil sonst jeder seinen Account benutzen muss um auch Programm Teile zu posten. Sonst kann man jeder nur seine Änderung in seinem account posten. Die anderen können dann immer nur lesen.

Hilfreich?
Kommentieren
Jokel
  • Forum-Beiträge: 1.530

14.06.2020, 10:16:37 via Website

Interessant wäre auch erstmal zu wissen welche Daten dein php sendet und welche Daten du an das php senden kannst.

Hilfreich?
Kommentieren
Pascal P.
  • Admin
  • Forum-Beiträge: 11.286

14.06.2020, 10:19:22 via Website

Genau was Jokel sagt.
Was macht dein PHP.
Anschließen kannst du dir überlegen ob die HTTP Requests mit https://github.com/koush/ion einfacher sind, weil du kein AsyncTask brauchst und direkt ein Callback hast, wenn alles geladen ist.

LG Pascal //It's not a bug, it's a feature. :) ;)

Hilfreich?
Kommentieren
Tom20
  • Forum-Beiträge: 39

14.06.2020, 10:41:33 via Website

ja, ich verstehe so kommen wir nicht weiter...aber das mit dem Github krieg ich auch nicht hin...ich könnte die PHP Dateien ebenfalls in die Cloud stellen

— geändert am 14.06.2020, 10:57:05

Hilfreich?
Kommentieren
Pascal P.
  • Admin
  • Forum-Beiträge: 11.286

14.06.2020, 11:00:39 via App

oder einfach mal erklären was die tun.
das würde für den Anfang reichen.

LG Pascal //It's not a bug, it's a feature. :) ;)

Hilfreich?
Kommentieren
Tom20
  • Forum-Beiträge: 39

14.06.2020, 11:05:55 via Website

://1drv.ms/u/s!AhMBHIwNTWbbjXlNrj4ROLmVap7o?e=4SRaBP

://1drv.ms/u/s!AhMBHIwNTWbbjXcSTvIPbMTktD_p?e=hYbYJA

://1drv.ms/u/s!AhMBHIwNTWbbjXh-UkxBIP7DoBQP?e=lYYgke

jeweils https voranstellen.....Vielen Dank

Hilfreich?
Kommentieren
Jokel
  • Forum-Beiträge: 1.530

14.06.2020, 11:11:05 via Website

Halle habe mal dein Projekt etwas bearbeitet.
Es sollte zu mindestens Laufen.
Kannst dir ja auf Github laden.
Eines verstehe ich nicht deine beiden set_bits Klassen die sollen doch Daten an der Pi schicken oder? Wenn Ja warum dann ein Input Stream das müsste dann schon Output sein.
https://github.com/JW-web/ThomasApp.git

Hilfreich?
Kommentieren
Jokel
  • Forum-Beiträge: 1.530

14.06.2020, 11:18:35 via Website

Hallo
das hier reicht uns lieder nicht

<?php
echo file_get_contents("_64Byte_Ausgabe_zum_Handy_Data.txt");
?>

Da wäre die Text Datei schon interessant .
besser das eigentliche Skript

Hilfreich?
Kommentieren
Tom20
  • Forum-Beiträge: 39

14.06.2020, 12:13:14 via Website

Hallo Jokel...ich glaube wir kommen nur noch mit teamviewer oder anydesk weiter...wie kommst Du an das zip vom 23032020...das habe ich doch garnicht veröffentlicht...ich habe darin auch keine neu datierten files gefunden..

Hilfreich?
Kommentieren
Jokel
  • Forum-Beiträge: 1.530

14.06.2020, 12:17:46 via Website

keine Ahnung muss ein Fehler bei mir gewesen sein . wohl noch ein vom Auspacken deiner Datei.
Die Daten ist das Projekt die zip kannst du ignorieren werde sie löschen.

Hilfreich?
Kommentieren
Tom20
  • Forum-Beiträge: 39

14.06.2020, 12:27:24 via Website

okay please wait

Hilfreich?
Kommentieren
Jokel
  • Forum-Beiträge: 1.530

14.06.2020, 12:28:08 via Website

Die Datei ist und war in deiner ersten Zip Datei. schaue nach.

Hilfreich?
Kommentieren
Tom20
  • Forum-Beiträge: 39

14.06.2020, 12:33:23 via Website

Okay...ich denke das zip hab ich da reingeschlampt...sorry...doch wie krieg ich jetzt die neuen daten nach android studio...sorry please help me

Hilfreich?
Kommentieren
Jokel
  • Forum-Beiträge: 1.530

14.06.2020, 13:38:42 via Website

Hallo
du bist uns immer noch dein PHP Skript schuldig oder eine Datei so wie es der Pi an das Handy übertragt.
deine Links gehen nicht.

auch hast du dich nicht zu dem hier geäußert

Eines verstehe ich nicht deine beiden set_bits Klassen die sollen doch Daten an der Pi schicken oder? Wenn Ja warum dann ein Input Stream das müsste dann schon Output sein.

Hilfreich?
Kommentieren
Tom20
  • Forum-Beiträge: 39

14.06.2020, 13:50:26 via Website

okay auch das hab ich geschafft ... jetzt folgendes der sdk pfad glaube ich fehlt

Hilfreich?
Kommentieren
Jokel
  • Forum-Beiträge: 1.530

14.06.2020, 13:58:22 via Website

Den musst du durch deinen Ersetzen der ist bei mir anders als Standard aber eigentlich frag er dich beim Clone. und du sagst ja ersetzen.

Hilfreich?
Kommentieren
Tom20
  • Forum-Beiträge: 39

14.06.2020, 16:23:34 via Website

soweit sogut.... was nun... das meldet der Builder

16:12 Gradle sync started

16:12 Gradle sync finished in 2 s 345 ms

16:12 Executing tasks: [:app:assembleDebug] in project C:\Users\tom\Documents\Android_Studio\ThomasApp-master\app

16:12 Emulator: emulator: WARNING: EmulatorService.cpp:448: Cannot find certfile: C:\Users\tom.android\emulator-grpc.cer security will be disabled.

16:12 Emulator: Started GRPC server at 127.0.0.1:8554

16:13 Gradle build finished in 30 s 63 ms

16:13 Install successfully finished in 2 s 539 ms.

16:14 Emulator: emulator: INFO: QtLogger.cpp:68: Critical: Uncaught TypeError: Cannot read property 'update' of undefined (qrc:/html/js/location-mock-web-channel.js:130, (null))

16:14 Emulator: Process finished with exit code 0

16:16 Executing tasks: [:app:assembleDebug] in project C:\Users\tom\Documents\Android_Studio\ThomasApp-master\app

16:16 Gradle build finished in 1 s 968 ms

16:16 Emulator: emulator: WARNING: EmulatorService.cpp:448: Cannot find certfile: C:\Users\tom.android\emulator-grpc.cer security will be disabled.

16:16 Emulator: Started GRPC server at 127.0.0.1:8554

16:17 Install successfully finished in 777 ms.: App restart successful without requiring a re-install.

Hilfreich?
Kommentieren
Jokel
  • Forum-Beiträge: 1.530

14.06.2020, 16:37:51 via Website

Ja und was soll mir das sagen ?

Hilfreich?
Kommentieren
Tom20
  • Forum-Beiträge: 39

14.06.2020, 16:53:35 via Website

Hallo Jokel...das Simulationshandy geht auf aber App wird gestoppt...soll ich eine installation der APK datei versuchen

Vielen Dank für deine Hilfe

Hilfreich?
Kommentieren
Jokel
  • Forum-Beiträge: 1.530

14.06.2020, 16:57:23 via Website

was sagt die logcat?
in welcher zeile bricht er ab.

ich kann es nicht testen da ich keine datei habe die der Pi an das Handy schikt.
habe ich dir schon gesagt das deine Links nicht gehen aber keine Antwort von dir.

— geändert am 14.06.2020, 17:04:58

Hilfreich?
Kommentieren
Tom20
  • Forum-Beiträge: 39

14.06.2020, 17:02:21 via Website

moment bitte ich eroiere

Hilfreich?
Kommentieren
Tom20
  • Forum-Beiträge: 39

14.06.2020, 17:09:22 via Website

hier der logcat eintrag

-06-14 16:18:53.015 2248-2543/com.android.systemui D/EGL_emulation: eglMakeCurrent: 0xdcb617c0: ver 3 0 (tinfo 0xbaf11410)
2020-06-14 16:18:53.392 1913-1913/? E/wifi_forwarder: RemoteConnection failed to initialize: RemoteConnection failed to open pipe
2020-06-14 16:18:53.637 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:18:53.637 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:18:54.637 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:18:54.638 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:18:55.637 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:18:55.638 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:18:56.637 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:18:56.638 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:18:56.662 2013-3157/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144331040 duration=0
2020-06-14 16:18:56.997 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:18:57.002 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:18:57.004 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:18:57.004 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:18:57.005 4855-19782/com.google.android.googlequicksearchbox I/DeviceStateChecker: DeviceStateChecker cancelled
2020-06-14 16:18:57.637 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:18:57.638 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:18:58.638 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:18:58.638 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:18:59.637 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:18:59.638 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:00.053 2248-2248/com.android.systemui D/KeyguardClockSwitch: Updating clock: 219
2020-06-14 16:19:00.165 2248-2543/com.android.systemui D/EGL_emulation: eglMakeCurrent: 0xdcb617c0: ver 3 0 (tinfo 0xbaf11410)
2020-06-14 16:19:00.638 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:00.638 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:01.638 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:01.638 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:01.663 2013-3157/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144336663 duration=0
2020-06-14 16:19:01.717 2013-2048/system_process W/ActivityTaskManager: Activity destroy timeout for ActivityRecord{a233bc u0 com.example.thomasapp/.MainActivity t19 f}
2020-06-14 16:19:01.721 2013-2046/system_process W/Looper: Drained
2020-06-14 16:19:02.007 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:19:02.008 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:19:02.010 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:19:02.010 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:19:02.638 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:02.638 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:03.638 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:03.638 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:04.640 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:04.640 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:05.638 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:05.638 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:06.638 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:06.638 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:06.665 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144341663 duration=0
2020-06-14 16:19:07.015 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:19:07.019 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:19:07.020 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:19:07.020 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:19:07.638 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:07.638 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:08.638 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:08.638 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:09.640 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:09.641 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:10.639 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:10.639 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:11.638 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:11.638 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:12.026 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:19:12.028 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:19:12.031 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:19:12.031 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:19:12.639 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:12.639 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:12.666 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144346665 duration=0
2020-06-14 16:19:13.639 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:13.639 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:14.639 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:14.639 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:15.639 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:15.639 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:16.639 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:16.639 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:17.038 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:19:17.040 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:19:17.042 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:19:17.042 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:19:17.639 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:17.639 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:17.667 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144352666 duration=0
2020-06-14 16:19:18.639 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:18.640 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:19.639 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:19.639 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:20.640 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:20.640 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:20.729 2013-2054/system_process E/memtrack: Couldn't load memtrack module
2020-06-14 16:19:20.729 2013-2054/system_process W/android.os.Debug: failed to get memory consumption info: -1
2020-06-14 16:19:21.640 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:21.640 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:22.048 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:19:22.049 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:19:22.052 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:19:22.052 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:19:22.640 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:22.641 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:22.669 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144357667 duration=0
2020-06-14 16:19:23.640 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:23.641 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:24.641 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:24.641 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:25.640 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:25.641 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:26.641 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:26.641 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:27.059 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:19:27.061 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:19:27.064 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:19:27.064 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:19:27.641 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:27.641 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:27.668 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144362670 duration=0
2020-06-14 16:19:28.641 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:28.641 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:29.640 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:29.641 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:30.640 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:30.641 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:31.641 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:31.641 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:32.072 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:19:32.074 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:19:32.076 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:19:32.076 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:19:32.640 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:32.641 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:32.670 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144367668 duration=0
2020-06-14 16:19:33.640 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:33.641 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:34.641 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:34.641 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:35.641 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:35.641 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:36.641 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:36.641 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:37.082 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:19:37.084 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:19:37.086 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:19:37.086 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:19:37.641 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:37.641 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:37.666 2013-3157/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144372670 duration=0
2020-06-14 16:19:37.738 1893-1893/? E/netmgr: Failed to open QEMU pipe 'qemud:network': Invalid argument
2020-06-14 16:19:38.641 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:38.641 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:39.641 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:39.641 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:40.641 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:40.642 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:41.641 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:41.642 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:42.093 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:19:42.094 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:19:42.096 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:19:42.096 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:19:42.641 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:42.642 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:42.665 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144377666 duration=0
2020-06-14 16:19:43.641 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:43.641 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:44.641 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:44.642 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:45.642 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:45.642 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:46.641 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:46.642 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:47.103 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:19:47.105 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:19:47.107 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:19:47.107 4855-19782/com.google.android.googlequicksearchbox I/DeviceStateChecker: DeviceStateChecker cancelled
2020-06-14 16:19:47.107 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:19:47.642 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:47.642 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:47.670 2013-3157/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144382665 duration=0
2020-06-14 16:19:48.642 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:48.642 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:49.642 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:49.642 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:50.642 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:50.642 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:51.642 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:51.642 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:52.113 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:19:52.114 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:19:52.116 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:19:52.116 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:19:52.642 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:52.642 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:52.667 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144387670 duration=0
2020-06-14 16:19:53.406 1913-1913/? E/wifi_forwarder: RemoteConnection failed to initialize: RemoteConnection failed to open pipe
2020-06-14 16:19:53.642 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:53.642 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:54.642 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:54.642 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:55.642 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:55.642 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:56.642 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:56.642 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:57.123 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:19:57.124 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:19:57.125 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:19:57.125 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:19:57.643 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:57.644 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:58.643 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:58.643 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:19:58.668 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144392667 duration=0
2020-06-14 16:19:59.644 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:19:59.644 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:00.013 2248-2248/com.android.systemui D/KeyguardClockSwitch: Updating clock: 220
2020-06-14 16:20:00.644 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:00.644 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:01.644 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:01.644 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:02.130 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:20:02.132 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:20:02.134 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:20:02.134 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:20:02.644 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:02.644 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:03.644 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:03.644 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:03.668 2013-3157/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144398668 duration=0
2020-06-14 16:20:04.644 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:04.644 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:05.643 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:05.644 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:06.644 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:06.644 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:07.139 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:20:07.140 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:20:07.141 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:20:07.141 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:20:07.242 2013-2054/system_process E/memtrack: Couldn't load memtrack module
2020-06-14 16:20:07.242 2013-2054/system_process W/android.os.Debug: failed to get memory consumption info: -1
2020-06-14 16:20:07.644 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:07.644 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:08.644 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:08.644 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:08.673 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144403669 duration=0
2020-06-14 16:20:09.644 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:09.644 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:10.643 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:10.644 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:11.644 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:11.644 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:12.147 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:20:12.149 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:20:12.151 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:20:12.151 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:20:12.644 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:12.644 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:13.644 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:13.644 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:14.643 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:14.643 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:14.656 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144408673 duration=0
2020-06-14 16:20:15.644 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:15.644 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:16.643 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:16.644 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:17.157 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:20:17.159 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:20:17.162 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:20:17.162 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:20:17.644 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:17.644 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:18.644 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:18.644 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:19.644 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:19.644 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:19.673 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144414656 duration=0
2020-06-14 16:20:20.644 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:20.644 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:21.644 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:21.644 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:22.168 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:20:22.170 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:20:22.172 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:20:22.172 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:20:22.644 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:22.644 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:23.644 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:23.645 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:24.645 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:24.645 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:24.669 2013-3157/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144419673 duration=0
2020-06-14 16:20:25.645 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:25.646 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:26.645 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:26.646 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:27.178 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:20:27.180 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:20:27.182 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:20:27.182 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:20:27.645 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:27.646 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:28.645 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:28.645 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:29.645 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:29.645 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:30.645 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:30.646 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:30.670 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144424669 duration=0
2020-06-14 16:20:31.646 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:31.646 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:32.188 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:20:32.190 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:20:32.192 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:20:32.193 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:20:32.646 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:32.646 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:33.646 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:33.646 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:34.646 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:34.646 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:35.646 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:35.646 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:35.674 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144430670 duration=0
2020-06-14 16:20:36.646 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:36.647 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:37.200 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:20:37.202 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:20:37.204 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:20:37.205 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:20:37.647 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:37.647 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:37.745 1893-1893/? E/netmgr: Failed to open QEMU pipe 'qemud:network': Invalid argument
2020-06-14 16:20:38.647 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:38.647 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:39.646 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:39.646 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:40.647 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:40.647 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:40.674 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144435674 duration=0
2020-06-14 16:20:41.647 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:41.647 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:42.211 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:20:42.213 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:20:42.215 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:20:42.215 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:20:42.647 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:42.647 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:43.647 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:43.647 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:44.647 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:44.647 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:45.647 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:45.648 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:45.674 2013-3157/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144440674 duration=0
2020-06-14 16:20:46.647 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:46.647 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:47.222 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:20:47.223 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:20:47.225 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:20:47.225 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:20:47.647 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:47.648 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:48.647 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:48.648 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:49.648 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:49.648 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:50.648 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:50.648 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:50.675 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144445674 duration=0
2020-06-14 16:20:51.648 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:51.648 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:52.230 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:20:52.231 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:20:52.232 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:20:52.232 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:20:52.648 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:52.648 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:53.415 1913-1913/? E/wifi_forwarder: RemoteConnection failed to initialize: RemoteConnection failed to open pipe
2020-06-14 16:20:53.648 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:53.648 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:54.648 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:54.648 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:55.648 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:55.649 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:55.677 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144450675 duration=0
2020-06-14 16:20:56.648 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:56.649 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:57.239 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:20:57.240 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:20:57.242 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:20:57.242 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:20:57.649 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:57.649 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:58.648 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:58.649 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:20:59.648 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:20:59.649 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:00.016 2248-2248/com.android.systemui D/KeyguardClockSwitch: Updating clock: 221
2020-06-14 16:21:00.649 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:00.649 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:01.649 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:01.649 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:01.676 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144455677 duration=0
2020-06-14 16:21:02.250 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:21:02.252 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:21:02.255 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:21:02.255 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:21:02.649 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:02.649 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:03.649 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:03.649 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:04.649 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:04.649 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:05.649 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:05.650 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:06.649 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:06.649 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:07.258 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:21:07.259 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:21:07.260 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:21:07.260 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:21:07.649 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:07.649 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:07.663 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144461676 duration=0
2020-06-14 16:21:08.649 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:08.649 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:09.649 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:09.649 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:10.650 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:10.650 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:11.650 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:11.650 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:12.267 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:21:12.268 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:21:12.269 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:21:12.269 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:21:12.650 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:12.650 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:12.679 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144467663 duration=0
2020-06-14 16:21:13.650 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:13.650 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:14.651 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:14.651 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:15.651 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:15.651 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:16.650 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:16.650 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:17.276 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:21:17.278 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:21:17.281 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:21:17.281 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:21:17.283 4855-19782/com.google.android.googlequicksearchbox W/DeviceStateChecker: stopped because hotword detection is stopped but cancel is not called.
2020-06-14 16:21:17.651 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:17.651 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:17.678 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144472679 duration=0
2020-06-14 16:21:18.652 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:18.652 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:19.656 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:19.656 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:20.655 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:20.655 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:21.655 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:21.655 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:22.287 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:21:22.289 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:21:22.292 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:21:22.292 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:21:22.654 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:22.654 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:23.655 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:23.655 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:23.678 2013-3157/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144477678 duration=0
2020-06-14 16:21:24.655 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:24.655 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:25.655 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:25.655 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:26.656 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:26.656 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:27.296 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:21:27.297 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:21:27.298 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:21:27.298 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:21:27.655 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:27.655 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:28.655 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:28.655 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:29.656 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:29.656 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:29.684 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144483679 duration=0
2020-06-14 16:21:30.656 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:30.656 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:31.656 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:31.656 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:32.302 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:21:32.303 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:21:32.304 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:21:32.304 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:21:32.657 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:32.657 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:33.657 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:33.657 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:34.657 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:34.657 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:34.688 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144489684 duration=0
2020-06-14 16:21:35.657 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:35.658 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:36.657 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:36.657 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:37.308 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:21:37.309 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:21:37.310 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:21:37.310 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:21:37.657 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:37.657 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:37.763 1893-1893/? E/netmgr: Failed to open QEMU pipe 'qemud:network': Invalid argument
2020-06-14 16:21:38.657 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:38.657 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:39.657 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:39.657 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:40.657 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:40.657 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:40.684 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144494688 duration=0
2020-06-14 16:21:41.657 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:41.657 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:42.316 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:21:42.318 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:21:42.321 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:21:42.322 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:21:42.657 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:42.657 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:43.657 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:43.657 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:44.658 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:44.658 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:45.658 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:45.658 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:45.686 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144500684 duration=0
2020-06-14 16:21:46.659 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:46.659 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:47.327 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:21:47.330 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:21:47.332 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:21:47.332 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:21:47.659 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:47.659 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:48.659 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:48.659 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:49.629 2013-3157/system_process D/WificondControl: Scan result ready event
2020-06-14 16:21:49.659 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:49.659 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:50.660 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:50.660 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:51.660 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:51.660 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:51.677 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144505687 duration=0
2020-06-14 16:21:52.338 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:21:52.339 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:21:52.343 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:21:52.343 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:21:52.661 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:52.661 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:53.434 1913-1913/? E/wifi_forwarder: RemoteConnection failed to initialize: RemoteConnection failed to open pipe
2020-06-14 16:21:53.660 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:53.660 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:54.660 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:54.660 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:55.659 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:55.659 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:56.662 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:56.662 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:56.684 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144511677 duration=0
2020-06-14 16:21:57.349 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:21:57.350 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:21:57.352 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:21:57.353 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:21:57.661 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:57.662 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:58.661 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:58.661 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:21:59.662 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:21:59.662 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:00.043 2248-2248/com.android.systemui D/KeyguardClockSwitch: Updating clock: 222
2020-06-14 16:22:00.145 2248-2267/com.android.systemui I/ndroid.systemu: Background young concurrent copying GC freed 30990(1788KB) AllocSpace objects, 0(0B) LOS objects, 17% free, 8558KB/10MB, paused 1.468ms total 135.090ms
2020-06-14 16:22:00.662 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:00.662 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:01.662 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:01.662 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:02.359 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:22:02.360 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:22:02.363 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:22:02.363 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:22:02.662 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:02.662 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:02.687 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144516685 duration=0
2020-06-14 16:22:03.662 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:03.663 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:04.662 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:04.663 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:05.662 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:05.662 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:06.662 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:06.663 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:07.370 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:22:07.372 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:22:07.374 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:22:07.374 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:22:07.662 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:07.662 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:07.688 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144522687 duration=0
2020-06-14 16:22:08.662 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:08.662 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:09.663 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:09.663 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:10.662 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:10.663 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:11.663 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:11.663 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:12.381 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:22:12.383 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:22:12.385 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:22:12.385 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:22:12.662 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:12.663 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:13.663 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:13.663 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:13.689 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144527688 duration=0
2020-06-14 16:22:14.663 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:14.663 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:15.663 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:15.663 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:16.664 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:16.664 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:17.391 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:22:17.395 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:22:17.398 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:22:17.398 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:22:17.664 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:17.664 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:18.664 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:18.664 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:18.692 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144533689 duration=0
2020-06-14 16:22:19.664 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:19.664 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:20.665 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:20.665 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:21.526 2229-19370/com.google.android.gms.persistent E/WakeLock: GCM_HB_ALARM release without a matched acquire!
2020-06-14 16:22:21.664 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:21.664 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:22.403 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:22:22.405 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:22:22.407 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:22:22.407 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:22:22.665 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:22.665 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:23.665 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:23.666 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:23.693 2013-3157/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144538692 duration=0
2020-06-14 16:22:24.665 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:24.666 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:25.665 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:25.665 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:26.665 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:26.665 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:27.413 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:22:27.416 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:22:27.419 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:22:27.419 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:22:27.665 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:27.666 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:28.665 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:28.666 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:29.665 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:29.666 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:29.690 2013-3157/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144543694 duration=0
2020-06-14 16:22:30.665 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:30.665 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:31.666 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:31.666 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:32.425 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:22:32.428 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:22:32.430 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:22:32.430 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:22:32.666 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:32.666 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:33.665 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:33.666 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:34.666 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:34.666 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:34.692 2013-3157/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144549691 duration=0
2020-06-14 16:22:35.665 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:35.665 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:36.666 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:36.666 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:37.436 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:22:37.438 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:22:37.441 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:22:37.441 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:22:37.666 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:37.666 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:37.799 1893-1893/? E/netmgr: Failed to open QEMU pipe 'qemud:network': Invalid argument
2020-06-14 16:22:38.666 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:38.666 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:39.666 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:39.666 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:39.692 2013-3157/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144554693 duration=0
2020-06-14 16:22:40.666 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:40.666 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:41.666 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:41.666 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:42.450 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:22:42.451 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:22:42.453 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:22:42.454 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:22:42.666 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:42.666 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:43.665 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:43.665 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:44.666 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:44.666 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:45.666 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:45.667 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:45.694 2013-3157/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144559692 duration=0
2020-06-14 16:22:46.084 2013-3157/system_process E/memtrack: Couldn't load memtrack module
2020-06-14 16:22:46.084 2013-3157/system_process W/android.os.Debug: failed to get memory consumption info: -1
2020-06-14 16:22:46.667 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:46.667 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:47.461 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:22:47.464 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:22:47.466 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:22:47.466 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:22:47.666 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:47.667 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:48.667 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:48.667 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:49.667 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:49.667 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:50.667 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:50.667 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:51.667 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:51.667 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:51.691 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144565694 duration=0
2020-06-14 16:22:52.472 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:22:52.474 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:22:52.476 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:22:52.476 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:22:52.667 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:52.667 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:53.496 1913-1913/? E/wifi_forwarder: RemoteConnection failed to initialize: RemoteConnection failed to open pipe
2020-06-14 16:22:53.667 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:53.667 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:54.667 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:54.667 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:55.667 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:55.667 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:56.667 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:56.668 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:56.692 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144571691 duration=0
2020-06-14 16:22:57.482 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:22:57.484 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:22:57.486 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:22:57.486 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:22:57.667 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:57.668 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:58.667 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:58.668 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:22:59.667 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:22:59.668 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:00.047 2248-2248/com.android.systemui D/KeyguardClockSwitch: Updating clock: 223
2020-06-14 16:23:00.668 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:00.668 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:01.668 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:01.668 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:01.694 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144576692 duration=0
2020-06-14 16:23:02.492 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:23:02.494 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:23:02.496 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:23:02.496 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:23:02.668 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:02.668 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:03.668 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:03.669 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:04.669 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:04.669 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:05.669 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:05.670 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:06.670 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:06.670 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:06.695 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144581694 duration=0
2020-06-14 16:23:07.501 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:23:07.503 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:23:07.506 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:23:07.506 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:23:07.669 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:07.670 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:08.669 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:08.670 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:09.670 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:09.670 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:10.670 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:10.670 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:11.670 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:11.670 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:11.698 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144586696 duration=0
2020-06-14 16:23:12.512 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:23:12.514 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:23:12.516 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:23:12.516 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:23:12.670 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:12.670 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:13.670 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:13.670 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:14.670 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:14.670 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:15.670 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:15.670 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:16.671 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:16.672 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:16.699 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144591698 duration=0
2020-06-14 16:23:17.521 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:23:17.523 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:23:17.525 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:23:17.525 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:23:17.670 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:17.670 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:18.671 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:18.671 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:19.670 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:19.670 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:20.670 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:20.671 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:21.671 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:21.671 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:22.531 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:23:22.532 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:23:22.533 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:23:22.533 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:23:22.671 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:22.671 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:22.699 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144596699 duration=0
2020-06-14 16:23:23.671 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:23.671 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:24.671 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:24.672 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:25.671 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:25.671 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:26.671 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:26.672 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:27.540 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:23:27.541 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:23:27.544 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:23:27.544 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:23:27.671 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:27.672 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:27.698 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144602699 duration=0
2020-06-14 16:23:28.671 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:28.672 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:29.671 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:29.672 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:30.671 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:30.671 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:31.671 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:31.671 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:32.555 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:23:32.556 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:23:32.558 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:23:32.558 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:23:32.671 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:32.671 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:33.672 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:33.672 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:33.695 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144607698 duration=0
2020-06-14 16:23:34.671 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:34.672 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:35.672 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:35.672 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:36.672 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:36.672 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:37.565 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:23:37.566 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:23:37.569 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:23:37.569 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:23:37.672 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:37.672 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:37.862 1893-1893/? E/netmgr: Failed to open QEMU pipe 'qemud:network': Invalid argument
2020-06-14 16:23:38.672 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:38.672 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:38.698 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144613695 duration=0
2020-06-14 16:23:39.672 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:39.672 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:40.672 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:40.672 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:41.672 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:41.672 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:42.575 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:23:42.576 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:23:42.579 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:23:42.579 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:23:42.673 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:42.673 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:43.673 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:43.673 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:43.699 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144618698 duration=0
2020-06-14 16:23:44.673 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:44.674 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:45.673 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:45.673 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:46.674 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:46.674 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:47.585 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:23:47.587 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:23:47.591 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:23:47.591 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:23:47.674 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:47.674 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:48.674 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:48.675 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:48.701 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144623699 duration=0
2020-06-14 16:23:49.674 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:49.675 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:50.615 2013-3663/system_process I/ActivityManager: Killing 20350:com.example.thomasapp/u0a133 (adj 905): crash
2020-06-14 16:23:50.633 2013-19966/system_process D/EGL_emulation: eglMakeCurrent: 0xb3416540: ver 3 0 (tinfo 0xb2fa2bf0)
2020-06-14 16:23:50.653 2013-3663/system_process E/InputDispatcher: Window handle Window{bc59077 u0 Application Error: com.example.thomasapp} has no registered input channel
2020-06-14 16:23:50.746 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:50.746 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:50.843 2013-2048/system_process W/ActivityManager: setHasOverlayUi called on unknown pid: 20350
2020-06-14 16:23:50.843 2248-2543/com.android.systemui D/EGL_emulation: eglMakeCurrent: 0xdcb617c0: ver 3 0 (tinfo 0xbaf11410)
2020-06-14 16:23:50.844 1737-1737/? I/Zygote: Process 20350 exited due to signal 9 (Killed)
2020-06-14 16:23:50.849 2013-2059/system_process I/libprocessgroup: Successfully killed process cgroup uid 10133 pid 20350 in 232ms
2020-06-14 16:23:50.852 2248-2543/com.android.systemui D/EGL_emulation: eglMakeCurrent: 0xdcb617c0: ver 3 0 (tinfo 0xbaf11410)
2020-06-14 16:23:51.119 2248-2543/com.android.systemui I/chatty: uid=10109(com.android.systemui) RenderThread identical 2 lines
2020-06-14 16:23:51.123 2248-2543/com.android.systemui D/EGL_emulation: eglMakeCurrent: 0xdcb617c0: ver 3 0 (tinfo 0xbaf11410)
2020-06-14 16:23:51.695 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:51.695 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:52.596 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:23:52.598 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:23:52.601 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:23:52.601 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:23:52.602 4855-19782/com.google.android.googlequicksearchbox I/DeviceStateChecker: DeviceStateChecker cancelled
2020-06-14 16:23:52.695 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:52.695 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:53.558 1913-1913/? E/wifi_forwarder: RemoteConnection failed to initialize: RemoteConnection failed to open pipe
2020-06-14 16:23:53.695 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:53.696 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:53.722 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144628701 duration=0
2020-06-14 16:23:54.696 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:54.696 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:55.695 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:55.695 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:56.696 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:56.696 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:57.609 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:23:57.611 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:23:57.613 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:23:57.613 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:23:57.696 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:57.696 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:58.697 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:58.697 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:23:58.724 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144633722 duration=0
2020-06-14 16:23:59.696 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:23:59.697 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:00.047 2248-2248/com.android.systemui D/KeyguardClockSwitch: Updating clock: 224
2020-06-14 16:24:00.137 2248-2543/com.android.systemui D/EGL_emulation: eglMakeCurrent: 0xdcb617c0: ver 3 0 (tinfo 0xbaf11410)
2020-06-14 16:24:00.696 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:00.697 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:01.696 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:01.697 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:02.620 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:24:02.621 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:24:02.625 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:24:02.625 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:24:02.696 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:02.696 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:03.697 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:03.697 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:04.696 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:04.697 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:04.723 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144638724 duration=0
2020-06-14 16:24:05.696 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:05.696 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:06.696 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:06.697 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:07.631 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:24:07.633 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:24:07.635 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:24:07.636 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:24:07.696 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:07.696 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:08.696 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:08.697 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:09.697 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:09.697 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:09.727 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144644723 duration=0
2020-06-14 16:24:10.697 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:10.697 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:11.698 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:11.698 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:12.642 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:24:12.644 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:24:12.646 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:24:12.646 4855-19782/com.google.android.googlequicksearchbox I/DeviceStateChecker: DeviceStateChecker cancelled
2020-06-14 16:24:12.647 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:24:12.697 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:12.697 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:13.697 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:13.697 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:14.697 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:14.697 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:15.698 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:15.698 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:15.724 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144649728 duration=0
2020-06-14 16:24:16.699 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:16.699 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:17.653 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:24:17.654 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:24:17.657 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:24:17.658 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:24:17.699 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:17.699 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:18.700 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:18.700 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:19.700 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:19.700 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:20.699 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:20.700 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:20.726 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144655724 duration=0
2020-06-14 16:24:21.700 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:21.700 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:22.662 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:24:22.663 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:24:22.664 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:24:22.664 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:24:22.700 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:22.700 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:22.740 2013-2025/system_process I/system_server: Background concurrent copying GC freed 135700(5395KB) AllocSpace objects, 15(592KB) LOS objects, 21% free, 21MB/27MB, paused 551us total 287.847ms
2020-06-14 16:24:23.700 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:23.701 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:24.701 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:24.701 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:25.701 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:25.701 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:25.726 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144660726 duration=0
2020-06-14 16:24:26.701 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:26.701 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:27.670 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:24:27.672 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:24:27.675 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:24:27.676 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:24:27.701 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:27.701 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:28.701 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:28.701 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:29.701 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:29.701 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:30.701 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:30.701 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:30.725 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144665726 duration=0
2020-06-14 16:24:31.701 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:31.701 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:32.681 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:24:32.684 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:24:32.686 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:24:32.686 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:24:32.701 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:32.701 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:33.701 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:33.701 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:34.701 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:34.701 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:35.701 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:35.702 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:35.727 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144670725 duration=0
2020-06-14 16:24:36.702 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:36.702 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:37.693 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:24:37.694 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:24:37.696 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:24:37.696 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:24:37.702 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:37.702 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:37.925 1893-1893/? E/netmgr: Failed to open QEMU pipe 'qemud:network': Invalid argument
2020-06-14 16:24:38.702 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:38.702 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:39.702 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:39.702 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:40.702 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:40.702 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:40.727 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144675727 duration=0
2020-06-14 16:24:41.702 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:41.702 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:42.701 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:24:42.702 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:42.702 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:42.704 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:24:42.709 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:24:42.709 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:24:43.702 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:43.703 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:44.702 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:44.703 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:45.703 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:45.703 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:45.728 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144680727 duration=0
2020-06-14 16:24:46.702 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:46.703 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:47.702 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:47.702 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:47.715 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:24:47.717 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:24:47.719 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:24:47.719 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:24:48.703 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:48.703 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:49.703 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:49.703 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:50.280 2013-3161/system_process D/WificondControl: Scan result ready event
2020-06-14 16:24:50.703 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:50.703 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:50.728 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144686935 duration=-1
2020-06-14 16:24:51.703 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:51.703 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:52.703 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:52.703 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:52.728 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:24:52.730 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:24:52.733 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:24:52.733 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:24:53.599 1913-1913/? E/wifi_forwarder: RemoteConnection failed to initialize: RemoteConnection failed to open pipe
2020-06-14 16:24:53.703 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:53.703 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:54.703 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:54.703 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:55.703 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:55.703 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:55.729 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144690728 duration=0
2020-06-14 16:24:56.703 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:56.703 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:57.702 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:57.703 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:57.737 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:24:57.739 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:24:57.740 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:24:57.740 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:24:58.704 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:58.704 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:24:59.703 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:24:59.704 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:00.043 2248-2248/com.android.systemui D/KeyguardClockSwitch: Updating clock: 225
2020-06-14 16:25:00.704 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:00.704 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:00.726 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144695729 duration=0
2020-06-14 16:25:01.703 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:01.703 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:02.703 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:02.703 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:02.744 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:25:02.745 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:25:02.746 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:25:02.746 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:25:03.704 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:03.704 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:04.704 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:04.704 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:05.704 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:05.704 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:05.728 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144700726 duration=0
2020-06-14 16:25:06.704 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:06.704 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:07.704 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:07.704 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:07.750 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:25:07.751 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:25:07.751 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:25:07.751 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:25:08.704 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:08.704 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:09.704 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:09.705 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:10.704 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:10.704 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:10.729 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144705728 duration=0
2020-06-14 16:25:11.704 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:11.705 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:12.704 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:12.705 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:12.756 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:25:12.759 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:25:12.764 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:25:12.764 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:25:13.705 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:13.705 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:14.705 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:14.705 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:15.705 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:15.705 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:15.728 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144710729 duration=0
2020-06-14 16:25:16.705 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:16.706 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:17.705 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:17.706 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:17.770 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:25:17.772 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:25:17.774 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:25:17.774 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:25:18.706 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:18.706 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:19.706 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:19.706 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:20.706 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:20.706 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:20.730 2013-3663/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144715728 duration=0
2020-06-14 16:25:21.706 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:21.706 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:22.706 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:22.706 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:22.780 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:25:22.782 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:25:22.784 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:25:22.784 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:25:23.706 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:23.706 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:24.706 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:24.706 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:25.706 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:25.706 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:26.706 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:26.706 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:26.731 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144721982 duration=-1592018841960
2020-06-14 16:25:27.706 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:27.706 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:27.788 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:25:27.789 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:25:27.790 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:25:27.790 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:25:28.706 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:28.706 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:29.707 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:29.707 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:30.707 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:30.707 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:31.707 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:31.708 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:31.733 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144726731 duration=0
2020-06-14 16:25:32.707 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:32.707 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:32.795 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:25:32.797 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:25:32.800 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:25:32.800 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:25:33.708 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:33.708 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:34.708 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:34.708 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:35.708 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:35.708 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:36.708 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:36.708 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:36.734 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144721982 duration=-1
2020-06-14 16:25:37.708 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:37.708 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:37.806 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:25:37.808 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:25:37.810 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:25:37.810 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:25:37.949 1893-1893/? E/netmgr: Failed to open QEMU pipe 'qemud:network': Invalid argument
2020-06-14 16:25:38.708 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:38.708 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:39.709 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:39.709 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:40.709 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:40.709 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:41.709 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:41.709 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:41.734 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144736734 duration=0
2020-06-14 16:25:42.709 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:42.709 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:42.816 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:25:42.818 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:25:42.822 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:25:42.822 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:25:43.709 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:43.709 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:44.656 2013-3663/system_process I/WifiService: acquireWifiLock uid=10101 lockMode=2
2020-06-14 16:25:44.708 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:44.708 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:45.498 2013-3663/system_process D/WificondControl: Scan result ready event
2020-06-14 16:25:45.531 2013-3663/system_process I/WifiService: releaseWifiLock uid=10101
2020-06-14 16:25:45.711 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:45.711 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:46.711 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:46.711 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:46.738 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144745247 duration=-1
2020-06-14 16:25:47.711 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:47.711 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:47.829 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:25:47.831 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:25:47.835 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:25:47.836 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:25:48.712 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:48.712 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:49.712 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:49.712 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:50.712 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:50.712 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:51.712 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:51.712 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:51.740 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144746738 duration=0
2020-06-14 16:25:52.712 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:52.712 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:52.843 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:25:52.845 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:25:52.849 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:25:52.850 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:25:52.850 4855-19782/com.google.android.googlequicksearchbox I/DeviceStateChecker: DeviceStateChecker cancelled
2020-06-14 16:25:53.660 1913-1913/? E/wifi_forwarder: RemoteConnection failed to initialize: RemoteConnection failed to open pipe
2020-06-14 16:25:53.712 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:53.712 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:54.711 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:54.711 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:55.712 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:55.712 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:56.712 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:56.712 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:57.639 2013-2054/system_process I/UsageStatsService: User[0] Flushing usage stats to disk
2020-06-14 16:25:57.696 2013-2054/system_process E/AppIdleHistory: Error writing app idle file for user 0
2020-06-14 16:25:57.711 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:57.711 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:57.722 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144751740 duration=0
2020-06-14 16:25:57.856 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:25:57.858 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:25:57.860 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:25:57.861 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:25:58.712 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:58.712 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:25:59.712 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:25:59.712 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:00.044 2248-2248/com.android.systemui D/KeyguardClockSwitch: Updating clock: 226
2020-06-14 16:26:00.712 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:00.712 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:01.712 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:01.712 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:02.712 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:02.713 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:02.739 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144757722 duration=0
2020-06-14 16:26:02.866 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:26:02.869 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:26:02.870 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:26:02.870 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:26:03.713 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:03.713 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:04.713 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:04.713 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:05.713 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:05.713 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:06.713 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:06.713 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:07.713 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:07.713 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:07.740 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144762739 duration=0
2020-06-14 16:26:07.879 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:26:07.881 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:26:07.885 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:26:07.885 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:26:07.885 4855-19782/com.google.android.googlequicksearchbox I/DeviceStateChecker: DeviceStateChecker cancelled
2020-06-14 16:26:08.713 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:08.713 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:09.713 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:09.713 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:10.713 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:10.713 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:11.713 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:11.713 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:12.713 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:12.713 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:12.891 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:26:12.893 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:26:12.895 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:26:12.895 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:26:13.713 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:13.713 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:13.738 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144767740 duration=0
2020-06-14 16:26:14.713 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:14.714 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:15.714 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:15.714 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:16.714 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:16.714 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:17.714 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:17.714 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:17.901 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:26:17.903 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:26:17.906 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:26:17.906 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:26:18.714 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:18.714 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:18.738 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144773738 duration=0
2020-06-14 16:26:19.714 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:19.714 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:20.302 2013-2054/system_process E/memtrack: Couldn't load memtrack module
2020-06-14 16:26:20.303 2013-2054/system_process W/android.os.Debug: failed to get memory consumption info: -1
2020-06-14 16:26:20.714 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:20.714 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:21.714 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:21.714 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:22.714 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:22.714 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:22.912 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:26:22.915 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:26:22.916 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:26:22.916 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:26:23.714 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:23.714 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:23.740 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144780296 duration=-1592018841957
2020-06-14 16:26:24.715 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:24.715 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:25.715 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:25.715 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:26.715 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:26.715 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:27.715 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:27.715 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:27.921 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:26:27.924 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:26:27.929 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:26:27.929 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:26:28.715 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:28.715 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:28.740 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144783740 duration=0
2020-06-14 16:26:29.715 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:29.715 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:30.715 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:30.715 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:31.715 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:31.715 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:32.715 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:32.715 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:32.935 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:26:32.937 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:26:32.942 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:26:32.942 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:26:33.715 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:33.715 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:33.742 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144780296 duration=-1
2020-06-14 16:26:34.715 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:34.715 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:35.714 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:35.714 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:36.715 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:36.715 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:37.714 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:37.714 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:37.948 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:26:37.950 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:26:37.954 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:26:37.955 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:26:37.998 1893-1893/? E/netmgr: Failed to open QEMU pipe 'qemud:network': Invalid argument
2020-06-14 16:26:38.715 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:38.715 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:38.742 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144793742 duration=0
2020-06-14 16:26:39.715 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:39.715 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:40.715 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:40.715 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:41.715 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:41.715 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:42.715 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:42.715 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:42.960 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:26:42.962 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:26:42.968 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:26:42.968 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:26:43.715 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:43.715 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:44.715 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:44.715 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:44.741 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144798742 duration=0
2020-06-14 16:26:45.716 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:45.716 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:46.715 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:46.715 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:47.715 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:47.715 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:47.976 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:26:47.979 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:26:47.984 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:26:47.984 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:26:48.716 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:48.716 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:49.716 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:49.716 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:49.741 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144804741 duration=0
2020-06-14 16:26:50.716 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:50.716 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:51.716 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:51.716 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:52.716 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:52.716 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:52.991 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:26:52.993 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:26:52.996 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:26:52.996 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:26:53.716 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:53.716 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:53.723 1913-1913/? E/wifi_forwarder: RemoteConnection failed to initialize: RemoteConnection failed to open pipe
2020-06-14 16:26:54.716 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:54.717 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:54.742 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144809741 duration=0
2020-06-14 16:26:55.716 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:55.717 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:56.717 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:56.717 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:57.717 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:57.717 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:58.001 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:26:58.005 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:26:58.006 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:26:58.006 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:26:58.717 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:58.717 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:59.717 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:26:59.717 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:26:59.742 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144814742 duration=0
2020-06-14 16:27:00.047 2248-2248/com.android.systemui D/KeyguardClockSwitch: Updating clock: 227
2020-06-14 16:27:00.717 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:00.717 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:01.717 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:01.717 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:02.718 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:02.718 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:03.012 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:27:03.014 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:27:03.018 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:27:03.018 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:27:03.018 4855-19782/com.google.android.googlequicksearchbox I/DeviceStateChecker: DeviceStateChecker cancelled
2020-06-14 16:27:03.718 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:03.718 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:04.718 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:04.718 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:04.741 2013-3663/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144819743 duration=0
2020-06-14 16:27:05.717 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:05.718 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:06.718 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:06.719 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:07.719 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:07.719 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:08.023 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:27:08.025 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:27:08.029 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:27:08.029 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:27:08.719 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:08.719 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:09.718 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:09.718 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:09.744 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144824741 duration=0
2020-06-14 16:27:10.718 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:10.718 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:11.718 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:11.718 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:12.719 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:12.719 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:13.035 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:27:13.039 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:27:13.040 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:27:13.040 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:27:13.719 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:13.719 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:14.719 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:14.719 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:14.746 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144829744 duration=0
2020-06-14 16:27:15.719 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:15.719 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:16.719 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:16.719 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:17.719 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:17.719 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:18.046 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:27:18.049 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:27:18.051 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:27:18.051 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:27:18.719 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:18.719 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:19.719 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:19.719 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:20.719 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:20.719 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:20.746 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144834746 duration=0
2020-06-14 16:27:21.719 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:21.719 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:22.719 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:22.719 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:23.057 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:27:23.060 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:27:23.063 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:27:23.063 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:27:23.719 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:23.719 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:24.720 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:24.720 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:25.719 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:25.719 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:25.745 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144840746 duration=0
2020-06-14 16:27:26.719 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:26.719 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:27.719 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:27.719 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:28.070 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:27:28.072 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:27:28.081 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:27:28.081 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:27:28.116 4855-4871/com.google.android.googlequicksearchbox I/earchbox:searc: Background young concurrent copying GC freed 34943(1267KB) AllocSpace objects, 0(0B) LOS objects, 12% free, 9222KB/10MB, paused 5.771ms total 49.803ms
2020-06-14 16:27:28.719 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:28.719 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:29.719 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:29.719 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:30.719 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:30.719 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:30.746 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144845745 duration=0
2020-06-14 16:27:31.720 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:31.720 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:32.719 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:32.719 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:33.088 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:27:33.089 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:27:33.091 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:27:33.091 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:27:33.720 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:33.720 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:34.720 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:34.720 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:35.720 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:35.720 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:35.746 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144850747 duration=0
2020-06-14 16:27:36.720 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:36.720 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:37.720 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:37.720 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:38.061 1893-1893/? E/netmgr: Failed to open QEMU pipe 'qemud:network': Invalid argument
2020-06-14 16:27:38.094 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:27:38.095 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:27:38.095 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:27:38.095 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:27:38.720 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:38.721 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:39.720 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:39.720 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:40.720 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:40.721 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:40.745 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144855746 duration=0
2020-06-14 16:27:41.721 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:41.721 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:42.720 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:42.721 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:43.101 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:27:43.103 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:27:43.108 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:27:43.109 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:27:43.722 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:43.722 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:44.721 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:44.721 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:45.721 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:45.721 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:45.747 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144860745 duration=0
2020-06-14 16:27:46.609 2013-3663/system_process E/memtrack: Couldn't load memtrack module
2020-06-14 16:27:46.609 2013-3663/system_process W/android.os.Debug: failed to get memory consumption info: -1
2020-06-14 16:27:46.721 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:46.721 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:47.721 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:47.721 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:48.113 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:27:48.114 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:27:48.115 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:27:48.115 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:27:48.722 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:48.722 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:49.722 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:49.722 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:50.722 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:50.722 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:50.748 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144865747 duration=0
2020-06-14 16:27:51.722 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:51.722 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:52.722 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:52.722 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:53.122 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:27:53.124 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:27:53.127 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:27:53.127 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:27:53.723 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:53.723 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:53.785 1913-1913/? E/wifi_forwarder: RemoteConnection failed to initialize: RemoteConnection failed to open pipe
2020-06-14 16:27:54.723 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:54.723 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:55.723 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:55.723 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:55.748 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144870748 duration=0
2020-06-14 16:27:56.723 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:56.723 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:57.565 2013-2062/system_process E/BluetoothAdapter: Bluetooth binder is null
2020-06-14 16:27:57.628 1736-1935/? I/netd: trafficSwapActiveStatsMap() <44.93ms>
2020-06-14 16:27:57.630 1736-1935/? I/netd: tetherGetStats() <1.00ms>
2020-06-14 16:27:57.723 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:57.723 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:58.133 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:27:58.136 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:27:58.138 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:27:58.138 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:27:58.724 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:58.724 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:27:59.724 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:27:59.724 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:00.010 2248-2248/com.android.systemui D/KeyguardClockSwitch: Updating clock: 228
2020-06-14 16:28:00.724 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:00.724 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:00.748 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144875748 duration=0
2020-06-14 16:28:01.724 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:01.724 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:02.724 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:02.724 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:03.143 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:28:03.144 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:28:03.145 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:28:03.145 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:28:03.724 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:03.724 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:04.724 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:04.724 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:05.724 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:05.724 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:05.751 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144880748 duration=0
2020-06-14 16:28:06.724 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:06.724 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:07.724 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:07.724 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:08.151 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:28:08.154 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:28:08.155 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:28:08.156 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:28:08.724 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:08.724 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:09.724 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:09.724 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:10.724 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:10.724 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:11.725 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:11.725 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:11.751 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144885752 duration=0
2020-06-14 16:28:12.725 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:12.725 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:13.162 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:28:13.165 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:28:13.167 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:28:13.167 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:28:13.725 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:13.725 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:14.725 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:14.725 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:15.725 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:15.725 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:16.725 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:16.725 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:17.726 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:17.726 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:17.752 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144891752 duration=0
2020-06-14 16:28:18.172 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:28:18.173 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:28:18.174 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:28:18.174 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:28:18.726 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:18.726 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:19.725 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:19.726 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:20.725 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:20.725 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:21.725 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:21.725 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:22.726 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:22.726 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:22.755 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144897752 duration=0
2020-06-14 16:28:23.180 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:28:23.183 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:28:23.187 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:28:23.187 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:28:23.726 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:23.726 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:24.726 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:24.726 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:25.726 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:25.726 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:26.727 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:26.727 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:27.727 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:27.727 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:28.194 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:28:28.198 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:28:28.200 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:28:28.200 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:28:28.727 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:28.727 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:28.748 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144902756 duration=0
2020-06-14 16:28:29.727 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:29.728 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:30.727 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:30.727 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:31.728 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:31.728 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:32.728 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:32.728 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:33.206 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:28:33.207 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:28:33.212 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:28:33.212 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:28:33.728 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:33.728 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:33.754 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144908748 duration=0
2020-06-14 16:28:34.727 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:34.727 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:35.728 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:35.728 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:36.728 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:36.729 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:37.728 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:37.729 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:38.124 1893-1893/? E/netmgr: Failed to open QEMU pipe 'qemud:network': Invalid argument
2020-06-14 16:28:38.217 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:28:38.220 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:28:38.222 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:28:38.222 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:28:38.728 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:38.728 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:39.729 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:39.729 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:39.754 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144913754 duration=0
2020-06-14 16:28:40.729 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:40.729 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:41.729 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:41.729 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:42.730 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:42.730 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:43.229 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:28:43.232 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:28:43.236 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:28:43.236 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:28:43.730 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:43.730 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:44.730 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:44.730 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:44.755 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144919754 duration=0
2020-06-14 16:28:45.730 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:45.730 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:46.730 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:46.730 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:47.731 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:47.731 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:48.239 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:28:48.241 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:28:48.241 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:28:48.241 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:28:48.731 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:48.731 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:49.731 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:49.731 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:49.755 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144924755 duration=0
2020-06-14 16:28:50.730 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:50.730 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:51.731 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:51.731 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:52.731 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:52.731 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:53.247 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:28:53.249 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:28:53.254 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:28:53.254 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:28:53.731 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:53.731 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:53.847 1913-1913/? E/wifi_forwarder: RemoteConnection failed to initialize: RemoteConnection failed to open pipe
2020-06-14 16:28:53.949 2013-2054/system_process E/memtrack: Couldn't load memtrack module
2020-06-14 16:28:53.949 2013-2054/system_process W/android.os.Debug: failed to get memory consumption info: -1
2020-06-14 16:28:53.977 1736-1935/? I/netd: trafficSwapActiveStatsMap() <29.15ms>
2020-06-14 16:28:53.980 1736-1935/? I/netd: tetherGetStats() <1.58ms>
2020-06-14 16:28:54.001 1736-1935/? I/netd: bandwidthSetGlobalAlert(2097152) <0.40ms>
2020-06-14 16:28:54.731 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:54.731 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:54.759 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144934560 duration=-1
2020-06-14 16:28:55.731 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:55.731 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:56.732 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:56.732 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:57.731 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:57.731 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:57.889 2013-3822/system_process D/WificondControl: Scan result ready event
2020-06-14 16:28:58.260 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:28:58.263 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:28:58.268 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:28:58.268 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:28:58.732 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:58.732 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:59.732 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:28:59.732 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:28:59.759 2013-3663/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144934759 duration=0
2020-06-14 16:29:00.047 2248-2248/com.android.systemui D/KeyguardClockSwitch: Updating clock: 229
2020-06-14 16:29:00.732 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:00.732 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:01.733 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:01.733 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:02.733 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:02.733 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:03.274 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:29:03.278 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:29:03.280 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:29:03.281 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:29:03.733 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:03.733 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:04.732 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:04.733 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:04.760 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144939759 duration=0
2020-06-14 16:29:05.733 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:05.733 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:06.734 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:06.734 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:07.734 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:07.734 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:08.286 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:29:08.288 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:29:08.289 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:29:08.289 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:29:08.734 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:08.734 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:09.734 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:09.734 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:09.762 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144944760 duration=0
2020-06-14 16:29:10.734 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:10.734 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:11.734 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:11.735 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:12.735 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:12.735 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:13.295 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:29:13.296 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:29:13.300 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:29:13.301 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:29:13.735 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:13.735 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:14.735 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:14.735 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:14.762 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144949762 duration=0
2020-06-14 16:29:15.734 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:15.734 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:16.735 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:16.735 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:17.735 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:17.735 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:18.306 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:29:18.308 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:29:18.311 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:29:18.311 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:29:18.735 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:18.735 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:19.735 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:19.735 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:19.764 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144954762 duration=0
2020-06-14 16:29:20.735 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:20.735 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:21.735 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:21.735 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:22.735 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:22.735 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:23.316 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:29:23.318 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:29:23.322 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:29:23.322 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:29:23.736 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:23.736 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:24.736 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:24.736 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:24.762 2013-3663/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144959764 duration=0
2020-06-14 16:29:25.736 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:25.736 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:26.736 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:26.736 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:27.736 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:27.737 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:28.328 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:29:28.330 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:29:28.332 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:29:28.332 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:29:28.736 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:28.736 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:29.736 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:29.736 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:29.763 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144969606 duration=-1592018841961
2020-06-14 16:29:30.737 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:30.737 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:31.737 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:31.737 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:32.737 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:32.737 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:33.338 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:29:33.340 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:29:33.344 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:29:33.344 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:29:33.737 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:33.737 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:34.737 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:34.737 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:34.764 2013-3663/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144969763 duration=0
2020-06-14 16:29:35.737 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:35.737 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:36.737 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:36.737 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:37.737 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:37.737 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:38.187 1893-1893/? E/netmgr: Failed to open QEMU pipe 'qemud:network': Invalid argument
2020-06-14 16:29:38.352 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:29:38.354 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:29:38.358 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:29:38.358 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:29:38.737 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:38.737 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:39.737 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:39.737 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:40.737 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:40.737 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:40.765 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144969606 duration=-1
2020-06-14 16:29:41.737 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:41.737 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:42.737 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:42.737 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:43.363 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:29:43.364 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:29:43.364 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:29:43.364 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:29:43.738 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:43.738 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:44.738 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:44.738 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:45.738 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:45.738 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:45.767 2013-3663/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144980766 duration=0
2020-06-14 16:29:46.739 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:46.739 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:47.739 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:47.739 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:48.368 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:29:48.370 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:29:48.371 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:29:48.371 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:29:48.739 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:48.739 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:49.739 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:49.739 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:50.739 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:50.739 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:50.767 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144985767 duration=0
2020-06-14 16:29:51.739 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:51.739 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:52.739 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:52.739 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:53.377 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:29:53.382 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:29:53.385 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:29:53.385 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:29:53.739 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:53.739 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:53.873 1913-1913/? E/wifi_forwarder: RemoteConnection failed to initialize: RemoteConnection failed to open pipe
2020-06-14 16:29:54.739 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:54.739 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:55.739 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:55.739 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:55.773 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144990767 duration=0
2020-06-14 16:29:56.739 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:56.739 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:57.739 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:57.739 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:58.390 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:29:58.393 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:29:58.397 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:29:58.397 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:29:58.739 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:58.739 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:29:59.739 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:29:59.739 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:00.014 2248-2248/com.android.systemui D/KeyguardClockSwitch: Updating clock: 230
2020-06-14 16:30:00.739 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:00.739 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:01.740 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:01.740 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:01.765 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592144995773 duration=0
2020-06-14 16:30:02.740 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:02.740 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:03.403 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:30:03.405 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:30:03.409 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:30:03.409 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:30:03.739 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:03.739 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:04.740 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:04.740 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:05.740 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:05.740 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:06.740 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:06.740 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:06.766 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145001765 duration=0
2020-06-14 16:30:07.740 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:07.741 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:08.416 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:30:08.418 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:30:08.423 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:30:08.423 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:30:08.741 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:08.741 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:09.741 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:09.741 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:10.741 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:10.741 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:11.741 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:11.741 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:11.766 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145006766 duration=0
2020-06-14 16:30:12.741 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:12.741 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:13.429 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:30:13.432 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:30:13.436 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:30:13.436 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:30:13.741 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:13.741 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:14.741 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:14.741 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:15.741 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:15.741 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:16.741 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:16.741 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:17.741 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:17.741 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:17.767 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145011766 duration=-1592018830100
2020-06-14 16:30:18.442 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:30:18.446 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:30:18.449 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:30:18.449 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:30:18.741 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:18.742 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:19.742 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:19.742 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:20.742 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:20.742 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:21.742 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:21.742 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:22.743 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:22.743 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:22.769 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145017767 duration=0
2020-06-14 16:30:23.456 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:30:23.459 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:30:23.463 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:30:23.463 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:30:23.742 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:23.742 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:24.742 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:24.742 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:25.742 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:25.742 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:26.743 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:26.743 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:27.743 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:27.743 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:28.469 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:30:28.472 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:30:28.476 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:30:28.476 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:30:28.743 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:28.743 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:28.769 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145022769 duration=0
2020-06-14 16:30:29.743 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:29.743 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:30.743 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:30.743 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:31.743 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:31.743 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:32.743 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:32.743 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:33.482 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:30:33.485 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:30:33.489 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:30:33.489 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:30:33.743 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:33.743 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:34.743 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:34.743 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:34.769 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145028769 duration=0
2020-06-14 16:30:35.743 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:35.743 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:36.743 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:36.743 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:37.743 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:37.743 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:38.210 1893-1893/? E/netmgr: Failed to open QEMU pipe 'qemud:network': Invalid argument
2020-06-14 16:30:38.495 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:30:38.498 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:30:38.501 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:30:38.502 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:30:38.743 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:38.743 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:39.743 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:39.743 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:39.769 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145034769 duration=0
2020-06-14 16:30:40.744 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:40.744 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:41.744 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:41.744 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:42.744 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:42.744 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:43.507 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:30:43.509 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:30:43.513 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:30:43.513 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:30:43.744 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:43.744 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:44.744 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:44.744 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:44.769 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145039770 duration=0
2020-06-14 16:30:45.744 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:45.744 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:46.744 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:46.744 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:47.744 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:47.744 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:48.520 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:30:48.522 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:30:48.526 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:30:48.526 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:30:48.744 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:48.744 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:49.744 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:49.744 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:49.770 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145044770 duration=0
2020-06-14 16:30:50.745 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:50.745 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:51.745 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:51.745 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:52.745 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:52.745 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:53.531 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:30:53.534 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:30:53.536 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:30:53.536 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:30:53.745 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:53.745 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:53.935 1913-1913/? E/wifi_forwarder: RemoteConnection failed to initialize: RemoteConnection failed to open pipe
2020-06-14 16:30:54.745 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:54.745 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:54.771 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145049771 duration=0
2020-06-14 16:30:55.745 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:55.745 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:56.745 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:56.746 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:57.746 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:57.746 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:58.540 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:30:58.550 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:30:58.551 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:30:58.552 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:30:58.746 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:58.746 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:59.746 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:30:59.746 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:30:59.770 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145054772 duration=0
2020-06-14 16:31:00.018 2248-2248/com.android.systemui D/KeyguardClockSwitch: Updating clock: 231
2020-06-14 16:31:00.746 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:00.747 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:01.746 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:01.746 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:02.746 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:02.746 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:03.557 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:31:03.560 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:31:03.564 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:31:03.564 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:31:03.747 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:03.747 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:04.747 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:04.747 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:05.747 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:05.747 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:05.772 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145059770 duration=0
2020-06-14 16:31:06.747 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:06.747 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:07.747 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:07.747 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:08.570 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:31:08.573 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:31:08.576 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:31:08.577 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:31:08.747 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:08.747 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:09.747 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:09.747 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:10.748 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:10.748 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:10.773 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145065772 duration=0
2020-06-14 16:31:11.747 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:11.748 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:12.748 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:12.748 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:13.582 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:31:13.585 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:31:13.589 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:31:13.589 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:31:13.748 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:13.748 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:14.749 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:14.749 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:15.749 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:15.749 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:15.774 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145070773 duration=0
2020-06-14 16:31:16.749 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:16.749 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:17.749 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:17.749 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:18.595 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:31:18.598 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:31:18.601 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:31:18.601 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:31:18.749 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:18.749 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:19.750 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:19.750 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:20.749 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:20.749 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:20.774 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145075774 duration=0
2020-06-14 16:31:21.749 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:21.749 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:22.749 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:22.749 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:23.605 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:31:23.607 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:31:23.609 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:31:23.609 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:31:23.749 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:23.749 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:24.749 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:24.749 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:25.750 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:25.750 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:25.776 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145080774 duration=0
2020-06-14 16:31:26.750 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:26.750 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:27.750 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:27.750 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:28.615 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:31:28.617 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:31:28.620 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:31:28.621 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:31:28.750 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:28.750 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:29.750 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:29.750 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:30.750 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:30.750 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:31.750 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:31.750 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:31.776 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145085776 duration=0
2020-06-14 16:31:32.750 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:32.750 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:33.628 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:31:33.630 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:31:33.634 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:31:33.634 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:31:33.750 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:33.750 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:34.750 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:34.750 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:35.750 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:35.750 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:36.750 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:36.750 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:37.750 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:37.750 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:37.776 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145091776 duration=0
2020-06-14 16:31:38.272 1893-1893/? E/netmgr: Failed to open QEMU pipe 'qemud:network': Invalid argument
2020-06-14 16:31:38.641 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:31:38.643 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:31:38.646 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:31:38.646 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:31:38.750 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:38.751 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:39.751 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:39.751 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:40.751 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:40.751 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:41.751 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:41.751 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:42.750 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:42.751 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:42.776 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145097776 duration=0
2020-06-14 16:31:43.652 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:31:43.654 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:31:43.659 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:31:43.659 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:31:43.750 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:43.751 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:44.750 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:44.751 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:45.752 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:45.752 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:46.751 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:46.751 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:47.751 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:47.751 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:47.777 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145102777 duration=0
2020-06-14 16:31:48.665 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:31:48.669 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:31:48.670 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:31:48.670 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:31:48.751 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:48.751 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:49.752 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:49.752 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:50.752 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:50.752 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:51.752 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:51.752 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:52.752 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:52.752 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:52.775 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145107777 duration=0
2020-06-14 16:31:53.676 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:31:53.680 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:31:53.683 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:31:53.683 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:31:53.752 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:53.752 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:53.969 1913-1913/? E/wifi_forwarder: RemoteConnection failed to initialize: RemoteConnection failed to open pipe
2020-06-14 16:31:54.752 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:54.752 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:55.752 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:55.752 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:56.753 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:56.753 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:57.751 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:57.752 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:58.528 2013-3663/system_process D/WificondControl: Scan result ready event
2020-06-14 16:31:58.596 2013-3663/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145115188 duration=-1
2020-06-14 16:31:58.666 2013-2025/system_process I/system_server: Background young concurrent copying GC freed 149424(5262KB) AllocSpace objects, 12(600KB) LOS objects, 20% free, 22MB/27MB, paused 1.249ms total 123.470ms
2020-06-14 16:31:58.687 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:31:58.689 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:31:58.689 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:31:58.689 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:31:58.752 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:58.752 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:31:59.752 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:31:59.752 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:00.010 2248-2248/com.android.systemui D/KeyguardClockSwitch: Updating clock: 232
2020-06-14 16:32:00.752 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:00.752 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:01.752 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:01.752 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:02.752 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:02.753 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:03.693 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:32:03.695 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:32:03.696 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:32:03.696 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:32:03.752 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:03.752 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:03.767 2013-3663/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145118596 duration=0
2020-06-14 16:32:04.753 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:04.753 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:05.753 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:05.753 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:06.753 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:06.753 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:07.753 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:07.753 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:08.700 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:32:08.702 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:32:08.703 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:32:08.704 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:32:08.753 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:08.753 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:08.777 2013-3663/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145123767 duration=0
2020-06-14 16:32:09.753 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:09.753 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:10.753 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:10.753 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:11.753 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:11.753 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:12.754 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:12.754 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:13.710 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:32:13.712 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:32:13.715 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:32:13.715 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:32:13.753 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:13.754 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:14.754 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:14.754 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:14.779 2013-3663/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145128777 duration=0
2020-06-14 16:32:15.754 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:15.754 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:16.755 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:16.755 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:17.755 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:17.755 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:18.721 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:32:18.724 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:32:18.728 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:32:18.728 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:32:18.755 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:18.755 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:19.755 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:19.755 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:19.780 2013-3663/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145134779 duration=0
2020-06-14 16:32:20.755 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:20.755 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:21.755 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:21.755 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:22.755 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:22.755 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:23.734 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:32:23.737 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:32:23.741 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:32:23.741 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:32:23.755 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:23.755 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:24.755 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:24.755 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:25.755 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:25.755 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:25.777 2013-3663/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145139780 duration=0
2020-06-14 16:32:26.755 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:26.755 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:27.755 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:27.755 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:28.747 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:32:28.750 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:32:28.754 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:32:28.754 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:32:28.755 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:28.755 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:29.756 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:29.756 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:30.756 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:30.756 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:30.781 2013-3663/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145150237 duration=-1592018841957
2020-06-14 16:32:31.756 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:31.756 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:32.756 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:32.756 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:33.760 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:32:33.761 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:33.761 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:33.762 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:32:33.763 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:32:33.763 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:32:34.756 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:34.756 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:35.756 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:35.756 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:35.782 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145150781 duration=0
2020-06-14 16:32:36.756 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:36.756 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:37.756 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:37.757 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:38.280 1893-1893/? E/netmgr: Failed to open QEMU pipe 'qemud:network': Invalid argument
2020-06-14 16:32:38.757 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:38.757 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:38.769 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:32:38.773 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:32:38.777 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:32:38.777 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:32:39.756 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:39.756 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:40.756 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:40.757 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:41.756 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:41.757 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:41.782 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145150237 duration=-1
2020-06-14 16:32:42.757 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:42.757 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:43.757 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:43.757 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:43.782 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:32:43.783 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:32:43.784 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:32:43.785 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:32:44.756 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:44.757 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:45.757 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:45.757 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:46.757 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:46.757 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:47.116 2013-3161/system_process E/memtrack: Couldn't load memtrack module
2020-06-14 16:32:47.116 2013-3161/system_process W/android.os.Debug: failed to get memory consumption info: -1
2020-06-14 16:32:47.757 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:47.757 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:47.783 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145161783 duration=0
2020-06-14 16:32:48.757 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:48.758 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:48.790 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:32:48.793 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:32:48.795 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:32:48.796 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:32:49.757 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:49.757 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:50.757 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:50.758 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:51.757 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:51.757 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:52.757 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:52.758 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:52.783 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145167783 duration=0
2020-06-14 16:32:53.757 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:53.758 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:53.803 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:32:53.804 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:32:53.809 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:32:53.809 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:32:54.015 1913-1913/? E/wifi_forwarder: RemoteConnection failed to initialize: RemoteConnection failed to open pipe
2020-06-14 16:32:54.758 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:54.758 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:55.758 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:55.758 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:56.759 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:56.759 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:57.758 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:57.758 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:57.784 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145172784 duration=0
2020-06-14 16:32:58.758 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:58.758 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:32:58.815 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:32:58.817 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:32:58.821 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:32:58.821 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:32:59.758 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:32:59.758 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:00.017 2248-2248/com.android.systemui D/KeyguardClockSwitch: Updating clock: 233
2020-06-14 16:33:00.758 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:00.758 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:01.758 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:01.758 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:02.758 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:02.758 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:03.758 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:03.758 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:03.789 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145177784 duration=0
2020-06-14 16:33:03.827 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:33:03.828 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:33:03.830 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:33:03.831 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:33:04.758 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:04.758 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:05.758 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:05.758 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:06.758 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:06.758 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:07.759 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:07.759 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:08.759 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:08.760 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:08.786 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145183789 duration=0
2020-06-14 16:33:08.836 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:33:08.839 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:33:08.842 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:33:08.843 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:33:09.759 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:09.759 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:10.759 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:10.759 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:11.760 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:11.760 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:12.760 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:12.760 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:13.760 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:13.760 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:13.786 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145188786 duration=0
2020-06-14 16:33:13.849 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:33:13.851 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:33:13.855 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:33:13.855 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:33:14.759 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:14.760 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:15.760 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:15.760 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:16.760 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:16.760 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:17.760 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:17.760 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:18.760 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:18.760 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:18.785 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145193786 duration=0
2020-06-14 16:33:18.862 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:33:18.864 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:33:18.866 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:33:18.867 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:33:19.760 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:19.760 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:20.760 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:20.760 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:21.760 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:21.760 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:22.761 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:22.761 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:23.760 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:23.760 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:23.788 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145198785 duration=0
2020-06-14 16:33:23.871 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:33:23.872 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:33:23.873 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:33:23.873 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:33:24.761 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:24.761 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:25.761 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:25.761 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:26.761 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:26.762 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:27.761 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:27.761 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:28.763 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:28.763 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:28.784 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145203789 duration=0
2020-06-14 16:33:28.880 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:33:28.883 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:33:28.888 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:33:28.888 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:33:29.762 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:29.762 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:30.762 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:30.762 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:31.762 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:31.762 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:32.763 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:32.763 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:33.763 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:33.763 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:33.788 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145208784 duration=0
2020-06-14 16:33:33.894 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:33:33.896 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:33:33.900 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:33:33.900 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:33:34.763 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:34.763 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:35.763 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:35.763 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:36.763 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:36.763 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:37.763 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:37.763 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:38.342 1893-1893/? E/netmgr: Failed to open QEMU pipe 'qemud:network': Invalid argument
2020-06-14 16:33:38.763 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:38.763 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:38.789 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145213789 duration=0
2020-06-14 16:33:38.906 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:33:38.907 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:33:38.912 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:33:38.912 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:33:39.764 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:39.764 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:40.764 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:40.764 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:41.764 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:41.764 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:42.764 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:42.764 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:43.765 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:43.765 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:43.791 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145218789 duration=0
2020-06-14 16:33:43.918 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:33:43.923 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:33:43.925 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:33:43.925 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:33:44.765 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:44.765 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:45.765 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:45.765 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:46.765 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:46.765 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:47.764 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:47.764 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:48.764 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:48.764 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:48.932 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:33:48.934 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:33:48.938 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:33:48.938 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:33:49.766 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:49.766 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:49.792 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145223791 duration=0
2020-06-14 16:33:50.765 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:50.765 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:51.765 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:51.765 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:52.765 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:52.765 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:53.765 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:53.765 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:53.943 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:33:53.944 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:33:53.945 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:33:53.945 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:33:54.075 1913-1913/? E/wifi_forwarder: RemoteConnection failed to initialize: RemoteConnection failed to open pipe
2020-06-14 16:33:54.765 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:54.765 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:55.766 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:55.766 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:55.791 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145229792 duration=0
2020-06-14 16:33:56.766 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:56.766 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:57.765 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:57.765 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:58.766 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:58.766 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:33:58.951 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:33:58.954 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:33:58.958 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:33:58.958 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:33:59.765 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:33:59.766 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:00.013 2248-2248/com.android.systemui D/KeyguardClockSwitch: Updating clock: 234
2020-06-14 16:34:00.766 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:00.766 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:00.789 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145235791 duration=0
2020-06-14 16:34:01.766 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:01.766 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:02.766 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:02.766 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:03.767 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:03.767 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:03.965 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:34:03.968 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:34:03.971 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:34:03.971 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:34:04.767 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:04.767 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:05.767 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:05.767 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:05.794 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145240789 duration=0
2020-06-14 16:34:06.767 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:06.767 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:07.767 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:07.767 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:08.767 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:08.767 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:08.979 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:34:08.981 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:34:08.987 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:34:08.987 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:34:09.767 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:09.767 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:10.768 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:10.768 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:11.768 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:11.768 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:11.798 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145245794 duration=0
2020-06-14 16:34:12.767 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:12.767 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:13.768 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:13.768 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:13.994 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:34:13.996 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:34:13.999 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:34:13.999 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:34:14.768 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:14.768 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:15.768 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:15.768 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:16.768 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:16.768 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:17.768 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:17.768 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:17.794 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145251798 duration=0
2020-06-14 16:34:18.768 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:18.768 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:19.006 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:34:19.009 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:34:19.011 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:34:19.011 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:34:19.768 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:19.768 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:20.768 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:20.768 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:21.768 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:21.768 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:22.769 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:22.769 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:22.793 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145257794 duration=0
2020-06-14 16:34:23.769 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:23.769 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:24.019 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:34:24.024 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:34:24.026 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:34:24.026 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:34:24.769 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:24.769 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:25.769 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:25.769 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:26.769 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:26.769 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:27.769 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:27.769 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:27.791 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145262793 duration=0
2020-06-14 16:34:28.769 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:28.769 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:29.032 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:34:29.034 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:34:29.038 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:34:29.038 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:34:29.769 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:29.769 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:30.769 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:30.769 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:31.770 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:31.770 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:32.770 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:32.770 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:32.794 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145267791 duration=0
2020-06-14 16:34:33.770 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:33.770 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:34.045 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:34:34.047 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:34:34.051 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:34:34.051 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:34:34.770 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:34.770 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:35.770 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:35.770 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:36.771 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:36.771 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:37.771 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:37.771 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:37.797 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145272794 duration=0
2020-06-14 16:34:38.404 1893-1893/? E/netmgr: Failed to open QEMU pipe 'qemud:network': Invalid argument
2020-06-14 16:34:38.771 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:38.771 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:39.058 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:34:39.060 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:34:39.064 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:34:39.064 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:34:39.771 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:39.771 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:40.771 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:40.771 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:41.772 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:41.772 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:42.772 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:42.772 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:42.797 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145277797 duration=0
2020-06-14 16:34:43.772 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:43.772 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:44.070 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:34:44.072 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:34:44.077 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:34:44.077 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:34:44.772 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:44.772 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:45.772 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:45.772 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:46.772 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:46.773 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:47.773 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:47.773 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:47.796 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145282797 duration=0
2020-06-14 16:34:48.773 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:48.773 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:49.086 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:34:49.089 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:34:49.093 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:34:49.093 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:34:49.773 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:49.773 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:50.773 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:50.773 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:51.773 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:51.773 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:52.773 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:52.773 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:52.799 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145287796 duration=0
2020-06-14 16:34:53.773 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:53.773 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:54.101 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:34:54.104 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:34:54.105 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:34:54.106 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:34:54.137 1913-1913/? E/wifi_forwarder: RemoteConnection failed to initialize: RemoteConnection failed to open pipe
2020-06-14 16:34:54.773 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:54.773 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:55.773 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:55.773 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:56.773 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:56.773 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:57.773 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:57.774 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:57.800 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145295824 duration=-1
2020-06-14 16:34:58.773 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:58.774 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:34:59.113 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:34:59.115 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:34:59.120 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:34:59.120 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:34:59.157 2013-3822/system_process D/WificondControl: Scan result ready event
2020-06-14 16:34:59.774 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:34:59.774 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:00.043 2248-2248/com.android.systemui D/KeyguardClockSwitch: Updating clock: 235
2020-06-14 16:35:00.774 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:00.774 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:01.774 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:01.774 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:02.774 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:02.774 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:02.802 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145297800 duration=0
2020-06-14 16:35:03.774 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:03.774 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:04.124 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:35:04.126 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:35:04.127 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:35:04.127 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:35:04.774 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:04.774 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:05.774 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:05.774 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:06.774 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:06.774 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:07.775 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:07.775 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:07.802 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145302802 duration=0
2020-06-14 16:35:08.774 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:08.774 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:09.131 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:35:09.132 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:35:09.133 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:35:09.133 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:35:09.774 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:09.775 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:10.774 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:10.774 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:11.775 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:11.775 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:12.775 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:12.775 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:13.775 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:13.775 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:13.800 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145307802 duration=0
2020-06-14 16:35:14.137 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:35:14.138 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:35:14.139 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:35:14.139 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:35:14.775 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:14.775 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:15.775 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:15.775 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:16.775 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:16.775 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:17.775 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:17.775 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:18.775 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:18.775 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:19.145 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:35:19.148 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:35:19.152 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:35:19.152 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:35:19.775 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:19.775 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:19.800 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145313800 duration=0
2020-06-14 16:35:20.775 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:20.775 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:21.775 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:21.775 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:22.775 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:22.775 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:23.776 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:23.776 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:24.157 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:35:24.159 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:35:24.159 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:35:24.160 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:35:24.776 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:24.776 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:24.801 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145319801 duration=0
2020-06-14 16:35:25.776 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:25.776 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:26.776 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:26.776 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:27.776 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:27.776 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:28.776 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:28.776 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:29.165 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:35:29.168 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:35:29.172 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:35:29.172 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:35:29.172 4855-19771/com.google.android.googlequicksearchbox I/DeviceStateChecker: DeviceStateChecker cancelled
2020-06-14 16:35:29.776 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:29.776 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:29.803 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145324801 duration=0
2020-06-14 16:35:30.776 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:30.776 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:31.777 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:31.777 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:32.776 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:32.776 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:33.776 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:33.776 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:34.178 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:35:34.181 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:35:34.185 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:35:34.185 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:35:34.776 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:34.776 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:34.802 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145330873 duration=-1592018841957
2020-06-14 16:35:35.777 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:35.777 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:36.777 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:36.777 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:37.777 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:37.777 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:38.467 1893-1893/? E/netmgr: Failed to open QEMU pipe 'qemud:network': Invalid argument
2020-06-14 16:35:38.777 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:38.777 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:39.190 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:35:39.193 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:35:39.197 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:35:39.197 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:35:39.777 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:39.778 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:40.777 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:40.778 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:40.804 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145334802 duration=0
2020-06-14 16:35:41.777 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:41.777 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:42.778 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:42.778 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:43.778 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:43.778 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:44.200 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:35:44.201 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:35:44.202 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:35:44.202 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:35:44.778 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:44.778 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:45.680 2013-3822/system_process I/WifiService: acquireWifiLock uid=10101 lockMode=2
2020-06-14 16:35:45.778 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:45.778 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:46.519 2013-3161/system_process D/WificondControl: Scan result ready event
2020-06-14 16:35:46.554 2013-3161/system_process I/WifiService: releaseWifiLock uid=10101
2020-06-14 16:35:46.778 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:46.778 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:46.803 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145346298 duration=-1
2020-06-14 16:35:47.778 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:47.778 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:48.779 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:48.779 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:49.208 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:35:49.211 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:35:49.214 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:35:49.214 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:35:49.779 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:49.779 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:50.779 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:50.779 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:51.780 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:51.780 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:51.810 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145346803 duration=0
2020-06-14 16:35:52.779 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:52.779 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:53.779 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:53.779 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:54.198 1913-1913/? E/wifi_forwarder: RemoteConnection failed to initialize: RemoteConnection failed to open pipe
2020-06-14 16:35:54.220 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:35:54.223 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:35:54.228 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:35:54.229 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:35:54.779 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:54.779 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:55.779 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:55.779 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:56.779 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:56.779 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:57.779 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:57.780 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:57.805 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145351810 duration=0
2020-06-14 16:35:58.779 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:58.780 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:35:59.236 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:35:59.238 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:35:59.242 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:35:59.242 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:35:59.780 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:35:59.780 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:00.045 2248-2248/com.android.systemui D/KeyguardClockSwitch: Updating clock: 236
2020-06-14 16:36:00.125 2013-2013/system_process W/Looper: Slow dispatch took 123ms main h=com.android.server.AlarmManagerService$AlarmHandler c=com.android.server.-$$Lambda$AlarmManagerService$2$Eo-D98J-N9R2METkD-12gPs320c@421fa5c m=0
2020-06-14 16:36:00.779 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:00.780 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:01.780 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:01.780 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:02.780 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:02.780 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:02.805 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145357806 duration=0
2020-06-14 16:36:03.780 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:03.781 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:04.249 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:36:04.251 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:36:04.253 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:36:04.253 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:36:04.780 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:04.781 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:05.781 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:05.781 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:06.781 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:06.781 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:07.781 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:07.781 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:07.806 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145362806 duration=0
2020-06-14 16:36:08.781 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:08.781 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:09.259 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:36:09.262 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:36:09.265 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:36:09.265 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:36:09.781 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:09.781 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:10.781 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:10.781 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:11.781 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:11.781 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:12.781 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:12.781 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:12.807 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145367806 duration=0
2020-06-14 16:36:13.781 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:13.781 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:14.272 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:36:14.274 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:36:14.276 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:36:14.277 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:36:14.782 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:14.782 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:15.782 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:15.782 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:16.782 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:16.782 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:17.782 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:17.783 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:17.810 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145372807 duration=0
2020-06-14 16:36:18.782 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:18.782 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:19.282 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:36:19.285 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:36:19.287 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:36:19.287 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:36:19.783 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:19.783 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:20.783 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:20.783 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:21.783 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:21.783 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:22.783 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:22.783 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:22.808 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145381346 duration=-1592018841958
2020-06-14 16:36:23.783 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:23.783 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:24.292 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:36:24.295 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:36:24.299 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:36:24.299 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:36:24.784 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:24.784 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:25.783 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:25.783 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:26.783 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:26.783 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:27.783 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:27.783 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:28.783 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:28.783 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:28.812 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145382808 duration=0
2020-06-14 16:36:29.305 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:36:29.307 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:36:29.311 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:36:29.311 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:36:29.783 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:29.783 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:30.783 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:30.783 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:31.784 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:31.784 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:32.784 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:32.784 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:33.784 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:33.784 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:33.809 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145381346 duration=-1
2020-06-14 16:36:34.319 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:36:34.321 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:36:34.324 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:36:34.324 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:36:34.784 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:34.784 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:35.784 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:35.785 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:36.784 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:36.784 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:37.784 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:37.784 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:38.529 1893-1893/? E/netmgr: Failed to open QEMU pipe 'qemud:network': Invalid argument
2020-06-14 16:36:38.784 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:38.784 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:38.812 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145393809 duration=0
2020-06-14 16:36:39.331 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:36:39.333 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:36:39.337 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:36:39.338 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:36:39.784 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:39.784 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:40.785 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:40.785 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:41.785 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:41.785 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:42.785 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:42.786 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:43.786 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:43.786 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:43.812 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145398813 duration=0
2020-06-14 16:36:44.344 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:36:44.346 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:36:44.353 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:36:44.353 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:36:44.786 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:44.786 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:45.786 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:45.786 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:46.786 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:46.786 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:47.786 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:47.786 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:48.786 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:48.786 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:48.811 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145403812 duration=0
2020-06-14 16:36:49.359 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:36:49.361 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:36:49.365 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:36:49.365 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:36:49.786 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:49.786 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:50.786 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:50.786 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:51.787 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:51.787 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:52.787 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:52.787 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:53.787 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:53.787 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:53.811 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145408813 duration=0
2020-06-14 16:36:54.260 1913-1913/? E/wifi_forwarder: RemoteConnection failed to initialize: RemoteConnection failed to open pipe
2020-06-14 16:36:54.371 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:36:54.373 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:36:54.377 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:36:54.377 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:36:54.788 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:54.788 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:55.788 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:55.788 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:56.788 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:56.788 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:57.788 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:57.788 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:58.788 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:58.788 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:36:58.813 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145413811 duration=0
2020-06-14 16:36:59.384 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:36:59.386 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:36:59.388 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:36:59.388 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:36:59.788 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:36:59.788 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:00.045 2248-2248/com.android.systemui D/KeyguardClockSwitch: Updating clock: 237
2020-06-14 16:37:00.788 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:00.789 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:01.789 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:01.789 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:02.789 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:02.789 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:03.789 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:03.789 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:03.814 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145418814 duration=0
2020-06-14 16:37:04.394 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:37:04.397 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:37:04.398 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:37:04.398 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:37:04.789 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:04.789 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:05.789 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:05.789 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:06.789 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:06.789 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:07.789 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:07.789 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:08.789 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:08.789 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:09.403 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:37:09.405 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:37:09.406 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:37:09.407 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:37:09.790 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:09.790 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:09.813 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145423814 duration=0
2020-06-14 16:37:10.789 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:10.789 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:11.789 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:11.789 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:12.789 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:12.789 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:13.790 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:13.790 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:14.413 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:37:14.417 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:37:14.418 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:37:14.418 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:37:14.789 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:14.790 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:14.815 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145429813 duration=0
2020-06-14 16:37:15.790 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:15.790 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:16.790 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:16.790 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:17.790 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:17.790 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:18.790 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:18.790 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:19.423 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:37:19.426 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:37:19.427 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:37:19.427 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:37:19.790 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:19.790 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:19.811 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145434816 duration=0
2020-06-14 16:37:20.791 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:20.791 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:21.791 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:21.791 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:22.791 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:22.791 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:23.791 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:23.791 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:24.434 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:37:24.437 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:37:24.443 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:37:24.443 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:37:24.791 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:24.791 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:24.816 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145439812 duration=0
2020-06-14 16:37:25.791 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:25.791 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:26.791 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:26.791 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:27.791 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:27.791 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:28.791 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:28.791 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:29.449 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:37:29.451 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:37:29.453 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:37:29.453 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:37:29.791 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:29.791 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:29.816 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145444816 duration=0
2020-06-14 16:37:30.792 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:30.792 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:31.792 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:31.792 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:32.792 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:32.792 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:33.792 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:33.792 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:34.459 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:37:34.462 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:37:34.465 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:37:34.465 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:37:34.793 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:34.793 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:34.818 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145449816 duration=0
2020-06-14 16:37:35.793 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:35.793 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:36.793 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:36.793 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:37.793 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:37.793 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:38.537 1893-1893/? E/netmgr: Failed to open QEMU pipe 'qemud:network': Invalid argument
2020-06-14 16:37:38.793 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:38.793 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:39.472 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:37:39.475 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:37:39.478 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:37:39.479 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:37:39.793 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:39.793 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:39.819 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145454818 duration=0
2020-06-14 16:37:40.793 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:40.793 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:41.793 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:41.793 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:42.793 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:42.793 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:43.793 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:43.793 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:44.484 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:37:44.487 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:37:44.489 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:37:44.489 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:37:44.793 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:44.793 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:44.820 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145459819 duration=0
2020-06-14 16:37:45.793 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:45.793 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:46.794 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:46.794 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:47.554 2013-3822/system_process E/memtrack: Couldn't load memtrack module
2020-06-14 16:37:47.554 2013-3822/system_process W/android.os.Debug: failed to get memory consumption info: -1
2020-06-14 16:37:47.794 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:47.794 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:48.794 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:48.794 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:49.496 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:37:49.498 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:37:49.502 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:37:49.502 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:37:49.794 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:49.795 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:49.820 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145464821 duration=0
2020-06-14 16:37:50.795 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:50.795 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:51.794 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:51.794 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:52.794 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:52.794 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:53.794 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:53.795 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:54.322 1913-1913/? E/wifi_forwarder: RemoteConnection failed to initialize: RemoteConnection failed to open pipe
2020-06-14 16:37:54.507 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:37:54.510 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:37:54.516 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:37:54.516 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:37:54.795 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:54.795 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:54.821 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145469820 duration=0
2020-06-14 16:37:55.796 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:55.796 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:56.795 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:56.795 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:57.795 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:57.795 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:58.795 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:58.795 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:59.522 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:37:59.524 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:37:59.529 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:37:59.529 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:37:59.796 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:37:59.796 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:37:59.821 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145474821 duration=0
2020-06-14 16:38:00.042 2248-2248/com.android.systemui D/KeyguardClockSwitch: Updating clock: 238
2020-06-14 16:38:00.795 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:00.795 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:01.795 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:01.795 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:02.795 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:02.796 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:03.795 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:03.796 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:04.536 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:38:04.537 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:38:04.540 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:38:04.540 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:38:04.796 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:04.796 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:04.822 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145479822 duration=0
2020-06-14 16:38:05.796 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:05.796 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:06.796 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:06.796 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:07.796 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:07.796 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:08.796 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:08.796 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:09.546 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:38:09.548 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:38:09.551 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:38:09.552 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:38:09.798 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:09.798 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:09.823 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145484822 duration=0
2020-06-14 16:38:10.797 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:10.797 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:11.797 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:11.797 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:12.797 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:12.797 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:13.797 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:13.797 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:14.557 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:38:14.560 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:38:14.563 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:38:14.563 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:38:14.797 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:14.797 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:14.823 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145489823 duration=0
2020-06-14 16:38:15.798 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:15.798 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:16.798 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:16.798 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:17.798 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:17.798 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:18.798 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:18.798 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:19.569 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:38:19.572 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:38:19.576 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:38:19.576 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:38:19.799 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:19.799 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:19.826 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145494823 duration=0
2020-06-14 16:38:20.799 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:20.799 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:21.799 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:21.799 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:22.800 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:22.801 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:23.800 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:23.800 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:24.580 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:38:24.581 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:38:24.583 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:38:24.583 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:38:24.800 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:24.800 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:24.826 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145499826 duration=0
2020-06-14 16:38:25.801 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:25.801 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:26.800 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:26.801 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:27.801 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:27.801 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:28.801 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:28.801 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:29.589 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:38:29.591 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:38:29.595 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:38:29.595 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:38:29.801 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:29.801 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:29.825 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145504826 duration=0
2020-06-14 16:38:30.801 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:30.801 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:31.801 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:31.801 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:32.801 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:32.801 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:33.801 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:33.801 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:34.600 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:38:34.603 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:38:34.608 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:38:34.609 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:38:34.801 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:34.801 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:34.826 2013-3822/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145509825 duration=0
2020-06-14 16:38:35.801 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:35.801 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:36.801 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:36.802 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:37.802 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:37.802 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:38.570 1893-1893/? E/netmgr: Failed to open QEMU pipe 'qemud:network': Invalid argument
2020-06-14 16:38:38.802 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:38.802 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:39.615 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:38:39.618 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:38:39.621 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:38:39.621 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:38:39.802 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:39.802 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:39.829 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145514826 duration=0
2020-06-14 16:38:40.802 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:40.802 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:41.802 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:41.802 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:42.802 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:42.802 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:43.801 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:43.801 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:44.627 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:38:44.630 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:38:44.634 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:38:44.634 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:38:44.802 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:44.802 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:45.802 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:45.802 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:45.827 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145519829 duration=0
2020-06-14 16:38:46.802 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:46.802 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:47.802 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:47.802 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:48.802 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:48.802 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:49.640 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:38:49.643 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:38:49.645 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:38:49.645 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:38:49.804 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:49.804 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:50.299 2013-3161/system_process D/WificondControl: Scan result ready event
2020-06-14 16:38:50.802 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:50.803 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:50.826 2013-3158/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145526990 duration=-1
2020-06-14 16:38:51.803 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:51.803 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:52.803 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:52.804 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:53.804 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:53.804 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:54.384 1913-1913/? E/wifi_forwarder: RemoteConnection failed to initialize: RemoteConnection failed to open pipe
2020-06-14 16:38:54.650 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:38:54.652 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:38:54.657 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:38:54.657 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:38:54.658 4855-19771/com.google.android.googlequicksearchbox I/DeviceStateChecker: DeviceStateChecker cancelled
2020-06-14 16:38:54.803 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:54.803 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:55.803 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:55.803 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:55.830 2013-3158/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145530826 duration=0
2020-06-14 16:38:56.804 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:56.804 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:57.804 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:57.805 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:58.805 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:58.805 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:38:59.663 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:38:59.665 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:38:59.667 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:38:59.667 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:38:59.805 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:38:59.805 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:00.012 2248-2248/com.android.systemui D/KeyguardClockSwitch: Updating clock: 239
2020-06-14 16:39:00.804 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:00.805 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:00.831 2013-3158/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145535831 duration=0
2020-06-14 16:39:01.805 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:01.805 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:02.805 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:02.805 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:03.804 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:03.804 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:04.674 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:39:04.679 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:39:04.680 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:39:04.680 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:39:04.806 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:04.806 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:05.806 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:05.806 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:05.832 2013-3158/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145540831 duration=0
2020-06-14 16:39:06.806 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:06.806 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:07.806 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:07.806 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:08.806 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:08.806 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:09.686 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:39:09.688 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:39:09.692 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:39:09.692 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:39:09.692 4855-19771/com.google.android.googlequicksearchbox I/DeviceStateChecker: DeviceStateChecker cancelled
2020-06-14 16:39:09.806 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:09.806 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:10.806 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:10.806 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:10.834 2013-3158/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145545833 duration=0
2020-06-14 16:39:11.806 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:11.807 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:12.806 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:12.806 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:13.806 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:13.806 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:14.697 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:39:14.699 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:39:14.703 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:39:14.703 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:39:14.704 4855-19771/com.google.android.googlequicksearchbox I/DeviceStateChecker: DeviceStateChecker cancelled
2020-06-14 16:39:14.807 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:14.807 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:15.807 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:15.807 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:15.838 2013-3158/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145550834 duration=0
2020-06-14 16:39:16.807 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:16.807 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:17.807 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:17.807 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:18.807 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:18.807 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:19.710 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:39:19.713 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:39:19.717 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:39:19.717 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:39:19.808 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:19.808 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:20.807 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:20.807 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:21.807 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:21.807 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:21.835 2013-3158/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145555838 duration=0
2020-06-14 16:39:22.808 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:22.808 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:23.808 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:23.808 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:24.723 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:39:24.727 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:39:24.728 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:39:24.728 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:39:24.808 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:24.808 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:25.809 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:25.809 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:26.808 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:26.808 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:26.836 2013-3158/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145562041 duration=-1592018841955
2020-06-14 16:39:27.808 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:27.809 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:28.809 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:28.809 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:29.733 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:39:29.736 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:39:29.740 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:39:29.741 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:39:29.809 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:29.809 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:30.809 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:30.809 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:31.809 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:31.809 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:31.835 2013-3158/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145566836 duration=0
2020-06-14 16:39:32.809 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:32.809 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:33.809 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:33.809 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:34.748 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:39:34.751 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:39:34.754 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:39:34.754 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:39:34.809 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:34.809 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:35.809 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:35.809 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:36.809 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:36.809 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:36.835 2013-3158/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145562041 duration=-1
2020-06-14 16:39:37.809 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:37.809 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:38.633 1893-1893/? E/netmgr: Failed to open QEMU pipe 'qemud:network': Invalid argument
2020-06-14 16:39:38.809 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:38.809 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:39.760 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:39:39.763 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:39:39.765 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:39:39.765 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:39:39.809 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:39.809 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:40.810 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:40.810 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:41.809 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:41.809 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:41.836 2013-3158/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145576836 duration=0
2020-06-14 16:39:42.809 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:42.809 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:43.810 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:43.810 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:44.772 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:39:44.775 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:39:44.779 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:39:44.779 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:39:44.811 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:44.811 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:45.809 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:45.810 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:46.810 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:46.810 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:46.835 2013-3158/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145581836 duration=0
2020-06-14 16:39:47.810 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:47.810 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:48.810 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:48.810 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:49.787 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:39:49.789 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:39:49.794 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:39:49.794 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:39:49.809 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:49.810 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:50.810 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:50.810 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:51.810 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:51.810 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:51.838 2013-3158/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145586835 duration=0
2020-06-14 16:39:52.809 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:52.810 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:53.810 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:53.810 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:54.447 1913-1913/? E/wifi_forwarder: RemoteConnection failed to initialize: RemoteConnection failed to open pipe
2020-06-14 16:39:54.800 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:39:54.803 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:39:54.806 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:39:54.807 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:39:54.810 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:54.810 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:55.810 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:55.810 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:56.810 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:56.810 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:56.837 2013-3158/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145591838 duration=0
2020-06-14 16:39:57.810 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:57.810 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:58.811 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:58.811 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:59.813 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:39:59.814 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:39:59.814 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:39:59.817 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:39:59.821 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:39:59.821 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:40:00.046 2248-2248/com.android.systemui D/KeyguardClockSwitch: Updating clock: 240
2020-06-14 16:40:00.811 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:00.811 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:01.811 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:01.811 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:01.837 2013-3158/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145596837 duration=0
2020-06-14 16:40:02.811 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:02.811 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:03.812 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:03.812 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:04.812 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:04.812 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:04.829 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:40:04.831 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:40:04.835 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:40:04.836 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:40:04.836 4855-19771/com.google.android.googlequicksearchbox I/DeviceStateChecker: DeviceStateChecker cancelled
2020-06-14 16:40:05.811 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:05.812 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:06.812 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:06.812 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:06.837 2013-3158/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145601837 duration=0
2020-06-14 16:40:07.812 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:07.812 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:08.812 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:08.812 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:09.812 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:09.812 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:09.840 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:40:09.843 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:40:09.847 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:40:09.847 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:40:09.848 4855-19771/com.google.android.googlequicksearchbox I/DeviceStateChecker: DeviceStateChecker cancelled
2020-06-14 16:40:10.812 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:10.812 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:11.812 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:11.812 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:11.839 2013-3158/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145606837 duration=0
2020-06-14 16:40:12.812 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:12.812 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:13.813 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:13.813 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:14.813 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:14.813 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:14.853 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:40:14.855 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:40:14.860 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:40:14.860 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:40:14.860 4855-19771/com.google.android.googlequicksearchbox I/DeviceStateChecker: DeviceStateChecker cancelled
2020-06-14 16:40:15.813 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:15.813 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:16.813 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:16.813 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:16.835 2013-3158/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145611839 duration=0
2020-06-14 16:40:17.813 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:17.813 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:18.814 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:18.814 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:19.814 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:19.814 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:19.866 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:40:19.869 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:40:19.873 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:40:19.873 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:40:20.815 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:20.815 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:21.815 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:21.815 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:21.840 2013-3158/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145616835 duration=0
2020-06-14 16:40:22.815 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:22.815 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:23.815 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:23.815 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:24.815 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:24.815 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:24.880 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:40:24.883 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:40:24.888 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:40:24.888 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:40:25.815 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:25.815 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:26.815 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:26.815 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:26.840 2013-3158/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145621841 duration=0
2020-06-14 16:40:27.815 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:27.815 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:28.816 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:28.816 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:29.815 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:29.816 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:29.894 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:40:29.896 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:40:29.899 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:40:29.899 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:40:30.816 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:30.816 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:31.816 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:31.816 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:31.843 2013-3158/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145626841 duration=0
2020-06-14 16:40:32.816 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:32.817 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:33.816 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:33.816 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:34.817 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:34.817 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:34.905 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:40:34.907 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:40:34.912 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:40:34.912 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:40:35.817 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:35.818 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:36.817 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:36.817 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:36.843 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145631843 duration=0
2020-06-14 16:40:37.817 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:37.817 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:38.696 1893-1893/? E/netmgr: Failed to open QEMU pipe 'qemud:network': Invalid argument
2020-06-14 16:40:38.817 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:38.817 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:39.817 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:39.818 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:39.916 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:40:39.918 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:40:39.923 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:40:39.923 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:40:39.924 4855-19771/com.google.android.googlequicksearchbox W/DeviceStateChecker: stopped because hotword detection is stopped but cancel is not called.
2020-06-14 16:40:40.817 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:40.817 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:41.817 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:41.817 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:41.844 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145636843 duration=0
2020-06-14 16:40:42.817 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:42.817 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:43.818 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:43.818 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:44.817 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:44.817 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:44.929 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:40:44.931 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:40:44.935 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:40:44.935 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:40:44.935 4855-19771/com.google.android.googlequicksearchbox I/DeviceStateChecker: DeviceStateChecker cancelled
2020-06-14 16:40:45.818 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:45.818 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:46.818 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:46.818 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:46.844 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145641844 duration=0
2020-06-14 16:40:47.818 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:47.818 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:48.818 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:48.818 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:49.818 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:49.818 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:49.941 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:40:49.944 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:40:49.948 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:40:49.949 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:40:50.818 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:50.818 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:51.818 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:51.819 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:51.845 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145646844 duration=0
2020-06-14 16:40:52.818 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:52.818 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:53.818 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:53.819 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:54.508 1913-1913/? E/wifi_forwarder: RemoteConnection failed to initialize: RemoteConnection failed to open pipe
2020-06-14 16:40:54.818 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:54.818 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:54.954 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:40:54.957 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:40:54.959 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:40:54.959 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:40:55.819 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:55.819 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:56.819 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:56.819 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:56.846 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145651846 duration=0
2020-06-14 16:40:57.819 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:57.819 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:58.819 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:58.819 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:59.819 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:40:59.819 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:40:59.965 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:40:59.967 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:40:59.968 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:40:59.968 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:41:00.015 2248-2248/com.android.systemui D/KeyguardClockSwitch: Updating clock: 241
2020-06-14 16:41:00.293 2013-2025/system_process I/system_server: Background young concurrent copying GC freed 162284(5488KB) AllocSpace objects, 2(72KB) LOS objects, 19% free, 22MB/27MB, paused 1.931ms total 285.144ms
2020-06-14 16:41:00.819 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:00.819 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:01.819 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:01.819 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:01.845 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145656846 duration=0
2020-06-14 16:41:02.819 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:02.819 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:03.819 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:03.819 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:04.819 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:04.819 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:04.974 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:41:04.977 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:41:04.979 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:41:04.979 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:41:05.819 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:05.819 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:06.819 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:06.819 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:07.820 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:07.821 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:07.846 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145661846 duration=0
2020-06-14 16:41:08.820 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:08.820 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:09.821 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:09.821 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:09.985 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:41:09.988 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:41:09.991 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:41:09.991 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:41:10.821 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:10.821 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:11.821 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:11.821 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:12.821 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:12.821 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:12.844 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145667846 duration=0
2020-06-14 16:41:13.821 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:13.821 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:14.821 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:14.821 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:14.997 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:41:15.000 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:41:15.006 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:41:15.006 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:41:15.821 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:15.822 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:16.821 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:16.821 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:17.822 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:17.822 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:17.847 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145672845 duration=0
2020-06-14 16:41:18.822 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:18.822 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:19.822 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:19.822 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:20.012 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:41:20.015 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:41:20.019 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:41:20.019 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:41:20.822 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:20.822 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:21.822 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:21.822 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:22.822 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:22.823 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:23.823 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:23.823 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:23.850 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145677848 duration=0
2020-06-14 16:41:24.823 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:24.823 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:25.024 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:41:25.027 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:41:25.029 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:41:25.029 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:41:25.822 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:25.823 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:26.822 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:26.823 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:27.823 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:27.823 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:28.823 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:28.823 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:28.848 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145683850 duration=0
2020-06-14 16:41:29.823 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:29.823 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:30.034 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:41:30.036 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:41:30.041 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:41:30.041 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:41:30.824 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:30.824 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:31.824 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:31.824 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:32.824 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:32.824 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:33.824 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:33.824 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:33.848 2013-3161/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145688849 duration=0
2020-06-14 16:41:34.824 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:34.824 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:35.047 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:41:35.050 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:41:35.054 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:41:35.054 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:41:35.825 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:35.825 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:36.825 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:36.825 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:37.825 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:37.825 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:38.758 1893-1893/? E/netmgr: Failed to open QEMU pipe 'qemud:network': Invalid argument
2020-06-14 16:41:38.825 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:38.825 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:38.850 2013-3158/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145693848 duration=0
2020-06-14 16:41:39.825 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:39.825 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:40.059 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:41:40.062 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:41:40.067 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:41:40.067 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:41:40.825 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:40.825 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:41.825 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:41.825 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:42.825 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:42.825 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:43.825 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:43.825 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:43.850 2013-3158/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145698850 duration=0
2020-06-14 16:41:44.826 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:44.826 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:45.074 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:41:45.078 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:41:45.079 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:41:45.079 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:41:45.826 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:45.826 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:46.826 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:46.826 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:47.826 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:47.826 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:48.826 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:48.826 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:48.849 2013-3158/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145703851 duration=0
2020-06-14 16:41:49.826 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:49.826 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:50.086 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:41:50.090 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:41:50.091 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:41:50.091 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:41:50.826 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:50.826 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:51.826 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:51.826 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:52.826 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:52.826 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:53.826 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:53.826 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:54.571 1913-1913/? E/wifi_forwarder: RemoteConnection failed to initialize: RemoteConnection failed to open pipe
2020-06-14 16:41:54.827 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:54.827 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:54.853 2013-3158/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145708849 duration=0
2020-06-14 16:41:55.097 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:41:55.100 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:41:55.105 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:41:55.105 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:41:55.105 4855-19771/com.google.android.googlequicksearchbox I/DeviceStateChecker: DeviceStateChecker cancelled
2020-06-14 16:41:55.409 2013-2054/system_process E/memtrack: Couldn't load memtrack module
2020-06-14 16:41:55.409 2013-2054/system_process W/android.os.Debug: failed to get memory consumption info: -1
2020-06-14 16:41:55.627 2561-12053/com.google.android.gms I/Checkin: [EventLogChimeraService] Opted in for usage reporting: false
2020-06-14 16:41:55.628 2561-12053/com.google.android.gms I/Checkin: [EventLogChimeraService] Aggregate from 1592141579070 (log), 1592141579070 (data)
2020-06-14 16:41:55.827 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:55.827 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:56.493 2013-3158/system_process I/DropBoxManagerService: add tag=event_data isTagEnabled=true flags=0x2
2020-06-14 16:41:56.498 2013-2057/system_process W/BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.DROPBOX_ENTRY_ADDED flg=0x10 (has extras) } to com.google.android.gms/.stats.service.DropBoxEntryAddedReceiver
2020-06-14 16:41:56.499 2013-2057/system_process W/BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.DROPBOX_ENTRY_ADDED flg=0x10 (has extras) } to com.google.android.gms/.chimera.GmsIntentOperationService$PersistentTrustedReceiver
2020-06-14 16:41:56.827 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:56.827 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:57.314 2811-2811/com.google.android.inputmethod.latin I/FirebaseJobDispatcher: onStartJob(): PeriodicContextualMetrics.
2020-06-14 16:41:57.315 2811-2866/com.google.android.inputmethod.latin I/PContextMetricsRunner: call()
2020-06-14 16:41:57.315 2811-2866/com.google.android.inputmethod.latin I/PContextMetricsRunner: call() : Finished in 0 ms
2020-06-14 16:41:57.317 2811-2811/com.google.android.inputmethod.latin I/FirebaseJobDispatcher: Task: PeriodicContextualMetrics successes.
2020-06-14 16:41:57.623 2229-18549/com.google.android.gms.persistent W/Conscrypt: Could not set socket write timeout: java.net.SocketException: Socket closed
2020-06-14 16:41:57.624 2229-18549/com.google.android.gms.persistent W/Conscrypt: at com.google.android.gms.org.conscrypt.Platform.setSocketWriteTimeout(:com.google.android.gms@19275022@19.2.75 (040700-269183835):2)
2020-06-14 16:41:57.624 2229-18549/com.google.android.gms.persistent W/Conscrypt: at com.google.android.gms.org.conscrypt.ConscryptFileDescriptorSocket.setSoWriteTimeout(:com.google.android.gms@19275022@19.2.75 (040700-269183835):2)
2020-06-14 16:41:57.672 2229-18549/com.google.android.gms.persistent W/Conscrypt: Could not set socket write timeout: java.net.SocketException: Socket closed
2020-06-14 16:41:57.673 2229-18549/com.google.android.gms.persistent W/Conscrypt: at com.google.android.gms.org.conscrypt.Platform.setSocketWriteTimeout(:com.google.android.gms@19275022@19.2.75 (040700-269183835):2)
2020-06-14 16:41:57.673 2229-18549/com.google.android.gms.persistent W/Conscrypt: at com.google.android.gms.org.conscrypt.ConscryptFileDescriptorSocket.setSoWriteTimeout(:com.google.android.gms@19275022@19.2.75 (040700-269183835):2)
2020-06-14 16:41:57.827 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:57.827 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:57.958 2229-18549/com.google.android.gms.persistent W/Conscrypt: Could not set socket write timeout: java.net.SocketException: Socket closed
2020-06-14 16:41:57.959 2229-18549/com.google.android.gms.persistent W/Conscrypt: at com.google.android.gms.org.conscrypt.Platform.setSocketWriteTimeout(:com.google.android.gms@19275022@19.2.75 (040700-269183835):2)
2020-06-14 16:41:57.959 2229-18549/com.google.android.gms.persistent W/Conscrypt: at com.google.android.gms.org.conscrypt.ConscryptFileDescriptorSocket.setSoWriteTimeout(:com.google.android.gms@19275022@19.2.75 (040700-269183835):2)
2020-06-14 16:41:57.976 2229-18549/com.google.android.gms.persistent W/Conscrypt: Could not set socket write timeout: java.net.SocketException: Socket closed
2020-06-14 16:41:57.976 2229-18549/com.google.android.gms.persistent W/Conscrypt: at com.google.android.gms.org.conscrypt.Platform.setSocketWriteTimeout(:com.google.android.gms@19275022@19.2.75 (040700-269183835):2)
2020-06-14 16:41:57.976 2229-18549/com.google.android.gms.persistent W/Conscrypt: at com.google.android.gms.org.conscrypt.ConscryptFileDescriptorSocket.setSoWriteTimeout(:com.google.android.gms@19275022@19.2.75 (040700-269183835):2)
2020-06-14 16:41:58.084 2229-18549/com.google.android.gms.persistent I/Funnel: Init: funnel is disabled, skipping initialization.
2020-06-14 16:41:58.827 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:58.828 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:59.359 2013-3161/system_process D/WificondControl: Scan result ready event
2020-06-14 16:41:59.828 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:41:59.828 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:41:59.856 2013-3663/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145715987 duration=-1
2020-06-14 16:42:00.039 2248-2248/com.android.systemui D/KeyguardClockSwitch: Updating clock: 242
2020-06-14 16:42:00.123 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:42:00.127 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:42:00.134 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:42:00.134 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:42:00.228 2248-2267/com.android.systemui I/ndroid.systemu: Background young concurrent copying GC freed 29897(1739KB) AllocSpace objects, 0(0B) LOS objects, 17% free, 8573KB/10MB, paused 560us total 185.109ms
2020-06-14 16:42:00.828 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:00.828 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:01.829 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:01.829 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:02.829 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:02.829 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:03.828 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:03.828 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:04.828 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:04.828 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:04.853 2013-3663/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145719856 duration=0
2020-06-14 16:42:05.140 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:42:05.143 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:42:05.146 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:42:05.146 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:42:05.829 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:05.829 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:06.828 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:06.828 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:07.828 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:07.829 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:08.828 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:08.829 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:09.829 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:09.829 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:09.859 2013-3663/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145724853 duration=0
2020-06-14 16:42:10.153 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:42:10.155 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:42:10.160 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:42:10.160 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:42:10.828 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:10.828 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:11.828 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:11.829 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:12.828 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:12.829 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:13.828 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:13.828 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:14.828 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:14.828 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:15.164 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:42:15.166 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:42:15.167 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:42:15.167 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:42:15.167 4855-19771/com.google.android.googlequicksearchbox I/DeviceStateChecker: DeviceStateChecker cancelled
2020-06-14 16:42:15.829 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:15.829 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:15.841 2013-3663/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145729860 duration=0
2020-06-14 16:42:16.829 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:16.829 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:17.829 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:17.829 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:18.829 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:18.829 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:19.830 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:19.830 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:20.171 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:42:20.173 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:42:20.174 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:42:20.174 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:42:20.830 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:20.830 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:20.866 2013-3156/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145735841 duration=0
2020-06-14 16:42:21.830 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:21.830 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:22.830 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:22.830 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:23.830 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:23.831 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:24.830 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:24.830 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:25.180 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:42:25.183 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:42:25.186 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:42:25.187 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:42:25.830 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:25.830 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:25.856 2013-4019/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145740867 duration=0
2020-06-14 16:42:26.831 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:26.831 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:27.831 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:27.831 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:28.830 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:28.831 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:29.831 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:29.831 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:30.193 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:42:30.195 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:42:30.199 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:42:30.199 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:42:30.831 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:30.831 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:30.856 2013-4019/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145745856 duration=0
2020-06-14 16:42:31.831 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:31.831 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:32.831 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:32.831 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:33.831 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:33.832 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:34.831 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:34.832 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:35.205 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:42:35.207 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:42:35.211 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:42:35.211 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:42:35.832 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:35.833 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:35.854 2013-3156/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145751033 duration=-1592018841960
2020-06-14 16:42:36.832 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:36.832 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:37.831 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:37.832 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:38.768 1893-1893/? E/netmgr: Failed to open QEMU pipe 'qemud:network': Invalid argument
2020-06-14 16:42:38.832 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:38.832 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:39.832 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:39.832 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:40.215 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:42:40.216 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:42:40.217 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:42:40.217 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:42:40.218 4855-19771/com.google.android.googlequicksearchbox I/DeviceStateChecker: DeviceStateChecker cancelled
2020-06-14 16:42:40.832 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:40.832 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:41.832 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:41.832 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:41.856 2013-4019/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145751033 duration=-1
2020-06-14 16:42:42.832 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:42.832 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:43.832 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:43.833 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:44.832 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:44.832 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:45.223 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:42:45.224 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:42:45.228 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:42:45.229 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:42:45.833 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:45.833 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:46.833 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:46.833 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:46.856 2013-3156/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145761857 duration=0
2020-06-14 16:42:47.833 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:47.833 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:48.022 2013-3156/system_process E/memtrack: Couldn't load memtrack module
2020-06-14 16:42:48.022 2013-3156/system_process W/android.os.Debug: failed to get memory consumption info: -1
2020-06-14 16:42:48.833 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:48.833 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:49.833 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:49.833 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:50.235 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:42:50.236 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:42:50.241 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:42:50.241 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:42:50.833 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:50.834 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:51.833 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:51.834 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:51.860 2013-3156/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145766856 duration=0
2020-06-14 16:42:52.834 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:52.834 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:53.834 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:53.834 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:54.578 1913-1913/? E/wifi_forwarder: RemoteConnection failed to initialize: RemoteConnection failed to open pipe
2020-06-14 16:42:54.834 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:54.834 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:55.247 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:42:55.249 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:42:55.253 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:42:55.253 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:42:55.834 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:55.834 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:56.834 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:56.834 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:56.860 2013-4019/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145771860 duration=0
2020-06-14 16:42:57.834 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:57.834 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:58.834 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:58.834 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:42:59.834 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:42:59.834 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:00.042 2248-2248/com.android.systemui D/KeyguardClockSwitch: Updating clock: 243
2020-06-14 16:43:00.264 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:43:00.264 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:43:00.265 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:43:00.265 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:43:00.835 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:00.835 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:01.835 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:01.835 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:01.859 2013-3156/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145776860 duration=0
2020-06-14 16:43:02.835 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:02.835 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:03.835 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:03.835 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:04.835 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:04.835 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:05.272 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:43:05.274 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:43:05.278 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:43:05.278 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:43:05.279 4855-19771/com.google.android.googlequicksearchbox I/DeviceStateChecker: DeviceStateChecker cancelled
2020-06-14 16:43:05.835 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:05.835 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:06.835 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:06.835 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:07.835 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:07.835 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:07.860 2013-4019/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145781859 duration=0
2020-06-14 16:43:08.836 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:08.836 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:09.836 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:09.836 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:10.286 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:43:10.289 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:43:10.292 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:43:10.292 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:43:10.836 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:10.836 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:11.836 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:11.836 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:12.836 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:12.836 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:12.860 2013-4019/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145787860 duration=0
2020-06-14 16:43:13.836 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:13.837 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:14.837 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:14.837 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:15.299 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:43:15.300 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:43:15.302 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:43:15.302 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:43:15.837 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:15.837 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:16.837 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:16.837 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:17.837 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:17.837 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:17.860 2013-3156/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145792860 duration=0
2020-06-14 16:43:18.837 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:18.837 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:19.837 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:19.838 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:20.309 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:43:20.311 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:43:20.315 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:43:20.315 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:43:20.837 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:20.838 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:21.838 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:21.838 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:22.838 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:22.838 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:22.862 2013-3156/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145797861 duration=0
2020-06-14 16:43:23.838 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:23.838 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:24.838 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:24.838 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:25.321 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:43:25.322 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:43:25.326 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:43:25.326 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:43:25.838 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:25.838 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:26.839 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:26.839 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:27.839 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:27.839 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:27.865 2013-4019/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145802862 duration=0
2020-06-14 16:43:28.839 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:28.839 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:29.839 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:29.839 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:30.332 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:43:30.334 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:43:30.339 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:43:30.340 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:43:30.341 4855-19771/com.google.android.googlequicksearchbox I/DeviceStateChecker: DeviceStateChecker cancelled
2020-06-14 16:43:30.839 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:30.839 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:31.839 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:31.839 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:32.839 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:32.839 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:32.865 2013-3156/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145807865 duration=0
2020-06-14 16:43:33.839 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:33.840 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:34.840 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:34.840 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:35.347 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:43:35.349 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:43:35.353 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:43:35.353 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:43:35.840 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:35.840 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:36.841 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:36.841 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:37.840 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:37.841 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:37.865 2013-4019/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145812865 duration=0
2020-06-14 16:43:38.819 1893-1893/? E/netmgr: Failed to open QEMU pipe 'qemud:network': Invalid argument
2020-06-14 16:43:38.840 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:38.841 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:39.840 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:39.840 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:40.360 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:43:40.362 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:43:40.366 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:43:40.366 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:43:40.840 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:40.841 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:41.841 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:41.841 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:42.841 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:42.842 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:42.865 2013-3156/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145817865 duration=0
2020-06-14 16:43:43.841 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:43.841 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:44.842 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:44.842 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:45.373 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:43:45.374 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:43:45.379 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:43:45.379 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:43:45.842 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:45.842 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:46.843 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:46.843 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:47.843 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:47.843 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:48.843 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:48.843 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:48.867 2013-4019/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145822866 duration=0
2020-06-14 16:43:49.843 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:49.843 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:50.386 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:43:50.387 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:43:50.392 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:43:50.392 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:43:50.843 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:50.843 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:51.843 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:51.843 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:52.843 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:52.843 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:53.843 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:53.844 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:53.867 2013-4019/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145828868 duration=0
2020-06-14 16:43:54.580 1913-1913/? E/wifi_forwarder: RemoteConnection failed to initialize: RemoteConnection failed to open pipe
2020-06-14 16:43:54.843 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:54.843 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:55.398 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:43:55.400 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:43:55.404 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:43:55.404 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:43:55.843 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:55.843 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:56.843 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:56.844 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:57.843 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:57.843 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:58.843 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:58.843 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:43:58.868 2013-3156/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145833868 duration=0
2020-06-14 16:43:59.843 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:43:59.843 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:00.044 2248-2248/com.android.systemui D/KeyguardClockSwitch: Updating clock: 244
2020-06-14 16:44:00.408 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:44:00.409 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:44:00.410 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:44:00.410 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:44:00.843 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:00.843 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:01.843 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:01.843 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:02.843 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:02.843 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:03.844 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:03.844 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:03.872 2013-3156/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145838868 duration=0
2020-06-14 16:44:04.844 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:04.844 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:05.416 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:44:05.417 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:44:05.421 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:44:05.421 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:44:05.844 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:05.844 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:06.844 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:06.845 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:07.845 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:07.845 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:08.845 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:08.845 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:09.845 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:09.845 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:09.869 2013-4019/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145843872 duration=0
2020-06-14 16:44:10.428 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:44:10.430 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:44:10.433 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:44:10.433 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:44:10.846 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:10.846 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:11.845 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:11.845 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:12.845 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:12.845 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:13.845 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:13.845 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:14.845 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:14.845 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:14.871 2013-3156/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145849869 duration=0
2020-06-14 16:44:15.440 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:44:15.442 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:44:15.445 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:44:15.446 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:44:15.845 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:15.845 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:16.846 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:16.846 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:17.846 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:17.846 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:18.847 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:18.847 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:19.847 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:19.847 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:19.868 2013-3156/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145854871 duration=0
2020-06-14 16:44:20.450 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:44:20.451 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:44:20.452 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:44:20.452 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:44:20.846 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:20.847 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:21.846 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:21.847 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:22.846 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:22.847 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:23.846 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:23.847 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:24.846 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:24.847 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:25.459 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:44:25.460 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:44:25.464 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:44:25.464 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:44:25.847 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:25.847 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:25.873 2013-3156/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145859868 duration=0
2020-06-14 16:44:26.848 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:26.848 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:27.848 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:27.848 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:28.848 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:28.848 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:29.848 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:29.848 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:30.470 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:44:30.472 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:44:30.475 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:44:30.475 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:44:30.848 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:30.848 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:30.873 2013-4019/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145865873 duration=0
2020-06-14 16:44:31.848 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:31.849 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:32.848 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:32.849 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:33.848 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:33.849 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:34.848 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:34.849 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:35.481 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:44:35.482 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:44:35.486 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:44:35.487 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:44:35.849 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:35.849 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:35.875 2013-3156/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145870873 duration=0
2020-06-14 16:44:36.849 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:36.849 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:37.849 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:37.849 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:38.825 1893-1893/? E/netmgr: Failed to open QEMU pipe 'qemud:network': Invalid argument
2020-06-14 16:44:38.849 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:38.849 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:39.849 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:39.850 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:40.493 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:44:40.495 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:44:40.499 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:44:40.499 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:44:40.849 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:40.849 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:41.849 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:41.849 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:41.874 2013-4019/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145875876 duration=0
2020-06-14 16:44:42.849 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:42.849 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:43.849 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:43.850 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:44.849 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:44.850 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:45.504 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:44:45.506 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:44:45.510 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:44:45.510 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:44:45.850 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:45.850 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:46.850 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:46.850 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:46.878 2013-3156/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145881874 duration=0
2020-06-14 16:44:47.850 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:47.850 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:48.850 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:48.851 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:49.850 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:49.851 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:50.517 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:44:50.518 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:44:50.522 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:44:50.522 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:44:50.851 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:50.851 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:51.851 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:51.851 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:51.875 2013-4019/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145886878 duration=0
2020-06-14 16:44:52.851 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:52.851 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:53.851 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:53.851 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:54.598 1913-1913/? E/wifi_forwarder: RemoteConnection failed to initialize: RemoteConnection failed to open pipe
2020-06-14 16:44:54.851 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:54.852 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:55.528 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:44:55.530 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:44:55.534 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:44:55.534 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:44:55.852 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:55.852 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:56.012 2013-2054/system_process E/memtrack: Couldn't load memtrack module
2020-06-14 16:44:56.015 2013-2054/system_process W/android.os.Debug: failed to get memory consumption info: -1
2020-06-14 16:44:56.851 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:56.851 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:57.851 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:57.852 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:57.876 2013-2033/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145896624 duration=-1
2020-06-14 16:44:58.851 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:58.852 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:59.851 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:44:59.852 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:44:59.950 2013-2033/system_process D/WificondControl: Scan result ready event
2020-06-14 16:45:00.028 2248-2248/com.android.systemui D/KeyguardClockSwitch: Updating clock: 245
2020-06-14 16:45:00.540 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:45:00.542 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:45:00.546 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:45:00.546 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:45:00.852 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:00.852 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:01.852 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:01.852 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:02.852 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:02.852 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:02.877 2013-2033/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145897876 duration=0
2020-06-14 16:45:03.852 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:03.852 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:04.853 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:04.853 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:05.552 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:45:05.555 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:45:05.558 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:45:05.558 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:45:05.852 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:05.853 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:06.852 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:06.853 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:07.852 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:07.853 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:07.880 2013-2033/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145902877 duration=0
2020-06-14 16:45:08.852 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:08.853 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:09.852 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:09.853 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:10.564 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:45:10.565 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:45:10.569 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:45:10.570 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:45:10.853 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:10.853 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:11.853 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:11.853 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:12.853 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:12.853 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:12.879 2013-2033/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145907880 duration=0
2020-06-14 16:45:13.853 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:13.853 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:14.853 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:14.853 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:15.576 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:45:15.577 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:45:15.581 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:45:15.582 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:45:15.853 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:15.853 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:16.853 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:16.853 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:17.853 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:17.853 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:18.854 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:18.854 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:18.880 2013-2033/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145912879 duration=0
2020-06-14 16:45:19.854 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:19.854 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:20.589 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:45:20.591 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:45:20.594 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:45:20.594 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:45:20.854 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:20.854 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:21.854 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:21.854 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:22.854 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:22.855 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:23.854 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:23.855 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:23.881 2013-2033/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145918880 duration=0
2020-06-14 16:45:24.854 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:24.855 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:25.601 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:45:25.602 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:45:25.606 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:45:25.606 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:45:25.855 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:25.855 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:26.855 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:26.855 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:27.855 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:27.855 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:28.855 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:28.856 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:28.879 2013-4019/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145923881 duration=0
2020-06-14 16:45:29.855 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:29.855 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:30.613 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:45:30.614 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:45:30.618 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:45:30.618 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:45:30.855 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:30.855 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:31.855 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:31.855 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:32.856 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:32.856 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:33.855 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:33.856 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:33.880 2013-2033/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145931645 duration=-1592018841986
2020-06-14 16:45:34.855 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:34.856 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:35.624 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:45:35.626 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:45:35.631 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:45:35.631 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:45:35.855 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:35.856 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:36.855 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:36.856 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:37.856 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:37.856 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:38.839 1893-1893/? E/netmgr: Failed to open QEMU pipe 'qemud:network': Invalid argument
2020-06-14 16:45:38.856 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:38.856 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:38.883 2013-2033/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145933880 duration=0
2020-06-14 16:45:39.856 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:39.856 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:40.636 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:45:40.639 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:45:40.644 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:45:40.644 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:45:40.645 4855-19771/com.google.android.googlequicksearchbox I/DeviceStateChecker: DeviceStateChecker cancelled
2020-06-14 16:45:40.856 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:40.856 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:41.856 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:41.857 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:42.856 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:42.856 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:43.856 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:43.857 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:43.882 2013-2033/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145931645 duration=-1
2020-06-14 16:45:44.857 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:44.857 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:45.650 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:45:45.653 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:45:45.656 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:45:45.656 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:45:45.857 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:45.857 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:46.717 2013-4019/system_process I/WifiService: acquireWifiLock uid=10101 lockMode=2
2020-06-14 16:45:46.857 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:46.857 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:47.549 2013-4019/system_process D/WificondControl: Scan result ready event
2020-06-14 16:45:47.575 2013-4019/system_process I/WifiService: releaseWifiLock uid=10101
2020-06-14 16:45:47.857 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:47.857 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:48.857 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:48.857 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:48.884 2013-2033/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145947319 duration=-1
2020-06-14 16:45:49.858 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:49.858 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:50.663 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:45:50.665 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:45:50.668 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:45:50.668 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:45:50.858 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:50.858 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:51.857 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:51.858 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:52.858 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:52.858 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:53.858 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:53.858 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:53.884 2013-2033/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145948884 duration=0
2020-06-14 16:45:54.611 1913-1913/? E/wifi_forwarder: RemoteConnection failed to initialize: RemoteConnection failed to open pipe
2020-06-14 16:45:54.857 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:54.858 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:55.675 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:45:55.677 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:45:55.680 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:45:55.680 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:45:55.858 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:55.858 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:56.858 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:56.859 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:57.858 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:57.858 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:58.858 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:58.858 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:59.859 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:45:59.859 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:45:59.885 2013-2033/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145953884 duration=0
2020-06-14 16:46:00.012 2248-2248/com.android.systemui D/KeyguardClockSwitch: Updating clock: 246
2020-06-14 16:46:00.686 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:46:00.688 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:46:00.692 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:46:00.692 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:46:00.858 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:00.858 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:01.861 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:01.861 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:02.859 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:02.860 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:03.860 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:03.861 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:04.860 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:04.860 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:04.886 2013-2033/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145959885 duration=0
2020-06-14 16:46:05.699 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:46:05.701 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:46:05.704 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:46:05.705 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:46:05.860 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:05.860 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:06.860 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:06.860 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:07.860 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:07.860 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:08.860 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:08.860 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:09.860 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:09.860 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:09.889 2013-2033/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145964886 duration=0
2020-06-14 16:46:10.712 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:46:10.714 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:46:10.717 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:46:10.717 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:46:10.860 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:10.860 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:11.860 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:11.861 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:12.861 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:12.861 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:13.861 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:13.861 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:14.861 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:14.861 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:14.889 2013-2033/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145969889 duration=0
2020-06-14 16:46:15.725 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:46:15.727 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:46:15.729 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:46:15.729 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:46:15.862 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:15.862 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:16.862 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:16.862 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:17.862 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:17.862 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:18.862 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:18.862 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:19.862 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:19.863 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:19.891 2013-2033/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145974889 duration=0
2020-06-14 16:46:20.404 2013-2054/system_process I/UsageStatsService: User[0] Flushing usage stats to disk
2020-06-14 16:46:20.450 2013-2054/system_process E/AppIdleHistory: Error writing app idle file for user 0
2020-06-14 16:46:20.737 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:46:20.740 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:46:20.743 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:46:20.744 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:46:20.863 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:20.863 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:21.862 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:21.862 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:22.863 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:22.863 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:23.862 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:23.863 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:24.862 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:24.862 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:24.890 2013-2033/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145982351 duration=-1592018841975
2020-06-14 16:46:25.749 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:46:25.751 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:46:25.754 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:46:25.755 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:46:25.863 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:25.863 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:26.863 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:26.863 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:27.863 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:27.863 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:28.863 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:28.863 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:29.863 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:29.863 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:29.890 2013-2033/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145984890 duration=0
2020-06-14 16:46:30.759 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:46:30.760 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:46:30.762 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:46:30.763 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:46:30.863 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:30.863 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:31.863 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:31.863 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:32.863 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:32.863 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:33.864 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:33.864 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:34.864 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:34.864 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:35.767 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:46:35.768 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:46:35.771 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:46:35.772 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:46:35.863 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:35.864 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:35.892 2013-2033/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145982351 duration=-1
2020-06-14 16:46:36.864 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:36.864 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:37.865 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:37.865 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:38.841 1893-1893/? E/netmgr: Failed to open QEMU pipe 'qemud:network': Invalid argument
2020-06-14 16:46:38.865 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:38.865 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:39.864 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:39.865 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:40.776 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:46:40.777 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:46:40.779 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:46:40.779 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:46:40.865 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:40.865 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:40.892 2013-2033/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592145995892 duration=0
2020-06-14 16:46:41.865 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:41.865 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:42.865 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:42.865 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:43.866 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:43.866 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:44.865 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:44.865 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:45.785 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:46:45.788 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:46:45.791 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:46:45.791 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:46:45.865 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:45.865 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:45.893 2013-2033/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146000893 duration=0
2020-06-14 16:46:46.865 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:46.865 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:47.865 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:47.866 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:48.865 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:48.866 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:49.865 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:49.866 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:50.797 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:46:50.799 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:46:50.802 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:46:50.803 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:46:50.865 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:50.866 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:51.866 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:51.866 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:51.878 2013-2033/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146005893 duration=0
2020-06-14 16:46:52.866 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:52.867 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:53.866 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:53.867 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:54.622 1913-1913/? E/wifi_forwarder: RemoteConnection failed to initialize: RemoteConnection failed to open pipe
2020-06-14 16:46:54.866 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:54.866 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:55.808 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:46:55.810 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:46:55.812 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:46:55.813 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:46:55.866 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:55.866 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:56.866 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:56.867 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:56.894 2013-2033/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146011878 duration=0
2020-06-14 16:46:57.867 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:57.867 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:58.083 2013-2025/system_process I/system_server: Background young concurrent copying GC freed 132471(4992KB) AllocSpace objects, 10(372KB) LOS objects, 18% free, 22MB/27MB, paused 1.243ms total 165.302ms
2020-06-14 16:46:58.866 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:58.867 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:46:59.867 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:46:59.867 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:00.038 2248-2248/com.android.systemui D/KeyguardClockSwitch: Updating clock: 247
2020-06-14 16:47:00.219 2248-2267/com.android.systemui I/ndroid.systemu: Background young concurrent copying GC freed 29091(1727KB) AllocSpace objects, 0(0B) LOS objects, 17% free, 8605KB/10MB, paused 571us total 179.669ms
2020-06-14 16:47:00.818 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:47:00.821 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:47:00.825 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:47:00.825 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:47:00.867 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:00.867 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:01.867 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:01.867 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:02.867 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:02.867 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:02.893 2013-2033/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146016894 duration=0
2020-06-14 16:47:03.867 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:03.867 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:04.867 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:04.867 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:05.831 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:47:05.834 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:47:05.838 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:47:05.838 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:47:05.867 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:05.867 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:06.867 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:06.867 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:07.867 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:07.867 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:07.893 2013-2033/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146022894 duration=0
2020-06-14 16:47:08.867 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:08.867 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:09.867 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:09.867 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:10.844 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:47:10.847 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:47:10.851 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:47:10.851 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:47:10.867 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:10.867 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:11.868 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:11.868 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:12.867 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:12.867 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:12.892 2013-2033/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146027893 duration=0
2020-06-14 16:47:13.867 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:13.867 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:14.867 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:14.867 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:15.855 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:47:15.856 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:47:15.857 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:47:15.857 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:47:15.867 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:15.867 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:16.868 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:16.868 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:17.868 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:17.868 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:17.893 2013-2033/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146032892 duration=0
2020-06-14 16:47:18.868 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:18.868 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:19.868 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:19.868 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:20.863 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:47:20.866 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:47:20.868 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:20.868 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:20.871 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:47:20.871 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:47:21.868 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:21.868 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:22.869 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:22.869 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:22.893 2013-2033/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146037893 duration=0
2020-06-14 16:47:23.868 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:23.868 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:24.868 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:24.868 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:25.869 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:25.869 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:25.877 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:47:25.878 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:47:25.885 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:47:25.885 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:47:26.869 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:26.869 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:27.869 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:27.869 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:27.894 2013-2033/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146042893 duration=0
2020-06-14 16:47:28.869 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:28.869 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:29.869 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:29.869 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:30.869 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:30.869 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:30.892 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:47:30.895 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:47:30.898 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:47:30.899 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:47:31.869 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:31.869 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:32.869 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:32.869 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:32.895 2013-2033/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146047894 duration=0
2020-06-14 16:47:33.870 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:33.870 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:34.870 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:34.870 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:35.870 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:35.871 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:35.905 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:47:35.907 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:47:35.911 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:47:35.911 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:47:36.870 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:36.870 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:37.871 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:37.871 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:37.895 2013-2033/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146052895 duration=0
2020-06-14 16:47:38.859 1893-1893/? E/netmgr: Failed to open QEMU pipe 'qemud:network': Invalid argument
2020-06-14 16:47:38.871 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:38.871 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:39.871 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:39.871 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:40.871 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:40.871 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:40.918 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:47:40.921 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:47:40.924 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:47:40.925 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:47:41.871 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:41.871 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:42.871 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:42.871 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:42.895 2013-2033/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146057895 duration=0
2020-06-14 16:47:43.871 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:43.871 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:44.871 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:44.871 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:45.871 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:45.871 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:45.932 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:47:45.934 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:47:45.938 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:47:45.939 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:47:46.871 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:46.871 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:47.871 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:47.871 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:47.896 2013-2033/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146062896 duration=0
2020-06-14 16:47:48.457 2013-2033/system_process E/memtrack: Couldn't load memtrack module
2020-06-14 16:47:48.457 2013-2033/system_process W/android.os.Debug: failed to get memory consumption info: -1
2020-06-14 16:47:48.871 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:48.871 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:49.871 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:49.871 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:50.871 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:50.871 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:50.944 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:47:50.945 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:47:50.950 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:47:50.950 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:47:51.871 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:51.871 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:52.871 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:52.871 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:52.897 2013-2033/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146067897 duration=0
2020-06-14 16:47:53.872 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:53.872 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:54.637 1913-1913/? E/wifi_forwarder: RemoteConnection failed to initialize: RemoteConnection failed to open pipe
2020-06-14 16:47:54.872 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:54.872 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:55.873 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:55.873 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:55.956 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:47:55.957 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:47:55.961 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:47:55.961 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:47:56.873 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:56.873 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:57.873 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:57.873 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:57.896 2013-4019/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146072898 duration=0
2020-06-14 16:47:58.873 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:58.873 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:47:59.873 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:47:59.873 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:00.010 2248-2248/com.android.systemui D/KeyguardClockSwitch: Updating clock: 248
2020-06-14 16:48:00.873 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:00.873 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:00.967 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:48:00.970 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:48:00.973 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:48:00.973 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:48:01.873 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:01.873 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:02.873 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:02.873 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:02.898 2013-5961/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146077897 duration=0
2020-06-14 16:48:03.873 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:03.873 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:04.874 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:04.874 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:05.874 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:05.874 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:05.980 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:48:05.982 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:48:05.986 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:48:05.987 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:48:06.874 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:06.874 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:07.874 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:07.874 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:08.873 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:08.873 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:08.887 2013-4019/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146082898 duration=0
2020-06-14 16:48:09.874 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:09.874 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:10.874 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:10.875 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:10.994 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:48:10.995 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:48:11.001 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:48:11.001 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:48:11.875 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:11.875 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:12.874 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:12.875 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:13.875 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:13.875 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:13.901 2013-5961/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146088887 duration=0
2020-06-14 16:48:14.875 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:14.875 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:15.875 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:15.875 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:16.008 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:48:16.010 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:48:16.016 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:48:16.016 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:48:16.876 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:16.876 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:17.876 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:17.876 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:18.875 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:18.875 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:18.900 2013-4019/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146093901 duration=0
2020-06-14 16:48:19.875 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:19.875 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:20.876 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:20.876 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:21.021 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:48:21.022 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:48:21.026 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:48:21.027 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:48:21.876 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:21.876 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:22.876 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:22.876 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:23.875 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:23.876 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:24.876 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:24.876 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:24.902 2013-5961/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146098900 duration=0
2020-06-14 16:48:25.876 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:25.876 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:26.032 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:48:26.033 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:48:26.037 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:48:26.038 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:48:26.876 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:26.876 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:27.877 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:27.877 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:28.877 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:28.877 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:29.877 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:29.877 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:29.903 2013-5961/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146104902 duration=0
2020-06-14 16:48:30.876 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:30.876 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:31.045 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:48:31.046 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:48:31.051 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:48:31.051 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:48:31.877 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:31.877 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:32.876 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:32.876 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:33.876 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:33.876 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:34.876 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:34.876 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:35.876 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:35.876 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:35.889 2013-4019/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146109903 duration=0
2020-06-14 16:48:36.058 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:48:36.059 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:48:36.063 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:48:36.063 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:48:36.877 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:36.877 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:37.877 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:37.877 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:38.873 1893-1893/? E/netmgr: Failed to open QEMU pipe 'qemud:network': Invalid argument
2020-06-14 16:48:38.878 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:38.878 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:39.877 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:39.878 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:40.877 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:40.878 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:40.900 2013-5961/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146115889 duration=0
2020-06-14 16:48:41.069 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:48:41.071 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:48:41.075 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:48:41.076 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:48:41.878 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:41.878 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:42.878 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:42.878 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:43.878 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:43.878 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:44.878 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:44.878 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:45.878 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:45.878 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:45.903 2013-4019/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146120900 duration=0
2020-06-14 16:48:46.081 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:48:46.083 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:48:46.086 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:48:46.086 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:48:46.878 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:46.878 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:47.384 16014-16025/com.google.android.partnersetup W/id.partnersetu: Reducing the number of considered missed Gc histogram windows from 4345 to 100
2020-06-14 16:48:47.878 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:47.878 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:48.879 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:48.879 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:49.879 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:49.879 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:50.879 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:50.879 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:50.906 2013-4747/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146127937 duration=-1
2020-06-14 16:48:51.095 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:48:51.096 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:48:51.101 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:48:51.101 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:48:51.279 2013-4747/system_process D/WificondControl: Scan result ready event
2020-06-14 16:48:51.879 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:51.879 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:52.879 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:52.879 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:53.879 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:53.879 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:54.645 1913-1913/? E/wifi_forwarder: RemoteConnection failed to initialize: RemoteConnection failed to open pipe
2020-06-14 16:48:54.879 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:54.879 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:55.879 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:55.879 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:55.901 2013-4747/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146130906 duration=0
2020-06-14 16:48:56.106 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:48:56.108 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:48:56.110 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:48:56.110 4855-19771/com.google.android.googlequicksearchbox I/DeviceStateChecker: DeviceStateChecker cancelled
2020-06-14 16:48:56.110 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:48:56.879 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:56.879 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:57.880 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:57.880 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:58.879 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:58.879 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:48:59.879 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:48:59.879 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:00.073 2248-2248/com.android.systemui D/KeyguardClockSwitch: Updating clock: 249
2020-06-14 16:49:00.880 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:00.880 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:01.119 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:49:01.120 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:49:01.126 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:49:01.126 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:49:01.880 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:01.880 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:01.905 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146135901 duration=0
2020-06-14 16:49:02.880 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:02.880 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:03.880 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:03.880 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:04.880 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:04.880 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:05.880 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:05.880 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:06.132 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:49:06.134 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:49:06.138 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:49:06.138 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:49:06.139 4855-19771/com.google.android.googlequicksearchbox I/DeviceStateChecker: DeviceStateChecker cancelled
2020-06-14 16:49:06.882 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:06.882 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:06.905 2013-4747/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146141905 duration=0
2020-06-14 16:49:07.881 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:07.881 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:08.881 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:08.881 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:09.881 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:09.881 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:10.881 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:10.881 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:11.142 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:49:11.143 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:49:11.144 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:49:11.144 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:49:11.882 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:11.882 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:11.906 2013-4747/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146146905 duration=0
2020-06-14 16:49:12.881 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:12.881 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:13.881 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:13.881 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:14.881 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:14.881 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:15.881 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:15.881 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:16.149 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:49:16.150 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:49:16.151 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:49:16.151 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:49:16.881 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:16.881 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:16.906 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146151906 duration=0
2020-06-14 16:49:17.881 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:17.881 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:18.881 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:18.881 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:19.880 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:19.881 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:20.882 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:20.882 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:21.155 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:49:21.156 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:49:21.161 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:49:21.161 4855-19771/com.google.android.googlequicksearchbox I/DeviceStateChecker: DeviceStateChecker cancelled
2020-06-14 16:49:21.161 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:49:21.882 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:21.882 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:21.906 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146156906 duration=0
2020-06-14 16:49:22.882 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:22.882 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:23.882 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:23.882 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:24.883 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:24.883 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:25.883 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:25.883 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:26.165 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:49:26.166 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:49:26.167 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:49:26.167 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:49:26.883 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:26.883 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:26.907 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146162977 duration=-1592018841967
2020-06-14 16:49:27.883 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:27.883 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:28.883 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:28.883 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:29.883 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:29.883 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:30.883 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:30.883 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:31.171 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:49:31.174 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:49:31.180 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:49:31.180 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:49:31.180 4855-19771/com.google.android.googlequicksearchbox I/DeviceStateChecker: DeviceStateChecker cancelled
2020-06-14 16:49:31.883 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:31.883 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:31.908 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146166907 duration=0
2020-06-14 16:49:32.883 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:32.883 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:33.883 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:33.883 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:34.884 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:34.884 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:35.884 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:35.884 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:36.184 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:49:36.186 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:49:36.188 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:49:36.188 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:49:36.884 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:36.884 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:36.909 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146162977 duration=-1
2020-06-14 16:49:37.884 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:37.885 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:38.884 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:38.885 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:38.907 1893-1893/? E/netmgr: Failed to open QEMU pipe 'qemud:network': Invalid argument
2020-06-14 16:49:39.884 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:39.884 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:40.884 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:40.885 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:41.194 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:49:41.195 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:49:41.197 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:49:41.197 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:49:41.885 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:41.885 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:41.909 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146176909 duration=0
2020-06-14 16:49:42.885 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:42.885 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:43.885 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:43.885 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:44.885 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:44.885 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:45.885 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:45.885 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:46.203 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:49:46.205 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:49:46.210 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:49:46.210 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:49:46.210 4855-19771/com.google.android.googlequicksearchbox I/DeviceStateChecker: DeviceStateChecker cancelled
2020-06-14 16:49:46.885 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:46.885 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:46.909 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146181909 duration=0
2020-06-14 16:49:47.885 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:47.885 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:48.885 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:48.885 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:49.885 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:49.885 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:50.885 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:50.885 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:51.215 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:49:51.217 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:49:51.220 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:49:51.221 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:49:51.225 4855-19771/com.google.android.googlequicksearchbox W/DeviceStateChecker: stopped because hotword detection is stopped but cancel is not called.
2020-06-14 16:49:51.884 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:51.884 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:52.885 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:52.885 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:52.910 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146186909 duration=0
2020-06-14 16:49:53.885 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:53.885 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:54.646 1913-1913/? E/wifi_forwarder: RemoteConnection failed to initialize: RemoteConnection failed to open pipe
2020-06-14 16:49:54.885 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:54.885 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:55.886 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:55.886 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:56.225 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:49:56.226 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:49:56.227 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:49:56.227 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:49:56.885 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:56.886 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:57.886 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:57.886 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:57.909 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146192910 duration=0
2020-06-14 16:49:58.886 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:58.886 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:49:59.885 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:49:59.886 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:00.015 2248-2248/com.android.systemui D/KeyguardClockSwitch: Updating clock: 250
2020-06-14 16:50:00.886 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:00.886 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:01.231 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:50:01.232 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:50:01.232 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:50:01.232 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:50:01.886 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:01.886 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:02.886 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:02.887 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:02.921 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146197909 duration=0
2020-06-14 16:50:03.886 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:03.886 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:04.900 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:04.900 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:05.893 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:05.893 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:06.236 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:50:06.238 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:50:06.239 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:50:06.239 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:50:06.895 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:06.895 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:07.893 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:07.893 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:08.893 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:08.893 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:08.918 2013-4747/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146202921 duration=0
2020-06-14 16:50:09.893 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:09.893 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:10.894 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:10.894 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:11.244 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:50:11.245 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:50:11.246 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:50:11.246 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:50:11.893 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:11.893 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:12.893 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:12.894 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:13.893 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:13.894 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:13.918 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146208918 duration=0
2020-06-14 16:50:14.893 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:14.893 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:15.893 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:15.894 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:16.253 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:50:16.255 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:50:16.259 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:50:16.259 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:50:16.893 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:16.893 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:17.894 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:17.894 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:18.894 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:18.894 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:18.921 2013-4747/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146213918 duration=0
2020-06-14 16:50:19.894 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:19.894 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:20.894 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:20.894 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:21.266 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:50:21.268 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:50:21.271 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:50:21.272 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:50:21.895 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:21.895 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:22.895 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:22.895 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:23.896 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:23.896 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:23.921 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146218921 duration=0
2020-06-14 16:50:24.896 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:24.897 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:25.897 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:25.897 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:26.280 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:50:26.282 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:50:26.283 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:50:26.283 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:50:26.897 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:26.897 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:27.896 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:27.896 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:28.897 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:28.897 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:29.897 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:29.897 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:29.923 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146223921 duration=0
2020-06-14 16:50:30.898 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:30.898 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:31.290 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:50:31.292 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:50:31.296 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:50:31.296 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:50:31.898 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:31.898 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:32.898 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:32.898 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:33.898 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:33.898 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:34.898 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:34.898 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:35.898 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:35.898 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:35.924 2013-4747/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146229924 duration=0
2020-06-14 16:50:36.302 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:50:36.303 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:50:36.308 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:50:36.308 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:50:36.898 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:36.898 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:37.900 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:37.900 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:38.898 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:38.898 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:38.917 1893-1893/? E/netmgr: Failed to open QEMU pipe 'qemud:network': Invalid argument
2020-06-14 16:50:39.899 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:39.899 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:40.899 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:40.899 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:40.924 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146235924 duration=0
2020-06-14 16:50:41.313 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:50:41.315 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:50:41.320 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:50:41.320 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:50:41.320 4855-19771/com.google.android.googlequicksearchbox I/DeviceStateChecker: DeviceStateChecker cancelled
2020-06-14 16:50:41.899 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:41.899 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:42.899 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:42.899 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:43.899 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:43.899 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:44.899 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:44.899 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:45.900 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:45.900 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:46.325 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:50:46.326 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:50:46.332 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:50:46.332 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:50:46.899 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:46.900 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:46.925 2013-4747/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146240924 duration=0
2020-06-14 16:50:47.900 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:47.900 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:48.900 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:48.900 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:49.901 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:49.901 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:50.901 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:50.901 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:51.339 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:50:51.340 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:50:51.346 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:50:51.347 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:50:51.347 4855-19771/com.google.android.googlequicksearchbox I/DeviceStateChecker: DeviceStateChecker cancelled
2020-06-14 16:50:51.901 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:51.901 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:51.926 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146246925 duration=0
2020-06-14 16:50:52.901 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:52.901 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:53.900 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:53.900 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:54.649 1913-1913/? E/wifi_forwarder: RemoteConnection failed to initialize: RemoteConnection failed to open pipe
2020-06-14 16:50:54.901 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:54.901 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:55.901 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:55.901 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:56.352 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:50:56.354 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:50:56.358 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:50:56.358 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:50:56.901 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:56.901 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:56.925 2013-4747/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146251926 duration=0
2020-06-14 16:50:57.903 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:57.903 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:58.901 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:58.901 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:50:59.901 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:50:59.901 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:00.050 2248-2248/com.android.systemui D/KeyguardClockSwitch: Updating clock: 251
2020-06-14 16:51:00.901 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:00.901 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:01.365 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:51:01.367 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:51:01.372 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:51:01.372 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:51:01.372 4855-19771/com.google.android.googlequicksearchbox I/DeviceStateChecker: DeviceStateChecker cancelled
2020-06-14 16:51:01.901 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:01.901 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:01.926 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146256925 duration=0
2020-06-14 16:51:02.902 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:02.902 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:03.902 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:03.902 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:04.902 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:04.902 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:05.902 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:05.902 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:06.379 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:51:06.381 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:51:06.384 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:51:06.385 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:51:06.902 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:06.902 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:06.927 2013-4747/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146261926 duration=0
2020-06-14 16:51:07.904 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:07.904 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:08.902 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:08.902 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:09.902 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:09.902 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:10.902 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:10.902 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:11.390 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:51:11.392 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:51:11.396 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:51:11.396 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:51:11.397 4855-19771/com.google.android.googlequicksearchbox I/DeviceStateChecker: DeviceStateChecker cancelled
2020-06-14 16:51:11.902 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:11.902 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:11.929 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146266927 duration=0
2020-06-14 16:51:12.902 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:12.902 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:13.902 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:13.902 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:14.903 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:14.903 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:15.903 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:15.903 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:16.402 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:51:16.403 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:51:16.408 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:51:16.408 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:51:16.903 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:16.903 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:16.928 2013-4747/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146271929 duration=0
2020-06-14 16:51:17.903 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:17.904 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:18.903 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:18.903 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:19.903 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:19.903 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:20.903 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:20.903 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:21.414 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:51:21.416 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:51:21.421 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:51:21.421 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:51:21.903 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:21.903 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:21.930 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146276928 duration=0
2020-06-14 16:51:22.903 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:22.903 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:23.903 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:23.903 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:24.904 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:24.904 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:25.903 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:25.903 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:26.428 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:51:26.430 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:51:26.434 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:51:26.434 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:51:26.435 4855-19771/com.google.android.googlequicksearchbox I/DeviceStateChecker: DeviceStateChecker cancelled
2020-06-14 16:51:26.903 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:26.903 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:26.931 2013-4747/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146281930 duration=0
2020-06-14 16:51:27.903 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:27.903 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:28.904 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:28.904 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:29.904 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:29.904 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:30.904 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:30.904 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:31.440 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:51:31.442 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:51:31.445 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:51:31.445 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:51:31.904 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:31.904 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:32.904 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:32.904 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:32.931 2013-4747/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146286931 duration=0
2020-06-14 16:51:33.904 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:33.904 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:34.904 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:34.904 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:35.904 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:35.904 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:36.451 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:51:36.453 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:51:36.458 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:51:36.458 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:51:36.904 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:36.904 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:37.905 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:37.905 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:37.931 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146292931 duration=0
2020-06-14 16:51:38.904 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:38.905 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:38.960 1893-1893/? E/netmgr: Failed to open QEMU pipe 'qemud:network': Invalid argument
2020-06-14 16:51:39.905 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:39.905 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:40.905 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:40.905 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:41.463 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:51:41.465 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:51:41.469 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:51:41.469 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:51:41.906 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:41.906 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:42.905 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:42.905 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:42.933 2013-4747/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146297931 duration=0
2020-06-14 16:51:43.905 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:43.905 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:44.905 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:44.905 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:45.905 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:45.905 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:46.476 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:51:46.478 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:51:46.482 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:51:46.482 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:51:46.905 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:46.905 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:47.905 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:47.906 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:47.957 2013-2054/system_process E/memtrack: Couldn't load memtrack module
2020-06-14 16:51:47.957 2013-2054/system_process W/android.os.Debug: failed to get memory consumption info: -1
2020-06-14 16:51:47.999 2013-2054/system_process E/memtrack: Couldn't load memtrack module
2020-06-14 16:51:48.000 2013-2054/system_process W/android.os.Debug: failed to get memory consumption info: -1
2020-06-14 16:51:48.009 2013-2054/system_process E/memtrack: Couldn't load memtrack module
2020-06-14 16:51:48.009 2013-2054/system_process W/android.os.Debug: failed to get memory consumption info: -1
2020-06-14 16:51:48.019 2013-2054/system_process E/memtrack: Couldn't load memtrack module
2020-06-14 16:51:48.019 2013-2054/system_process W/android.os.Debug: failed to get memory consumption info: -1
2020-06-14 16:51:48.024 2013-2054/system_process E/memtrack: Couldn't load memtrack module
2020-06-14 16:51:48.024 2013-2054/system_process W/android.os.Debug: failed to get memory consumption info: -1
2020-06-14 16:51:48.029 2013-2054/system_process E/memtrack: Couldn't load memtrack module
2020-06-14 16:51:48.030 2013-2054/system_process W/android.os.Debug: failed to get memory consumption info: -1
2020-06-14 16:51:48.035 2013-2054/system_process E/memtrack: Couldn't load memtrack module
2020-06-14 16:51:48.035 2013-2054/system_process W/android.os.Debug: failed to get memory consumption info: -1
2020-06-14 16:51:48.044 2013-2054/system_process E/memtrack: Couldn't load memtrack module
2020-06-14 16:51:48.044 2013-2054/system_process W/android.os.Debug: failed to get memory consumption info: -1
2020-06-14 16:51:48.050 2013-2054/system_process E/memtrack: Couldn't load memtrack module
2020-06-14 16:51:48.050 2013-2054/system_process W/android.os.Debug: failed to get memory consumption info: -1
2020-06-14 16:51:48.055 2013-2054/system_process E/memtrack: Couldn't load memtrack module
2020-06-14 16:51:48.055 2013-2054/system_process W/android.os.Debug: failed to get memory consumption info: -1
2020-06-14 16:51:48.060 2013-2054/system_process E/memtrack: Couldn't load memtrack module
2020-06-14 16:51:48.060 2013-2054/system_process W/android.os.Debug: failed to get memory consumption info: -1
2020-06-14 16:51:48.065 2013-2054/system_process E/memtrack: Couldn't load memtrack module
2020-06-14 16:51:48.065 2013-2054/system_process W/android.os.Debug: failed to get memory consumption info: -1
2020-06-14 16:51:48.071 2013-2054/system_process E/memtrack: Couldn't load memtrack module
2020-06-14 16:51:48.071 2013-2054/system_process W/android.os.Debug: failed to get memory consumption info: -1
2020-06-14 16:51:48.075 2013-2054/system_process E/memtrack: Couldn't load memtrack module
2020-06-14 16:51:48.075 2013-2054/system_process W/android.os.Debug: failed to get memory consumption info: -1
2020-06-14 16:51:48.080 2013-2054/system_process E/memtrack: Couldn't load memtrack module
2020-06-14 16:51:48.080 2013-2054/system_process W/android.os.Debug: failed to get memory consumption info: -1
2020-06-14 16:51:48.085 2013-2054/system_process E/memtrack: Couldn't load memtrack module
2020-06-14 16:51:48.085 2013-2054/system_process W/android.os.Debug: failed to get memory consumption info: -1
2020-06-14 16:51:48.091 2013-2054/system_process E/memtrack: Couldn't load memtrack module
2020-06-14 16:51:48.091 2013-2054/system_process W/android.os.Debug: failed to get memory consumption info: -1
2020-06-14 16:51:48.096 2013-2054/system_process E/memtrack: Couldn't load memtrack module
2020-06-14 16:51:48.096 2013-2054/system_process W/android.os.Debug: failed to get memory consumption info: -1
2020-06-14 16:51:48.105 2013-2054/system_process E/memtrack: Couldn't load memtrack module
2020-06-14 16:51:48.105 2013-2054/system_process W/android.os.Debug: failed to get memory consumption info: -1
2020-06-14 16:51:48.905 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:48.906 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:48.933 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146308592 duration=-1
2020-06-14 16:51:49.906 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:49.906 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:50.906 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:50.906 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:51.487 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:51:51.489 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:51:51.491 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:51:51.492 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:51:51.906 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:51.906 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:51.949 2013-2530/system_process D/WificondControl: Scan result ready event
2020-06-14 16:51:52.906 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:52.906 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:53.906 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:53.906 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:53.935 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146308933 duration=0
2020-06-14 16:51:54.711 1913-1913/? E/wifi_forwarder: RemoteConnection failed to initialize: RemoteConnection failed to open pipe
2020-06-14 16:51:54.906 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:54.906 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:55.906 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:55.906 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:56.497 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:51:56.498 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:51:56.502 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:51:56.502 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:51:56.907 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:56.907 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:57.907 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:57.907 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:58.907 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:58.907 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:51:58.936 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146313936 duration=0
2020-06-14 16:51:59.907 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:51:59.907 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:00.018 2248-2248/com.android.systemui D/KeyguardClockSwitch: Updating clock: 252
2020-06-14 16:52:00.907 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:00.907 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:01.508 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:52:01.509 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:52:01.511 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:52:01.511 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:52:01.907 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:01.907 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:02.907 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:02.908 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:03.907 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:03.907 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:03.938 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146318936 duration=0
2020-06-14 16:52:04.908 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:04.908 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:05.908 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:05.908 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:06.517 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:52:06.519 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:52:06.521 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:52:06.522 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:52:06.909 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:06.909 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:07.909 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:07.909 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:08.909 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:08.909 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:09.909 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:09.909 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:09.934 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146323938 duration=0
2020-06-14 16:52:10.909 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:10.909 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:11.527 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:52:11.529 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:52:11.533 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:52:11.534 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:52:11.909 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:11.909 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:12.909 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:12.909 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:13.909 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:13.909 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:14.909 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:14.909 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:14.938 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146329934 duration=0
2020-06-14 16:52:15.910 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:15.910 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:16.540 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:52:16.542 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:52:16.546 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:52:16.546 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:52:16.546 4855-19771/com.google.android.googlequicksearchbox I/DeviceStateChecker: DeviceStateChecker cancelled
2020-06-14 16:52:16.909 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:16.910 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:17.909 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:17.910 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:18.909 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:18.910 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:19.910 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:19.910 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:19.935 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146334938 duration=0
2020-06-14 16:52:20.910 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:20.910 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:21.552 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:52:21.553 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:52:21.556 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:52:21.557 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:52:21.910 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:21.910 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:22.910 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:22.910 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:23.910 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:23.910 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:24.910 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:24.910 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:25.910 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:25.910 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:25.931 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146343637 duration=-1592018841961
2020-06-14 16:52:26.564 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:52:26.565 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:52:26.567 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:52:26.569 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:52:26.910 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:26.910 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:27.910 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:27.910 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:28.910 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:28.910 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:29.911 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:29.911 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:30.911 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:30.912 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:30.935 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146345932 duration=0
2020-06-14 16:52:31.575 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:52:31.578 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:52:31.581 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:52:31.581 4855-19771/com.google.android.googlequicksearchbox I/DeviceStateChecker: DeviceStateChecker cancelled
2020-06-14 16:52:31.581 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:52:31.911 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:31.911 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:32.911 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:32.912 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:33.911 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:33.911 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:34.912 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:34.912 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:35.912 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:35.912 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:36.588 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:52:36.590 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:52:36.594 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:52:36.594 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:52:36.594 4855-19771/com.google.android.googlequicksearchbox I/DeviceStateChecker: DeviceStateChecker cancelled
2020-06-14 16:52:36.912 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:36.913 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:36.936 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146343637 duration=-1
2020-06-14 16:52:37.913 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:37.913 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:38.912 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:38.913 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:38.994 1893-1893/? E/netmgr: Failed to open QEMU pipe 'qemud:network': Invalid argument
2020-06-14 16:52:39.913 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:39.913 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:40.913 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:40.913 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:41.601 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:52:41.603 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:52:41.605 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:52:41.606 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:52:41.913 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:41.913 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:41.939 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146356937 duration=0
2020-06-14 16:52:42.913 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:42.913 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:43.913 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:43.913 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:44.912 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:44.913 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:45.913 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:45.913 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:46.612 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:52:46.612 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:52:46.614 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:52:46.615 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:52:46.913 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:46.913 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:46.939 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146361939 duration=0
2020-06-14 16:52:47.913 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:47.913 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:48.893 2013-2530/system_process E/memtrack: Couldn't load memtrack module
2020-06-14 16:52:48.893 2013-2530/system_process W/android.os.Debug: failed to get memory consumption info: -1
2020-06-14 16:52:48.913 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:48.913 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:49.914 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:49.914 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:50.914 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:50.914 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:51.624 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:52:51.626 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:52:51.629 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:52:51.629 4855-19771/com.google.android.googlequicksearchbox I/DeviceStateChecker: DeviceStateChecker cancelled
2020-06-14 16:52:51.630 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:52:51.914 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:51.914 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:51.938 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146366940 duration=0
2020-06-14 16:52:52.914 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:52.914 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:53.914 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:53.914 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:54.773 1913-1913/? E/wifi_forwarder: RemoteConnection failed to initialize: RemoteConnection failed to open pipe
2020-06-14 16:52:54.914 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:54.914 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:55.915 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:55.915 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:56.636 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:52:56.638 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:52:56.641 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:52:56.642 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:52:56.914 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:56.915 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:56.944 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146371938 duration=0
2020-06-14 16:52:57.914 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:57.915 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:58.914 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:58.914 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:52:59.914 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:52:59.915 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:00.018 2248-2248/com.android.systemui D/KeyguardClockSwitch: Updating clock: 253
2020-06-14 16:53:00.914 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:00.914 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:01.647 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:53:01.648 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:53:01.649 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:53:01.649 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:53:01.914 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:01.914 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:02.914 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:02.915 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:02.940 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146376944 duration=0
2020-06-14 16:53:03.915 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:03.915 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:04.915 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:04.915 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:05.915 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:05.915 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:06.654 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:53:06.655 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:53:06.658 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:53:06.659 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:53:06.915 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:06.915 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:07.915 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:07.915 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:07.940 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146382940 duration=0
2020-06-14 16:53:08.915 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:08.915 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:09.915 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:09.915 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:10.915 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:10.915 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:11.665 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:53:11.666 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:53:11.670 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:53:11.671 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:53:11.915 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:11.915 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:12.915 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:12.915 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:12.936 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146387941 duration=0
2020-06-14 16:53:13.915 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:13.915 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:14.916 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:14.916 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:15.916 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:15.916 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:16.676 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:53:16.678 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:53:16.681 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:53:16.682 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:53:16.915 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:16.915 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:17.916 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:17.917 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:17.941 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146392936 duration=0
2020-06-14 16:53:18.916 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:18.916 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:19.916 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:19.917 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:20.917 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:20.917 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:21.689 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:53:21.690 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:53:21.693 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:53:21.693 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:53:21.917 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:21.917 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:22.917 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:22.918 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:22.945 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146397941 duration=0
2020-06-14 16:53:23.918 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:23.918 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:24.917 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:24.918 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:25.917 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:25.918 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:26.700 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:53:26.702 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:53:26.706 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:53:26.706 4855-19771/com.google.android.googlequicksearchbox I/DeviceStateChecker: DeviceStateChecker cancelled
2020-06-14 16:53:26.707 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:53:26.918 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:26.918 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:27.918 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:27.918 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:28.918 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:28.918 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:28.944 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146402946 duration=0
2020-06-14 16:53:29.919 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:29.919 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:30.918 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:30.918 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:31.713 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:53:31.715 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:53:31.720 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:53:31.720 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:53:31.920 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:31.920 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:32.919 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:32.919 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:33.919 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:33.919 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:34.920 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:34.920 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:34.938 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146408944 duration=0
2020-06-14 16:53:35.922 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:35.922 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:36.724 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:53:36.725 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:53:36.726 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:53:36.727 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:53:36.919 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:36.920 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:37.920 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:37.920 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:38.921 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:38.921 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:39.037 1893-1893/? E/netmgr: Failed to open QEMU pipe 'qemud:network': Invalid argument
2020-06-14 16:53:39.921 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:39.922 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:39.949 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146414938 duration=0
2020-06-14 16:53:40.921 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:40.921 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:41.733 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:53:41.734 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:53:41.737 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:53:41.737 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:53:41.921 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:41.921 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:42.921 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:42.921 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:43.921 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:43.921 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:44.921 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:44.922 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:45.922 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:45.922 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:45.950 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146419949 duration=0
2020-06-14 16:53:46.742 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:53:46.743 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:53:46.746 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:53:46.747 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:53:46.922 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:46.922 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:47.922 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:47.922 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:48.922 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:48.922 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:49.922 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:49.922 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:50.922 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:50.923 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:51.755 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:53:51.757 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:53:51.761 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:53:51.761 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:53:51.761 4855-19771/com.google.android.googlequicksearchbox I/DeviceStateChecker: DeviceStateChecker cancelled
2020-06-14 16:53:51.922 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:51.923 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:51.950 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146425951 duration=0
2020-06-14 16:53:52.923 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:52.923 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:53.923 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:53.923 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:54.834 1913-1913/? E/wifi_forwarder: RemoteConnection failed to initialize: RemoteConnection failed to open pipe
2020-06-14 16:53:54.923 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:54.923 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:55.923 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:55.923 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:56.766 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:53:56.767 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:53:56.768 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:53:56.768 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:53:56.922 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:56.922 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:57.922 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:57.922 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:57.939 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146431950 duration=0
2020-06-14 16:53:58.923 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:58.923 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:53:59.923 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:53:59.923 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:00.014 2248-2248/com.android.systemui D/KeyguardClockSwitch: Updating clock: 254
2020-06-14 16:54:00.923 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:00.923 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:01.774 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:54:01.775 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:54:01.778 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:54:01.778 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:54:01.923 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:01.923 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:02.923 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:02.923 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:02.947 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146437939 duration=0
2020-06-14 16:54:03.923 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:03.923 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:04.923 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:04.923 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:05.923 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:05.923 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:06.783 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:54:06.785 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:54:06.788 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:54:06.788 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:54:06.923 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:06.923 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:07.923 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:07.923 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:07.949 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146442947 duration=0
2020-06-14 16:54:08.924 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:08.924 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:09.923 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:09.923 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:10.923 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:10.923 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:11.792 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:54:11.793 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:54:11.793 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:54:11.793 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:54:11.923 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:11.923 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:12.923 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:12.923 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:13.923 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:13.923 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:13.940 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146447949 duration=0
2020-06-14 16:54:14.923 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:14.923 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:15.924 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:15.924 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:16.797 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:54:16.799 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:54:16.800 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:54:16.800 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:54:16.923 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:16.923 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:17.924 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:17.924 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:18.923 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:18.923 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:18.939 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146453940 duration=0
2020-06-14 16:54:19.924 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:19.924 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:20.923 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:20.923 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:21.806 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:54:21.808 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:54:21.809 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:54:21.809 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:54:21.924 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:21.924 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:22.927 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:22.927 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:23.928 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:23.928 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:23.958 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146458939 duration=0
2020-06-14 16:54:24.928 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:24.928 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:25.928 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:25.928 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:26.812 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:54:26.813 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:54:26.814 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:54:26.814 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:54:26.928 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:26.928 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:27.929 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:27.929 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:28.929 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:28.929 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:29.929 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:29.929 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:29.941 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146463958 duration=0
2020-06-14 16:54:30.930 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:30.930 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:31.820 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:54:31.820 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:54:31.821 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:54:31.821 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:54:31.930 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:31.930 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:32.935 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:32.935 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:33.934 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:33.934 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:34.934 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:34.934 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:34.949 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146469941 duration=0
2020-06-14 16:54:35.935 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:35.935 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:36.825 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:54:36.826 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:54:36.826 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:54:36.826 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:54:36.941 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:36.941 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:37.940 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:37.940 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:38.938 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:38.938 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:39.098 1893-1893/? E/netmgr: Failed to open QEMU pipe 'qemud:network': Invalid argument
2020-06-14 16:54:39.939 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:39.939 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:39.966 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146474949 duration=0
2020-06-14 16:54:40.938 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:40.938 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:41.830 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:54:41.831 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:54:41.832 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:54:41.833 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:54:41.939 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:41.939 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:42.939 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:42.939 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:43.939 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:43.940 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:44.939 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:44.939 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:45.939 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:45.939 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:45.954 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146479966 duration=0
2020-06-14 16:54:46.839 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:54:46.841 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:54:46.844 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:54:46.844 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:54:46.939 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:46.939 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:47.940 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:47.941 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:48.955 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:48.955 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:49.956 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:49.956 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:50.956 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:50.956 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:50.971 2013-2166/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146489232 duration=-1
2020-06-14 16:54:51.853 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:54:51.855 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:54:51.858 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:54:51.859 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:54:51.859 4855-19771/com.google.android.googlequicksearchbox I/DeviceStateChecker: DeviceStateChecker cancelled
2020-06-14 16:54:51.956 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:51.956 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:52.590 2013-2166/system_process D/WificondControl: Scan result ready event
2020-06-14 16:54:52.957 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:52.957 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:53.956 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:53.956 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:54.848 1913-1913/? E/wifi_forwarder: RemoteConnection failed to initialize: RemoteConnection failed to open pipe
2020-06-14 16:54:54.955 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:54.955 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:55.957 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:55.957 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:55.986 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146490971 duration=0
2020-06-14 16:54:56.095 2013-2025/system_process I/system_server: Background young concurrent copying GC freed 145772(4964KB) AllocSpace objects, 4(148KB) LOS objects, 18% free, 22MB/27MB, paused 555us total 109.105ms
2020-06-14 16:54:56.862 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:54:56.864 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:54:56.864 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:54:56.864 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:54:56.957 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:56.957 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:57.956 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:57.956 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:58.956 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:58.956 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:54:59.957 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:54:59.957 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:00.008 2248-2248/com.android.systemui D/KeyguardClockSwitch: Updating clock: 255
2020-06-14 16:55:00.957 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:00.957 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:01.870 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:55:01.872 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:55:01.875 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:55:01.875 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:55:01.876 4855-19771/com.google.android.googlequicksearchbox I/DeviceStateChecker: DeviceStateChecker cancelled
2020-06-14 16:55:01.957 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:01.957 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:01.976 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146495986 duration=0
2020-06-14 16:55:02.957 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:02.957 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:03.958 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:03.958 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:04.958 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:04.958 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:05.958 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:05.958 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:06.881 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:55:06.884 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:55:06.892 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:55:06.892 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:55:06.892 4855-19771/com.google.android.googlequicksearchbox I/DeviceStateChecker: DeviceStateChecker cancelled
2020-06-14 16:55:06.960 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:06.960 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:06.988 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146501976 duration=0
2020-06-14 16:55:07.958 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:07.958 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:08.958 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:08.958 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:09.958 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:09.958 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:10.958 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:10.958 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:11.896 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:55:11.897 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:55:11.899 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:55:11.899 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:55:11.958 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:11.958 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:12.959 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:12.959 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:12.986 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146506989 duration=0
2020-06-14 16:55:13.959 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:13.959 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:14.959 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:14.959 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:15.959 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:15.959 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:16.903 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:55:16.904 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:55:16.905 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:55:16.905 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:55:16.960 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:16.960 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:17.960 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:17.960 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:17.986 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146512986 duration=0
2020-06-14 16:55:18.960 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:18.960 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:19.960 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:19.960 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:20.961 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:20.961 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:21.909 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:55:21.911 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:55:21.913 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:55:21.913 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:55:21.961 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:21.961 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:22.961 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:22.961 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:22.987 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146517986 duration=0
2020-06-14 16:55:23.961 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:23.961 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:24.961 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:24.961 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:25.961 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:25.961 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:26.920 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:55:26.921 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:55:26.924 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:55:26.924 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:55:26.962 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:26.962 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:27.962 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:27.963 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:27.991 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146524281 duration=-1592018841957
2020-06-14 16:55:28.962 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:28.962 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:29.963 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:29.963 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:30.962 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:30.962 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:31.930 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:55:31.931 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:55:31.933 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:55:31.933 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:55:31.963 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:31.963 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:32.964 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:32.964 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:32.983 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146527991 duration=0
2020-06-14 16:55:33.963 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:33.963 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:34.963 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:34.963 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:35.964 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:35.964 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:36.939 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:55:36.941 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:55:36.944 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:55:36.944 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:55:36.964 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:36.964 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:37.963 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:37.963 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:38.964 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:38.964 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:38.977 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146524281 duration=-1
2020-06-14 16:55:39.161 1893-1893/? E/netmgr: Failed to open QEMU pipe 'qemud:network': Invalid argument
2020-06-14 16:55:39.964 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:39.964 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:40.965 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:40.965 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:41.949 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:55:41.950 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:55:41.952 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:55:41.952 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:55:41.966 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:41.966 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:42.966 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:42.967 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:43.965 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:43.965 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:43.980 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146538977 duration=0
2020-06-14 16:55:44.965 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:44.965 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:45.966 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:45.966 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:46.956 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:55:46.957 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:55:46.958 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:55:46.958 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:55:46.958 4855-19771/com.google.android.googlequicksearchbox I/DeviceStateChecker: DeviceStateChecker cancelled
2020-06-14 16:55:46.965 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:46.965 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:47.752 2013-2166/system_process I/WifiService: acquireWifiLock uid=10101 lockMode=2
2020-06-14 16:55:47.966 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:47.966 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:48.589 2013-2166/system_process D/WificondControl: Scan result ready event
2020-06-14 16:55:48.605 2013-2166/system_process I/WifiService: releaseWifiLock uid=10101
2020-06-14 16:55:48.966 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:48.966 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:48.994 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146548328 duration=-1
2020-06-14 16:55:49.966 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:49.966 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:50.966 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:50.967 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:51.962 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:55:51.963 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:55:51.964 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:55:51.964 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:55:51.968 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:51.968 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:52.972 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:52.972 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:53.970 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:53.970 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:54.909 1913-1913/? E/wifi_forwarder: RemoteConnection failed to initialize: RemoteConnection failed to open pipe
2020-06-14 16:55:54.994 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:54.994 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:55.018 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146548994 duration=0
2020-06-14 16:55:55.970 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:55.970 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:56.967 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:55:56.968 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:55:56.969 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:55:56.969 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:55:56.971 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:56.971 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:57.971 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:57.971 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:58.971 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:58.971 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:55:59.971 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:55:59.971 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:00.009 2248-2248/com.android.systemui D/KeyguardClockSwitch: Updating clock: 256
2020-06-14 16:56:00.971 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:00.971 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:00.995 2013-2166/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146555018 duration=0
2020-06-14 16:56:01.973 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:56:01.974 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:01.974 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:01.979 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:56:01.980 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:56:01.980 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:56:02.972 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:02.972 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:03.973 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:03.973 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:04.972 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:04.972 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:05.972 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:05.972 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:06.972 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:06.972 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:06.986 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:56:06.987 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:56:06.988 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:56:06.988 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:56:06.994 2013-2166/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146560995 duration=0
2020-06-14 16:56:07.973 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:07.973 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:08.973 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:08.974 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:09.973 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:09.973 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:10.973 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:10.973 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:11.973 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:11.973 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:11.994 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:56:11.996 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:56:11.997 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:56:11.997 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:56:12.008 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146566994 duration=0
2020-06-14 16:56:12.973 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:12.973 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:13.974 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:13.974 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:14.974 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:14.974 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:15.975 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:15.975 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:16.974 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:16.974 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:17.003 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:56:17.005 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:56:17.010 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:56:17.010 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:56:17.975 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:17.975 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:18.004 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146572008 duration=0
2020-06-14 16:56:18.975 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:18.975 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:19.975 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:19.975 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:20.975 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:20.975 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:21.974 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:21.975 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:22.014 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:56:22.015 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:56:22.016 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:56:22.016 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:56:22.974 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:22.974 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:23.975 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:23.975 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:24.003 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146583377 duration=-1592018841957
2020-06-14 16:56:24.975 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:24.975 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:25.975 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:25.975 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:26.975 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:26.975 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:27.022 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:56:27.024 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:56:27.025 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:56:27.025 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:56:27.975 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:27.975 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:28.975 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:28.975 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:29.006 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146584003 duration=0
2020-06-14 16:56:29.975 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:29.975 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:30.974 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:30.974 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:31.975 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:31.975 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:32.031 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:56:32.032 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:56:32.035 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:56:32.035 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:56:32.975 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:32.975 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:33.975 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:33.975 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:34.975 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:34.975 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:35.004 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146583377 duration=-1
2020-06-14 16:56:35.975 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:35.975 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:36.975 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:36.976 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:37.040 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:56:37.042 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:56:37.043 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:56:37.043 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:56:37.976 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:37.976 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:38.975 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:38.975 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:39.202 1893-1893/? E/netmgr: Failed to open QEMU pipe 'qemud:network': Invalid argument
2020-06-14 16:56:39.975 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:39.975 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:39.999 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146595004 duration=0
2020-06-14 16:56:40.975 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:40.975 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:41.976 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:41.976 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:42.049 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:56:42.050 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:56:42.050 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:56:42.051 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:56:42.975 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:42.976 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:43.976 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:43.976 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:44.975 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:44.975 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:45.976 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:45.976 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:45.991 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146599999 duration=0
2020-06-14 16:56:46.976 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:46.976 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:47.057 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:56:47.059 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:56:47.061 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:56:47.061 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:56:47.977 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:47.977 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:48.976 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:48.976 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:49.977 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:49.977 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:50.977 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:50.977 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:51.004 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146605991 duration=0
2020-06-14 16:56:51.977 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:51.977 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:52.067 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:56:52.069 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:56:52.072 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:56:52.072 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:56:52.977 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:52.977 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:53.977 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:53.977 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:54.972 1913-1913/? E/wifi_forwarder: RemoteConnection failed to initialize: RemoteConnection failed to open pipe
2020-06-14 16:56:54.977 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:54.977 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:55.977 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:55.977 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:56.014 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146611004 duration=0
2020-06-14 16:56:56.977 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:56.977 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:57.075 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:56:57.077 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:56:57.077 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:56:57.077 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:56:57.978 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:57.978 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:58.977 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:58.977 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:56:59.977 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:56:59.977 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:00.011 2248-2248/com.android.systemui D/KeyguardClockSwitch: Updating clock: 257
2020-06-14 16:57:00.977 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:00.977 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:01.977 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:01.978 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:02.003 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146616014 duration=0
2020-06-14 16:57:02.081 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:57:02.085 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:57:02.086 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:57:02.086 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:57:02.977 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:02.977 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:03.978 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:03.978 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:04.978 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:04.978 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:05.978 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:05.979 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:06.979 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:06.979 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:06.997 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146622003 duration=0
2020-06-14 16:57:07.090 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:57:07.092 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:57:07.092 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:57:07.092 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:57:07.979 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:07.979 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:08.979 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:08.979 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:09.979 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:09.979 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:10.979 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:10.980 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:11.980 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:11.980 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:12.007 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146626997 duration=0
2020-06-14 16:57:12.096 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:57:12.097 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:57:12.098 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:57:12.098 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:57:12.979 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:12.979 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:13.979 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:13.979 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:14.979 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:14.979 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:15.979 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:15.979 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:16.979 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:16.979 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:17.101 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:57:17.103 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:57:17.103 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:57:17.103 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:57:17.979 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:17.979 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:17.993 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146632007 duration=0
2020-06-14 16:57:18.979 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:18.979 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:19.979 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:19.979 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:20.979 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:20.979 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:21.981 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:21.981 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:22.108 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:57:22.109 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:57:22.110 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:57:22.110 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:57:22.981 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:22.981 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:22.997 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146637993 duration=0
2020-06-14 16:57:23.981 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:23.981 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:24.981 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:24.981 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:25.981 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:25.981 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:26.982 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:26.982 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:27.119 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:57:27.122 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:57:27.124 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:57:27.124 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:57:27.985 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:27.985 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:28.008 2013-2166/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146642997 duration=0
2020-06-14 16:57:28.982 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:28.982 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:29.983 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:29.983 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:30.988 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:30.988 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:31.983 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:31.983 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:32.128 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:57:32.129 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:57:32.130 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:57:32.130 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:57:32.983 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:32.983 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:33.983 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:33.983 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:34.001 2013-2166/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146648008 duration=0
2020-06-14 16:57:34.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:34.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:35.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:35.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:36.983 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:36.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:37.135 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:57:37.136 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:57:37.138 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:57:37.138 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:57:37.138 4855-19771/com.google.android.googlequicksearchbox I/DeviceStateChecker: DeviceStateChecker cancelled
2020-06-14 16:57:37.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:37.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:38.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:38.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:39.002 2013-2166/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146654001 duration=0
2020-06-14 16:57:39.264 1893-1893/? E/netmgr: Failed to open QEMU pipe 'qemud:network': Invalid argument
2020-06-14 16:57:39.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:39.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:40.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:40.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:41.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:41.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:42.142 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:57:42.143 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:57:42.144 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:57:42.144 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:57:42.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:42.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:43.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:43.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:44.005 2013-2166/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146659002 duration=0
2020-06-14 16:57:44.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:44.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:45.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:45.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:46.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:46.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:47.148 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:57:47.150 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:57:47.151 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:57:47.151 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:57:47.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:47.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:48.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:48.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:49.423 2013-2166/system_process E/memtrack: Couldn't load memtrack module
2020-06-14 16:57:49.423 2013-2166/system_process W/android.os.Debug: failed to get memory consumption info: -1
2020-06-14 16:57:49.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:49.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:49.998 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146664005 duration=0
2020-06-14 16:57:50.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:50.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:51.985 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:51.985 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:52.155 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:57:52.156 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:57:52.158 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:57:52.158 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:57:52.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:52.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:53.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:53.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:54.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:54.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:54.998 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146669998 duration=0
2020-06-14 16:57:55.024 1913-1913/? E/wifi_forwarder: RemoteConnection failed to initialize: RemoteConnection failed to open pipe
2020-06-14 16:57:55.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:55.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:56.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:56.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:57.161 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:57:57.162 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:57:57.163 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:57:57.164 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:57:57.164 4855-19771/com.google.android.googlequicksearchbox I/DeviceStateChecker: DeviceStateChecker cancelled
2020-06-14 16:57:57.578 2013-2062/system_process E/BluetoothAdapter: Bluetooth binder is null
2020-06-14 16:57:57.628 1736-1935/? I/netd: trafficSwapActiveStatsMap() <37.14ms>
2020-06-14 16:57:57.630 1736-1935/? I/netd: tetherGetStats() <0.81ms>
2020-06-14 16:57:57.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:57.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:58.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:58.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:57:59.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:57:59.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:00.000 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146674998 duration=0
2020-06-14 16:58:00.004 2248-2248/com.android.systemui D/KeyguardClockSwitch: Updating clock: 258
2020-06-14 16:58:00.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:00.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:01.985 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:01.985 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:02.168 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:58:02.170 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:58:02.171 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:58:02.171 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:58:02.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:02.984 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:03.985 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:03.985 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:04.985 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:04.985 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:05.010 2248-2248/com.android.systemui D/KeyguardClockSwitch: Updating clock: 258
2020-06-14 16:58:05.986 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:05.986 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:06.002 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146680000 duration=0
2020-06-14 16:58:06.985 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:06.985 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:07.176 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:58:07.178 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:58:07.180 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:58:07.180 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:58:07.986 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:07.986 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:08.985 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:08.985 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:09.986 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:09.986 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:10.987 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:10.987 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:11.009 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146686002 duration=0
2020-06-14 16:58:11.987 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:11.988 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:12.194 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:58:12.197 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:58:12.199 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:58:12.199 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:58:12.986 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:12.986 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:13.986 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:13.986 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:14.987 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:14.987 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:15.987 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:15.987 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:16.020 2013-2166/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146691009 duration=0
2020-06-14 16:58:16.987 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:16.987 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:17.204 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:58:17.205 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:58:17.206 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:58:17.206 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:58:17.986 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:17.986 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:18.987 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:18.987 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:19.986 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:19.986 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:20.987 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:20.987 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:21.987 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:21.987 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:22.004 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146696020 duration=0
2020-06-14 16:58:22.210 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:58:22.212 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:58:22.213 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:58:22.213 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:58:22.987 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:22.987 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:23.988 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:23.988 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:24.988 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:24.988 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:25.988 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:25.988 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:26.988 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:26.989 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:27.010 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146702004 duration=0
2020-06-14 16:58:27.220 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:58:27.223 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:58:27.226 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:58:27.228 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:58:27.988 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:27.988 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:28.989 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:28.989 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:29.989 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:29.989 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:30.989 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:30.989 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:31.989 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:31.989 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:32.233 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:58:32.234 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:58:32.235 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:58:32.235 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:58:32.990 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:32.990 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:33.020 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146707010 duration=0
2020-06-14 16:58:33.989 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:33.989 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:34.990 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:34.990 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:35.990 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:35.990 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:36.990 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:36.990 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:37.241 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:58:37.244 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:58:37.249 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:58:37.249 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:58:37.990 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:37.990 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:38.990 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:38.990 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:39.019 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146713020 duration=0
2020-06-14 16:58:39.317 1893-1893/? E/netmgr: Failed to open QEMU pipe 'qemud:network': Invalid argument
2020-06-14 16:58:39.990 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:39.991 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:40.990 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:40.990 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:41.991 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:41.991 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:42.255 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:58:42.256 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:58:42.257 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:58:42.257 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:58:42.991 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:42.991 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:43.991 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:43.991 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:44.018 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146719020 duration=0
2020-06-14 16:58:44.991 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:44.992 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:45.992 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:45.992 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:46.991 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:46.991 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:47.264 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:58:47.266 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:58:47.270 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:58:47.270 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:58:47.271 4855-19771/com.google.android.googlequicksearchbox I/DeviceStateChecker: DeviceStateChecker cancelled
2020-06-14 16:58:47.992 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:47.992 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:48.992 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:48.992 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:49.991 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:49.992 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:50.017 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146724018 duration=0
2020-06-14 16:58:50.992 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:50.992 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:51.992 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:51.992 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:52.276 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:58:52.279 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:58:52.281 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:58:52.281 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:58:52.992 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:52.992 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:53.977 1736-1935/? I/netd: trafficSwapActiveStatsMap() <52.32ms>
2020-06-14 16:58:53.979 1736-1935/? I/netd: tetherGetStats() <0.96ms>
2020-06-14 16:58:53.989 1736-1935/? I/netd: bandwidthSetGlobalAlert(2097152) <0.18ms>
2020-06-14 16:58:53.992 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:53.992 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:54.992 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:54.992 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:55.088 1913-1913/? E/wifi_forwarder: RemoteConnection failed to initialize: RemoteConnection failed to open pipe
2020-06-14 16:58:55.993 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:55.994 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:56.027 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146734517 duration=-1
2020-06-14 16:58:56.993 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:56.993 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:57.286 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:58:57.287 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:58:57.288 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:58:57.288 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:58:57.858 2013-2530/system_process D/WificondControl: Scan result ready event
2020-06-14 16:58:57.993 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:57.993 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:58.994 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:58.994 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:58:59.994 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:58:59.994 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:00.043 2248-2248/com.android.systemui D/KeyguardClockSwitch: Updating clock: 259
2020-06-14 16:59:00.994 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:00.994 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:01.994 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:01.994 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:02.027 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146736028 duration=0
2020-06-14 16:59:02.294 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:59:02.297 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:59:02.300 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:59:02.300 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:59:02.994 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:02.994 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:03.993 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:03.993 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:04.994 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:04.994 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:05.995 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:05.995 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:06.995 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:06.995 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:07.026 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146742027 duration=0
2020-06-14 16:59:07.307 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:59:07.309 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:59:07.311 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:59:07.312 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:59:07.995 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:07.995 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:08.995 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:08.995 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:09.995 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:09.995 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:10.996 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:10.996 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:11.995 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:11.995 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:12.320 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:59:12.322 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:59:12.326 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:59:12.326 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:59:12.327 4855-19771/com.google.android.googlequicksearchbox I/DeviceStateChecker: DeviceStateChecker cancelled
2020-06-14 16:59:12.995 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:12.995 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:13.010 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146747026 duration=0
2020-06-14 16:59:13.995 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:13.995 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:14.995 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:14.996 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:15.996 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:15.997 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:16.996 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:16.996 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:17.331 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:59:17.333 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:59:17.335 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:59:17.335 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:59:17.996 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:17.996 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:18.024 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146753010 duration=0
2020-06-14 16:59:18.995 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:18.996 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:19.996 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:19.996 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:20.996 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:20.996 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:21.996 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:21.997 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:22.342 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:59:22.344 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:59:22.346 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:59:22.346 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:59:23.012 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:23.012 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:23.055 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146758025 duration=0
2020-06-14 16:59:24.001 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:24.001 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:25.001 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:25.001 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:26.001 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:26.001 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:27.002 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:27.002 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:27.352 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:59:27.354 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:59:27.357 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:59:27.357 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:59:28.002 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:28.002 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:29.002 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:29.002 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:29.016 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146763056 duration=0
2020-06-14 16:59:29.573 2013-2054/system_process E/memtrack: Couldn't load memtrack module
2020-06-14 16:59:29.573 2013-2054/system_process W/android.os.Debug: failed to get memory consumption info: -1
2020-06-14 16:59:30.002 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:30.002 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:31.002 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:31.002 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:32.002 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:32.002 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:32.373 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:59:32.380 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:59:32.387 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:59:32.387 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:59:33.002 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:33.002 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:34.002 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:34.002 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:34.019 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146769567 duration=-1592018841956
2020-06-14 16:59:35.002 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:35.002 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:36.002 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:36.002 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:37.003 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:37.003 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:37.394 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:59:37.398 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:59:37.399 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:59:37.399 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:59:38.003 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:38.003 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:39.003 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:39.003 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:39.379 1893-1893/? E/netmgr: Failed to open QEMU pipe 'qemud:network': Invalid argument
2020-06-14 16:59:40.004 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:40.004 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:40.022 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146769567 duration=-1
2020-06-14 16:59:41.003 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:41.003 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:42.003 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:42.003 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:42.404 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:59:42.405 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:59:42.408 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:59:42.408 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:59:43.003 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:43.003 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:44.003 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:44.003 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:45.003 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:45.003 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:45.022 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146780022 duration=0
2020-06-14 16:59:46.003 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:46.004 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:47.005 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:47.005 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:47.411 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:59:47.412 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:59:47.412 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:59:47.412 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:59:48.004 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:48.004 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:49.004 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:49.004 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:50.004 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:50.004 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:51.004 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:51.004 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:51.032 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146785022 duration=0
2020-06-14 16:59:52.004 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:52.004 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:52.419 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:59:52.421 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:59:52.427 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:59:52.427 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:59:52.427 4855-19771/com.google.android.googlequicksearchbox I/DeviceStateChecker: DeviceStateChecker cancelled
2020-06-14 16:59:53.005 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:53.005 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:54.004 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:54.005 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:55.005 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:55.005 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:55.131 1913-1913/? E/wifi_forwarder: RemoteConnection failed to initialize: RemoteConnection failed to open pipe
2020-06-14 16:59:56.005 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:56.005 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:56.033 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146791033 duration=0
2020-06-14 16:59:57.005 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:57.005 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:57.430 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 16:59:57.432 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 16:59:57.432 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 16:59:57.432 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 16:59:58.005 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:58.005 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 16:59:59.004 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 16:59:59.004 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:00.007 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:00.007 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:00.014 2248-2248/com.android.systemui D/KeyguardClockSwitch: Updating clock: 300
2020-06-14 17:00:01.006 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:01.006 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:01.029 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146796033 duration=0
2020-06-14 17:00:02.005 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:02.005 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:02.436 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:00:02.438 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:00:02.439 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:00:02.439 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:00:03.005 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:03.005 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:04.005 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:04.005 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:05.005 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:05.006 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:06.005 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:06.005 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:07.005 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:07.006 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:07.031 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146801029 duration=0
2020-06-14 17:00:07.446 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:00:07.450 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:00:07.452 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:00:07.452 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:00:08.006 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:08.006 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:09.006 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:09.006 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:10.005 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:10.006 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:11.007 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:11.007 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:12.008 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:12.008 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:12.459 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:00:12.462 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:00:12.465 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:00:12.465 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:00:13.007 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:13.007 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:13.029 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146807031 duration=0
2020-06-14 17:00:14.008 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:14.008 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:15.008 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:15.008 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:16.008 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:16.008 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:17.010 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:17.010 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:17.471 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:00:17.472 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:00:17.475 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:00:17.475 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:00:18.008 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:18.009 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:18.036 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146813029 duration=-1592018829804
2020-06-14 17:00:19.009 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:19.009 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:20.009 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:20.009 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:21.009 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:21.009 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:22.009 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:22.010 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:22.481 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:00:22.483 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:00:22.485 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:00:22.485 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:00:23.009 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:23.009 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:23.037 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146818036 duration=0
2020-06-14 17:00:24.008 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:24.008 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:25.009 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:25.009 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:26.009 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:26.009 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:27.011 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:27.011 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:27.492 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:00:27.494 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:00:27.498 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:00:27.499 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:00:27.499 4855-19771/com.google.android.googlequicksearchbox I/DeviceStateChecker: DeviceStateChecker cancelled
2020-06-14 17:00:28.010 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:28.010 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:28.038 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146823037 duration=0
2020-06-14 17:00:29.011 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:29.011 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:30.010 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:30.010 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:31.010 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:31.010 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:32.010 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:32.010 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:32.505 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:00:32.507 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:00:32.509 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:00:32.509 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:00:33.010 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:33.010 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:33.036 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146828039 duration=0
2020-06-14 17:00:34.010 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:34.010 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:35.011 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:35.011 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:36.011 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:36.011 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:37.011 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:37.011 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:37.516 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:00:37.519 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:00:37.521 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:00:37.521 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:00:38.012 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:38.012 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:39.011 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:39.011 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:39.046 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146833036 duration=0
2020-06-14 17:00:39.441 1893-1893/? E/netmgr: Failed to open QEMU pipe 'qemud:network': Invalid argument
2020-06-14 17:00:40.010 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:40.010 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:41.011 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:41.011 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:42.011 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:42.011 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:42.526 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:00:42.528 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:00:42.529 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:00:42.529 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:00:43.014 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:43.014 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:44.011 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:44.011 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:45.011 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:45.011 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:45.024 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146839046 duration=0
2020-06-14 17:00:46.011 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:46.011 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:47.012 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:47.012 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:47.536 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:00:47.538 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:00:47.540 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:00:47.540 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:00:48.012 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:48.012 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:49.012 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:49.012 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:50.013 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:50.013 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:50.044 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146845024 duration=0
2020-06-14 17:00:51.013 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:51.013 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:52.013 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:52.013 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:52.546 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:00:52.548 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:00:52.551 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:00:52.551 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:00:52.551 4855-19771/com.google.android.googlequicksearchbox I/DeviceStateChecker: DeviceStateChecker cancelled
2020-06-14 17:00:53.013 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:53.013 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:54.013 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:54.014 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:55.013 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:55.013 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:55.149 1913-1913/? E/wifi_forwarder: RemoteConnection failed to initialize: RemoteConnection failed to open pipe
2020-06-14 17:00:56.014 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:56.014 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:56.030 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146850045 duration=0
2020-06-14 17:00:57.013 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:57.013 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:57.558 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:00:57.560 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:00:57.562 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:00:57.562 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:00:58.014 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:58.014 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:00:59.013 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:00:59.013 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:00.011 2248-2248/com.android.systemui D/KeyguardClockSwitch: Updating clock: 301
2020-06-14 17:01:00.027 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:00.027 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:01.026 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:01.026 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:01.041 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146856030 duration=0
2020-06-14 17:01:02.027 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:02.027 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:02.567 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:01:02.569 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:01:02.572 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:01:02.572 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:01:03.028 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:03.028 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:04.028 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:04.028 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:05.029 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:05.029 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:06.028 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:06.028 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:06.042 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146861041 duration=0
2020-06-14 17:01:07.029 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:07.029 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:07.576 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:01:07.578 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:01:07.579 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:01:07.579 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:01:08.029 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:08.029 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:09.029 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:09.029 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:10.030 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:10.030 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:11.029 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:11.030 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:11.049 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146866042 duration=0
2020-06-14 17:01:12.030 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:12.030 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:12.586 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:01:12.588 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:01:12.591 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:01:12.591 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:01:13.030 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:13.030 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:14.030 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:14.030 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:15.031 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:15.031 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:16.030 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:16.030 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:16.056 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146871050 duration=0
2020-06-14 17:01:17.030 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:17.030 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:17.597 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:01:17.600 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:01:17.602 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:01:17.603 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:01:18.030 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:18.030 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:19.031 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:19.031 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:20.031 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:20.031 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:21.032 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:21.032 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:21.058 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146876056 duration=0
2020-06-14 17:01:22.032 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:22.032 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:22.610 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:01:22.612 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:01:22.615 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:01:22.616 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:01:23.032 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:23.032 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:24.032 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:24.032 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:25.032 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:25.032 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:26.032 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:26.032 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:26.059 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146881058 duration=0
2020-06-14 17:01:27.032 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:27.032 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:27.624 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:01:27.626 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:01:27.630 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:01:27.630 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:01:28.032 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:28.032 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:29.032 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:29.032 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:30.032 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:30.032 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:31.033 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:31.033 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:31.056 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146886059 duration=0
2020-06-14 17:01:32.032 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:32.032 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:32.636 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:01:32.638 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:01:32.641 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:01:32.641 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:01:33.032 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:33.032 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:34.032 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:34.032 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:35.033 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:35.033 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:36.032 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:36.033 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:36.059 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146891056 duration=0
2020-06-14 17:01:37.033 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:37.033 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:37.649 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:01:37.651 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:01:37.654 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:01:37.654 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:01:38.033 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:38.033 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:39.033 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:39.034 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:39.445 1893-1893/? E/netmgr: Failed to open QEMU pipe 'qemud:network': Invalid argument
2020-06-14 17:01:40.033 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:40.033 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:41.034 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:41.034 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:42.034 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:42.034 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:42.062 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146896060 duration=0
2020-06-14 17:01:42.661 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:01:42.663 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:01:42.664 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:01:42.665 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:01:43.034 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:43.034 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:43.446 2013-2025/system_process I/system_server: Background young concurrent copying GC freed 125307(4409KB) AllocSpace objects, 9(484KB) LOS objects, 17% free, 23MB/27MB, paused 1.218ms total 124.085ms
2020-06-14 17:01:44.034 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:44.034 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:45.034 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:45.034 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:46.034 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:46.034 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:47.034 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:47.034 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:47.670 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:01:47.671 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:01:47.677 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:01:47.678 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:01:48.035 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:48.035 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:48.061 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146902062 duration=0
2020-06-14 17:01:49.035 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:49.035 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:50.035 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:50.035 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:51.035 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:51.035 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:52.035 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:52.035 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:52.684 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:01:52.686 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:01:52.691 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:01:52.691 4855-19771/com.google.android.googlequicksearchbox I/DeviceStateChecker: DeviceStateChecker cancelled
2020-06-14 17:01:52.691 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:01:53.036 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:53.036 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:53.057 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146908062 duration=0
2020-06-14 17:01:54.036 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:54.036 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:54.544 4855-4855/com.google.android.googlequicksearchbox I/BgTaskExecutorImpl: Starting PERIODIC background task LOG_ATTEMPTED_SEARCHES_TO_KANSAS.
2020-06-14 17:01:55.037 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:55.037 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:55.164 1913-1913/? E/wifi_forwarder: RemoteConnection failed to initialize: RemoteConnection failed to open pipe
2020-06-14 17:01:56.035 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:56.035 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:57.035 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:57.035 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:57.698 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:01:57.700 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:01:57.701 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:01:57.702 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:01:58.036 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:58.036 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:01:58.470 2013-2166/system_process D/WificondControl: Scan result ready event
2020-06-14 17:01:58.495 2013-2166/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146915155 duration=-1
2020-06-14 17:01:59.036 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:01:59.036 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:00.016 2248-2248/com.android.systemui D/KeyguardClockSwitch: Updating clock: 302
2020-06-14 17:02:00.040 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:00.040 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:01.037 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:01.037 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:02.037 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:02.037 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:02.709 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:02:02.712 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:02:02.714 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:02:02.714 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:02:03.037 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:03.038 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:04.037 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:04.037 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:04.062 2013-2166/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146918495 duration=0
2020-06-14 17:02:05.037 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:05.038 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:06.037 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:06.037 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:07.037 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:07.037 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:07.721 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:02:07.723 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:02:07.725 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:02:07.725 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:02:08.037 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:08.037 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:09.037 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:09.037 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:09.061 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146924062 duration=0
2020-06-14 17:02:10.037 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:10.037 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:11.037 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:11.037 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:12.037 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:12.037 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:12.731 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:02:12.734 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:02:12.735 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:02:12.736 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:02:13.037 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:13.038 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:14.037 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:14.037 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:14.063 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146929061 duration=0
2020-06-14 17:02:15.037 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:15.037 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:16.038 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:16.038 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:17.039 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:17.039 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:17.740 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:02:17.742 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:02:17.743 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:02:17.743 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:02:18.038 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:18.038 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:19.039 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:19.039 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:19.066 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146934064 duration=0
2020-06-14 17:02:20.039 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:20.039 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:21.040 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:21.040 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:22.040 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:22.040 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:22.750 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:02:22.753 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:02:22.754 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:02:22.755 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:02:23.040 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:23.040 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:24.040 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:24.040 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:24.064 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146939066 duration=0
2020-06-14 17:02:25.040 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:25.041 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:26.040 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:26.040 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:27.041 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:27.041 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:27.762 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:02:27.764 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:02:27.766 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:02:27.766 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:02:28.041 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:28.041 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:29.041 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:29.041 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:29.065 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146944064 duration=0
2020-06-14 17:02:30.041 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:30.041 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:31.041 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:31.041 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:32.041 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:32.041 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:32.774 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:02:32.775 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:02:32.778 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:02:32.778 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:02:33.041 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:33.041 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:34.042 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:34.042 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:34.066 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146950194 duration=-1592018841967
2020-06-14 17:02:35.043 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:35.043 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:36.043 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:36.043 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:37.043 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:37.043 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:37.785 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:02:37.786 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:02:37.788 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:02:37.789 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:02:38.043 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:38.043 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:39.043 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:39.043 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:39.066 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146954066 duration=0
2020-06-14 17:02:39.458 1893-1893/? E/netmgr: Failed to open QEMU pipe 'qemud:network': Invalid argument
2020-06-14 17:02:40.043 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:40.043 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:41.043 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:41.043 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:42.044 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:42.044 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:42.795 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:02:42.797 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:02:42.798 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:02:42.799 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:02:43.043 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:43.044 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:44.043 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:44.044 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:44.068 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146950194 duration=-1
2020-06-14 17:02:45.044 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:45.044 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:46.044 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:46.044 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:47.044 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:47.044 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:47.805 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:02:47.807 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:02:47.809 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:02:47.809 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:02:48.044 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:48.044 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:49.043 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:49.043 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:49.886 2013-2530/system_process E/memtrack: Couldn't load memtrack module
2020-06-14 17:02:49.886 2013-2530/system_process W/android.os.Debug: failed to get memory consumption info: -1
2020-06-14 17:02:50.044 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:50.044 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:50.072 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146964068 duration=0
2020-06-14 17:02:51.045 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:51.045 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:52.043 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:52.043 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:52.814 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:02:52.815 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:02:52.820 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:02:52.820 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:02:53.043 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:53.043 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:54.044 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:54.044 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:55.044 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:55.044 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:55.071 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146970072 duration=0
2020-06-14 17:02:55.169 1913-1913/? E/wifi_forwarder: RemoteConnection failed to initialize: RemoteConnection failed to open pipe
2020-06-14 17:02:56.044 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:56.044 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:57.044 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:57.044 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:57.827 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:02:57.829 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:02:57.831 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:02:57.831 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:02:58.044 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:58.044 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:02:59.044 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:02:59.044 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:00.008 2248-2248/com.android.systemui D/KeyguardClockSwitch: Updating clock: 303
2020-06-14 17:03:00.048 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:00.048 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:01.048 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:01.048 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:01.075 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146975071 duration=0
2020-06-14 17:03:02.048 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:02.048 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:02.837 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:03:02.838 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:03:02.841 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:03:02.841 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:03:03.048 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:03.048 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:04.048 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:04.048 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:05.048 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:05.048 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:06.048 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:06.049 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:06.075 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146981075 duration=0
2020-06-14 17:03:07.049 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:07.049 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:07.847 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:03:07.849 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:03:07.851 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:03:07.851 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:03:08.049 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:08.049 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:09.049 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:09.050 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:10.049 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:10.049 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:11.050 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:11.050 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:12.049 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:12.050 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:12.077 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146986075 duration=0
2020-06-14 17:03:12.856 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:03:12.858 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:03:12.860 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:03:12.860 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:03:13.049 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:13.049 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:14.050 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:14.050 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:15.050 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:15.050 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:16.049 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:16.049 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:17.050 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:17.050 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:17.075 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146992077 duration=0
2020-06-14 17:03:17.865 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:03:17.868 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:03:17.871 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:03:17.871 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:03:18.049 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:18.049 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:19.050 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:19.050 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:20.050 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:20.050 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:21.050 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:21.050 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:22.050 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:22.050 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:22.078 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592146997075 duration=0
2020-06-14 17:03:22.876 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:03:22.878 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:03:22.880 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:03:22.881 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:03:23.050 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:23.050 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:24.050 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:24.050 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:25.051 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:25.051 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:26.050 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:26.051 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:27.050 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:27.050 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:27.081 2013-2166/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592147002078 duration=0
2020-06-14 17:03:27.884 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:03:27.885 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:03:27.886 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:03:27.887 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:03:28.050 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:28.050 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:29.051 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:29.051 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:30.051 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:30.051 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:31.051 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:31.051 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:32.051 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:32.051 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:32.080 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592147007081 duration=0
2020-06-14 17:03:32.901 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:03:32.902 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:03:32.903 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:03:32.903 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:03:33.051 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:33.051 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:34.051 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:34.051 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:35.052 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:35.052 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:36.051 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:36.051 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:37.052 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:37.052 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:37.079 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592147012080 duration=0
2020-06-14 17:03:37.909 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:03:37.912 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:03:37.914 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:03:37.914 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:03:38.052 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:38.052 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:39.052 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:39.052 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:39.469 1893-1893/? E/netmgr: Failed to open QEMU pipe 'qemud:network': Invalid argument
2020-06-14 17:03:40.053 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:40.053 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:41.053 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:41.053 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:42.053 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:42.053 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:42.080 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592147017080 duration=0
2020-06-14 17:03:42.921 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:03:42.923 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:03:42.925 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:03:42.925 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:03:43.053 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:43.053 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:44.053 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:44.053 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:45.053 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:45.053 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:46.053 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:46.053 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:47.053 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:47.053 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:47.077 2013-2166/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592147022080 duration=0
2020-06-14 17:03:47.931 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:03:47.935 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:03:47.937 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:03:47.939 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:03:48.053 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:48.053 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:49.053 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:49.053 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:50.053 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:50.053 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:51.053 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:51.053 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:52.053 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:52.053 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:52.946 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:03:52.948 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:03:52.951 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:03:52.951 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:03:53.053 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:53.053 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:53.071 2013-2166/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592147027077 duration=0
2020-06-14 17:03:54.053 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:54.053 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:55.054 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:55.054 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:55.180 1913-1913/? E/wifi_forwarder: RemoteConnection failed to initialize: RemoteConnection failed to open pipe
2020-06-14 17:03:56.053 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:56.053 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:57.054 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:57.054 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:57.957 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:03:57.959 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:03:57.961 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:03:57.961 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:03:58.053 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:58.053 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:59.054 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:03:59.054 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:03:59.077 2013-2166/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592147033072 duration=0
2020-06-14 17:04:00.013 2248-2248/com.android.systemui D/KeyguardClockSwitch: Updating clock: 304
2020-06-14 17:04:00.053 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:00.053 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:01.054 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:01.054 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:02.054 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:02.054 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:02.967 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:04:02.969 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:04:02.971 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:04:02.972 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:04:03.054 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:03.054 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:04.054 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:04.054 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:04.084 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592147039077 duration=0
2020-06-14 17:04:05.055 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:05.055 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:06.055 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:06.055 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:07.056 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:07.056 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:07.978 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:04:07.981 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:04:07.982 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:04:07.983 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:04:08.056 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:08.056 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:09.056 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:09.056 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:09.081 2013-4747/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592147044084 duration=0
2020-06-14 17:04:10.057 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:10.057 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:11.057 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:11.057 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:12.057 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:12.057 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:12.990 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:04:12.992 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:04:12.994 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:04:12.994 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:04:13.057 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:13.057 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:14.057 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:14.057 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:14.083 2013-4747/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592147049081 duration=0
2020-06-14 17:04:15.057 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:15.057 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:16.057 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:16.057 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:17.057 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:17.057 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:18.000 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:04:18.003 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:04:18.005 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:04:18.005 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:04:18.057 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:18.057 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:19.057 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:19.058 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:20.057 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:20.058 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:20.083 2013-4747/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592147054083 duration=0
2020-06-14 17:04:21.057 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:21.057 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:22.057 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:22.057 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:23.013 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:04:23.015 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:04:23.017 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:04:23.017 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:04:23.057 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:23.057 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:24.058 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:24.058 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:25.058 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:25.058 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:25.084 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592147060083 duration=0
2020-06-14 17:04:26.058 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:26.058 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:27.058 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:27.058 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:28.024 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:04:28.026 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:04:28.029 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:04:28.029 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:04:28.058 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:28.058 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:29.059 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:29.059 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:30.059 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:30.059 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:30.086 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592147065084 duration=0
2020-06-14 17:04:31.059 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:31.059 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:32.059 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:32.059 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:33.035 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:04:33.036 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:04:33.039 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:04:33.039 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:04:33.059 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:33.059 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:34.059 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:34.059 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:35.059 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:35.059 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:35.085 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592147070086 duration=0
2020-06-14 17:04:36.059 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:36.059 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:37.060 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:37.060 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:38.045 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:04:38.046 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:04:38.049 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:04:38.049 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:04:38.060 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:38.060 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:39.060 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:39.060 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:39.481 1893-1893/? E/netmgr: Failed to open QEMU pipe 'qemud:network': Invalid argument
2020-06-14 17:04:40.060 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:40.060 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:40.088 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592147075085 duration=0
2020-06-14 17:04:41.060 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:41.060 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:42.060 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:42.060 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:43.055 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:04:43.058 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:04:43.060 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:04:43.060 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:43.060 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:43.060 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:04:44.061 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:44.061 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:45.061 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:45.061 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:45.090 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592147080088 duration=0
2020-06-14 17:04:46.061 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:46.061 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:47.061 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:47.061 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:48.061 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:48.061 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:48.064 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:04:48.065 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:04:48.067 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:04:48.067 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:04:49.061 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:49.061 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:50.061 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:50.061 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:51.061 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:51.061 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:51.089 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592147085090 duration=0
2020-06-14 17:04:52.062 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:52.062 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:53.062 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:53.062 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:53.075 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:04:53.076 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:04:53.079 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:04:53.082 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:04:54.062 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:54.062 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:55.061 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:55.062 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:55.161 2013-2054/system_process E/memtrack: Couldn't load memtrack module
2020-06-14 17:04:55.161 2013-2054/system_process W/android.os.Debug: failed to get memory consumption info: -1
2020-06-14 17:04:55.228 1913-1913/? E/wifi_forwarder: RemoteConnection failed to initialize: RemoteConnection failed to open pipe
2020-06-14 17:04:55.884 2229-19801/com.google.android.gms.persistent I/Funnel: Init: funnel is disabled, skipping initialization.
2020-06-14 17:04:56.061 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:56.061 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:56.454 2229-19794/com.google.android.gms.persistent I/annw: Removed 0 invalid users [CONTEXT service_id=51 ]
2020-06-14 17:04:56.535 2561-12053/com.google.android.gms I/TelephonySpam: TelephonySpamChimeraService - Running Telephony Spam Chimera Service
2020-06-14 17:04:56.535 2561-12053/com.google.android.gms I/TelephonySpam: TelephonySpamChimeraService - Cleaning SIP Header local table of old entries
2020-06-14 17:04:56.535 2561-12053/com.google.android.gms I/TelephonySpam: SpamListSync - Call spam module disabled. Skipping cleaning cache sip header table.
2020-06-14 17:04:56.535 2561-12053/com.google.android.gms I/TelephonySpam: TelephonySpamChimeraService - Syncing Call Spam List
2020-06-14 17:04:56.536 2561-12053/com.google.android.gms I/TelephonySpam: SpamListSync - SpamListSyncChimeraService.syncSpamList called with tag: telephonyspam.SpamListSyncTask, extras: Bundle[{SpamList Type=0, Action=1.0}]
2020-06-14 17:04:56.536 2561-12053/com.google.android.gms I/TelephonySpam: SpamListSync - Call spam module disabled. Skipping spam list syncing.
2020-06-14 17:04:56.536 2561-12053/com.google.android.gms I/TelephonySpam: TelephonySpamChimeraService - Syncing Sms Spam List
2020-06-14 17:04:56.536 2561-12053/com.google.android.gms I/TelephonySpam: SpamListSync - SpamListSyncChimeraService.syncSpamList called with tag: telephonyspam.SpamListSyncTask, extras: Bundle[{SpamList Type=1, Action=1.0}]
2020-06-14 17:04:56.536 2561-12053/com.google.android.gms I/TelephonySpam: SpamListSync - SMS spam module disabled. Skipping spam list syncing.
2020-06-14 17:04:56.698 2229-19794/com.google.android.gms.persistent W/Conscrypt: Could not set socket write timeout: java.net.SocketException: Socket closed
2020-06-14 17:04:56.698 2229-19794/com.google.android.gms.persistent W/Conscrypt: at com.google.android.gms.org.conscrypt.Platform.setSocketWriteTimeout(:com.google.android.gms@19275022@19.2.75 (040700-269183835):2)
2020-06-14 17:04:56.698 2229-19794/com.google.android.gms.persistent W/Conscrypt: at com.google.android.gms.org.conscrypt.ConscryptFileDescriptorSocket.setSoWriteTimeout(:com.google.android.gms@19275022@19.2.75 (040700-269183835):2)
2020-06-14 17:04:56.746 2229-19794/com.google.android.gms.persistent W/Conscrypt: Could not set socket write timeout: java.net.SocketException: Socket closed
2020-06-14 17:04:56.747 2229-19794/com.google.android.gms.persistent W/Conscrypt: at com.google.android.gms.org.conscrypt.Platform.setSocketWriteTimeout(:com.google.android.gms@19275022@19.2.75 (040700-269183835):2)
2020-06-14 17:04:56.747 2229-19794/com.google.android.gms.persistent W/Conscrypt: at com.google.android.gms.org.conscrypt.ConscryptFileDescriptorSocket.setSoWriteTimeout(:com.google.android.gms@19275022@19.2.75 (040700-269183835):2)
2020-06-14 17:04:56.858 2561-12053/com.google.android.gms I/ModuleSetUtils: Assembling ModuleSetRecord for container:19275+vision.ocr,maps:20151200: [zapp:/VisionOcr.optional/19275000700, zapp:/MapsDynamite.integ/201512001000000]
2020-06-14 17:04:56.893 2561-12053/com.google.android.gms I/ModuleSetUtils: Assembling ModuleSetRecord for container:19275+vision.ocr,maps:20151200: [zapp:/VisionOcr.optional/19275000700, zapp:/MapsDynamite.integ/201512001000000]
2020-06-14 17:04:56.900 2561-12053/com.google.android.gms I/ChmraDebugLogger: [73] 1801
2020-06-14 17:04:56.907 2561-12053/com.google.android.gms I/ChmraDebugLogger: [30] MapsDynamite.integ:201512001000000 permitMetered=true,
2020-06-14 17:04:56.933 2561-12053/com.google.android.gms I/ChimeraConfigService: Scheduling checkin for one-off execution between [3300,43200] seconds from now (1592147096933)
2020-06-14 17:04:56.968 2561-20508/com.google.android.gms I/ModuleSetUtils: Assembling ModuleSetRecord for container:19275+vision.ocr,maps:20151200: [zapp:/VisionOcr.optional/19275000700, zapp:/MapsDynamite.integ/201512001000000]
2020-06-14 17:04:56.974 2561-12053/com.google.android.gms I/GmsModuleFndr: Beginning GMS chimera module scan
2020-06-14 17:04:56.999 2561-2572/com.google.android.gms W/gle.android.gm: Reducing the number of considered missed Gc histogram windows from 276 to 100
2020-06-14 17:04:57.016 2561-12053/com.google.android.gms I/ModuleSetMgr: Computing pending module set with APKs: {file:///system/product/priv-app/PrebuiltGmsCore/PrebuiltGmsCore.apk}
2020-06-14 17:04:57.024 2561-12053/com.google.android.gms I/ModuleSetUtils: Assembling ModuleSetRecord for container:19275: []
2020-06-14 17:04:57.024 2561-12053/com.google.android.gms I/ModuleSetMgr: Pending container Zapp APKs: []
2020-06-14 17:04:57.024 2561-12053/com.google.android.gms I/ModuleSetMgr: Pending non-container Zapp APKs: []
2020-06-14 17:04:57.062 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:57.062 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:57.076 2013-4747/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592147095879 duration=-1
2020-06-14 17:04:57.087 2561-12053/com.google.android.gms I/ModuleSetUtils: Assembling ModuleSetRecord for container:19275+vision.ocr,maps:20151200: [zapp:/VisionOcr.optional/19275000700, zapp:/MapsDynamite.integ/201512001000000]
2020-06-14 17:04:57.317 2561-12053/com.google.android.gms I/Checkin: [EventLogChimeraService] Opted in for usage reporting: false
2020-06-14 17:04:57.317 2561-12053/com.google.android.gms I/Checkin: [EventLogChimeraService] Aggregate from 1592145715630 (log), 1592145715630 (data)
2020-06-14 17:04:57.516 2229-19794/com.google.android.gms.persistent I/anno: Scheduling adaptive one off task with window [14400, 604800] in seconds [CONTEXT service_id=51 ]
2020-06-14 17:04:57.530 2229-18481/com.google.android.gms.persistent W/NetworkScheduler: Task was rescheduled during execution - postponing the schedule request
2020-06-14 17:04:57.895 2013-4020/system_process W/ProcessStats: Tracking association SourceState{95a2780 com.google.android.gms.persistent/10101 ImpFg #48750} whose proc state 2 is better than process ProcessState{b6dc23c com.google.android.gms/10101 pkg=com.google.android.gms} proc state 3 (31 skipped)
2020-06-14 17:04:57.953 2229-2259/com.google.android.gms.persistent W/Icing: isOptedInForAppHistory: empty Account Name encountered
2020-06-14 17:04:57.970 2229-19801/com.google.android.gms.persistent W/Icing: isOptedInForAppHistory: empty Account Name encountered
2020-06-14 17:04:58.062 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:58.062 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:58.085 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:04:58.086 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:04:58.087 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:04:58.087 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:04:58.267 2013-4747/system_process I/DropBoxManagerService: add tag=event_data isTagEnabled=true flags=0x2
2020-06-14 17:04:58.274 2013-2057/system_process W/BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.DROPBOX_ENTRY_ADDED flg=0x10 (has extras) } to com.google.android.gms/.stats.service.DropBoxEntryAddedReceiver
2020-06-14 17:04:58.274 2013-2057/system_process W/BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.DROPBOX_ENTRY_ADDED flg=0x10 (has extras) } to com.google.android.gms/.chimera.GmsIntentOperationService$PersistentTrustedReceiver
2020-06-14 17:04:59.062 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:04:59.062 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:04:59.130 2013-2530/system_process D/WificondControl: Scan result ready event
2020-06-14 17:05:00.013 2248-2248/com.android.systemui D/KeyguardClockSwitch: Updating clock: 305
2020-06-14 17:05:00.062 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:00.062 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:01.063 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:01.063 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:01.689 2459-2473/com.google.android.networkstack W/id.networkstac: Reducing the number of considered missed Gc histogram windows from 499 to 100
2020-06-14 17:05:02.063 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:02.063 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:02.091 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592147097076 duration=0
2020-06-14 17:05:03.063 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:03.063 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:03.092 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:05:03.094 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:05:03.095 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:05:03.095 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:05:04.063 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:04.064 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:04.464 3287-3305/com.google.process.gservices W/ocess.gservice: Reducing the number of considered missed Gc histogram windows from 295 to 100
2020-06-14 17:05:05.063 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:05.063 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:06.063 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:06.063 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:07.063 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:07.063 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:07.087 2013-4747/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592147102092 duration=0
2020-06-14 17:05:08.063 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:08.064 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:08.102 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:05:08.103 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:05:08.104 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:05:08.104 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:05:09.064 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:09.064 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:10.063 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:10.063 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:11.064 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:11.064 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:12.064 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:12.064 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:12.088 2013-4747/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592147107087 duration=0
2020-06-14 17:05:12.349 2013-4747/system_process W/ProcessStats: Tracking association SourceState{95a2780 com.google.android.gms.persistent/10101 ImpFg #48799} whose proc state 2 is better than process ProcessState{b6dc23c com.google.android.gms/10101 pkg=com.google.android.gms} proc state 3 (23 skipped)
2020-06-14 17:05:13.064 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:13.064 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:13.111 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:05:13.114 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:05:13.114 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:05:13.115 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:05:14.064 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:14.064 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:15.064 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:15.064 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:16.064 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:16.064 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:17.064 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:17.064 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:17.089 2013-4747/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592147112088 duration=0
2020-06-14 17:05:18.064 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:18.064 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:18.122 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:05:18.124 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:05:18.125 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:05:18.125 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:05:19.064 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:19.064 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:19.930 2013-2025/system_process I/system_server: Background young concurrent copying GC freed 102879(4348KB) AllocSpace objects, 10(376KB) LOS objects, 16% free, 23MB/27MB, paused 1.214ms total 138.940ms
2020-06-14 17:05:20.064 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:20.064 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:21.064 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:21.064 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:22.064 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:22.064 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:22.087 2013-4747/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592147117089 duration=0
2020-06-14 17:05:23.064 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:23.064 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:23.129 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:05:23.132 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:05:23.132 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:05:23.133 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:05:24.064 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:24.064 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:25.064 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:25.064 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:26.064 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:26.064 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:27.064 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:27.064 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:27.089 2013-4747/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592147122087 duration=0
2020-06-14 17:05:28.064 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:28.064 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:28.138 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:05:28.139 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:05:28.140 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:05:28.140 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:05:29.064 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:29.064 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:30.064 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:30.064 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:31.065 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:31.065 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:32.065 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:32.065 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:32.097 2013-4747/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592147130932 duration=-1592018841953
2020-06-14 17:05:33.065 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:33.065 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:33.144 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:05:33.145 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:05:33.146 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:05:33.146 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:05:34.065 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:34.065 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:35.065 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:35.065 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:36.065 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:36.065 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:37.065 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:37.065 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:37.088 2013-4747/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592147132097 duration=0
2020-06-14 17:05:38.064 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:38.065 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:38.149 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:05:38.151 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:05:38.151 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:05:38.152 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:05:39.065 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:39.065 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:39.522 1893-1893/? E/netmgr: Failed to open QEMU pipe 'qemud:network': Invalid argument
2020-06-14 17:05:40.065 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:40.065 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:41.065 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:41.065 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:42.065 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:42.065 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:43.065 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:43.065 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:43.089 2013-4747/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592147130932 duration=-1
2020-06-14 17:05:43.159 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:05:43.161 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:05:43.163 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:05:43.163 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:05:44.065 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:44.065 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:45.065 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:45.065 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:46.065 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:46.065 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:47.065 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:47.065 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:48.065 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:48.065 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:48.168 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:05:48.170 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:05:48.171 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:05:48.171 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:05:48.786 2013-4747/system_process I/WifiService: acquireWifiLock uid=10101 lockMode=2
2020-06-14 17:05:49.066 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:49.066 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:49.094 2013-4747/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592147143089 duration=0
2020-06-14 17:05:49.619 2013-4747/system_process D/WificondControl: Scan result ready event
2020-06-14 17:05:49.658 2013-4747/system_process I/WifiService: releaseWifiLock uid=10101
2020-06-14 17:05:50.066 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:50.066 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:51.066 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:51.066 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:52.066 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:52.066 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:53.066 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:53.066 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:53.178 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:05:53.180 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:05:53.183 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:05:53.184 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:05:54.066 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:54.066 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:55.066 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:55.066 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:55.078 2013-4747/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592147149390 duration=-1
2020-06-14 17:05:55.289 1913-1913/? E/wifi_forwarder: RemoteConnection failed to initialize: RemoteConnection failed to open pipe
2020-06-14 17:05:56.068 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:56.068 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:57.068 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:57.068 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:58.068 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:58.068 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:05:58.190 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:05:58.192 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:05:58.193 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:05:58.194 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:05:59.068 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:05:59.068 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:00.012 2248-2248/com.android.systemui D/KeyguardClockSwitch: Updating clock: 306
2020-06-14 17:06:00.127 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:00.127 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:00.239 2013-4747/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592147155078 duration=0
2020-06-14 17:06:01.089 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:01.089 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:02.089 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:02.089 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:03.089 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:03.089 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:03.200 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:06:03.203 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:06:03.205 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:06:03.205 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:06:04.090 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:04.090 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:05.090 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:05.090 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:06.090 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:06.090 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:06.120 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592147160239 duration=0
2020-06-14 17:06:07.090 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:07.090 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:08.090 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:08.090 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:08.211 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:06:08.212 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:06:08.214 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:06:08.215 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:06:09.091 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:09.091 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:10.091 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:10.091 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:11.091 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:11.091 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:11.122 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592147166120 duration=0
2020-06-14 17:06:12.091 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:12.091 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:13.091 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:13.091 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:13.221 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:06:13.223 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:06:13.224 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:06:13.225 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:06:14.091 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:14.091 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:15.091 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:15.091 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:16.091 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:16.091 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:16.118 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592147171122 duration=0
2020-06-14 17:06:17.091 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:17.091 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:18.091 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:18.091 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:18.230 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:06:18.231 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:06:18.231 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:06:18.232 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:06:19.091 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:19.091 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:20.091 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:20.091 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:21.091 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:21.091 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:22.091 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:22.091 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:22.116 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592147176118 duration=0
2020-06-14 17:06:22.387 2013-2054/system_process I/UsageStatsService: User[0] Flushing usage stats to disk
2020-06-14 17:06:22.450 2013-2054/system_process E/AppIdleHistory: Error writing app idle file for user 0
2020-06-14 17:06:23.091 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:23.091 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:23.237 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:06:23.239 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:06:23.240 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:06:23.241 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:06:24.091 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:24.091 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:25.092 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:25.092 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:26.092 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:26.092 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:27.092 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:27.092 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:27.118 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592147184436 duration=-1592018841960
2020-06-14 17:06:28.092 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:28.092 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:28.247 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:06:28.249 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:06:28.250 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:06:28.251 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:06:29.092 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:29.092 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:30.092 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:30.092 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:31.092 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:31.092 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:32.092 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:32.092 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:32.120 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592147187118 duration=0
2020-06-14 17:06:33.093 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:33.093 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:33.257 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:06:33.259 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:06:33.261 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:06:33.261 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:06:34.093 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:34.093 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:35.093 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:35.093 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:36.093 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:36.093 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:37.093 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:37.093 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:37.118 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592147184436 duration=-1
2020-06-14 17:06:38.094 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:38.094 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:38.271 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:06:38.273 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:06:38.274 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:06:38.275 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:06:39.093 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:39.093 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:39.568 1893-1893/? E/netmgr: Failed to open QEMU pipe 'qemud:network': Invalid argument
2020-06-14 17:06:40.093 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:40.093 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:41.093 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:41.093 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:42.093 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:42.093 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:43.096 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:43.096 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:43.151 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592147197118 duration=0
2020-06-14 17:06:43.281 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:06:43.284 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:06:43.290 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:06:43.291 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:06:44.098 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:44.098 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:45.096 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:45.096 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:46.097 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:46.097 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:47.096 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:47.096 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:48.096 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:48.096 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:48.297 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:06:48.299 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:06:48.301 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:06:48.304 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:06:49.096 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:49.097 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:49.125 2013-2530/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592147203151 duration=0
2020-06-14 17:06:50.096 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:50.096 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:51.097 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:51.097 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:52.096 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:52.097 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:53.097 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:53.097 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:53.310 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:06:53.312 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:06:53.314 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:06:53.314 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:06:53.315 4855-19771/com.google.android.googlequicksearchbox I/DeviceStateChecker: DeviceStateChecker cancelled
2020-06-14 17:06:54.097 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:54.097 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:54.125 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592147209125 duration=0
2020-06-14 17:06:55.097 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:55.097 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:55.352 1913-1913/? E/wifi_forwarder: RemoteConnection failed to initialize: RemoteConnection failed to open pipe
2020-06-14 17:06:56.096 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:56.097 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:57.097 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:57.097 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:58.097 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:58.097 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:58.321 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:06:58.322 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:06:58.324 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:06:58.324 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:06:59.098 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:06:59.098 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:06:59.129 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592147214125 duration=0
2020-06-14 17:07:00.047 2248-2248/com.android.systemui D/KeyguardClockSwitch: Updating clock: 307
2020-06-14 17:07:00.104 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:07:00.104 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:07:01.098 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:07:01.098 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:07:02.097 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:07:02.098 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:07:03.098 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:07:03.098 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:07:03.331 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:07:03.333 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:07:03.334 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:07:03.335 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:07:04.098 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:07:04.098 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:07:04.128 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592147219129 duration=0
2020-06-14 17:07:05.097 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:07:05.098 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:07:06.098 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:07:06.098 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:07:07.097 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:07:07.097 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:07:08.098 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:07:08.098 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:07:08.342 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #startMicroDetector [speakerMode: 0]
2020-06-14 17:07:08.343 4855-4904/com.google.android.googlequicksearchbox W/ErrorReporter: reportError [type: 211, code: 393244, bug: 0]: errorCode: 393244, engine: 0
2020-06-14 17:07:08.345 4855-4904/com.google.android.googlequicksearchbox I/MicroDetector: Keeping mic open: false
2020-06-14 17:07:08.345 4855-4904/com.google.android.googlequicksearchbox I/MicroDetectionWorker: #onError(false)
2020-06-14 17:07:09.098 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:07:09.098 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:07:10.098 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: a: input svInfo.flags is 8
2020-06-14 17:07:10.098 1765-2506/? E/GnssHAL_GnssInterface: gnssSvStatusCb: b: input svInfo.flags is 8
2020-06-14 17:07:10.125 2013-4020/system_process W/AppOps: Noting op not finished: uid 10101 pkg com.google.android.gms code 41 time=1592147224129 duration=0

Hilfreich?
Kommentieren
Tom20
  • Forum-Beiträge: 39

14.06.2020, 17:12:54 via Website

So jetzt muss ich das mit den txt Dateien nochmal checken....den das lief bisher

Hilfreich?
Kommentieren
Tom20
  • Forum-Beiträge: 39

14.06.2020, 17:13:17 via Website

willst Du sie

Hilfreich?
Kommentieren
Jokel
  • Forum-Beiträge: 1.530

14.06.2020, 17:15:34 via Website

Der Emulator hat keine Verbindung mit dem Netzwerk. Es kommt keine Verbindung mit dem Pi zustande.
Da könnte dein Firewall schuld sein

Hilfreich?
Tom20
Kommentieren
Jokel
  • Forum-Beiträge: 1.530

14.06.2020, 17:21:13 via Website

willst Du sie

Ja

— geändert am 14.06.2020, 17:35:38

Hilfreich?
Kommentieren
Tom20
  • Forum-Beiträge: 39

14.06.2020, 17:22:10 via Website

lief aber komischerweise alles schon mal

Hilfreich?
Kommentieren
Jokel
  • Forum-Beiträge: 1.530

14.06.2020, 17:23:23 via Website

nur du weist was du gemacht hast.

Hilfreich?
Tom20
Kommentieren
Tom20
  • Forum-Beiträge: 39

14.06.2020, 17:24:12 via Website

könnten wir uns das Problem nicht mal mim Teamviewer anschauen...das geht doch dann ratz fatz

Hilfreich?
Kommentieren
Jokel
  • Forum-Beiträge: 1.530

14.06.2020, 17:32:22 via Website

was ist jetzt hat dein Emulator jetzt eine Netzwerk Verbindung oder nicht.
gehe im Emulator doch mal auf eine Webseite.

Mit dem senden könnte gehen wenn das Skript den übergehen wert auch behandelt sehe ich aber nicht.

Hilfreich?
Tom20
Kommentieren
Tom20
  • Forum-Beiträge: 39

14.06.2020, 17:36:21 via Website

es ist so, dass ich sowohl Daten empfange als auch schreibe

daher mögen die inputstream berechtigt sein ... wie heist der ausgabebefehl ? Outputstream find ich nicht

Hilfreich?
Kommentieren
Jokel
  • Forum-Beiträge: 1.530

14.06.2020, 17:39:29 via Website

es müsste schon gehen wenn du eine Verbindung hast und das Skript auch den Übergabe wert benutzt. ?wert=" + wert

Hilfreich?
Tom20
Kommentieren
Tom20
  • Forum-Beiträge: 39

14.06.2020, 17:43:52 via Website

ich weis schlicht wegg nicht wie ich den emulator teste
sorry

Hilfreich?
Kommentieren