Snap for 9044085 from 74a13e265b
to udc-release
Change-Id: I189512341514e198633d96535cbe0e02b9c75be8
This commit is contained in:
commit
8a56add40a
1 changed files with 10 additions and 6 deletions
|
@ -1041,8 +1041,15 @@ void Dumpstate::dumpAoCSection(int fd) {
|
||||||
DumpFileToFd(fd, "AoC audio wake", "/sys/devices/platform/19000000.aoc/control/audio_wakeup");
|
DumpFileToFd(fd, "AoC audio wake", "/sys/devices/platform/19000000.aoc/control/audio_wakeup");
|
||||||
DumpFileToFd(fd, "AoC logging wake", "/sys/devices/platform/19000000.aoc/control/logging_wakeup");
|
DumpFileToFd(fd, "AoC logging wake", "/sys/devices/platform/19000000.aoc/control/logging_wakeup");
|
||||||
DumpFileToFd(fd, "AoC hotword wake", "/sys/devices/platform/19000000.aoc/control/hotword_wakeup");
|
DumpFileToFd(fd, "AoC hotword wake", "/sys/devices/platform/19000000.aoc/control/hotword_wakeup");
|
||||||
RunCommandToFd(fd, "AoC memory exception wake", {"/vendor/bin/sh", "-c", "cat /sys/devices/platform/19000000.aoc/control/memory_exception"}, CommandOptions::WithTimeout(2).Build());
|
RunCommandToFd(fd, "AoC memory exception wake",
|
||||||
RunCommandToFd(fd, "AoC memory votes", {"/vendor/bin/sh", "-c", "cat /sys/devices/platform/19000000.aoc/control/memory_votes"}, CommandOptions::WithTimeout(2).Build());
|
{"/vendor/bin/sh", "-c", "cat /sys/devices/platform/19000000.aoc/control/memory_exception"},
|
||||||
|
CommandOptions::WithTimeout(2).Build());
|
||||||
|
RunCommandToFd(fd, "AoC memory votes A32",
|
||||||
|
{"/vendor/bin/sh", "-c", "cat /sys/devices/platform/19000000.aoc/control/memory_votes_a32"},
|
||||||
|
CommandOptions::WithTimeout(2).Build());
|
||||||
|
RunCommandToFd(fd, "AoC memory votes FF1",
|
||||||
|
{"/vendor/bin/sh", "-c", "cat /sys/devices/platform/19000000.aoc/control/memory_votes_ff1"},
|
||||||
|
CommandOptions::WithTimeout(2).Build());
|
||||||
RunCommandToFd(fd, "AoC Heap Stats (A32)",
|
RunCommandToFd(fd, "AoC Heap Stats (A32)",
|
||||||
{"/vendor/bin/sh", "-c", "echo 'dbg heap -c 1' > /dev/acd-debug; timeout 0.1 cat /dev/acd-debug"},
|
{"/vendor/bin/sh", "-c", "echo 'dbg heap -c 1' > /dev/acd-debug; timeout 0.1 cat /dev/acd-debug"},
|
||||||
CommandOptions::WithTimeout(1).Build());
|
CommandOptions::WithTimeout(1).Build());
|
||||||
|
@ -1055,9 +1062,6 @@ void Dumpstate::dumpAoCSection(int fd) {
|
||||||
RunCommandToFd(fd, "AoC Heap Stats (HF1)",
|
RunCommandToFd(fd, "AoC Heap Stats (HF1)",
|
||||||
{"/vendor/bin/sh", "-c", "echo 'dbg heap -c 4' > /dev/acd-debug; timeout 0.1 cat /dev/acd-debug"},
|
{"/vendor/bin/sh", "-c", "echo 'dbg heap -c 4' > /dev/acd-debug; timeout 0.1 cat /dev/acd-debug"},
|
||||||
CommandOptions::WithTimeout(1).Build());
|
CommandOptions::WithTimeout(1).Build());
|
||||||
RunCommandToFd(fd, "AoC MIF Stats",
|
|
||||||
{"/vendor/bin/sh", "-c", "echo 'mif details' > /dev/acd-debug; timeout 0.1 cat /dev/acd-debug"},
|
|
||||||
CommandOptions::WithTimeout(1).Build());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Dump items related to sensors usf.
|
// Dump items related to sensors usf.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue