Home
last modified time | relevance | path

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

/packages/services/Car/cpp/watchdog/aidl/aidl_api/android.automotive.watchdog.internal/2/android/automotive/watchdog/internal/
DICarWatchdogMonitor.aidl36 …sNotResponding(in List<android.automotive.watchdog.internal.ProcessIdentifier> processIdentifiers); in onClientsNotResponding() argument
DICarWatchdog.aidl40 …e, in List<android.automotive.watchdog.internal.ProcessIdentifier> processIdentifiers, in int sess… in tellCarWatchdogServiceAlive() argument
/packages/services/Car/cpp/watchdog/aidl/aidl_api/android.automotive.watchdog.internal/1/android/automotive/watchdog/internal/
DICarWatchdogMonitor.aidl36 …sNotResponding(in List<android.automotive.watchdog.internal.ProcessIdentifier> processIdentifiers); in onClientsNotResponding() argument
DICarWatchdog.aidl40 …e, in List<android.automotive.watchdog.internal.ProcessIdentifier> processIdentifiers, in int sess… in tellCarWatchdogServiceAlive() argument
/packages/services/Car/cpp/watchdog/aidl/aidl_api/android.automotive.watchdog.internal/current/android/automotive/watchdog/internal/
DICarWatchdogMonitor.aidl36 …sNotResponding(in List<android.automotive.watchdog.internal.ProcessIdentifier> processIdentifiers); in onClientsNotResponding() argument
DICarWatchdog.aidl40 …e, in List<android.automotive.watchdog.internal.ProcessIdentifier> processIdentifiers, int session… in tellCarWatchdogServiceAlive() argument
/packages/services/Car/cpp/watchdog/aidl/aidl_api/android.automotive.watchdog.internal/3/android/automotive/watchdog/internal/
DICarWatchdogMonitor.aidl36 …sNotResponding(in List<android.automotive.watchdog.internal.ProcessIdentifier> processIdentifiers); in onClientsNotResponding() argument
DICarWatchdog.aidl40 …e, in List<android.automotive.watchdog.internal.ProcessIdentifier> processIdentifiers, int session… in tellCarWatchdogServiceAlive() argument
/packages/services/Car/cpp/watchdog/aidl/android/automotive/watchdog/internal/
DICarWatchdogMonitor.aidl32 void onClientsNotResponding(in List<ProcessIdentifier> processIdentifiers); in onClientsNotResponding() argument
DICarWatchdog.aidl87 in List<ProcessIdentifier> processIdentifiers, int sessionId); in tellCarWatchdogServiceAlive() argument
/packages/services/Car/tests/carservice_unit_test/src/android/car/watchdoglib/
DCarWatchdogDaemonHelperTest.java164 List<ProcessIdentifier> processIdentifiers = new ArrayList<>(); in testIndirectCall_TellCarWatchdogServiceAlive() local
169 mCarWatchdogDaemonHelper.tellCarWatchdogServiceAlive(service, processIdentifiers, 123456); in testIndirectCall_TellCarWatchdogServiceAlive()
171 verify(mFakeCarWatchdog).tellCarWatchdogServiceAlive(service, processIdentifiers, 123456); in testIndirectCall_TellCarWatchdogServiceAlive()
/packages/services/Car/cpp/watchdog/server/src/
DWatchdogProcessService.cpp144 std::string toPidString(const std::vector<ProcessIdentifier>& processIdentifiers) { in toPidString() argument
145 size_t size = processIdentifiers.size(); in toPidString()
150 StringAppendF(&buffer, "%d", processIdentifiers[0].pid); in toPidString()
152 StringAppendF(&buffer, ", %d", processIdentifiers[i].pid); in toPidString()
893 std::vector<ProcessIdentifier> processIdentifiers; in dumpAndKillClientsIfNotResponding() local
919 processIdentifiers.push_back(processIdentifier); in dumpAndKillClientsIfNotResponding()
926 return dumpAndKillAllProcesses(processIdentifiers, /*reportToVhal=*/true); in dumpAndKillClientsIfNotResponding()
/packages/services/Car/service/src/com/android/car/watchdog/
DWatchdogProcessHandler.java496 List<ProcessIdentifier> processIdentifiers = new ArrayList<>(clientInfos.size()); in toProcessIdentifierList() local
502 processIdentifiers.add(processIdentifier); in toProcessIdentifierList()
504 return processIdentifiers; in toProcessIdentifierList()
/packages/services/Car/cpp/watchdog/server/tests/
DWatchdogProcessServiceTest.cpp578 std::vector<ProcessIdentifier> processIdentifiers; in TEST_F() local
579 processIdentifiers.push_back( in TEST_F()
581 processIdentifiers.push_back( in TEST_F()
584 ->tellCarWatchdogServiceAlive(mockService, processIdentifiers, 1234) in TEST_F()