Home
last modified time | relevance | path

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

/frameworks/native/cmds/lshal/
DTableEntry.cpp79 return serverPid == NO_PID ? "N/A" : std::to_string(serverPid); in getField()
190 serverPid == other.serverPid && threadUsage == other.threadUsage && in operator ==()
200 << ";server=" << serverPid in to_string()
DTableEntry.h79 int32_t serverPid{NO_PID};
98 return a.serverPid < b.serverPid; in sortByServerPid()
DListCommand.h110 virtual bool getPidInfo(pid_t serverPid, PidInfo *info) const;
112 const PidInfo* getPidInfoCached(pid_t serverPid);
DListCommand.cpp235 pid_t serverPid, PidInfo *pidInfo) const { in getPidInfo() argument
240 return scanBinderContext(serverPid, "hwbinder", [&](const std::string& line) { in getPidInfo()
292 const PidInfo* ListCommand::getPidInfoCached(pid_t serverPid) { in getPidInfoCached() argument
293 auto pair = mCachedPidInfos.insert({serverPid, PidInfo{}}); in getPidInfoCached()
295 if (!getPidInfo(serverPid, &pair.first->second)) { in getPidInfoCached()
344 entry.serverCmdline = getCmdline(entry.serverPid); in postprocess()
352 entry.partition = getPartition(entry.serverPid); in postprocess()
638 .serverPid = info.clientPids.size() == 1 ? info.clientPids[0] : NO_PID, in fetchPassthrough()
722 entry->serverPid = debugInfo.pid; in fetchBinderizedEntry()
Dtest.cpp209 const PidInfo* getPidInfoCached(pid_t serverPid) { in getPidInfoCached() argument
210 return ListCommand::getPidInfoCached(serverPid); in getPidInfoCached()
339 [](pid_t serverPid, PidInfo* info) { in initMockList() argument
340 *info = getPidInfoFromId(serverPid); in initMockList()
433 .serverPid = transport == Transport::HWBINDER ? id : NO_PID, in TEST_F()