Home
last modified time | relevance | path

Searched refs:pcsList (Results 1 – 1 of 1) sorted by relevance

/frameworks/av/services/camera/libcameraservice/utils/
DCameraTraces.cpp35 List<ProcessCallStack> pcsList; member
46 List<ProcessCallStack>& pcsList = sImpl.pcsList; in saveTrace() local
49 pcsList.push_front(ProcessCallStack()); in saveTrace()
50 ProcessCallStack& pcs = *pcsList.begin(); in saveTrace()
53 if (pcsList.size() > MAX_TRACES) { in saveTrace()
55 pcsList.erase(--pcsList.end()); in saveTrace()
70 List<ProcessCallStack>& pcsList = sImpl.pcsList; in dump() local
77 dprintf(fd, "Camera traces (%zu):\n", pcsList.size()); in dump()
79 if (pcsList.empty()) { in dump()
85 for (it = pcsList.begin(), end = pcsList.end(); it != end; ++it) { in dump()