1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947
|
--------- beginning of main
[ 01-01 15:12:06.640 root: 600: 600 I/chatty ]
uid=0(root) /system/bin/thermal-engine expire 3 lines
[ 01-01 15:12:16.640 root: 600: 600 W/thermal-engine ]
type=1400 audit(0.0:1021): avc: denied { search } for name="leds" dev="sysfs" ino=7453 scontext=u:r:thermal-engine:s0 tcontext=u:object_r:sysfs_leds:s0 tclass=dir permissive=0
[ 01-01 15:12:24.572 10081:20049:20054 I/zygote64 ]
Integer.valueOf will not be optimized
--------- beginning of system
[ 01-01 15:12:24.863 1000: 2272: 3628 I/PowerManagerService ]
Going to sleep due to power button (uid 1000)...
--------- switch to main
[ 01-01 15:12:24.572 10081:20049:20054 I/zygote64 ]
Integer.valueOf will not be optimized
[ 01-01 15:12:25.055 10081:20049:20054 I/zygote64 ]
Compiler allocated 6MB to compile void android.view.ViewRootImpl.performTraversals()
--------- switch to system
[ 01-01 15:12:25.343 1000: 2272: 3592 D/BatteryStatsService ]
begin noteScreenState
[ 01-01 15:12:25.344 1000: 2272: 3592 D/BatteryStatsService ]
end noteScreenState
[ 01-01 15:12:25.347 1000: 2272: 3582 I/VrManagerService ]
VR mode is disallowed
--------- switch to main
[ 01-01 15:12:25.431 1000: 2272: 3592 I/sensors ]
activate
[ 01-01 15:12:25.436 1000: 2272: 3592 I/nanohub ]
queueActivate: sensor=28, handle=30, enable=0
[ 01-01 15:12:25.437 1000: 2272: 3592 V/KeyguardServiceDelegate ]
onScreenTurnedOff()
[ 01-01 15:12:25.440 1000: 2272: 3617 I/nanohub ]
osLog: [BMI160] accPower: on=0, state=3
[ 01-01 15:12:25.441 1000: 2272: 3592 I/sensors ]
activate
[ 01-01 15:12:25.443 1000: 2272: 3592 I/nanohub ]
queueActivate: sensor=12, handle=7, enable=0
--------- switch to system
[ 01-01 15:12:25.448 1000: 2272: 3590 I/DisplayManagerService ]
Display device changed state: "Built-in Screen", OFF
--------- switch to main
[ 01-01 15:12:25.453 1000: 398: 398 D/SurfaceFlinger ]
Set power mode=0, type=0 flinger=0x7542c6c000
--------- switch to system
[ 01-01 15:12:25.464 1000: 2272: 3614 W/LocalDisplayAdapter ]
Unable to find color mode 0, ignoring request.
--------- switch to main
[ 01-01 15:12:25.466 1000: 398: 398 D/qdhwcomposer ]
hwc_setPowerMode: Setting mode 0 on display: 0
[ 01-01 15:12:25.595 1000: 398: 462 I/qdhwcomposer ]
handle_blank_event: dpy:0 panel power state: 0
[ 01-01 15:12:25.599 1000: 398: 398 D/qdhwcomposer ]
hwc_setPowerMode: Done setting mode 0 on display 0
[ 01-01 15:12:25.599 1000: 2272: 3787 D/SurfaceControl ]
Excessive delay in setPowerMode(): 146ms
--------- switch to system
[ 01-01 15:12:25.604 1000: 2272: 3592 I/DreamManagerService ]
Entering dreamland.
[ 01-01 15:12:25.605 1000: 2272: 3592 I/PowerManagerService ]
Dozing...
[ 01-01 15:12:25.607 1000: 2272: 3588 I/DreamController ]
Starting dream: name=ComponentInfo{com.android.systemui/com.android.systemui.doze.DozeService}, isTest=false, canDoze=true, userId=0
--------- switch to main
[ 01-01 15:12:25.643 1000: 2272: 8012 I/sensors ]
batch
[ 01-01 15:12:25.646 1000: 2272: 8012 I/nanohub ]
queueBatch: sensor=24, handle=20, period=1000000, latency=0
[ 01-01 15:12:25.646 1000: 2272: 8012 I/sensors ]
activate
[ 01-01 15:12:25.648 1000: 2272: 8012 I/nanohub ]
queueActivate: sensor=24, handle=20, enable=1
[ 01-01 15:12:25.652 1000: 2272: 3617 I/nanohub ]
osLog: [PickupGesture] power: 1
[ 01-01 15:12:25.654 1000: 2272: 3617 I/nanohub ]
osLog: [BMI160] accPower: on=1, state=4
[ 01-01 15:12:25.656 1000: 2272: 3617 I/nanohub ]
osLog: [BMI160] accPower: on=1, state=3
[ 01-01 15:12:25.658 1000: 2272: 3617 I/nanohub ]
osLog: [Activity] activity activity powered on, new state 2
--------- switch to system
[ 01-01 15:12:25.684 1000: 2272: 4217 I/ActivityManager ]
Setting hasTopUi=true for pid=3812
--------- switch to main
[ 01-01 15:12:25.694 1041: 541: 678 I/ServiceManager ]
Waiting for service media.log...
[ 01-01 15:12:25.723 10036: 3812: 3819 I/zygote64 ]
Integer.valueOf will not be optimized
[ 01-01 15:12:25.730 nfc: 4175: 4351 E/NxpTml ]
_i2c_write() errno : 5
[ 01-01 15:12:25.731 nfc: 4175: 4351 E/NxpTml ]
PN54X - Error in I2C Write.....
[ 01-01 15:12:25.731 nfc: 4175: 4353 E/NxpHal ]
write error status = 0x1ff
[ 01-01 15:12:25.731 nfc: 4175: 4346 E/NxpHal ]
write_unlocked failed - PN54X Maybe in Standby Mode - Retry
[ 01-01 15:12:25.898 10036: 3812: 3812 D/StatusBar ]
disable: < expand icons alerts system_info back HOME* RECENT* clock search quick_settings >
[ 01-01 15:12:26.644 root: 600: 600 W/thermal-engine ]
type=1400 audit(0.0:1022): avc: denied { search } for name="leds" dev="sysfs" ino=7453 scontext=u:r:thermal-engine:s0 tcontext=u:object_r:sysfs_leds:s0 tclass=dir permissive=0
[ 01-01 15:12:26.694 1041: 541: 678 I/ServiceManager ]
Waiting for service media.log...
[ 01-01 15:12:27.695 1041: 541: 678 I/chatty ]
uid=1041(audioserver) MediaLogNotifie identical 1 line
[ 01-01 15:12:28.696 1041: 541: 678 I/ServiceManager ]
Waiting for service media.log...
[ 01-01 15:12:36.647 root: 600: 600 W/thermal-engine ]
type=1400 audit(0.0:1023): avc: denied { search } for name="leds" dev="sysfs" ino=7453 scontext=u:r:thermal-engine:s0 tcontext=u:object_r:sysfs_leds:s0 tclass=dir permissive=0
[ 01-01 15:12:36.858 1000: 2272: 3617 I/nanohub ]
osLog: [Activity] detected still, confidence: 92, votes: 3, motionConfidence: 2
[ 01-01 15:12:46.650 root: 600: 600 W/thermal-engine ]
type=1400 audit(0.0:1024): avc: denied { search } for name="leds" dev="sysfs" ino=7453 scontext=u:r:thermal-engine:s0 tcontext=u:object_r:sysfs_leds:s0 tclass=dir permissive=0
[ 01-01 15:12:56.654 root: 600: 600 W/thermal-engine ]
type=1400 audit(0.0:1025): avc: denied { search } for name="leds" dev="sysfs" ino=7453 scontext=u:r:thermal-engine:s0 tcontext=u:object_r:sysfs_leds:s0 tclass=dir permissive=0
[ 01-01 15:12:56.898 1000: 2272: 5402 D/WificondControl ]
Scan result ready event
[ 01-01 15:12:56.951 1000: 2272: 3755 W/WifiConfigManager ]
Looking up network with invalid networkId -1
[ 01-01 15:13:06.657 root: 600: 600 W/thermal-engine ]
type=1400 audit(0.0:1026): avc: denied { search } for name="leds" dev="sysfs" ino=7453 scontext=u:r:thermal-engine:s0 tcontext=u:object_r:sysfs_leds:s0 tclass=dir permissive=0
[ 01-01 15:13:26.664 root: 600: 600 I/chatty ]
uid=0(root) /system/bin/thermal-engine identical 2 lines
[ 01-01 15:13:36.667 root: 600: 600 W/thermal-engine ]
type=1400 audit(0.0:1029): avc: denied { search } for name="leds" dev="sysfs" ino=7453 scontext=u:r:thermal-engine:s0 tcontext=u:object_r:sysfs_leds:s0 tclass=dir permissive=0
[ 01-01 15:13:40.125 1000: 2272: 3617 I/nanohub ]
osLog: [Activity] detected still, confidence: 92, votes: 3, motionConfidence: 7
[ 01-01 15:13:46.670 root: 600: 600 W/thermal-engine ]
type=1400 audit(0.0:1030): avc: denied { search } for name="leds" dev="sysfs" ino=7453 scontext=u:r:thermal-engine:s0 tcontext=u:object_r:sysfs_leds:s0 tclass=dir permissive=0
[ 01-01 15:13:56.674 root: 600: 600 W/thermal-engine ]
type=1400 audit(0.0:1031): avc: denied { search } for name="leds" dev="sysfs" ino=7453 scontext=u:r:thermal-engine:s0 tcontext=u:object_r:sysfs_leds:s0 tclass=dir permissive=0
[ 01-01 15:13:56.996 1000: 2272: 3617 I/nanohub ]
osLog: [PickupGesture] sending event 0x00000001
[ 01-01 15:13:57.005 1000: 2272: 3617 I/nanohub ]
osLog: [Activity] activity activity powered off, new state 0
[ 01-01 15:13:57.007 1000: 2272: 3617 I/nanohub ]
osLog: [PickupGesture] power: 0
[ 01-01 15:13:57.011 1000: 2272: 3617 I/nanohub ]
osLog: [BMI160] accPower: on=0, state=5
[ 01-01 15:13:57.014 1000: 2272: 3617 I/nanohub ]
osLog: [BMI160] accPower: on=0, state=3
[ 01-01 15:13:57.029 1000: 2272: 5447 I/sensors ]
batch
[ 01-01 15:13:57.032 1000: 2272: 5447 I/nanohub ]
queueBatch: sensor=24, handle=20, period=1000000, latency=0
[ 01-01 15:13:57.032 1000: 2272: 5447 I/sensors ]
activate
[ 01-01 15:13:57.035 1000: 2272: 5447 I/nanohub ]
queueActivate: sensor=24, handle=20, enable=1
[ 01-01 15:13:57.037 1000: 2272: 3617 I/nanohub ]
osLog: [PickupGesture] power: 1
--------- switch to system
[ 01-01 15:13:57.038 1000: 2272: 3592 D/BatteryStatsService ]
begin noteScreenState
--------- switch to main
[ 01-01 15:13:57.038 1000: 2272: 3617 I/nanohub ]
osLog: [BMI160] accPower: on=1, state=4
--------- switch to system
[ 01-01 15:13:57.039 1000: 2272: 3592 D/BatteryStatsService ]
end noteScreenState
[ 01-01 15:13:57.039 1000: 2272: 3592 I/DisplayPowerController ]
Blocking screen on until initial contents have been drawn.
--------- switch to main
[ 01-01 15:13:57.040 1000: 2272: 3592 V/KeyguardServiceDelegate ]
onScreenTurnedOn(showListener = com.android.server.policy.PhoneWindowManager$2@cb6ff88)
[ 01-01 15:13:57.043 1000: 398: 398 D/SurfaceFlinger ]
Set power mode=1, type=0 flinger=0x7542c6c000
--------- switch to system
[ 01-01 15:13:57.043 1000: 2272: 3590 I/DisplayManagerService ]
Display device changed state: "Built-in Screen", DOZE
--------- switch to main
[ 01-01 15:13:57.043 1000: 398: 398 D/qdhwcomposer ]
hwc_setPowerMode: Setting mode 1 on display: 0
[ 01-01 15:13:57.047 1000: 2272: 3617 I/nanohub ]
osLog: [BMI160] accPower: on=1, state=3
[ 01-01 15:13:57.050 1000: 2272: 4464 I/sensors ]
batch
[ 01-01 15:13:57.050 1000: 2272: 3617 I/nanohub ]
osLog: [Activity] activity activity powered on, new state 2
--------- switch to system
[ 01-01 15:13:57.058 1000: 2272: 3614 W/LocalDisplayAdapter ]
Unable to find color mode 0, ignoring request.
--------- switch to main
[ 01-01 15:13:57.059 1000: 2272: 4464 I/nanohub ]
queueBatch: sensor=13, handle=6, period=200000000, latency=0
[ 01-01 15:13:57.059 1000: 2272: 4464 I/sensors ]
activate
[ 01-01 15:13:57.074 1000: 2272: 4464 I/nanohub ]
queueActivate: sensor=13, handle=6, enable=1
[ 01-01 15:13:57.084 1000: 2272: 4088 V/KeyguardServiceDelegate ]
**** SHOWN CALLED ****
[ 01-01 15:13:57.095 10036: 3812: 3819 I/zygote64 ]
Integer.valueOf will not be optimized
--------- switch to system
[ 01-01 15:13:57.166 1000: 2272: 3592 I/DisplayPowerController ]
Unblocked screen on after 127 ms
--------- switch to main
[ 01-01 15:13:57.167 1000: 2272: 3592 V/KeyguardServiceDelegate ]
onScreenTurnedOn()
[ 01-01 15:13:57.298 1000: 398: 398 D/qdhwcomposer ]
hwc_setPowerMode: Done setting mode 1 on display 0
[ 01-01 15:13:57.298 1000: 398: 462 I/qdhwcomposer ]
handle_blank_event: dpy:0 panel power state: 2
[ 01-01 15:13:57.305 1000: 2272: 3787 D/SurfaceControl ]
Excessive delay in setPowerMode(): 262ms
--------- switch to system
[ 01-01 15:13:57.395 1000: 2272: 3628 I/PowerManagerService ]
Waking up from dozing (uid 1000)...
--------- switch to main
[ 01-01 15:13:57.400 1000: 2272: 2272 I/sensors ]
batch
[ 01-01 15:13:57.403 1000: 2272: 2272 I/nanohub ]
queueBatch: sensor=28, handle=30, period=66667000, latency=0
[ 01-01 15:13:57.403 1000: 2272: 2272 I/sensors ]
activate
--------- switch to system
[ 01-01 15:13:57.404 1000: 2272: 3592 D/BatteryStatsService ]
begin noteScreenState
[ 01-01 15:13:57.405 1000: 2272: 3592 D/BatteryStatsService ]
end noteScreenState
--------- switch to main
[ 01-01 15:13:57.406 1000: 2272: 2272 I/nanohub ]
queueActivate: sensor=28, handle=30, enable=1
[ 01-01 15:13:57.406 1000: 2272: 2272 V/KeyguardServiceDelegate ]
onStartedWakingUp()
[ 01-01 15:13:57.409 1000: 2272: 3592 I/sensors ]
batch
[ 01-01 15:13:57.412 1000: 2272: 3592 I/nanohub ]
queueBatch: sensor=12, handle=7, period=250000000, latency=0
[ 01-01 15:13:57.412 1000: 2272: 3592 I/sensors ]
activate
[ 01-01 15:13:57.414 1000: 2272: 3592 I/nanohub ]
queueActivate: sensor=12, handle=7, enable=1
[ 01-01 15:13:57.418 1000: 398: 398 D/SurfaceFlinger ]
Set power mode=2, type=0 flinger=0x7542c6c000
[ 01-01 15:13:57.418 1000: 398: 398 D/qdhwcomposer ]
hwc_setPowerMode: Setting mode 2 on display: 0
--------- switch to system
[ 01-01 15:13:57.418 1000: 2272: 3590 I/DisplayManagerService ]
Display device changed state: "Built-in Screen", ON
[ 01-01 15:13:57.419 1000: 2272: 3582 I/ActivityManager ]
Killing 14363:com.google.android.ims/u0a94 (adj 902): empty for 1839s
[ 01-01 15:13:57.420 1000: 2272: 3582 I/ActivityManager ]
Killing 14629:com.android.cellbroadcastreceiver/u0a5 (adj 904): empty for 1839s
[ 01-01 15:13:57.421 1000: 2272: 3582 I/ActivityManager ]
Killing 14601:org.codeaurora.ims/1001 (adj 904): empty for 1839s
[ 01-01 15:13:57.422 1000: 2272: 3582 I/ActivityManager ]
Killing 14575:com.verizon.omadm/u0a9 (adj 904): empty for 1839s
[ 01-01 15:13:57.423 1000: 2272: 3582 I/ActivityManager ]
Killing 14301:com.google.android.carriersetup/u0a93 (adj 904): empty for 1839s
--------- switch to main
[ 01-01 15:13:57.423 1000: 398: 462 I/qdhwcomposer ]
handle_blank_event: dpy:0 panel power state: 1
--------- switch to system
[ 01-01 15:13:57.423 1000: 2272: 3582 I/ActivityManager ]
Killing 14132:com.android.sdm.plugins.sprintdm/1001 (adj 904): empty for 1839s
[ 01-01 15:13:57.424 1000: 2272: 3582 I/ActivityManager ]
Killing 14711:com.lge.HiddenMenu/1000 (adj 906): empty for 1841s
[ 01-01 15:13:57.431 1000: 2272: 3592 I/DreamManagerService ]
Gently waking up from dream.
[ 01-01 15:13:57.433 1000: 2272: 3614 W/LocalDisplayAdapter ]
Unable to find color mode 0, ignoring request.
--------- switch to main
[ 01-01 15:13:57.450 1041: 541: 678 I/ServiceManager ]
Waiting for service media.log...
--------- switch to system
[ 01-01 15:13:57.454 1000: 2272: 8012 I/DreamManagerService ]
Leaving dreamland.
[ 01-01 15:13:57.455 1000: 2272: 3588 I/DreamController ]
Stopping dream: name=ComponentInfo{com.android.systemui/com.android.systemui.doze.DozeService}, isTest=false, canDoze=true, userId=0
--------- switch to main
[ 01-01 15:13:57.495 1000: 398: 398 D/qdhwcomposer ]
hwc_setPowerMode: Done setting mode 2 on display 0
[ 01-01 15:13:57.502 1000: 2272: 3578 I/sensors ]
activate
[ 01-01 15:13:57.504 1000: 2272: 3578 I/nanohub ]
queueActivate: sensor=24, handle=20, enable=0
[ 01-01 15:13:57.506 nfc: 4175: 4346 D/BrcmNfcJni ]
RoutingManager::nfaEeCallback: NFA_EE_SET_TECH_CFG_EVT; status=0x0
[ 01-01 15:13:57.509 nfc: 4175: 4346 D/BrcmNfcJni ]
RoutingManager::nfaEeCallback: NFA_EE_SET_PROTO_CFG_EVT; status=0x0
[ 01-01 15:13:57.511 nfc: 4175:20146 D/BrcmNfcJni ]
RoutingManager::commitRouting
[ 01-01 15:13:57.511 1000: 2272: 3617 I/nanohub ]
osLog: [PickupGesture] power: 0
[ 01-01 15:13:57.512 nfc: 4175: 4346 D/BrcmNfcJni ]
RoutingManager::nfaEeCallback: NFA_EE_UPDATED_EVT
[ 01-01 15:13:57.514 nfc: 4175: 4351 E/NxpTml ]
_i2c_write() errno : 5
[ 01-01 15:13:57.514 nfc: 4175: 4351 E/NxpTml ]
PN54X - Error in I2C Write.....
[ 01-01 15:13:57.514 nfc: 4175: 4353 E/NxpHal ]
write error status = 0x1ff
[ 01-01 15:13:57.515 1000: 2272: 3617 I/nanohub ]
osLog: [Activity] activity activity powered off, new state 0
[ 01-01 15:13:57.516 nfc: 4175: 4346 E/NxpHal ]
write_unlocked failed - PN54X Maybe in Standby Mode - Retry
[ 01-01 15:13:57.552 10036: 3812: 3819 I/zygote64 ]
Integer.valueOf will not be optimized
[ 01-01 15:13:57.561 10036: 3812: 3819 I/chatty ]
uid=10036(u0_a36) Jit thread pool identical 4 lines
[ 01-01 15:13:57.568 10036: 3812: 3819 I/zygote64 ]
Integer.valueOf will not be optimized
[ 01-01 15:13:58.164 1000: 2272: 3617 I/nanohub ]
osLog: [WO] rotation changed to: ******* 0 *******
[ 01-01 15:13:58.194 10036: 3812: 3819 I/zygote64 ]
Integer.valueOf will not be optimized
[ 01-01 15:13:58.450 1041: 541: 678 I/ServiceManager ]
Waiting for service media.log...
[ 01-01 15:13:58.730 10036: 3812: 3812 D/StatusBar ]
disable: < expand icons alerts system_info back HOME RECENT clock search quick_settings >
--------- switch to system
[ 01-01 15:13:58.812 1000: 2272: 3582 I/VrManagerService ]
VR mode is allowed
--------- switch to main
[ 01-01 15:13:58.813 10036: 3812: 3812 D/StatusBar ]
disable: < expand icons alerts system_info back HOME RECENT clock search quick_settings >
[ 01-01 15:13:58.997 1000: 2272: 8012 I/sensors ]
activate
[ 01-01 15:13:58.999 1000: 2272: 8012 I/nanohub ]
queueActivate: sensor=13, handle=6, enable=0
[ 01-01 15:13:59.042 nfc: 4175: 4351 E/NxpTml ]
_i2c_write() errno : 5
[ 01-01 15:13:59.043 nfc: 4175: 4351 E/NxpTml ]
PN54X - Error in I2C Write.....
[ 01-01 15:13:59.043 nfc: 4175: 4353 E/NxpHal ]
write error status = 0x1ff
[ 01-01 15:13:59.043 nfc: 4175: 4346 E/NxpHal ]
write_unlocked failed - PN54X Maybe in Standby Mode - Retry
[ 01-01 15:13:59.054 nfc: 4175: 4346 E/BrcmNfcJni ]
nfaConnectionCallback: unknown event ????
[ 01-01 15:13:59.054 nfc: 4175: 4346 D/BrcmNfcJni ]
RoutingManager::nfaEeCallback: NFA_EE_SET_TECH_CFG_EVT; status=0x0
[ 01-01 15:13:59.057 nfc: 4175: 4346 D/BrcmNfcJni ]
RoutingManager::nfaEeCallback: NFA_EE_SET_PROTO_CFG_EVT; status=0x0
[ 01-01 15:13:59.057 nfc: 4175:20160 D/BrcmNfcJni ]
RoutingManager::commitRouting
[ 01-01 15:13:59.057 nfc: 4175: 4346 D/BrcmNfcJni ]
RoutingManager::nfaEeCallback: NFA_EE_UPDATED_EVT
[ 01-01 15:13:59.109 10036: 3812: 3812 D/StatusBar ]
disable: < expand icons alerts system_info back home* recent* clock search quick_settings >
[ 01-01 15:13:59.156 10018: 4514: 4514 I/DeviceCache ]
Unable to convert the the network interface's MAC Address to string. MAC address cannot be null.
[ 01-01 15:13:59.308 10018: 4514: 4514 I/chatty ]
uid=10018(u0_a18) com.google.android.gms identical 18 lines
[ 01-01 15:13:59.319 10018: 4514: 4514 I/DeviceCache ]
Unable to convert the the network interface's MAC Address to string. MAC address cannot be null.
[ 01-01 15:13:59.450 1041: 541: 678 I/ServiceManager ]
Waiting for service media.log...
--------- switch to system
[ 01-01 15:13:59.462 1000: 2272: 5450 I/ActivityManager ]
Setting hasTopUi=false for pid=3812
--------- switch to main
[ 01-01 15:14:00.090 1041: 541: 5252 D/audio_route ]
Apply path: speaker-protected
[ 01-01 15:14:00.097 1041: 541: 5252 D/audio_hw_primary ]
enable_snd_device: snd_device(88: vi-feedback)
[ 01-01 15:14:00.098 1041: 541: 5252 D/audio_route ]
Apply path: vi-feedback
[ 01-01 15:14:00.098 1041: 541: 5252 D/audio_hw_primary ]
enable_audio_route: usecase(23) apply and update mixer path: spkr-vi-record
[ 01-01 15:14:00.098 1041: 541: 5252 D/audio_route ]
Apply path: spkr-vi-record
[ 01-01 15:14:00.123 1041: 541: 5252 D/audio_hw_primary ]
enable_audio_route: usecase(1) apply and update mixer path: low-latency-playback
[ 01-01 15:14:00.123 1041: 541: 5252 D/audio_route ]
Apply path: low-latency-playback
--------- switch to system
[ 01-01 15:14:00.192 1000: 2272: 3627 I/ActivityManager ]
START u0 {act=android.intent.action.MAIN cat=[android.intent.category.HOME] flg=0x10200000 cmp=com.google.android.googlequicksearchbox/com.google.android.launcher.GEL (has extras)} from uid 1000
--------- switch to main
[ 01-01 15:14:00.451 1041: 541: 678 I/ServiceManager ]
Waiting for service media.log...
[ 01-01 15:14:00.458 1000: 2272: 3783 W/OpenGLRenderer ]
Warning: attempt to read pixels from hardware bitmap, which is very slow operation
[ 01-01 15:14:00.458 1000: 2272: 3635 I/OpenGLRenderer ]
Initialized EGL, version 1.4
[ 01-01 15:14:00.458 1000: 2272: 3635 D/OpenGLRenderer ]
Swap behavior 2
[ 01-01 15:14:00.564 10038:18491:18672 I/AttachedClient ]
Adding client event 2 to pending list.
[ 01-01 15:14:00.565 1000: 2272: 2282 I/zygote64 ]
Background concurrent copying GC freed 16057(13MB) AllocSpace objects, 0(0B) LOS objects, 42% free, 15MB/27MB, paused 530us total 107.155ms
[ 01-01 15:14:00.642 10038:18491:18491 I/OptInState ]
There is a new client and it does not support opt-in. Dropping request.
[ 01-01 15:14:00.648 1041: 541: 717 D/audio_hw_primary ]
disable_audio_route: usecase(1) reset and update mixer path: low-latency-playback
[ 01-01 15:14:00.655 10038:18491:18491 I/MicroDetectionWorker ]
#updateMicroDetector [currentDetectionMode: [mDetectionMode: [1]]]
[ 01-01 15:14:00.655 10038:18491:18491 I/MicroDetectionWorker ]
#startMicroDetector [speakerMode: 0]
[ 01-01 15:14:00.657 10038:18491:18496 I/zygote64 ]
Integer.valueOf will not be optimized
[ 01-01 15:14:00.664 1041: 541: 717 D/audio_hw_primary ]
disable_snd_device: snd_device(88: vi-feedback)
[ 01-01 15:14:00.664 1041: 541: 717 D/audio_hw_primary ]
disable_audio_route: usecase(23) reset and update mixer path: spkr-vi-record
[ 01-01 15:14:00.666 10038:18491:19016 I/MicroRecognitionRunner ]
Starting detection.
[ 01-01 15:14:00.680 10038:18491:19008 I/MicrophoneInputStream ]
mic_starting com.google.android.apps.gsa.speech.audio.ag@4fc0a
[ 01-01 15:14:00.683 1041: 541: 5248 W/DeviceHAL ]
Device 0xf4fad000 open_input_stream: Invalid argument
[ 01-01 15:14:00.685 1041: 541:20182 I/AudioFlinger ]
AudioFlinger's thread 0xf1220600 tid=20182 ready to run
[ 01-01 15:14:00.699 10038:18491:19008 I/MicrophoneInputStream ]
mic_started com.google.android.apps.gsa.speech.audio.ag@4fc0a
[ 01-01 15:14:00.699 1041: 541: 741 I/SoundTriggerHwService::Module ]
onCallbackEvent no clients
[ 01-01 15:14:00.702 1041: 541:20183 D/sound_trigger_platform ]
platform_stdev_check_and_update_concurrency: concurrency active 0, tx 1, rx 0, concurrency session_allowed 0
[ 01-01 15:14:00.702 1041: 541:20183 D/audio_hw_primary ]
enable_snd_device: snd_device(72: voice-rec-mic)
[ 01-01 15:14:00.702 1041: 541:20183 D/audio_route ]
Apply path: voice-rec-mic
[ 01-01 15:14:00.704 10038:18491:19015 W/LocationOracle ]
No location history returned by ContextManager
[ 01-01 15:14:00.711 10038:18491:18491 I/MicroDetectionWorker ]
onReady
[ 01-01 15:14:00.712 10038:18491:18496 I/zygote64 ]
Integer.valueOf will not be optimized
[ 01-01 15:14:00.720 1041: 541:20183 D/audio_hw_primary ]
enable_audio_route: usecase(9) apply and update mixer path: audio-record
[ 01-01 15:14:00.720 1041: 541:20183 D/audio_route ]
Apply path: audio-record
[ 01-01 15:14:00.733 1000: 2272: 3783 W/OpenGLRenderer ]
Warning: attempt to read pixels from hardware bitmap, which is very slow operation
[ 01-01 15:14:00.737 10038:18491:18502 I/zygote64 ]
Background concurrent copying GC freed 3431(3MB) AllocSpace objects, 1(68KB) LOS objects, 49% free, 8MB/17MB, paused 6.968ms total 70.367ms
[ 01-01 15:14:00.796 10038:18491:18491 I/MicroDetectionWorker ]
onReady
[ 01-01 15:14:00.814 10018: 5497: 5537 W/GCoreFlp ]
No location to return for getLastLocation()
[ 01-01 15:14:00.870 1000: 2272: 3783 W/OpenGLRenderer ]
Warning: attempt to read pixels from hardware bitmap, which is very slow operation
[ 01-01 15:14:00.876 10038: 4245: 4483 W/OpenGLRenderer ]
Incorrectly called buildLayer on View: ShortcutAndWidgetContainer, destroying layer...
[ 01-01 15:14:00.979 1000: 2272: 5401 D/WificondControl ]
Scan result ready event
[ 01-01 15:14:01.029 1000: 2272: 3755 W/WifiConfigManager ]
Looking up network with invalid networkId -1
[ 01-01 15:14:01.119 10018: 5497:19840 I/Places ]
?: Couldn't find platform key file.
[ 01-01 15:14:01.341 10018: 5497:19650 I/Places ]
?: Couldn't find platform key file.
[ 01-01 15:14:01.347 10018: 5497:20187 I/PlaceInferenceEngine ]
[anon] Changed inference mode: 105
[ 01-01 15:14:01.348 10018: 5497:20188 I/Places ]
?: Couldn't find platform key file.
[ 01-01 15:14:01.352 10018: 5497: 5537 W/GCoreFlp ]
No location to return for getLastLocation()
[ 01-01 15:14:01.378 10018: 5497:20032 W/ctxmgr ]
[AclManager]No 3 for (accnt=account#-517948760#, com.google.android.googlequicksearchbox(10038):com.google.android.googlequicksearchbox, vrsn=10298000, 1, 3pPkg = null , 3pMdlId = null). Was: 3 for 18, account#-517948760#
[ 01-01 15:14:01.383 1000: 2272: 4464 I/sensors ]
batch
[ 01-01 15:14:01.387 10038:18491:19015 W/zygote64 ]
Long monitor contention with owner NonUserFacing9 (19135) at boolean android.os.BinderProxy.transactNative(int, android.os.Parcel, android.os.Parcel, int)(Binder.java:-2) waiters=0 in boolean com.google.android.apps.gsa.staticplugins.q.g.aJV() for 606ms
[ 01-01 15:14:01.395 10018: 5497:19840 I/Places ]
?: Couldn't find platform key file.
[ 01-01 15:14:01.395 1000: 2272: 4464 I/nanohub ]
queueBatch: sensor=1, handle=1, period=20000000, latency=0
[ 01-01 15:14:01.395 1000: 2272: 4464 I/sensors ]
activate
[ 01-01 15:14:01.401 1000: 2272: 4464 I/nanohub ]
queueActivate: sensor=1, handle=1, enable=1
[ 01-01 15:14:01.454 10018: 5497:20032 E/ctxmgr ]
[ProducerStatusImpl]updateStateForNewContextData: inactive, contextName=7
[ 01-01 15:14:01.505 10018: 5497:19161 I/Places ]
?: Couldn't find platform key file.
[ 01-01 15:14:01.513 10018: 5497:19161 I/Places ]
?: Couldn't find platform key file.
[ 01-01 15:14:01.547 10018: 5497:20187 I/Places ]
?: PlacesBleScanner start() with priority 2
[ 01-01 15:14:01.548 10018: 5497:20187 I/PlaceInferenceEngine ]
[anon] Changed inference mode: 102
[ 01-01 15:14:01.570 10018: 5497: 5537 W/GCoreFlp ]
No location to return for getLastLocation()
[ 01-01 15:14:01.631 10018: 5497:20187 W/Places ]
?: Failed to download inference model weights
[ 01-01 15:14:01.631 10018: 5497:20187 W/PlaceInferenceEngine ]
Failed to download model weights. Status code: 7
[ 01-01 15:14:01.639 10018: 5497:19161 I/Places ]
?: Couldn't find platform key file.
[ 01-01 15:14:02.091 1041: 541: 5252 D/audio_route ]
Apply path: speaker-protected
[ 01-01 15:14:02.094 1041: 541: 5252 D/audio_hw_primary ]
enable_snd_device: snd_device(88: vi-feedback)
[ 01-01 15:14:02.094 1041: 541: 5252 D/audio_route ]
Apply path: vi-feedback
[ 01-01 15:14:02.094 1041: 541: 5252 D/audio_hw_primary ]
enable_audio_route: usecase(23) apply and update mixer path: spkr-vi-record
[ 01-01 15:14:02.094 1041: 541: 5252 D/audio_route ]
Apply path: spkr-vi-record
--------- switch to system
[ 01-01 15:14:02.097 1000: 2272: 5450 I/ActivityManager ]
START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.android.settings/.Settings bnds=[435,1254][646,1507] (has extras)} from uid 10038
--------- switch to main
[ 01-01 15:14:02.134 1041: 541: 5252 D/audio_hw_primary ]
enable_audio_route: usecase(1) apply and update mixer path: low-latency-playback
[ 01-01 15:14:02.134 1041: 541: 5252 D/audio_route ]
Apply path: low-latency-playback
[ 01-01 15:14:02.214 1000:14206:14206 I/zygote64 ]
Starting a blocking GC Explicit
[ 01-01 15:14:02.265 1000:14206:14206 I/zygote64 ]
Explicit concurrent copying GC freed 2205(1093KB) AllocSpace objects, 0(0B) LOS objects, 49% free, 3MB/7MB, paused 357us total 50.228ms
[ 01-01 15:14:02.270 1000:14206:14206 I/zygote64 ]
Starting a blocking GC Explicit
[ 01-01 15:14:02.300 1000:14206:14206 I/zygote64 ]
Explicit concurrent copying GC freed 217(778KB) AllocSpace objects, 0(0B) LOS objects, 49% free, 3MB/7MB, paused 163us total 29.425ms
[ 01-01 15:14:02.306 1000:14206:14206 E/StrictMode ]
class com.android.settings.SubSettings; instances=2; limit=1
android.os.StrictMode$InstanceCountViolation: class com.android.settings.SubSettings; instances=2; limit=1
at android.os.StrictMode.setClassInstanceLimit(StrictMode.java:1)
--------- switch to system
[ 01-01 15:14:02.364 1000:14206:14206 E/ActivityThread ]
Activity com.android.settings.SubSettings has leaked ServiceConnection android.bluetooth.BluetoothA2dp$2@97ec6ff that was originally bound here
android.app.ServiceConnectionLeaked: Activity com.android.settings.SubSettings has leaked ServiceConnection android.bluetooth.BluetoothA2dp$2@97ec6ff that was originally bound here
at android.app.LoadedApk$ServiceDispatcher.<init>(LoadedApk.java:1485)
at android.app.LoadedApk.getServiceDispatcher(LoadedApk.java:1377)
at android.app.ContextImpl.bindServiceCommon(ContextImpl.java:1592)
at android.app.ContextImpl.bindServiceAsUser(ContextImpl.java:1552)
at android.content.ContextWrapper.bindServiceAsUser(ContextWrapper.java:699)
at android.bluetooth.BluetoothA2dp.doBind(BluetoothA2dp.java:200)
at android.bluetooth.BluetoothA2dp.<init>(BluetoothA2dp.java:193)
at android.bluetooth.BluetoothAdapter.getProfileProxy(BluetoothAdapter.java:2044)
at com.android.settings.development.DevelopmentSettings.onCreateView(DevelopmentSettings.java:712)
at android.app.Fragment.performCreateView(Fragment.java:2554)
at android.app.FragmentManagerImpl.moveToState(FragmentManager.java:1262)
at android.app.FragmentManagerImpl.moveFragmentToExpectedState(FragmentManager.java:1516)
at android.app.FragmentManagerImpl.moveToState(FragmentManager.java:1578)
at android.app.FragmentManagerImpl.dispatchMoveToState(FragmentManager.java:2999)
at android.app.FragmentManagerImpl.dispatchActivityCreated(FragmentManager.java:2951)
at android.app.FragmentController.dispatchActivityCreated(FragmentController.java:178)
at android.app.Activity.performCreateCommon(Activity.java:6899)
at android.app.Activity.performCreate(Activity.java:6907)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1212)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2768)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2890)
at android.app.ActivityThread.-wrap11(Unknown Source:0)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1591)
at android.os.Handler.dispatchMessage(Handler.java:105)
at android.os.Looper.loop(Looper.java:164)
at android.app.ActivityThread.main(ActivityThread.java:6537)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.Zygote$MethodAndArgsCaller.run(Zygote.java:240)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:767)
--------- switch to main
[ 01-01 15:14:02.366 1000:14206:14206 E/StrictMode ]
null
android.app.ServiceConnectionLeaked: Activity com.android.settings.SubSettings has leaked ServiceConnection android.bluetooth.BluetoothA2dp$2@97ec6ff that was originally bound here
at android.app.LoadedApk$ServiceDispatcher.<init>(LoadedApk.java:1485)
at android.app.LoadedApk.getServiceDispatcher(LoadedApk.java:1377)
at android.app.ContextImpl.bindServiceCommon(ContextImpl.java:1592)
at android.app.ContextImpl.bindServiceAsUser(ContextImpl.java:1552)
at android.content.ContextWrapper.bindServiceAsUser(ContextWrapper.java:699)
at android.bluetooth.BluetoothA2dp.doBind(BluetoothA2dp.java:200)
at android.bluetooth.BluetoothA2dp.<init>(BluetoothA2dp.java:193)
at android.bluetooth.BluetoothAdapter.getProfileProxy(BluetoothAdapter.java:2044)
at com.android.settings.development.DevelopmentSettings.onCreateView(DevelopmentSettings.java:712)
at android.app.Fragment.performCreateView(Fragment.java:2554)
at android.app.FragmentManagerImpl.moveToState(FragmentManager.java:1262)
at android.app.FragmentManagerImpl.moveFragmentToExpectedState(FragmentManager.java:1516)
at android.app.FragmentManagerImpl.moveToState(FragmentManager.java:1578)
at android.app.FragmentManagerImpl.dispatchMoveToState(FragmentManager.java:2999)
at android.app.FragmentManagerImpl.dispatchActivityCreated(FragmentManager.java:2951)
at android.app.FragmentController.dispatchActivityCreated(FragmentController.java:178)
at android.app.Activity.performCreateCommon(Activity.java:6899)
at android.app.Activity.performCreate(Activity.java:6907)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1212)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2768)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2890)
at android.app.ActivityThread.-wrap11(Unknown Source:0)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1591)
at android.os.Handler.dispatchMessage(Handler.java:105)
at android.os.Looper.loop(Looper.java:164)
at android.app.ActivityThread.main(ActivityThread.java:6537)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.Zygote$MethodAndArgsCaller.run(Zygote.java:240)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:767)
--------- switch to system
[ 01-01 15:14:02.367 1000: 2272: 5402 W/ActivityManager ]
Unbind failed: could not find connection for android.os.BinderProxy@d2a6c1d
--------- switch to main
[ 01-01 15:14:02.397 1000:14206:14206 D/DashboardSummary ]
Listening for condition changes
[ 01-01 15:14:02.397 1000:14206:14206 D/DashboardSummary ]
onConditionsChanged
[ 01-01 15:14:02.398 1000:14206:14206 D/DashboardAdapter ]
adapter setConditions called
[ 01-01 15:14:02.398 1000:14206:14206 D/DashboardSummary ]
conditions refreshed
[ 01-01 15:14:02.398 1000:14206:14206 D/APM_Condition ]
APM condition refreshed
[ 01-01 15:14:02.399 1000:14206:14206 D/APM_Condition ]
setActive was called with false
[ 01-01 15:14:02.456 1041: 541: 678 I/ServiceManager ]
Waiting for service media.log...
[ 01-01 15:14:02.507 1000:14206:20201 D/DatabaseIndexingManager ]
Indexing locale 'en_US' took 17 millis
[ 01-01 15:14:02.537 1000:14206:20202 D/DatabaseIndexingManager ]
Indexing locale 'en_US' took 10 millis
[ 01-01 15:14:02.644 1000:14206:20203 I/SuggestionParser ]
Use your voice requires unavailable account type com.google
[ 01-01 15:14:02.660 1041: 541: 717 D/audio_hw_primary ]
disable_audio_route: usecase(1) reset and update mixer path: low-latency-playback
[ 01-01 15:14:02.672 1000:14206:20203 W/Bundle ]
Key com.android.settings.dismiss expected String but value was a java.lang.Integer. The default value <null> was returned.
[ 01-01 15:14:02.673 1000:14206:20203 W/Bundle ]
Attempt to cast generated internal exception:
java.lang.ClassCastException: java.lang.Integer cannot be cast to java.lang.String
at android.os.BaseBundle.getString(BaseBundle.java:1072)
at com.android.settingslib.SuggestionParser.getDismissControl(SuggestionParser.java:377)
at com.android.settingslib.SuggestionParser.isDismissed(SuggestionParser.java:330)
at com.android.settingslib.SuggestionParser.filterSuggestions(SuggestionParser.java:187)
at com.android.settingslib.SuggestionParser.readSuggestions(SuggestionParser.java:204)
at com.android.settingslib.SuggestionParser.getSuggestions(SuggestionParser.java:151)
at com.android.settings.dashboard.DashboardSummary$SuggestionLoader.doInBackground(DashboardSummary.java:260)
at com.android.settings.dashboard.DashboardSummary$SuggestionLoader.doInBackground(DashboardSummary.java:255)
at android.os.AsyncTask$2.call(AsyncTask.java:305)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at android.os.AsyncTask$SerialExecutor$1.run(AsyncTask.java:243)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)
at java.lang.Thread.run(Thread.java:764)
[ 01-01 15:14:02.677 1041: 541: 717 D/audio_hw_primary ]
disable_snd_device: snd_device(88: vi-feedback)
[ 01-01 15:14:02.677 1041: 541: 717 D/audio_hw_primary ]
disable_audio_route: usecase(23) reset and update mixer path: spkr-vi-record
--------- switch to system
[ 01-01 15:14:02.699 1000: 2272: 4464 D/BatteryStatsService ]
begin updateExternalStatsSync reason=get-stats
[ 01-01 15:14:02.801 1000: 2272: 4464 E/BatteryStatsService ]
no controller energy info supplied
[ 01-01 15:14:02.854 1000: 2272: 4464 D/BatteryStatsImpl ]
Reading cpu stats took 34 ms
[ 01-01 15:14:02.881 1000: 2272: 4464 E/KernelMemoryBandwidthStats ]
Failed to read memory bandwidth: /sys/kernel/memory_state_time/show_stat (No such file or directory)
[ 01-01 15:14:02.881 1000: 2272: 4464 D/BatteryStatsService ]
end updateExternalStatsSync
--------- switch to main
[ 01-01 15:14:02.891 10038:18491:18491 I/MicroDetector ]
Keeping mic open: false
[ 01-01 15:14:02.892 10038:18491:18549 I/MicroRecognitionRunner ]
Stopping hotword detection.
[ 01-01 15:14:02.896 10038:18491:19006 I/DeviceStateChecker ]
DeviceStateChecker cancelled
[ 01-01 15:14:02.897 10038:18491:19016 I/MicroRecognitionRunner ]
Detection finished
[ 01-01 15:14:02.899 10038:18491:19007 I/AudioController ]
internalShutdown
[ 01-01 15:14:02.900 10038:18491:19007 I/MicrophoneInputStream ]
mic_close com.google.android.apps.gsa.speech.audio.ag@4fc0a
[ 01-01 15:14:02.997 1000: 2272: 3590 W/zygote64 ]
Long monitor contention with owner ActivityManager (3582) at void com.android.server.am.ActivityStackSupervisor$ActivityStackSupervisorHandler.activityIdleInternal(com.android.server.am.ActivityRecord, boolean)(ActivityStackSupervisor.java:4228) waiters=0 in void com.android.server.am.ActivityManagerService.notifyActivityDrawn(android.os.IBinder) for 178ms
[ 01-01 15:14:02.997 1000: 2272: 3579 W/zygote64 ]
Long monitor contention with owner ActivityManager (3582) at void com.android.server.am.ActivityStackSupervisor$ActivityStackSupervisorHandler.activityIdleInternal(com.android.server.am.ActivityRecord, boolean)(ActivityStackSupervisor.java:4228) waiters=1 in boolean com.android.server.am.ActivityManagerService.unbindService(android.app.IServiceConnection) for 122ms
[ 01-01 15:14:03.041 1041: 541:20182 D/audio_hw_primary ]
disable_audio_route: usecase(9) reset and update mixer path: audio-record
[ 01-01 15:14:03.042 1041: 541:20182 D/audio_hw_primary ]
disable_snd_device: snd_device(72: voice-rec-mic)
[ 01-01 15:14:03.049 1041: 541:20182 D/sound_trigger_platform ]
platform_stdev_check_and_update_concurrency: concurrency active 0, tx 0, rx 0, concurrency session_allowed 1
[ 01-01 15:14:03.054 1041: 541: 741 I/SoundTriggerHwService::Module ]
onCallbackEvent no clients
[ 01-01 15:14:03.240 1000:14206:20198 I/SuggestionParser ]
Use your voice requires unavailable account type com.google
[ 01-01 15:14:03.267 1000:14206:20198 W/Bundle ]
Key com.android.settings.dismiss expected String but value was a java.lang.Integer. The default value <null> was returned.
[ 01-01 15:14:03.269 1000:14206:20198 W/Bundle ]
Attempt to cast generated internal exception:
java.lang.ClassCastException: java.lang.Integer cannot be cast to java.lang.String
at android.os.BaseBundle.getString(BaseBundle.java:1072)
at com.android.settingslib.SuggestionParser.getDismissControl(SuggestionParser.java:377)
at com.android.settingslib.SuggestionParser.isDismissed(SuggestionParser.java:330)
at com.android.settingslib.SuggestionParser.filterSuggestions(SuggestionParser.java:187)
at com.android.settingslib.SuggestionParser.readSuggestions(SuggestionParser.java:204)
at com.android.settingslib.SuggestionParser.getSuggestions(SuggestionParser.java:151)
at com.android.settings.dashboard.DashboardSummary$SuggestionLoader.doInBackground(DashboardSummary.java:260)
at com.android.settings.dashboard.DashboardSummary$SuggestionLoader.doInBackground(DashboardSummary.java:255)
at android.os.AsyncTask$2.call(AsyncTask.java:305)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at android.os.AsyncTask$SerialExecutor$1.run(AsyncTask.java:243)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)
at java.lang.Thread.run(Thread.java:764)
[ 01-01 15:14:03.456 1041: 541: 678 I/ServiceManager ]
Waiting for service media.log...
[ 01-01 15:14:03.495 1041: 541: 5252 D/audio_route ]
Apply path: speaker-protected
[ 01-01 15:14:03.497 1041: 541: 5252 D/audio_hw_primary ]
enable_snd_device: snd_device(88: vi-feedback)
[ 01-01 15:14:03.497 1041: 541: 5252 D/audio_route ]
Apply path: vi-feedback
[ 01-01 15:14:03.497 1041: 541: 5252 D/audio_hw_primary ]
enable_audio_route: usecase(23) apply and update mixer path: spkr-vi-record
[ 01-01 15:14:03.497 1041: 541: 5252 D/audio_route ]
Apply path: spkr-vi-record
[ 01-01 15:14:03.522 1041: 541: 5252 D/audio_hw_primary ]
enable_audio_route: usecase(1) apply and update mixer path: low-latency-playback
[ 01-01 15:14:03.522 1041: 541: 5252 D/audio_route ]
Apply path: low-latency-playback
--------- switch to system
[ 01-01 15:14:03.529 1000: 2272: 3627 I/ActivityManager ]
START u0 {act=android.intent.action.MAIN cat=[android.intent.category.HOME] flg=0x10200000 cmp=com.google.android.googlequicksearchbox/com.google.android.launcher.GEL (has extras)} from uid 1000
--------- switch to main
[ 01-01 15:14:03.581 10038: 4245: 4251 I/zygote64 ]
Integer.valueOf will not be optimized
[ 01-01 15:14:03.581 10038: 4245: 4251 I/zygote64 ]
Integer.valueOf will not be optimized
[ 01-01 15:14:03.585 1000:14206:14206 D/DashboardSummary ]
Stopped listening for condition changes
[ 01-01 15:14:03.669 10038:18491:18672 I/AttachedClient ]
Adding client event 2 to pending list.
[ 01-01 15:14:03.715 1000: 2272: 3783 W/OpenGLRenderer ]
Warning: attempt to read pixels from hardware bitmap, which is very slow operation
[ 01-01 15:14:03.785 10038:18491:18491 I/MicroDetectionWorker ]
#updateMicroDetector [currentDetectionMode: [mDetectionMode: [1]]]
[ 01-01 15:14:03.785 10038:18491:18491 I/MicroDetectionWorker ]
#startMicroDetector [speakerMode: 0]
[ 01-01 15:14:03.805 10038:18491:19006 I/MicroRecognitionRunner ]
Starting detection.
[ 01-01 15:14:03.806 10038:18491:18496 I/zygote64 ]
Integer.valueOf will not be optimized
[ 01-01 15:14:03.806 10038:18491:19008 I/MicrophoneInputStream ]
mic_starting com.google.android.apps.gsa.speech.audio.ag@85dd117
[ 01-01 15:14:03.813 1041: 541: 5248 W/DeviceHAL ]
Device 0xf4fad000 open_input_stream: Invalid argument
[ 01-01 15:14:03.819 1041: 541:20213 I/AudioFlinger ]
AudioFlinger's thread 0xf1220e40 tid=20213 ready to run
[ 01-01 15:14:03.836 10038:18491:18491 I/MicroDetectionWorker ]
onReady
[ 01-01 15:14:03.837 1041: 541: 741 I/SoundTriggerHwService::Module ]
onCallbackEvent no clients
[ 01-01 15:14:03.837 10038:18491:19008 I/MicrophoneInputStream ]
mic_started com.google.android.apps.gsa.speech.audio.ag@85dd117
[ 01-01 15:14:03.841 1041: 541:20214 D/sound_trigger_platform ]
platform_stdev_check_and_update_concurrency: concurrency active 0, tx 1, rx 0, concurrency session_allowed 0
[ 01-01 15:14:03.841 1041: 541:20214 D/audio_hw_primary ]
enable_snd_device: snd_device(72: voice-rec-mic)
[ 01-01 15:14:03.841 1041: 541:20214 D/audio_route ]
Apply path: voice-rec-mic
[ 01-01 15:14:03.849 1041: 541:20214 D/audio_hw_primary ]
enable_audio_route: usecase(9) apply and update mixer path: audio-record
[ 01-01 15:14:03.850 1041: 541:20214 D/audio_route ]
Apply path: audio-record
[ 01-01 15:14:03.901 10038:18491:18491 I/MicroDetectionWorker ]
onReady
[ 01-01 15:14:03.922 1000: 2272: 3783 W/OpenGLRenderer ]
Warning: attempt to read pixels from hardware bitmap, which is very slow operation
[ 01-01 15:14:04.032 1041: 541: 717 D/audio_hw_primary ]
disable_audio_route: usecase(1) reset and update mixer path: low-latency-playback
[ 01-01 15:14:04.044 1041: 541: 717 D/audio_hw_primary ]
disable_snd_device: snd_device(88: vi-feedback)
[ 01-01 15:14:04.044 1041: 541: 717 D/audio_hw_primary ]
disable_audio_route: usecase(23) reset and update mixer path: spkr-vi-record
[ 01-01 15:14:04.045 1000: 2272: 3783 W/OpenGLRenderer ]
Warning: attempt to read pixels from hardware bitmap, which is very slow operation
[ 01-01 15:14:04.159 10038: 4245: 4483 W/OpenGLRenderer ]
Incorrectly called buildLayer on View: ShortcutAndWidgetContainer, destroying layer...
[ 01-01 15:14:04.446 1041: 541: 5252 D/audio_route ]
Apply path: speaker-protected
--------- switch to system
[ 01-01 15:14:04.448 1000: 2272: 5447 I/ActivityManager ]
START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.android.settings/.Settings bnds=[435,1254][646,1507] (has extras)} from uid 10038
--------- switch to main
[ 01-01 15:14:04.448 1041: 541: 5252 D/audio_hw_primary ]
enable_snd_device: snd_device(88: vi-feedback)
[ 01-01 15:14:04.449 1041: 541: 5252 D/audio_route ]
Apply path: vi-feedback
[ 01-01 15:14:04.449 1041: 541: 5252 D/audio_hw_primary ]
enable_audio_route: usecase(23) apply and update mixer path: spkr-vi-record
[ 01-01 15:14:04.449 1041: 541: 5252 D/audio_route ]
Apply path: spkr-vi-record
[ 01-01 15:14:04.457 1041: 541: 678 I/ServiceManager ]
Waiting for service media.log...
[ 01-01 15:14:04.480 1041: 541: 5252 D/audio_hw_primary ]
enable_audio_route: usecase(1) apply and update mixer path: low-latency-playback
[ 01-01 15:14:04.480 1041: 541: 5252 D/audio_route ]
Apply path: low-latency-playback
[ 01-01 15:14:04.623 1000:14206:14206 D/DashboardSummary ]
Listening for condition changes
[ 01-01 15:14:04.623 1000:14206:14206 D/DashboardSummary ]
onConditionsChanged
[ 01-01 15:14:04.623 1000:14206:14206 D/DashboardAdapter ]
adapter setConditions called
[ 01-01 15:14:04.624 1000:14206:14206 D/DashboardSummary ]
conditions refreshed
[ 01-01 15:14:04.624 1000:14206:14206 D/APM_Condition ]
APM condition refreshed
[ 01-01 15:14:04.624 1000:14206:14206 D/APM_Condition ]
setActive was called with false
[ 01-01 15:14:04.712 1000:14206:20202 D/DatabaseIndexingManager ]
Indexing locale 'en_US' took 35 millis
[ 01-01 15:14:04.738 1000:14206:20202 D/DatabaseIndexingManager ]
Indexing locale 'en_US' took 10 millis
[ 01-01 15:14:04.837 1000:14206:20202 I/SuggestionParser ]
Use your voice requires unavailable account type com.google
[ 01-01 15:14:04.869 1000:14206:20202 W/Bundle ]
Key com.android.settings.dismiss expected String but value was a java.lang.Integer. The default value <null> was returned.
[ 01-01 15:14:04.870 1000:14206:20202 W/Bundle ]
Attempt to cast generated internal exception:
java.lang.ClassCastException: java.lang.Integer cannot be cast to java.lang.String
at android.os.BaseBundle.getString(BaseBundle.java:1072)
at com.android.settingslib.SuggestionParser.getDismissControl(SuggestionParser.java:377)
at com.android.settingslib.SuggestionParser.isDismissed(SuggestionParser.java:330)
at com.android.settingslib.SuggestionParser.filterSuggestions(SuggestionParser.java:187)
at com.android.settingslib.SuggestionParser.readSuggestions(SuggestionParser.java:204)
at com.android.settingslib.SuggestionParser.getSuggestions(SuggestionParser.java:151)
at com.android.settings.dashboard.DashboardSummary$SuggestionLoader.doInBackground(DashboardSummary.java:260)
at com.android.settings.dashboard.DashboardSummary$SuggestionLoader.doInBackground(DashboardSummary.java:255)
at android.os.AsyncTask$2.call(AsyncTask.java:305)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at android.os.AsyncTask$SerialExecutor$1.run(AsyncTask.java:243)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)
at java.lang.Thread.run(Thread.java:764)
--------- switch to system
[ 01-01 15:14:04.898 1000: 2272: 3579 D/BatteryStatsService ]
begin updateExternalStatsSync reason=get-stats
--------- switch to main
[ 01-01 15:14:04.908 1000: 2272: 5444 I/sensors ]
activate
[ 01-01 15:14:04.916 1000: 2272: 5444 I/nanohub ]
queueActivate: sensor=1, handle=1, enable=0
[ 01-01 15:14:04.998 1041: 541: 717 D/audio_hw_primary ]
disable_audio_route: usecase(1) reset and update mixer path: low-latency-playback
[ 01-01 15:14:05.010 1041: 541: 717 D/audio_hw_primary ]
disable_snd_device: snd_device(88: vi-feedback)
[ 01-01 15:14:05.010 1041: 541: 717 D/audio_hw_primary ]
disable_audio_route: usecase(23) reset and update mixer path: spkr-vi-record
--------- switch to system
[ 01-01 15:14:05.022 1000: 2272: 3579 E/BatteryStatsService ]
no controller energy info supplied
--------- switch to main
[ 01-01 15:14:05.040 1000: 2272: 3626 E/hw-IPCThreadState ]
binder thread pool (1 threads) starved for 116 ms
--------- switch to system
[ 01-01 15:14:05.072 1000: 2272: 3579 D/BatteryStatsImpl ]
Reading cpu stats took 34 ms
[ 01-01 15:14:05.098 1000: 2272: 3579 E/KernelMemoryBandwidthStats ]
Failed to read memory bandwidth: /sys/kernel/memory_state_time/show_stat (No such file or directory)
[ 01-01 15:14:05.098 1000: 2272: 3579 D/BatteryStatsService ]
end updateExternalStatsSync
--------- switch to main
[ 01-01 15:14:05.112 10038:18491:18491 I/MicroDetector ]
Keeping mic open: false
[ 01-01 15:14:05.113 10038:18491:19016 I/DeviceStateChecker ]
DeviceStateChecker cancelled
[ 01-01 15:14:05.119 10038:18491:19007 I/AudioController ]
internalShutdown
[ 01-01 15:14:05.120 10038:18491:19007 I/MicrophoneInputStream ]
mic_close com.google.android.apps.gsa.speech.audio.ag@85dd117
[ 01-01 15:14:05.124 10038:18491:18549 I/MicroRecognitionRunner ]
Stopping hotword detection.
[ 01-01 15:14:05.252 1041: 541:20213 D/audio_hw_primary ]
disable_audio_route: usecase(9) reset and update mixer path: audio-record
[ 01-01 15:14:05.253 1041: 541:20213 D/audio_hw_primary ]
disable_snd_device: snd_device(72: voice-rec-mic)
[ 01-01 15:14:05.258 1041: 541:20213 D/sound_trigger_platform ]
platform_stdev_check_and_update_concurrency: concurrency active 0, tx 0, rx 0, concurrency session_allowed 1
[ 01-01 15:14:05.263 1041: 541: 741 I/SoundTriggerHwService::Module ]
onCallbackEvent no clients
[ 01-01 15:14:05.267 10038:18491:19006 W/zygote64 ]
Long monitor contention with owner UserFacing4 (19007) at void android.media.AudioRecord.native_stop()(AudioRecord.java:-2) waiters=1 in void com.google.android.apps.gsa.speech.audio.an.reset(int) for 141ms
[ 01-01 15:14:05.267 10038:18491:19006 I/MicroRecognitionRunner ]
Detection finished
[ 01-01 15:14:05.457 1041: 541: 678 I/ServiceManager ]
Waiting for service media.log...
[ 01-01 15:14:05.465 1000:14206:20201 I/SuggestionParser ]
Use your voice requires unavailable account type com.google
[ 01-01 15:14:05.499 1000:14206:20201 W/Bundle ]
Key com.android.settings.dismiss expected String but value was a java.lang.Integer. The default value <null> was returned.
[ 01-01 15:14:05.500 1000:14206:20201 W/Bundle ]
Attempt to cast generated internal exception:
java.lang.ClassCastException: java.lang.Integer cannot be cast to java.lang.String
at android.os.BaseBundle.getString(BaseBundle.java:1072)
at com.android.settingslib.SuggestionParser.getDismissControl(SuggestionParser.java:377)
at com.android.settingslib.SuggestionParser.isDismissed(SuggestionParser.java:330)
at com.android.settingslib.SuggestionParser.filterSuggestions(SuggestionParser.java:187)
at com.android.settingslib.SuggestionParser.readSuggestions(SuggestionParser.java:204)
at com.android.settingslib.SuggestionParser.getSuggestions(SuggestionParser.java:151)
at com.android.settings.dashboard.DashboardSummary$SuggestionLoader.doInBackground(DashboardSummary.java:260)
at com.android.settings.dashboard.DashboardSummary$SuggestionLoader.doInBackground(DashboardSummary.java:255)
at android.os.AsyncTask$2.call(AsyncTask.java:305)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at android.os.AsyncTask$SerialExecutor$1.run(AsyncTask.java:243)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)
at java.lang.Thread.run(Thread.java:764)
[ 01-01 15:14:05.564 1041: 541: 5252 D/audio_route ]
Apply path: speaker-protected
[ 01-01 15:14:05.568 1041: 541: 5252 D/audio_hw_primary ]
enable_snd_device: snd_device(88: vi-feedback)
[ 01-01 15:14:05.568 1041: 541: 5252 D/audio_route ]
Apply path: vi-feedback
[ 01-01 15:14:05.568 1041: 541: 5252 D/audio_hw_primary ]
enable_audio_route: usecase(23) apply and update mixer path: spkr-vi-record
[ 01-01 15:14:05.568 1041: 541: 5252 D/audio_route ]
Apply path: spkr-vi-record
[ 01-01 15:14:05.589 10036: 3812: 3819 I/zygote64 ]
Integer.valueOf will not be optimized
[ 01-01 15:14:05.593 1041: 541: 5252 D/audio_hw_primary ]
enable_audio_route: usecase(1) apply and update mixer path: low-latency-playback
[ 01-01 15:14:05.593 1041: 541: 5252 D/audio_route ]
Apply path: low-latency-playback
[ 01-01 15:14:05.598 1000:14206:14212 I/zygote64 ]
Integer.valueOf will not be optimized
--------- switch to system
[ 01-01 15:14:05.603 1000: 2272: 3627 I/ActivityManager ]
START u0 {act=android.intent.action.MAIN cat=[android.intent.category.HOME] flg=0x10200000 cmp=com.google.android.googlequicksearchbox/com.google.android.launcher.GEL (has extras)} from uid 1000
--------- switch to main
[ 01-01 15:14:05.658 1000:14206:14206 D/DashboardSummary ]
Stopped listening for condition changes
[ 01-01 15:14:05.750 10038:18491:18504 I/AttachedClient ]
Adding client event 2 to pending list.
[ 01-01 15:14:05.796 1000: 2272: 3783 W/OpenGLRenderer ]
Warning: attempt to read pixels from hardware bitmap, which is very slow operation
[ 01-01 15:14:05.854 10038:18491:18491 I/MicroDetectionWorker ]
#updateMicroDetector [currentDetectionMode: [mDetectionMode: [1]]]
[ 01-01 15:14:05.855 10038:18491:18491 I/MicroDetectionWorker ]
#startMicroDetector [speakerMode: 0]
[ 01-01 15:14:05.883 10038:18491:19006 I/MicroRecognitionRunner ]
Starting detection.
[ 01-01 15:14:05.884 10038:18491:19007 I/MicrophoneInputStream ]
mic_starting com.google.android.apps.gsa.speech.audio.ag@987bb93
[ 01-01 15:14:05.896 1041: 541: 5248 W/DeviceHAL ]
Device 0xf4fad000 open_input_stream: Invalid argument
[ 01-01 15:14:05.906 1041: 541:20227 I/AudioFlinger ]
AudioFlinger's thread 0xf1220e80 tid=20227 ready to run
[ 01-01 15:14:05.916 1041: 541: 741 I/SoundTriggerHwService::Module ]
onCallbackEvent no clients
[ 01-01 15:14:05.917 10038:18491:19007 I/MicrophoneInputStream ]
mic_started com.google.android.apps.gsa.speech.audio.ag@987bb93
[ 01-01 15:14:05.919 1041: 541:20228 D/sound_trigger_platform ]
platform_stdev_check_and_update_concurrency: concurrency active 0, tx 1, rx 0, concurrency session_allowed 0
[ 01-01 15:14:05.919 1041: 541:20228 D/audio_hw_primary ]
enable_snd_device: snd_device(72: voice-rec-mic)
[ 01-01 15:14:05.919 1041: 541:20228 D/audio_route ]
Apply path: voice-rec-mic
[ 01-01 15:14:05.927 1041: 541:20228 D/audio_hw_primary ]
enable_audio_route: usecase(9) apply and update mixer path: audio-record
[ 01-01 15:14:05.927 1041: 541:20228 D/audio_route ]
Apply path: audio-record
[ 01-01 15:14:05.936 10038:18491:18491 I/MicroDetectionWorker ]
onReady
[ 01-01 15:14:05.981 10038:18491:18491 I/MicroDetectionWorker ]
onReady
[ 01-01 15:14:06.029 1000: 2272: 3783 W/OpenGLRenderer ]
Warning: attempt to read pixels from hardware bitmap, which is very slow operation
[ 01-01 15:14:06.112 1041: 541: 717 D/audio_hw_primary ]
disable_audio_route: usecase(1) reset and update mixer path: low-latency-playback
[ 01-01 15:14:06.123 1041: 541: 717 D/audio_hw_primary ]
disable_snd_device: snd_device(88: vi-feedback)
[ 01-01 15:14:06.123 1041: 541: 717 D/audio_hw_primary ]
disable_audio_route: usecase(23) reset and update mixer path: spkr-vi-record
[ 01-01 15:14:06.157 1000: 2272: 3783 W/OpenGLRenderer ]
Warning: attempt to read pixels from hardware bitmap, which is very slow operation
[ 01-01 15:14:06.239 10038: 4245: 4483 W/OpenGLRenderer ]
Incorrectly called buildLayer on View: ShortcutAndWidgetContainer, destroying layer...
[ 01-01 15:14:06.674 root: 600: 600 W/thermal-engine ]
type=1400 audit(0.0:1032): avc: denied { search } for name="leds" dev="sysfs" ino=7453 scontext=u:r:thermal-engine:s0 tcontext=u:object_r:sysfs_leds:s0 tclass=dir permissive=0
--------- switch to system
[ 01-01 15:14:06.931 1000: 2272: 3628 I/PowerManagerService ]
Going to sleep due to power button (uid 1000)...
[ 01-01 15:14:07.432 1000: 2272: 3592 D/BatteryStatsService ]
begin noteScreenState
[ 01-01 15:14:07.433 1000: 2272: 3592 D/BatteryStatsService ]
end noteScreenState
[ 01-01 15:14:07.444 1000: 2272: 3582 I/VrManagerService ]
VR mode is disallowed
--------- switch to main
[ 01-01 15:14:07.535 1000: 2272: 3592 I/sensors ]
activate
[ 01-01 15:14:07.544 1000: 2272: 3592 I/nanohub ]
queueActivate: sensor=28, handle=30, enable=0
[ 01-01 15:14:07.545 1000: 2272: 3592 V/KeyguardServiceDelegate ]
onScreenTurnedOff()
[ 01-01 15:14:07.547 1000: 2272: 3617 I/nanohub ]
osLog: [BMI160] accPower: on=0, state=3
[ 01-01 15:14:07.548 1000: 2272: 3592 I/sensors ]
activate
[ 01-01 15:14:07.550 1000: 2272: 3592 I/nanohub ]
queueActivate: sensor=12, handle=7, enable=0
--------- switch to system
[ 01-01 15:14:07.551 1000: 2272: 3590 I/DisplayManagerService ]
Display device changed state: "Built-in Screen", OFF
--------- switch to main
[ 01-01 15:14:07.552 1000: 398: 398 D/SurfaceFlinger ]
Set power mode=0, type=0 flinger=0x7542c6c000
[ 01-01 15:14:07.555 1000: 398: 398 D/qdhwcomposer ]
hwc_setPowerMode: Setting mode 0 on display: 0
--------- switch to system
[ 01-01 15:14:07.565 1000: 2272: 3614 W/LocalDisplayAdapter ]
Unable to find color mode 0, ignoring request.
--------- switch to main
[ 01-01 15:14:07.664 10038:18491:18491 I/MicroDetector ]
Keeping mic open: false
[ 01-01 15:14:07.665 1000: 398: 462 I/qdhwcomposer ]
handle_blank_event: dpy:0 panel power state: 0
[ 01-01 15:14:07.665 10038:18491:19012 I/AudioController ]
internalShutdown
[ 01-01 15:14:07.666 10038:18491:19012 I/MicrophoneInputStream ]
mic_close com.google.android.apps.gsa.speech.audio.ag@987bb93
[ 01-01 15:14:07.666 1000: 398: 398 D/qdhwcomposer ]
hwc_setPowerMode: Done setting mode 0 on display 0
[ 01-01 15:14:07.666 10038:18491:19016 I/DeviceStateChecker ]
DeviceStateChecker cancelled
[ 01-01 15:14:07.666 1000: 2272: 3787 D/SurfaceControl ]
Excessive delay in setPowerMode(): 115ms
--------- switch to system
[ 01-01 15:14:07.670 1000: 2272: 3592 I/DreamManagerService ]
Entering dreamland.
--------- switch to main
[ 01-01 15:14:07.671 10038:18491:18549 I/MicroRecognitionRunner ]
Stopping hotword detection.
--------- switch to system
[ 01-01 15:14:07.671 1000: 2272: 3592 I/PowerManagerService ]
Dozing...
[ 01-01 15:14:07.673 1000: 2272: 3588 I/DreamController ]
Starting dream: name=ComponentInfo{com.android.systemui/com.android.systemui.doze.DozeService}, isTest=false, canDoze=true, userId=0
--------- switch to main
[ 01-01 15:14:07.710 1000: 2272: 5447 I/sensors ]
batch
[ 01-01 15:14:07.711 1000: 2272: 5447 I/nanohub ]
queueBatch: sensor=24, handle=20, period=1000000, latency=0
[ 01-01 15:14:07.712 1000: 2272: 5447 I/sensors ]
activate
[ 01-01 15:14:07.713 1000: 2272: 5447 I/nanohub ]
queueActivate: sensor=24, handle=20, enable=1
[ 01-01 15:14:07.717 1000: 2272: 3617 I/nanohub ]
osLog: [PickupGesture] power: 1
[ 01-01 15:14:07.719 1000: 2272: 3617 I/nanohub ]
osLog: [BMI160] accPower: on=1, state=4
[ 01-01 15:14:07.721 1000: 2272: 3617 I/nanohub ]
osLog: [BMI160] accPower: on=1, state=3
[ 01-01 15:14:07.722 1000: 2272: 3617 I/nanohub ]
osLog: [Activity] activity activity powered on, new state 2
[ 01-01 15:14:07.730 1041: 541:20227 D/audio_hw_primary ]
disable_audio_route: usecase(9) reset and update mixer path: audio-record
[ 01-01 15:14:07.731 1041: 541:20227 D/audio_hw_primary ]
disable_snd_device: snd_device(72: voice-rec-mic)
[ 01-01 15:14:07.735 1041: 541:20227 D/sound_trigger_platform ]
platform_stdev_check_and_update_concurrency: concurrency active 0, tx 0, rx 0, concurrency session_allowed 1
[ 01-01 15:14:07.738 1041: 541: 741 I/SoundTriggerHwService::Module ]
onCallbackEvent no clients
[ 01-01 15:14:07.742 10038:18491:19006 I/MicroRecognitionRunner ]
Detection finished
--------- switch to system
[ 01-01 15:14:07.769 1000: 2272: 4084 I/ActivityManager ]
Setting hasTopUi=true for pid=3812
--------- switch to main
[ 01-01 15:14:07.776 1041: 541: 678 I/ServiceManager ]
Waiting for service media.log...
[ 01-01 15:14:07.827 nfc: 4175: 4192 I/zygote64 ]
Background concurrent copying GC freed 96(1791KB) AllocSpace objects, 0(0B) LOS objects, 53% free, 1330KB/2MB, paused 6.135ms total 19.615ms
[ 01-01 15:14:07.829 nfc: 4175: 4351 E/NxpTml ]
_i2c_write() errno : 5
[ 01-01 15:14:07.829 nfc: 4175: 4351 E/NxpTml ]
PN54X - Error in I2C Write.....
[ 01-01 15:14:07.829 nfc: 4175: 4353 E/NxpHal ]
write error status = 0x1ff
[ 01-01 15:14:07.830 nfc: 4175: 4346 E/NxpHal ]
write_unlocked failed - PN54X Maybe in Standby Mode - Retry
[ 01-01 15:14:07.831 nfc: 4175: 4351 E/NxpTml ]
_i2c_write() errno : 5
[ 01-01 15:14:07.831 nfc: 4175: 4351 E/NxpTml ]
PN54X - Error in I2C Write.....
[ 01-01 15:14:07.831 nfc: 4175: 4353 E/NxpHal ]
write error status = 0x1ff
[ 01-01 15:14:07.831 nfc: 4175: 4346 E/NxpHal ]
write_unlocked failed - PN54X Maybe in Standby Mode - Retry
[ 01-01 15:14:07.886 10036: 3812: 3819 I/zygote64 ]
Integer.valueOf will not be optimized
[ 01-01 15:14:08.003 10036: 3812: 3812 D/StatusBar ]
disable: < expand icons alerts system_info back HOME* RECENT* clock search quick_settings >
[ 01-01 15:14:08.108 10018: 5497:20188 E/ctxmgr ]
[WorkManager]Ongoing task not found: PlacesProducer_receive
[ 01-01 15:14:08.776 1041: 541: 678 I/ServiceManager ]
Waiting for service media.log...
[ 01-01 15:14:09.777 1041: 541: 678 I/ServiceManager ]
Waiting for service media.log...
[ 01-01 15:14:10.001 1000: 2272: 4088 I/sensors ]
batch
[ 01-01 15:14:10.007 1000: 2272: 4088 I/nanohub ]
queueBatch: sensor=1, handle=1, period=20000000, latency=0
[ 01-01 15:14:10.007 1000: 2272: 4088 I/sensors ]
activate
[ 01-01 15:14:10.010 1000: 2272: 4088 I/nanohub ]
queueActivate: sensor=1, handle=1, enable=1
[ 01-01 15:14:10.778 1041: 541: 678 I/ServiceManager ]
Waiting for service media.log...
[ 01-01 15:14:12.776 10018: 5497:20188 I/Places ]
?: Couldn't find platform key file.
[ 01-01 15:14:12.842 1000: 2272: 5430 I/sensors ]
activate
[ 01-01 15:14:12.845 10018: 5497:20187 I/PlaceInferenceEngine ]
[anon] Changed inference mode: 105
[ 01-01 15:14:12.851 10018: 5497: 5537 W/GCoreFlp ]
No location to return for getLastLocation()
[ 01-01 15:14:12.857 1000: 2272: 5430 I/nanohub ]
queueActivate: sensor=1, handle=1, enable=0
[ 01-01 15:14:12.889 10018: 5497:20188 I/Places ]
?: Couldn't find platform key file.
[ 01-01 15:14:12.890 10018: 5497:19161 I/Places ]
?: Couldn't find platform key file.
[ 01-01 15:14:13.008 10018: 5497: 5502 I/zygote64 ]
Integer.valueOf will not be optimized
[ 01-01 15:14:14.351 1000: 2272: 3617 I/nanohub ]
osLog: [PickupGesture] sending event 0x00000001
[ 01-01 15:14:14.358 1000: 2272: 3617 I/nanohub ]
osLog: [Activity] activity activity powered off, new state 0
[ 01-01 15:14:14.361 1000: 2272: 3617 I/nanohub ]
osLog: [PickupGesture] power: 0
[ 01-01 15:14:14.362 1000: 2272: 3617 I/nanohub ]
osLog: [BMI160] accPower: on=0, state=5
[ 01-01 15:14:14.366 1000: 2272: 3617 I/nanohub ]
osLog: [BMI160] accPower: on=0, state=3
[ 01-01 15:14:14.380 1000: 2272: 4219 I/sensors ]
batch
[ 01-01 15:14:14.382 1000: 2272: 4219 I/nanohub ]
queueBatch: sensor=24, handle=20, period=1000000, latency=0
[ 01-01 15:14:14.383 1000: 2272: 4219 I/sensors ]
activate
[ 01-01 15:14:14.385 1000: 2272: 4219 I/nanohub ]
queueActivate: sensor=24, handle=20, enable=1
[ 01-01 15:14:14.388 1000: 2272: 3617 I/nanohub ]
osLog: [PickupGesture] power: 1
--------- switch to system
[ 01-01 15:14:14.389 1000: 2272: 3592 D/BatteryStatsService ]
begin noteScreenState
[ 01-01 15:14:14.389 1000: 2272: 3592 D/BatteryStatsService ]
end noteScreenState
[ 01-01 15:14:14.390 1000: 2272: 3592 I/DisplayPowerController ]
Blocking screen on until initial contents have been drawn.
--------- switch to main
[ 01-01 15:14:14.391 1000: 2272: 3592 V/KeyguardServiceDelegate ]
onScreenTurnedOn(showListener = com.android.server.policy.PhoneWindowManager$2@cb6ff88)
[ 01-01 15:14:14.393 1000: 2272: 3617 I/nanohub ]
osLog: [BMI160] accPower: on=1, state=4
--------- switch to system
[ 01-01 15:14:14.394 1000: 2272: 3590 I/DisplayManagerService ]
Display device changed state: "Built-in Screen", DOZE
--------- switch to main
[ 01-01 15:14:14.394 1000: 398: 398 D/SurfaceFlinger ]
Set power mode=1, type=0 flinger=0x7542c6c000
[ 01-01 15:14:14.395 1000: 398: 398 D/qdhwcomposer ]
hwc_setPowerMode: Setting mode 1 on display: 0
[ 01-01 15:14:14.396 1000: 2272: 3617 I/nanohub ]
osLog: [BMI160] accPower: on=1, state=3
[ 01-01 15:14:14.398 1000: 2272: 4217 I/sensors ]
batch
[ 01-01 15:14:14.400 1000: 2272: 3617 I/nanohub ]
osLog: [Activity] activity activity powered on, new state 2
[ 01-01 15:14:14.403 1000: 2272: 4217 I/nanohub ]
queueBatch: sensor=13, handle=6, period=200000000, latency=0
[ 01-01 15:14:14.404 1000: 2272: 4217 I/sensors ]
activate
--------- switch to system
[ 01-01 15:14:14.405 1000: 2272: 3614 W/LocalDisplayAdapter ]
Unable to find color mode 0, ignoring request.
--------- switch to main
[ 01-01 15:14:14.408 1000: 2272: 4217 I/nanohub ]
queueActivate: sensor=13, handle=6, enable=1
[ 01-01 15:14:14.421 1000: 2272: 5450 V/KeyguardServiceDelegate ]
**** SHOWN CALLED ****
--------- switch to system
[ 01-01 15:14:14.514 1000: 2272: 3592 I/DisplayPowerController ]
Unblocked screen on after 124 ms
--------- switch to main
[ 01-01 15:14:14.517 1000: 2272: 3592 V/KeyguardServiceDelegate ]
onScreenTurnedOn()
[ 01-01 15:14:14.629 1000: 398: 462 I/qdhwcomposer ]
handle_blank_event: dpy:0 panel power state: 2
[ 01-01 15:14:14.629 1000: 398: 398 D/qdhwcomposer ]
hwc_setPowerMode: Done setting mode 1 on display 0
[ 01-01 15:14:14.650 1000: 2272: 3787 D/SurfaceControl ]
Excessive delay in setPowerMode(): 255ms
--------- switch to system
[ 01-01 15:14:14.943 1000: 2272: 3628 I/PowerManagerService ]
Waking up from dozing (uid 1000)...
--------- switch to main
[ 01-01 15:14:14.949 1000: 2272: 2272 I/sensors ]
batch
--------- switch to system
[ 01-01 15:14:14.952 1000: 2272: 3592 D/BatteryStatsService ]
begin noteScreenState
--------- switch to main
[ 01-01 15:14:14.953 1000: 2272: 2272 I/nanohub ]
queueBatch: sensor=28, handle=30, period=66667000, latency=0
[ 01-01 15:14:14.953 1000: 2272: 2272 I/sensors ]
activate
--------- switch to system
[ 01-01 15:14:14.954 1000: 2272: 3592 D/BatteryStatsService ]
end noteScreenState
--------- switch to main
[ 01-01 15:14:14.955 1000: 2272: 2272 I/nanohub ]
queueActivate: sensor=28, handle=30, enable=1
[ 01-01 15:14:14.955 1000: 2272: 2272 V/KeyguardServiceDelegate ]
onStartedWakingUp()
[ 01-01 15:14:14.959 1000: 2272: 3592 I/sensors ]
batch
[ 01-01 15:14:14.961 1000: 2272: 3592 I/nanohub ]
queueBatch: sensor=12, handle=7, period=250000000, latency=0
[ 01-01 15:14:14.961 1000: 2272: 3592 I/sensors ]
activate
[ 01-01 15:14:14.962 1000: 2272: 3592 I/nanohub ]
queueActivate: sensor=12, handle=7, enable=1
--------- switch to system
[ 01-01 15:14:14.965 1000: 2272: 3590 I/DisplayManagerService ]
Display device changed state: "Built-in Screen", ON
--------- switch to main
[ 01-01 15:14:14.966 1000: 398: 398 D/SurfaceFlinger ]
Set power mode=2, type=0 flinger=0x7542c6c000
[ 01-01 15:14:14.966 1000: 398: 398 D/qdhwcomposer ]
hwc_setPowerMode: Setting mode 2 on display: 0
[ 01-01 15:14:14.966 1000: 398: 462 I/qdhwcomposer ]
handle_blank_event: dpy:0 panel power state: 1
[ 01-01 15:14:14.966 1000: 398: 398 D/qdhwcomposer ]
hwc_setPowerMode: Done setting mode 2 on display 0
--------- switch to system
[ 01-01 15:14:14.970 1000: 2272: 3592 I/DreamManagerService ]
Gently waking up from dream.
[ 01-01 15:14:14.975 1000: 2272: 3614 W/LocalDisplayAdapter ]
Unable to find color mode 0, ignoring request.
--------- switch to main
[ 01-01 15:14:14.978 1041: 541: 678 I/ServiceManager ]
Waiting for service media.log...
--------- switch to system
[ 01-01 15:14:14.998 1000: 2272: 5401 I/DreamManagerService ]
Leaving dreamland.
[ 01-01 15:14:15.000 1000: 2272: 3588 I/DreamController ]
Stopping dream: name=ComponentInfo{com.android.systemui/com.android.systemui.doze.DozeService}, isTest=false, canDoze=true, userId=0
--------- switch to main
[ 01-01 15:14:15.007 1000: 2272: 5430 I/sensors ]
activate
[ 01-01 15:14:15.008 nfc: 4175: 4346 D/BrcmNfcJni ]
RoutingManager::nfaEeCallback: NFA_EE_SET_TECH_CFG_EVT; status=0x0
[ 01-01 15:14:15.008 nfc: 4175: 4346 D/BrcmNfcJni ]
RoutingManager::nfaEeCallback: NFA_EE_SET_PROTO_CFG_EVT; status=0x0
[ 01-01 15:14:15.008 nfc: 4175:20249 D/BrcmNfcJni ]
RoutingManager::commitRouting
[ 01-01 15:14:15.009 nfc: 4175: 4346 D/BrcmNfcJni ]
RoutingManager::nfaEeCallback: NFA_EE_UPDATED_EVT
[ 01-01 15:14:15.010 1000: 2272: 5430 I/nanohub ]
queueActivate: sensor=24, handle=20, enable=0
[ 01-01 15:14:15.011 nfc: 4175: 4351 E/NxpTml ]
_i2c_write() errno : 5
[ 01-01 15:14:15.011 nfc: 4175: 4351 E/NxpTml ]
PN54X - Error in I2C Write.....
[ 01-01 15:14:15.011 nfc: 4175: 4353 E/NxpHal ]
write error status = 0x1ff
[ 01-01 15:14:15.011 nfc: 4175: 4346 E/NxpHal ]
write_unlocked failed - PN54X Maybe in Standby Mode - Retry
[ 01-01 15:14:15.014 1000: 2272: 3617 I/nanohub ]
osLog: [PickupGesture] power: 0
[ 01-01 15:14:15.019 1000: 2272: 3617 I/nanohub ]
osLog: [Activity] activity activity powered off, new state 0
[ 01-01 15:14:15.045 10036: 3812: 3819 I/zygote64 ]
Integer.valueOf will not be optimized
[ 01-01 15:14:15.069 10036: 3812: 3819 I/chatty ]
uid=10036(u0_a36) Jit thread pool identical 2 lines
[ 01-01 15:14:15.070 10036: 3812: 3819 I/zygote64 ]
Integer.valueOf will not be optimized
[ 01-01 15:14:15.098 10018: 5497: 5502 I/zygote64 ]
Integer.valueOf will not be optimized
[ 01-01 15:14:15.098 10018: 5497: 5502 I/chatty ]
uid=10018(u0_a18) Jit thread pool identical 1 line
[ 01-01 15:14:15.098 10018: 5497: 5502 I/zygote64 ]
Integer.valueOf will not be optimized
[ 01-01 15:14:15.306 10036: 3812: 3819 I/zygote64 ]
Integer.valueOf will not be optimized
[ 01-01 15:14:15.324 10036: 3812: 3819 I/zygote64 ]
Integer.valueOf will not be optimized
[ 01-01 15:14:15.393 1000: 2272: 3617 I/nanohub ]
osLog: [WO] rotation changed to: ******* 0 *******
[ 01-01 15:14:15.978 1041: 541: 678 I/ServiceManager ]
Waiting for service media.log...
[ 01-01 15:14:16.106 10036: 3812: 3812 D/StatusBar ]
disable: < expand icons alerts system_info back HOME RECENT clock search quick_settings >
--------- switch to system
[ 01-01 15:14:16.196 1000: 2272: 3582 I/VrManagerService ]
VR mode is allowed
--------- switch to main
[ 01-01 15:14:16.197 10036: 3812: 3812 D/StatusBar ]
disable: < expand icons alerts system_info back HOME RECENT clock search quick_settings >
[ 01-01 15:14:16.382 1000: 2272: 4465 I/sensors ]
activate
[ 01-01 15:14:16.384 1000: 2272: 4465 I/nanohub ]
queueActivate: sensor=13, handle=6, enable=0
[ 01-01 15:14:16.423 nfc: 4175: 4351 E/NxpTml ]
_i2c_write() errno : 5
[ 01-01 15:14:16.423 nfc: 4175: 4351 E/NxpTml ]
PN54X - Error in I2C Write.....
[ 01-01 15:14:16.423 nfc: 4175: 4353 E/NxpHal ]
write error status = 0x1ff
[ 01-01 15:14:16.423 nfc: 4175: 4346 E/NxpHal ]
write_unlocked failed - PN54X Maybe in Standby Mode - Retry
[ 01-01 15:14:16.428 nfc: 4175: 4346 E/BrcmNfcJni ]
nfaConnectionCallback: unknown event ????
[ 01-01 15:14:16.428 nfc: 4175: 4346 D/BrcmNfcJni ]
RoutingManager::nfaEeCallback: NFA_EE_SET_TECH_CFG_EVT; status=0x0
[ 01-01 15:14:16.430 nfc: 4175: 4346 D/BrcmNfcJni ]
RoutingManager::nfaEeCallback: NFA_EE_SET_PROTO_CFG_EVT; status=0x0
[ 01-01 15:14:16.430 nfc: 4175:20146 D/BrcmNfcJni ]
RoutingManager::commitRouting
[ 01-01 15:14:16.430 nfc: 4175: 4346 D/BrcmNfcJni ]
RoutingManager::nfaEeCallback: NFA_EE_UPDATED_EVT
[ 01-01 15:14:16.484 10038:18491:18504 I/AttachedClient ]
Adding client event 2 to pending list.
[ 01-01 15:14:16.486 10038:18491:18504 I/AttachedClient ]
Adding client event 2 to pending list.
[ 01-01 15:14:16.520 10038:18491:19642 W/LocationOracle ]
No location history returned by ContextManager
[ 01-01 15:14:16.525 10036: 3812: 3812 D/StatusBar ]
disable: < expand icons alerts system_info back home* recent* clock search quick_settings >
[ 01-01 15:14:16.537 10038:18491:18491 I/MicroDetectionWorker ]
#updateMicroDetector [currentDetectionMode: [mDetectionMode: [1]]]
[ 01-01 15:14:16.538 10038:18491:18491 I/MicroDetectionWorker ]
#startMicroDetector [speakerMode: 0]
[ 01-01 15:14:16.563 10038:18491:20275 I/MicroRecognitionRunner ]
Starting detection.
[ 01-01 15:14:16.564 10038:18491:19007 I/MicrophoneInputStream ]
mic_starting com.google.android.apps.gsa.speech.audio.ag@bde1866
[ 01-01 15:14:16.565 10038:18491:18496 I/zygote64 ]
Integer.valueOf will not be optimized
[ 01-01 15:14:16.565 10038:18491:18496 I/zygote64 ]
Integer.valueOf will not be optimized
[ 01-01 15:14:16.567 1041: 541: 5248 W/DeviceHAL ]
Device 0xf4fad000 open_input_stream: Invalid argument
[ 01-01 15:14:16.578 1041: 541:20278 I/AudioFlinger ]
AudioFlinger's thread 0xf12208c0 tid=20278 ready to run
[ 01-01 15:14:16.584 1041: 541: 741 I/SoundTriggerHwService::Module ]
onCallbackEvent no clients
[ 01-01 15:14:16.585 10018: 4514: 4514 I/DeviceCache ]
Unable to convert the the network interface's MAC Address to string. MAC address cannot be null.
[ 01-01 15:14:16.590 10038:18491:19007 I/MicrophoneInputStream ]
mic_started com.google.android.apps.gsa.speech.audio.ag@bde1866
[ 01-01 15:14:16.591 1041: 541:20279 D/sound_trigger_platform ]
platform_stdev_check_and_update_concurrency: concurrency active 0, tx 1, rx 0, concurrency session_allowed 0
[ 01-01 15:14:16.591 1041: 541:20279 D/audio_hw_primary ]
enable_snd_device: snd_device(72: voice-rec-mic)
[ 01-01 15:14:16.591 1041: 541:20279 D/audio_route ]
Apply path: voice-rec-mic
[ 01-01 15:14:16.591 10018: 5497: 5537 W/GCoreFlp ]
No location to return for getLastLocation()
[ 01-01 15:14:16.604 10038: 4245: 4251 I/zygote64 ]
Integer.valueOf will not be optimized
[ 01-01 15:14:16.610 1041: 541:20279 D/audio_hw_primary ]
enable_audio_route: usecase(9) apply and update mixer path: audio-record
[ 01-01 15:14:16.611 1041: 541:20279 D/audio_route ]
Apply path: audio-record
[ 01-01 15:14:16.613 10018: 4514: 4514 I/DeviceCache ]
Unable to convert the the network interface's MAC Address to string. MAC address cannot be null.
[ 01-01 15:14:16.616 10038:18491:18491 I/MicroDetectionWorker ]
onReady
[ 01-01 15:14:16.617 10018: 4514: 4514 I/DeviceCache ]
Unable to convert the the network interface's MAC Address to string. MAC address cannot be null.
[ 01-01 15:14:16.636 10018: 4514: 4514 I/DeviceCache ]
Unable to convert the the network interface's MAC Address to string. MAC address cannot be null.
[ 01-01 15:14:16.638 10038:18491:18502 I/zygote64 ]
Background concurrent copying GC freed 1017(3MB) AllocSpace objects, 1(68KB) LOS objects, 50% free, 8MB/16MB, paused 2.320ms total 118.207ms
[ 01-01 15:14:16.648 10018: 4514: 4514 I/DeviceCache ]
Unable to convert the the network interface's MAC Address to string. MAC address cannot be null.
[ 01-01 15:14:16.665 10018: 4514: 4514 I/chatty ]
uid=10018(u0_a18) com.google.android.gms identical 2 lines
[ 01-01 15:14:16.670 10018: 4514: 4514 I/DeviceCache ]
Unable to convert the the network interface's MAC Address to string. MAC address cannot be null.
[ 01-01 15:14:16.677 root: 600: 600 W/thermal-engine ]
type=1400 audit(0.0:1033): avc: denied { search } for name="leds" dev="sysfs" ino=7453 scontext=u:r:thermal-engine:s0 tcontext=u:object_r:sysfs_leds:s0 tclass=dir permissive=0
[ 01-01 15:14:16.681 10038:18491:18491 I/MicroDetectionWorker ]
onReady
[ 01-01 15:14:16.709 10018: 4514: 4514 I/DeviceCache ]
Unable to convert the the network interface's MAC Address to string. MAC address cannot be null.
[ 01-01 15:14:16.728 10018: 4514: 4514 I/chatty ]
uid=10018(u0_a18) com.google.android.gms identical 2 lines
[ 01-01 15:14:16.735 10018: 4514: 4514 I/DeviceCache ]
Unable to convert the the network interface's MAC Address to string. MAC address cannot be null.
[ 01-01 15:14:16.743 10018: 5497:19161 I/Places ]
?: Couldn't find platform key file.
[ 01-01 15:14:16.747 10018: 4514: 4514 I/DeviceCache ]
Unable to convert the the network interface's MAC Address to string. MAC address cannot be null.
[ 01-01 15:14:16.796 10018: 4514: 4514 I/chatty ]
uid=10018(u0_a18) com.google.android.gms identical 6 lines
[ 01-01 15:14:16.801 10018: 4514: 4514 I/DeviceCache ]
Unable to convert the the network interface's MAC Address to string. MAC address cannot be null.
[ 01-01 15:14:16.803 10038: 4245: 4483 W/OpenGLRenderer ]
Incorrectly called buildLayer on View: ShortcutAndWidgetContainer, destroying layer...
--------- switch to system
[ 01-01 15:14:16.937 1000: 2272: 3579 I/ActivityManager ]
Setting hasTopUi=false for pid=3812
--------- switch to main
[ 01-01 15:14:16.980 1041: 541: 678 I/ServiceManager ]
Waiting for service media.log...
[ 01-01 15:14:16.988 10018: 5497:19840 I/Places ]
?: Couldn't find platform key file.
[ 01-01 15:14:16.990 10018: 5497:20283 I/PlaceInferenceEngine ]
[anon] Changed inference mode: 105
[ 01-01 15:14:16.993 10018: 5497:19161 I/Places ]
?: Couldn't find platform key file.
[ 01-01 15:14:17.009 10018: 5497: 5537 W/GCoreFlp ]
No location to return for getLastLocation()
[ 01-01 15:14:17.041 10018: 5497:19161 I/Places ]
?: Couldn't find platform key file.
[ 01-01 15:14:17.107 10018: 5497:20188 W/ctxmgr ]
[AclManager]No 3 for (accnt=account#-517948760#, com.google.android.googlequicksearchbox(10038):com.google.android.googlequicksearchbox, vrsn=10298000, 1, 3pPkg = null , 3pMdlId = null). Was: 3 for 18, account#-517948760#
[ 01-01 15:14:17.108 1000: 2272: 3832 I/sensors ]
batch
[ 01-01 15:14:17.110 1000: 2272: 3832 I/nanohub ]
queueBatch: sensor=1, handle=1, period=20000000, latency=0
[ 01-01 15:14:17.110 1000: 2272: 3832 I/sensors ]
activate
[ 01-01 15:14:17.111 1000: 2272: 3832 I/nanohub ]
queueActivate: sensor=1, handle=1, enable=1
[ 01-01 15:14:17.139 10018: 5497:20188 E/ctxmgr ]
[ProducerStatusImpl]updateStateForNewContextData: inactive, contextName=7
[ 01-01 15:14:17.165 10018: 5497:20284 I/Places ]
?: Couldn't find platform key file.
[ 01-01 15:14:17.187 10018: 5497:19161 I/Places ]
?: Couldn't find platform key file.
[ 01-01 15:14:17.224 1041: 541: 5252 D/audio_route ]
Apply path: speaker-protected
[ 01-01 15:14:17.227 1041: 541: 5252 D/audio_hw_primary ]
enable_snd_device: snd_device(88: vi-feedback)
--------- switch to system
[ 01-01 15:14:17.227 1000: 2272: 5431 I/ActivityManager ]
START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.android.settings/.Settings bnds=[435,1254][646,1507] (has extras)} from uid 10038
--------- switch to main
[ 01-01 15:14:17.227 1041: 541: 5252 D/audio_route ]
Apply path: vi-feedback
[ 01-01 15:14:17.227 1041: 541: 5252 D/audio_hw_primary ]
enable_audio_route: usecase(23) apply and update mixer path: spkr-vi-record
[ 01-01 15:14:17.227 1041: 541: 5252 D/audio_route ]
Apply path: spkr-vi-record
[ 01-01 15:14:17.250 1041: 541: 5252 D/audio_hw_primary ]
enable_audio_route: usecase(1) apply and update mixer path: low-latency-playback
[ 01-01 15:14:17.250 1041: 541: 5252 D/audio_route ]
Apply path: low-latency-playback
[ 01-01 15:14:17.251 10018: 5497: 5506 E/StrictMode ]
A resource was acquired at attached stack trace but never released. See java.io.Closeable for information on avoiding resource leaks.
java.lang.Throwable: Explicit termination method 'close' not called
at dalvik.system.CloseGuard.open(CloseGuard.java:223)
at java.io.FileOutputStream.<init>(FileOutputStream.java:224)
at android.app.ContextImpl.openFileOutput(ContextImpl.java:513)
at android.content.ContextWrapper.openFileOutput(ContextWrapper.java:195)
at android.content.ContextWrapper.openFileOutput(ContextWrapper.java:195)
at android.content.ContextWrapper.openFileOutput(ContextWrapper.java:195)
at android.content.ContextWrapper.openFileOutput(ContextWrapper.java:195)
at lts.c(:com.google.android.gms:96)
at lts.a(:com.google.android.gms:55)
at com.google.android.gms.icing.proxy.ApplicationLauncherIntentOperation.onHandleIntent(:com.google.android.gms:5192)
at com.google.android.chimera.IntentOperation.onHandleIntent(:com.google.android.gms:118)
at caz.run(:com.google.android.gms:10864)
at caw.run(:com.google.android.gms:1143)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)
at java.lang.Thread.run(Thread.java:764)
[ 01-01 15:14:17.252 10018: 5497:20283 I/Places ]
?: PlacesBleScanner start() with priority 2
[ 01-01 15:14:17.252 10018: 5497:20283 I/PlaceInferenceEngine ]
[anon] Changed inference mode: 102
[ 01-01 15:14:17.253 10018: 5497:20283 W/Places ]
?: Failed to download inference model weights
[ 01-01 15:14:17.253 10018: 5497:20283 W/PlaceInferenceEngine ]
Failed to download model weights. Status code: 7
[ 01-01 15:14:17.264 10018: 5497:20188 I/Places ]
?: Couldn't find platform key file.
[ 01-01 15:14:17.352 10018: 5497: 5537 W/GCoreFlp ]
No location to return for getLastLocation()
[ 01-01 15:14:17.458 1000:14206:14206 D/DashboardSummary ]
Listening for condition changes
[ 01-01 15:14:17.458 1000:14206:14206 D/DashboardSummary ]
onConditionsChanged
[ 01-01 15:14:17.458 1000:14206:14206 D/DashboardAdapter ]
adapter setConditions called
[ 01-01 15:14:17.459 1000:14206:14206 D/DashboardSummary ]
conditions refreshed
[ 01-01 15:14:17.459 1000:14206:14206 D/APM_Condition ]
APM condition refreshed
[ 01-01 15:14:17.459 1000:14206:14206 D/APM_Condition ]
setActive was called with false
[ 01-01 15:14:17.559 1000:14206:20203 D/DatabaseIndexingManager ]
Indexing locale 'en_US' took 60 millis
[ 01-01 15:14:17.596 1000:14206:20203 D/DatabaseIndexingManager ]
Indexing locale 'en_US' took 22 millis
[ 01-01 15:14:17.699 1000:14206:20203 I/SuggestionParser ]
Use your voice requires unavailable account type com.google
[ 01-01 15:14:17.727 1000:14206:20203 W/Bundle ]
Key com.android.settings.dismiss expected String but value was a java.lang.Integer. The default value <null> was returned.
[ 01-01 15:14:17.728 1000:14206:20203 W/Bundle ]
Attempt to cast generated internal exception:
java.lang.ClassCastException: java.lang.Integer cannot be cast to java.lang.String
at android.os.BaseBundle.getString(BaseBundle.java:1072)
at com.android.settingslib.SuggestionParser.getDismissControl(SuggestionParser.java:377)
at com.android.settingslib.SuggestionParser.isDismissed(SuggestionParser.java:330)
at com.android.settingslib.SuggestionParser.filterSuggestions(SuggestionParser.java:187)
at com.android.settingslib.SuggestionParser.readSuggestions(SuggestionParser.java:204)
at com.android.settingslib.SuggestionParser.getSuggestions(SuggestionParser.java:151)
at com.android.settings.dashboard.DashboardSummary$SuggestionLoader.doInBackground(DashboardSummary.java:260)
at com.android.settings.dashboard.DashboardSummary$SuggestionLoader.doInBackground(DashboardSummary.java:255)
at android.os.AsyncTask$2.call(AsyncTask.java:305)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at android.os.AsyncTask$SerialExecutor$1.run(AsyncTask.java:243)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)
at java.lang.Thread.run(Thread.java:764)
--------- switch to system
[ 01-01 15:14:17.745 1000: 2272: 5448 D/BatteryStatsService ]
begin updateExternalStatsSync reason=get-stats
--------- switch to main
[ 01-01 15:14:17.748 1041: 541: 717 D/audio_hw_primary ]
disable_audio_route: usecase(1) reset and update mixer path: low-latency-playback
[ 01-01 15:14:17.760 1041: 541: 717 D/audio_hw_primary ]
disable_snd_device: snd_device(88: vi-feedback)
[ 01-01 15:14:17.760 1041: 541: 717 D/audio_hw_primary ]
disable_audio_route: usecase(23) reset and update mixer path: spkr-vi-record
--------- switch to system
[ 01-01 15:14:17.764 1000: 2272: 5448 E/BatteryStatsService ]
no controller energy info supplied
[ 01-01 15:14:17.817 1000: 2272: 5448 D/BatteryStatsImpl ]
Reading cpu stats took 34 ms
[ 01-01 15:14:17.843 1000: 2272: 5448 E/KernelMemoryBandwidthStats ]
Failed to read memory bandwidth: /sys/kernel/memory_state_time/show_stat (No such file or directory)
[ 01-01 15:14:17.843 1000: 2272: 5448 D/BatteryStatsService ]
end updateExternalStatsSync
--------- switch to main
[ 01-01 15:14:17.894 10038:18491:18491 I/MicroDetector ]
Keeping mic open: false
[ 01-01 15:14:17.895 10038:18491:19006 I/DeviceStateChecker ]
DeviceStateChecker cancelled
[ 01-01 15:14:17.896 10038:18491:19012 I/AudioController ]
internalShutdown
[ 01-01 15:14:17.896 10038:18491:19012 I/MicrophoneInputStream ]
mic_close com.google.android.apps.gsa.speech.audio.ag@bde1866
[ 01-01 15:14:17.899 10038:18491:18549 I/MicroRecognitionRunner ]
Stopping hotword detection.
[ 01-01 15:14:17.964 1000:14206:14212 I/zygote64 ]
Integer.valueOf will not be optimized
[ 01-01 15:14:17.982 1041: 541: 678 I/ServiceManager ]
Waiting for service media.log...
[ 01-01 15:14:18.003 1041: 541:20278 D/audio_hw_primary ]
disable_audio_route: usecase(9) reset and update mixer path: audio-record
[ 01-01 15:14:18.004 1041: 541:20278 D/audio_hw_primary ]
disable_snd_device: snd_device(72: voice-rec-mic)
[ 01-01 15:14:18.008 1041: 541:20278 D/sound_trigger_platform ]
platform_stdev_check_and_update_concurrency: concurrency active 0, tx 0, rx 0, concurrency session_allowed 1
[ 01-01 15:14:18.010 1041: 541: 741 I/SoundTriggerHwService::Module ]
onCallbackEvent no clients
[ 01-01 15:14:18.013 10038:18491:20275 I/MicroRecognitionRunner ]
Detection finished
[ 01-01 15:14:18.203 1000:14206:20198 I/SuggestionParser ]
Use your voice requires unavailable account type com.google
[ 01-01 15:14:18.230 1000:14206:20198 W/Bundle ]
Key com.android.settings.dismiss expected String but value was a java.lang.Integer. The default value <null> was returned.
[ 01-01 15:14:18.231 1000:14206:20198 W/Bundle ]
Attempt to cast generated internal exception:
java.lang.ClassCastException: java.lang.Integer cannot be cast to java.lang.String
at android.os.BaseBundle.getString(BaseBundle.java:1072)
at com.android.settingslib.SuggestionParser.getDismissControl(SuggestionParser.java:377)
at com.android.settingslib.SuggestionParser.isDismissed(SuggestionParser.java:330)
at com.android.settingslib.SuggestionParser.filterSuggestions(SuggestionParser.java:187)
at com.android.settingslib.SuggestionParser.readSuggestions(SuggestionParser.java:204)
at com.android.settingslib.SuggestionParser.getSuggestions(SuggestionParser.java:151)
at com.android.settings.dashboard.DashboardSummary$SuggestionLoader.doInBackground(DashboardSummary.java:260)
at com.android.settings.dashboard.DashboardSummary$SuggestionLoader.doInBackground(DashboardSummary.java:255)
at android.os.AsyncTask$2.call(AsyncTask.java:305)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at android.os.AsyncTask$SerialExecutor$1.run(AsyncTask.java:243)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)
at java.lang.Thread.run(Thread.java:764)
[ 01-01 15:14:18.311 1041: 541: 5252 D/audio_route ]
Apply path: speaker-protected
[ 01-01 15:14:18.313 1041: 541: 5252 D/audio_hw_primary ]
enable_snd_device: snd_device(88: vi-feedback)
[ 01-01 15:14:18.313 1041: 541: 5252 D/audio_route ]
Apply path: vi-feedback
[ 01-01 15:14:18.313 1041: 541: 5252 D/audio_hw_primary ]
enable_audio_route: usecase(23) apply and update mixer path: spkr-vi-record
[ 01-01 15:14:18.313 1041: 541: 5252 D/audio_route ]
Apply path: spkr-vi-record
[ 01-01 15:14:18.339 1041: 541: 5252 D/audio_hw_primary ]
enable_audio_route: usecase(1) apply and update mixer path: low-latency-playback
[ 01-01 15:14:18.339 1041: 541: 5252 D/audio_route ]
Apply path: low-latency-playback
--------- switch to system
[ 01-01 15:14:18.417 1000: 2272: 3627 I/ActivityManager ]
START u0 {act=android.intent.action.MAIN cat=[android.intent.category.HOME] flg=0x10200000 cmp=com.google.android.googlequicksearchbox/com.google.android.launcher.GEL (has extras)} from uid 1000
--------- switch to main
[ 01-01 15:14:18.467 1000:14206:14206 D/DashboardSummary ]
Stopped listening for condition changes
[ 01-01 15:14:18.539 10038:18491:18504 I/AttachedClient ]
Adding client event 2 to pending list.
[ 01-01 15:14:18.582 1000: 2272: 3783 W/OpenGLRenderer ]
Warning: attempt to read pixels from hardware bitmap, which is very slow operation
[ 01-01 15:14:18.630 10038:18491:18491 I/MicroDetectionWorker ]
#updateMicroDetector [currentDetectionMode: [mDetectionMode: [1]]]
[ 01-01 15:14:18.630 10038:18491:18491 I/MicroDetectionWorker ]
#startMicroDetector [speakerMode: 0]
[ 01-01 15:14:18.647 10038:18491:20275 I/MicroRecognitionRunner ]
Starting detection.
[ 01-01 15:14:18.650 10038:18491:19012 I/MicrophoneInputStream ]
mic_starting com.google.android.apps.gsa.speech.audio.ag@e61439e
[ 01-01 15:14:18.652 1041: 541:18637 W/DeviceHAL ]
Device 0xf4fad000 open_input_stream: Invalid argument
[ 01-01 15:14:18.654 1041: 541:20301 I/AudioFlinger ]
AudioFlinger's thread 0xf19aa340 tid=20301 ready to run
[ 01-01 15:14:18.661 10038:18491:18491 I/MicroDetectionWorker ]
onReady
[ 01-01 15:14:18.662 10038:18491:18496 I/zygote64 ]
Integer.valueOf will not be optimized
[ 01-01 15:14:18.675 1041: 541: 741 I/SoundTriggerHwService::Module ]
onCallbackEvent no clients
[ 01-01 15:14:18.676 10038:18491:19012 I/MicrophoneInputStream ]
mic_started com.google.android.apps.gsa.speech.audio.ag@e61439e
[ 01-01 15:14:18.681 1041: 541:20302 D/sound_trigger_platform ]
platform_stdev_check_and_update_concurrency: concurrency active 0, tx 1, rx 0, concurrency session_allowed 0
[ 01-01 15:14:18.681 1041: 541:20302 D/audio_hw_primary ]
enable_snd_device: snd_device(72: voice-rec-mic)
[ 01-01 15:14:18.681 1041: 541:20302 D/audio_route ]
Apply path: voice-rec-mic
[ 01-01 15:14:18.687 1041: 541:20302 D/audio_hw_primary ]
enable_audio_route: usecase(9) apply and update mixer path: audio-record
[ 01-01 15:14:18.687 1041: 541:20302 D/audio_route ]
Apply path: audio-record
[ 01-01 15:14:18.689 1000: 2272: 2282 I/zygote64 ]
Background concurrent copying GC freed 31100(11MB) AllocSpace objects, 6(240KB) LOS objects, 42% free, 16MB/28MB, paused 299us total 106.777ms
[ 01-01 15:14:18.745 10038:18491:18491 I/MicroDetectionWorker ]
onReady
[ 01-01 15:14:18.780 1000: 2272: 3783 W/OpenGLRenderer ]
Warning: attempt to read pixels from hardware bitmap, which is very slow operation
[ 01-01 15:14:18.859 1041: 541: 717 D/audio_hw_primary ]
disable_audio_route: usecase(1) reset and update mixer path: low-latency-playback
[ 01-01 15:14:18.874 1041: 541: 717 D/audio_hw_primary ]
disable_snd_device: snd_device(88: vi-feedback)
[ 01-01 15:14:18.874 1041: 541: 717 D/audio_hw_primary ]
disable_audio_route: usecase(23) reset and update mixer path: spkr-vi-record
[ 01-01 15:14:18.911 1000: 2272: 3783 W/OpenGLRenderer ]
Warning: attempt to read pixels from hardware bitmap, which is very slow operation
[ 01-01 15:14:19.034 10038: 4245: 4483 W/OpenGLRenderer ]
Incorrectly called buildLayer on View: ShortcutAndWidgetContainer, destroying layer...
[ 01-01 15:14:19.215 1041: 541: 5252 D/audio_route ]
Apply path: speaker-protected
--------- switch to system
[ 01-01 15:14:19.216 1000: 2272: 3832 I/ActivityManager ]
START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.android.settings/.Settings bnds=[435,1254][646,1507] (has extras)} from uid 10038
--------- switch to main
[ 01-01 15:14:19.219 1041: 541: 5252 D/audio_hw_primary ]
enable_snd_device: snd_device(88: vi-feedback)
[ 01-01 15:14:19.220 1041: 541: 5252 D/audio_route ]
Apply path: vi-feedback
[ 01-01 15:14:19.220 1041: 541: 5252 D/audio_hw_primary ]
enable_audio_route: usecase(23) apply and update mixer path: spkr-vi-record
[ 01-01 15:14:19.220 1041: 541: 5252 D/audio_route ]
Apply path: spkr-vi-record
[ 01-01 15:14:19.245 1041: 541: 5252 D/audio_hw_primary ]
enable_audio_route: usecase(1) apply and update mixer path: low-latency-playback
[ 01-01 15:14:19.245 1041: 541: 5252 D/audio_route ]
Apply path: low-latency-playback
[ 01-01 15:14:19.384 1000:14206:14206 D/DashboardSummary ]
Listening for condition changes
[ 01-01 15:14:19.384 1000:14206:14206 D/DashboardSummary ]
onConditionsChanged
[ 01-01 15:14:19.385 1000:14206:14206 D/DashboardAdapter ]
adapter setConditions called
[ 01-01 15:14:19.385 1000:14206:14206 D/DashboardSummary ]
conditions refreshed
[ 01-01 15:14:19.385 1000:14206:14206 D/APM_Condition ]
APM condition refreshed
[ 01-01 15:14:19.385 1000:14206:14206 D/APM_Condition ]
setActive was called with false
[ 01-01 15:14:19.455 1000:14206:20201 D/DatabaseIndexingManager ]
Indexing locale 'en_US' took 22 millis
[ 01-01 15:14:19.497 1000:14206:20201 D/DatabaseIndexingManager ]
Indexing locale 'en_US' took 23 millis
[ 01-01 15:14:19.600 1000:14206:20201 I/SuggestionParser ]
Use your voice requires unavailable account type com.google
[ 01-01 15:14:19.636 1000:14206:20201 W/Bundle ]
Key com.android.settings.dismiss expected String but value was a java.lang.Integer. The default value <null> was returned.
[ 01-01 15:14:19.638 1000:14206:20201 W/Bundle ]
Attempt to cast generated internal exception:
java.lang.ClassCastException: java.lang.Integer cannot be cast to java.lang.String
at android.os.BaseBundle.getString(BaseBundle.java:1072)
at com.android.settingslib.SuggestionParser.getDismissControl(SuggestionParser.java:377)
at com.android.settingslib.SuggestionParser.isDismissed(SuggestionParser.java:330)
at com.android.settingslib.SuggestionParser.filterSuggestions(SuggestionParser.java:187)
at com.android.settingslib.SuggestionParser.readSuggestions(SuggestionParser.java:204)
at com.android.settingslib.SuggestionParser.getSuggestions(SuggestionParser.java:151)
at com.android.settings.dashboard.DashboardSummary$SuggestionLoader.doInBackground(DashboardSummary.java:260)
at com.android.settings.dashboard.DashboardSummary$SuggestionLoader.doInBackground(DashboardSummary.java:255)
at android.os.AsyncTask$2.call(AsyncTask.java:305)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at android.os.AsyncTask$SerialExecutor$1.run(AsyncTask.java:243)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)
at java.lang.Thread.run(Thread.java:764)
--------- switch to system
[ 01-01 15:14:19.660 1000: 2272: 5448 D/BatteryStatsService ]
begin updateExternalStatsSync reason=get-stats
[ 01-01 15:14:19.681 1000: 2272: 5448 E/BatteryStatsService ]
no controller energy info supplied
[ 01-01 15:14:19.737 1000: 2272: 5448 D/BatteryStatsImpl ]
Reading cpu stats took 34 ms
--------- switch to main
[ 01-01 15:14:19.759 1041: 541: 717 D/audio_hw_primary ]
disable_audio_route: usecase(1) reset and update mixer path: low-latency-playback
--------- switch to system
[ 01-01 15:14:19.764 1000: 2272: 5448 E/KernelMemoryBandwidthStats ]
Failed to read memory bandwidth: /sys/kernel/memory_state_time/show_stat (No such file or directory)
[ 01-01 15:14:19.764 1000: 2272: 5448 D/BatteryStatsService ]
end updateExternalStatsSync
--------- switch to main
[ 01-01 15:14:19.772 1041: 541: 717 D/audio_hw_primary ]
disable_snd_device: snd_device(88: vi-feedback)
[ 01-01 15:14:19.772 1041: 541: 717 D/audio_hw_primary ]
disable_audio_route: usecase(23) reset and update mixer path: spkr-vi-record
[ 01-01 15:14:19.981 10038:18491:18491 I/MicroDetector ]
Keeping mic open: false
[ 01-01 15:14:19.982 10038:18491:19007 I/AudioController ]
internalShutdown
[ 01-01 15:14:19.983 10038:18491:18549 I/MicroRecognitionRunner ]
Stopping hotword detection.
[ 01-01 15:14:19.987 10038:18491:20275 I/MicroRecognitionRunner ]
Detection finished
[ 01-01 15:14:19.989 10038:18491:19006 I/DeviceStateChecker ]
DeviceStateChecker cancelled
[ 01-01 15:14:19.990 10038:18491:19007 I/MicrophoneInputStream ]
mic_close com.google.android.apps.gsa.speech.audio.ag@e61439e
[ 01-01 15:14:20.045 1041: 541:20301 D/audio_hw_primary ]
disable_audio_route: usecase(9) reset and update mixer path: audio-record
[ 01-01 15:14:20.046 1041: 541:20301 D/audio_hw_primary ]
disable_snd_device: snd_device(72: voice-rec-mic)
[ 01-01 15:14:20.051 1041: 541:20301 D/sound_trigger_platform ]
platform_stdev_check_and_update_concurrency: concurrency active 0, tx 0, rx 0, concurrency session_allowed 1
[ 01-01 15:14:20.053 1041: 541: 741 I/SoundTriggerHwService::Module ]
onCallbackEvent no clients
[ 01-01 15:14:20.153 1041: 541: 678 I/ServiceManager ]
Waiting for service media.log...
[ 01-01 15:14:20.153 1041: 541: 5252 D/audio_route ]
Apply path: speaker-protected
[ 01-01 15:14:20.156 1041: 541: 5252 D/audio_hw_primary ]
enable_snd_device: snd_device(88: vi-feedback)
[ 01-01 15:14:20.156 1041: 541: 5252 D/audio_route ]
Apply path: vi-feedback
[ 01-01 15:14:20.156 1041: 541: 5252 D/audio_hw_primary ]
enable_audio_route: usecase(23) apply and update mixer path: spkr-vi-record
[ 01-01 15:14:20.157 1041: 541: 5252 D/audio_route ]
Apply path: spkr-vi-record
[ 01-01 15:14:20.165 1000:14206:20202 I/SuggestionParser ]
Use your voice requires unavailable account type com.google
[ 01-01 15:14:20.180 10036: 3812: 3819 I/zygote64 ]
Integer.valueOf will not be optimized
[ 01-01 15:14:20.181 10036: 3812: 3819 I/chatty ]
uid=10036(u0_a36) Jit thread pool identical 3 lines
[ 01-01 15:14:20.181 10036: 3812: 3819 I/zygote64 ]
Integer.valueOf will not be optimized
[ 01-01 15:14:20.185 1041: 541: 5252 D/audio_hw_primary ]
enable_audio_route: usecase(1) apply and update mixer path: low-latency-playback
[ 01-01 15:14:20.185 1041: 541: 5252 D/audio_route ]
Apply path: low-latency-playback
[ 01-01 15:14:20.199 1000:14206:20202 W/Bundle ]
Key com.android.settings.dismiss expected String but value was a java.lang.Integer. The default value <null> was returned.
[ 01-01 15:14:20.200 1000:14206:20202 W/Bundle ]
Attempt to cast generated internal exception:
java.lang.ClassCastException: java.lang.Integer cannot be cast to java.lang.String
at android.os.BaseBundle.getString(BaseBundle.java:1072)
at com.android.settingslib.SuggestionParser.getDismissControl(SuggestionParser.java:377)
at com.android.settingslib.SuggestionParser.isDismissed(SuggestionParser.java:330)
at com.android.settingslib.SuggestionParser.filterSuggestions(SuggestionParser.java:187)
at com.android.settingslib.SuggestionParser.readSuggestions(SuggestionParser.java:204)
at com.android.settingslib.SuggestionParser.getSuggestions(SuggestionParser.java:151)
at com.android.settings.dashboard.DashboardSummary$SuggestionLoader.doInBackground(DashboardSummary.java:260)
at com.android.settings.dashboard.DashboardSummary$SuggestionLoader.doInBackground(DashboardSummary.java:255)
at android.os.AsyncTask$2.call(AsyncTask.java:305)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at android.os.AsyncTask$SerialExecutor$1.run(AsyncTask.java:243)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)
at java.lang.Thread.run(Thread.java:764)
--------- switch to system
[ 01-01 15:14:20.204 1000: 2272: 3627 I/ActivityManager ]
START u0 {act=android.intent.action.MAIN cat=[android.intent.category.HOME] flg=0x10200000 cmp=com.google.android.googlequicksearchbox/com.google.android.launcher.GEL (has extras)} from uid 1000
--------- switch to main
[ 01-01 15:14:20.346 1000:14206:14206 D/DashboardSummary ]
Stopped listening for condition changes
[ 01-01 15:14:20.352 10038:18491:18672 I/AttachedClient ]
Adding client event 2 to pending list.
[ 01-01 15:14:20.392 1000: 2272: 3783 W/OpenGLRenderer ]
Warning: attempt to read pixels from hardware bitmap, which is very slow operation
[ 01-01 15:14:20.466 1000: 2272: 4217 W/zygote64 ]
Long monitor contention with owner Binder:2272_4 (3832) at void com.android.server.am.ActivityManagerService.activityIdle(android.os.IBinder, android.content.res.Configuration, boolean)(ActivityManagerService.java:6920) waiters=2 in int com.android.server.am.ActivityManagerService.getLastResumedActivityUserId() for 103ms
[ 01-01 15:14:20.492 10038:18491:18491 I/MicroDetectionWorker ]
#updateMicroDetector [currentDetectionMode: [mDetectionMode: [1]]]
[ 01-01 15:14:20.492 10038:18491:18491 I/MicroDetectionWorker ]
#startMicroDetector [speakerMode: 0]
[ 01-01 15:14:20.511 10038:18491:19006 I/MicroRecognitionRunner ]
Starting detection.
[ 01-01 15:14:20.512 10038:18491:19007 I/MicrophoneInputStream ]
mic_starting com.google.android.apps.gsa.speech.audio.ag@cdae8fe
[ 01-01 15:14:20.513 1041: 541:18637 W/DeviceHAL ]
Device 0xf4fad000 open_input_stream: Invalid argument
[ 01-01 15:14:20.515 1041: 541:20313 I/AudioFlinger ]
AudioFlinger's thread 0xf19a7500 tid=20313 ready to run
[ 01-01 15:14:20.542 1041: 541: 741 I/SoundTriggerHwService::Module ]
onCallbackEvent no clients
[ 01-01 15:14:20.543 10038:18491:18491 I/MicroDetectionWorker ]
onReady
[ 01-01 15:14:20.544 10038:18491:19007 I/MicrophoneInputStream ]
mic_started com.google.android.apps.gsa.speech.audio.ag@cdae8fe
[ 01-01 15:14:20.545 1041: 541:20314 D/sound_trigger_platform ]
platform_stdev_check_and_update_concurrency: concurrency active 0, tx 1, rx 0, concurrency session_allowed 0
[ 01-01 15:14:20.545 1041: 541:20314 D/audio_hw_primary ]
enable_snd_device: snd_device(72: voice-rec-mic)
[ 01-01 15:14:20.545 1041: 541:20314 D/audio_route ]
Apply path: voice-rec-mic
[ 01-01 15:14:20.552 1041: 541:20314 D/audio_hw_primary ]
enable_audio_route: usecase(9) apply and update mixer path: audio-record
[ 01-01 15:14:20.552 1041: 541:20314 D/audio_route ]
Apply path: audio-record
[ 01-01 15:14:20.613 10038:18491:18491 I/MicroDetectionWorker ]
onReady
[ 01-01 15:14:20.618 1000: 2272: 4088 I/sensors ]
activate
[ 01-01 15:14:20.621 1000: 2272: 4088 I/nanohub ]
queueActivate: sensor=1, handle=1, enable=0
[ 01-01 15:14:20.638 1000: 2272: 3783 W/OpenGLRenderer ]
Warning: attempt to read pixels from hardware bitmap, which is very slow operation
[ 01-01 15:14:20.705 1041: 541: 717 D/audio_hw_primary ]
disable_audio_route: usecase(1) reset and update mixer path: low-latency-playback
[ 01-01 15:14:20.716 1041: 541: 717 D/audio_hw_primary ]
disable_snd_device: snd_device(88: vi-feedback)
[ 01-01 15:14:20.716 1041: 541: 717 D/audio_hw_primary ]
disable_audio_route: usecase(23) reset and update mixer path: spkr-vi-record
[ 01-01 15:14:20.755 1000: 2272: 3783 W/OpenGLRenderer ]
Warning: attempt to read pixels from hardware bitmap, which is very slow operation
[ 01-01 15:14:20.843 10038: 4245: 4483 W/OpenGLRenderer ]
Incorrectly called buildLayer on View: ShortcutAndWidgetContainer, destroying layer...
[ 01-01 15:14:21.055 1000: 2272: 4464 D/WificondControl ]
Scan result ready event
[ 01-01 15:14:21.096 1000: 2272: 3755 W/WifiConfigManager ]
Looking up network with invalid networkId -1
[ 01-01 15:14:21.153 1041: 541: 678 I/ServiceManager ]
Waiting for service media.log...
[ 01-01 15:14:21.980 1041: 541: 5252 D/audio_route ]
Apply path: speaker-protected
--------- switch to system
[ 01-01 15:14:21.982 1000: 2272: 5450 I/ActivityManager ]
START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.android.settings/.Settings bnds=[435,1254][646,1507] (has extras)} from uid 10038
--------- switch to main
[ 01-01 15:14:21.983 1041: 541: 5252 D/audio_hw_primary ]
enable_snd_device: snd_device(88: vi-feedback)
[ 01-01 15:14:21.983 1041: 541: 5252 D/audio_route ]
Apply path: vi-feedback
[ 01-01 15:14:21.983 1041: 541: 5252 D/audio_hw_primary ]
enable_audio_route: usecase(23) apply and update mixer path: spkr-vi-record
[ 01-01 15:14:21.983 1041: 541: 5252 D/audio_route ]
Apply path: spkr-vi-record
[ 01-01 15:14:22.016 1041: 541: 5252 D/audio_hw_primary ]
enable_audio_route: usecase(1) apply and update mixer path: low-latency-playback
[ 01-01 15:14:22.016 1041: 541: 5252 D/audio_route ]
Apply path: low-latency-playback
[ 01-01 15:14:22.154 1041: 541: 678 I/ServiceManager ]
Waiting for service media.log...
[ 01-01 15:14:22.182 1000:14206:14206 D/DashboardSummary ]
Listening for condition changes
[ 01-01 15:14:22.183 1000:14206:14206 D/DashboardSummary ]
onConditionsChanged
[ 01-01 15:14:22.183 1000:14206:14206 D/DashboardAdapter ]
adapter setConditions called
[ 01-01 15:14:22.183 1000:14206:14206 D/DashboardSummary ]
conditions refreshed
[ 01-01 15:14:22.183 1000:14206:14206 D/APM_Condition ]
APM condition refreshed
[ 01-01 15:14:22.183 1000:14206:14206 D/APM_Condition ]
setActive was called with false
[ 01-01 15:14:22.258 1000:14206:20201 D/DatabaseIndexingManager ]
Indexing locale 'en_US' took 42 millis
[ 01-01 15:14:22.292 1000:14206:20201 D/DatabaseIndexingManager ]
Indexing locale 'en_US' took 19 millis
[ 01-01 15:14:22.397 1000:14206:20201 I/SuggestionParser ]
Use your voice requires unavailable account type com.google
[ 01-01 15:14:22.429 1000:14206:20201 W/Bundle ]
Key com.android.settings.dismiss expected String but value was a java.lang.Integer. The default value <null> was returned.
[ 01-01 15:14:22.430 1000:14206:20201 W/Bundle ]
Attempt to cast generated internal exception:
java.lang.ClassCastException: java.lang.Integer cannot be cast to java.lang.String
at android.os.BaseBundle.getString(BaseBundle.java:1072)
at com.android.settingslib.SuggestionParser.getDismissControl(SuggestionParser.java:377)
at com.android.settingslib.SuggestionParser.isDismissed(SuggestionParser.java:330)
at com.android.settingslib.SuggestionParser.filterSuggestions(SuggestionParser.java:187)
at com.android.settingslib.SuggestionParser.readSuggestions(SuggestionParser.java:204)
at com.android.settingslib.SuggestionParser.getSuggestions(SuggestionParser.java:151)
at com.android.settings.dashboard.DashboardSummary$SuggestionLoader.doInBackground(DashboardSummary.java:260)
at com.android.settings.dashboard.DashboardSummary$SuggestionLoader.doInBackground(DashboardSummary.java:255)
at android.os.AsyncTask$2.call(AsyncTask.java:305)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at android.os.AsyncTask$SerialExecutor$1.run(AsyncTask.java:243)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)
at java.lang.Thread.run(Thread.java:764)
--------- switch to system
[ 01-01 15:14:22.448 1000: 2272: 4217 D/BatteryStatsService ]
begin updateExternalStatsSync reason=get-stats
--------- switch to main
[ 01-01 15:14:22.525 1041: 541: 717 D/audio_hw_primary ]
disable_audio_route: usecase(1) reset and update mixer path: low-latency-playback
[ 01-01 15:14:22.541 1041: 541: 717 D/audio_hw_primary ]
disable_snd_device: snd_device(88: vi-feedback)
[ 01-01 15:14:22.541 1041: 541: 717 D/audio_hw_primary ]
disable_audio_route: usecase(23) reset and update mixer path: spkr-vi-record
--------- switch to system
[ 01-01 15:14:22.551 1000: 2272: 4217 E/BatteryStatsService ]
no controller energy info supplied
[ 01-01 15:14:22.601 1000: 2272: 4217 D/BatteryStatsImpl ]
Reading cpu stats took 35 ms
[ 01-01 15:14:22.627 1000: 2272: 4217 E/KernelMemoryBandwidthStats ]
Failed to read memory bandwidth: /sys/kernel/memory_state_time/show_stat (No such file or directory)
[ 01-01 15:14:22.628 1000: 2272: 4217 D/BatteryStatsService ]
end updateExternalStatsSync
--------- switch to main
[ 01-01 15:14:22.642 10038:18491:18491 I/MicroDetector ]
Keeping mic open: false
[ 01-01 15:14:22.642 10038:18491:19012 I/AudioController ]
internalShutdown
[ 01-01 15:14:22.643 10038:18491:19012 I/MicrophoneInputStream ]
mic_close com.google.android.apps.gsa.speech.audio.ag@cdae8fe
[ 01-01 15:14:22.644 10038:18491:18549 I/MicroRecognitionRunner ]
Stopping hotword detection.
[ 01-01 15:14:22.649 10038:18491:20275 I/DeviceStateChecker ]
DeviceStateChecker cancelled
[ 01-01 15:14:22.736 1000: 2272: 3582 W/zygote64 ]
Long monitor contention with owner Binder:2272_7 (4217) at android.os.ParcelFileDescriptor com.android.server.am.BatteryStatsService.getStatisticsStream()(BatteryStatsService.java:378) waiters=0 in boolean com.android.server.am.ActivityManagerService.applyOomAdjLocked(com.android.server.am.ProcessRecord, boolean, long, long) for 108ms
[ 01-01 15:14:22.790 1041: 541:20313 D/audio_hw_primary ]
disable_audio_route: usecase(9) reset and update mixer path: audio-record
[ 01-01 15:14:22.791 1041: 541:20313 D/audio_hw_primary ]
disable_snd_device: snd_device(72: voice-rec-mic)
[ 01-01 15:14:22.798 1041: 541:20313 D/sound_trigger_platform ]
platform_stdev_check_and_update_concurrency: concurrency active 0, tx 0, rx 0, concurrency session_allowed 1
[ 01-01 15:14:22.799 1041: 541: 741 I/SoundTriggerHwService::Module ]
onCallbackEvent no clients
[ 01-01 15:14:22.804 10038:18491:18549 W/zygote64 ]
Long monitor contention with owner UserFacing6 (19012) at void android.media.AudioRecord.native_stop()(AudioRecord.java:-2) waiters=0 in void com.google.android.apps.gsa.speech.audio.an.reset(int) for 154ms
[ 01-01 15:14:22.805 10038:18491:19006 I/MicroRecognitionRunner ]
Detection finished
[ 01-01 15:14:22.936 1041: 541: 5252 D/audio_route ]
Apply path: speaker-protected
[ 01-01 15:14:22.938 1041: 541: 5252 D/audio_hw_primary ]
enable_snd_device: snd_device(88: vi-feedback)
[ 01-01 15:14:22.938 1041: 541: 5252 D/audio_route ]
Apply path: vi-feedback
[ 01-01 15:14:22.938 1041: 541: 5252 D/audio_hw_primary ]
enable_audio_route: usecase(23) apply and update mixer path: spkr-vi-record
[ 01-01 15:14:22.938 1041: 541: 5252 D/audio_route ]
Apply path: spkr-vi-record
[ 01-01 15:14:22.969 1041: 541: 5252 D/audio_hw_primary ]
enable_audio_route: usecase(1) apply and update mixer path: low-latency-playback
[ 01-01 15:14:22.969 1041: 541: 5252 D/audio_route ]
Apply path: low-latency-playback
[ 01-01 15:14:23.024 1000:14206:20198 I/SuggestionParser ]
Use your voice requires unavailable account type com.google
[ 01-01 15:14:23.062 1000:14206:20198 W/Bundle ]
Key com.android.settings.dismiss expected String but value was a java.lang.Integer. The default value <null> was returned.
[ 01-01 15:14:23.063 1000:14206:20198 W/Bundle ]
Attempt to cast generated internal exception:
java.lang.ClassCastException: java.lang.Integer cannot be cast to java.lang.String
at android.os.BaseBundle.getString(BaseBundle.java:1072)
at com.android.settingslib.SuggestionParser.getDismissControl(SuggestionParser.java:377)
at com.android.settingslib.SuggestionParser.isDismissed(SuggestionParser.java:330)
at com.android.settingslib.SuggestionParser.filterSuggestions(SuggestionParser.java:187)
at com.android.settingslib.SuggestionParser.readSuggestions(SuggestionParser.java:204)
at com.android.settingslib.SuggestionParser.getSuggestions(SuggestionParser.java:151)
at com.android.settings.dashboard.DashboardSummary$SuggestionLoader.doInBackground(DashboardSummary.java:260)
at com.android.settings.dashboard.DashboardSummary$SuggestionLoader.doInBackground(DashboardSummary.java:255)
at android.os.AsyncTask$2.call(AsyncTask.java:305)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at android.os.AsyncTask$SerialExecutor$1.run(AsyncTask.java:243)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)
at java.lang.Thread.run(Thread.java:764)
--------- switch to system
[ 01-01 15:14:23.066 1000: 2272: 3627 I/ActivityManager ]
START u0 {act=android.intent.action.MAIN cat=[android.intent.category.HOME] flg=0x10200000 cmp=com.google.android.googlequicksearchbox/com.google.android.launcher.GEL (has extras)} from uid 1000
--------- switch to main
[ 01-01 15:14:23.120 1000:14206:14206 D/DashboardSummary ]
Stopped listening for condition changes
[ 01-01 15:14:23.156 1041: 541: 678 I/ServiceManager ]
Waiting for service media.log...
[ 01-01 15:14:23.242 1000: 2272: 3783 W/OpenGLRenderer ]
Warning: attempt to read pixels from hardware bitmap, which is very slow operation
[ 01-01 15:14:23.249 10038:18491:18504 I/AttachedClient ]
Adding client event 2 to pending list.
[ 01-01 15:14:23.317 10036: 3812: 3819 I/zygote64 ]
Integer.valueOf will not be optimized
[ 01-01 15:14:23.320 10038:18491:18491 I/MicroDetectionWorker ]
#updateMicroDetector [currentDetectionMode: [mDetectionMode: [1]]]
[ 01-01 15:14:23.321 10038:18491:18491 I/MicroDetectionWorker ]
#startMicroDetector [speakerMode: 0]
[ 01-01 15:14:23.331 10038:18491:18496 I/zygote64 ]
Integer.valueOf will not be optimized
[ 01-01 15:14:23.337 10038:18491:20275 I/MicroRecognitionRunner ]
Starting detection.
[ 01-01 15:14:23.339 10038:18491:19012 I/MicrophoneInputStream ]
mic_starting com.google.android.apps.gsa.speech.audio.ag@681da37
[ 01-01 15:14:23.341 1041: 541: 742 W/DeviceHAL ]
Device 0xf4fad000 open_input_stream: Invalid argument
[ 01-01 15:14:23.352 1041: 541:20329 I/AudioFlinger ]
AudioFlinger's thread 0xf19a7f40 tid=20329 ready to run
[ 01-01 15:14:23.361 10038:18491:18491 I/MicroDetectionWorker ]
onReady
[ 01-01 15:14:23.364 1041: 541: 741 I/SoundTriggerHwService::Module ]
onCallbackEvent no clients
[ 01-01 15:14:23.364 10038:18491:19012 I/MicrophoneInputStream ]
mic_started com.google.android.apps.gsa.speech.audio.ag@681da37
[ 01-01 15:14:23.374 1041: 541:20330 D/sound_trigger_platform ]
platform_stdev_check_and_update_concurrency: concurrency active 0, tx 1, rx 0, concurrency session_allowed 0
[ 01-01 15:14:23.375 1041: 541:20330 D/audio_hw_primary ]
enable_snd_device: snd_device(72: voice-rec-mic)
[ 01-01 15:14:23.375 1041: 541:20330 D/audio_route ]
Apply path: voice-rec-mic
[ 01-01 15:14:23.377 10038:18491:18496 I/zygote64 ]
Integer.valueOf will not be optimized
[ 01-01 15:14:23.378 1041: 541:20330 D/audio_hw_primary ]
enable_audio_route: usecase(9) apply and update mixer path: audio-record
[ 01-01 15:14:23.378 1041: 541:20330 D/audio_route ]
Apply path: audio-record
[ 01-01 15:14:23.431 10038:18491:18491 I/MicroDetectionWorker ]
onReady
[ 01-01 15:14:23.473 1000: 2272: 3783 W/OpenGLRenderer ]
Warning: attempt to read pixels from hardware bitmap, which is very slow operation
[ 01-01 15:14:23.491 1041: 541: 717 D/audio_hw_primary ]
disable_audio_route: usecase(1) reset and update mixer path: low-latency-playback
[ 01-01 15:14:23.503 1041: 541: 717 D/audio_hw_primary ]
disable_snd_device: snd_device(88: vi-feedback)
[ 01-01 15:14:23.503 1041: 541: 717 D/audio_hw_primary ]
disable_audio_route: usecase(23) reset and update mixer path: spkr-vi-record
[ 01-01 15:14:23.593 1000: 2272: 3783 W/OpenGLRenderer ]
Warning: attempt to read pixels from hardware bitmap, which is very slow operation
[ 01-01 15:14:23.698 10038: 4245: 4483 W/OpenGLRenderer ]
Incorrectly called buildLayer on View: ShortcutAndWidgetContainer, destroying layer...
--------- switch to system
[ 01-01 15:14:24.210 1000: 2272: 3628 I/PowerManagerService ]
Going to sleep due to power button (uid 1000)...
[ 01-01 15:14:24.708 1000: 2272: 3592 D/BatteryStatsService ]
begin noteScreenState
[ 01-01 15:14:24.710 1000: 2272: 3592 D/BatteryStatsService ]
end noteScreenState
[ 01-01 15:14:24.719 1000: 2272: 3582 I/VrManagerService ]
VR mode is disallowed
|