HomeSort by relevance Sort by last modified time
    Searched refs:PidInfo (Results 1 - 3 of 3) sorted by null

  /frameworks/native/cmds/lshal/
ListCommand.h 42 struct PidInfo {
96 virtual bool getPidInfo(pid_t serverPid, PidInfo *info) const;
98 const PidInfo* getPidInfoCached(pid_t serverPid);
148 std::map<pid_t, PidInfo> mCachedPidInfos;
test.cpp 202 const PidInfo* getPidInfoCached(pid_t serverPid) {
207 MOCK_CONST_METHOD2(getPidInfo, bool(pid_t, PidInfo*));
261 static PidInfo getPidInfoFromId(pid_t serverId) {
262 PidInfo info;
325 [](pid_t serverPid, PidInfo* info) {
ListCommand.cpp 157 pid_t serverPid, PidInfo *pidInfo) const {
180 pidInfo->refPids[ptr].push_back(pid);
202 pidInfo->threadUsage++;
205 pidInfo->threadCount++;
214 const PidInfo* ListCommand::getPidInfoCached(pid_t serverPid) {
215 auto pair = mCachedPidInfos.insert({serverPid, PidInfo{}});
629 const PidInfo* pidInfo = getPidInfoCached(debugInfo.pid);
630 if (pidInfo == nullptr)
    [all...]

Completed in 74 milliseconds