Home
last modified time | relevance | path

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

/frameworks/native/cmds/lshal/
DTableEntry.cpp80 return serverPid == NO_PID ? "N/A" : std::to_string(serverPid); in getField()
192 serverPid == other.serverPid && threadUsage == other.threadUsage && in operator ==()
202 << ";server=" << serverPid in to_string()
DTableEntry.h84 int32_t serverPid{NO_PID};
103 return a.serverPid < b.serverPid; in sortByServerPid()
DListCommand.h108 virtual bool getPidInfo(pid_t serverPid, BinderPidInfo *info) const;
110 const BinderPidInfo* getPidInfoCached(pid_t serverPid);
DListCommand.cpp208 pid_t serverPid, BinderPidInfo *pidInfo) const { in getPidInfo() argument
209 const auto& status = getBinderPidInfo(BinderDebugContext::HWBINDER, serverPid, pidInfo); in getPidInfo()
213 const BinderPidInfo* ListCommand::getPidInfoCached(pid_t serverPid) { in getPidInfoCached() argument
214 auto pair = mCachedPidInfos.insert({serverPid, BinderPidInfo{}}); in getPidInfoCached()
216 if (!getPidInfo(serverPid, &pair.first->second)) { in getPidInfoCached()
265 entry.serverCmdline = getCmdline(entry.serverPid); in postprocess()
273 entry.partition = getPartition(entry.serverPid); in postprocess()
584 .serverPid = info.clientPids.size() == 1 in fetchPassthrough()
679 entry->serverPid = debugInfo->pid; in fetchBinderizedEntry()
Dtest.cpp258 const BinderPidInfo* getPidInfoCached(pid_t serverPid) { in getPidInfoCached() argument
259 return ListCommand::getPidInfoCached(serverPid); in getPidInfoCached()
388 [](pid_t serverPid, BinderPidInfo* info) { in initMockList() argument
389 *info = getPidInfoFromId(serverPid); in initMockList()
482 .serverPid = transport == Transport::HWBINDER ? id : NO_PID, in TEST_F()