Lines Matching refs:processIdentifier
958 ProcessIdentifier processIdentifier; in dumpAndKillClientsIfNotResponding() local
959 processIdentifier.pid = pid; in dumpAndKillClientsIfNotResponding()
960 processIdentifier.uid = static_cast<int32_t>(uid); in dumpAndKillClientsIfNotResponding()
961 processIdentifier.processName = processName; in dumpAndKillClientsIfNotResponding()
962 processIdentifier.startTimeMillis = startTimeMillis; in dumpAndKillClientsIfNotResponding()
963 processIdentifiers.push_back(processIdentifier); in dumpAndKillClientsIfNotResponding()
1078 for (auto&& processIdentifier : processesNotResponding) { in reportTerminatedProcessToVhal()
1079 const auto& retCmdLine = readProcCmdLine(processIdentifier.pid); in reportTerminatedProcessToVhal()
1081 ALOGW("Failed to get process command line for pid(%d): %s", processIdentifier.pid, in reportTerminatedProcessToVhal()
1310 ProcessIdentifier processIdentifier; in cacheVhalProcessIdentifierForPid() local
1311 processIdentifier.pid = pid; in cacheVhalProcessIdentifierForPid()
1312 processIdentifier.startTimeMillis = pidStat.startTimeMillis; in cacheVhalProcessIdentifierForPid()
1313 processIdentifier.processName = pidStat.comm; in cacheVhalProcessIdentifierForPid()
1314 processIdentifier.uid = kGetUidForPidFunc(pid); in cacheVhalProcessIdentifierForPid()
1317 mVhalProcessIdentifier = processIdentifier; in cacheVhalProcessIdentifierForPid()
1392 std::optional<ProcessIdentifier> processIdentifier; in terminateVhal() local
1395 processIdentifier = mVhalProcessIdentifier; in terminateVhal()
1397 if (!processIdentifier.has_value()) { in terminateVhal()
1402 dumpAndKillAllProcesses(std::vector<ProcessIdentifier>(1, *processIdentifier), in terminateVhal()