Home
last modified time | relevance | path

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

/packages/services/Car/tests/carservice_unit_test/src/com/android/car/watchdog/
DWatchdogProcessHandlerUnitTest.java325 protected int mLastSessionId = INVALID_SESSION_ID; field in WatchdogProcessHandlerUnitTest.TestClient
329 mLastSessionId = sessionId; in onCheckHealthStatus()
338 return mLastSessionId; in getLastSessionId()
345 mLastSessionId = sessionId; in onCheckHealthStatus()
/packages/services/Car/service/src/com/android/car/watchdog/
DWatchdogProcessHandler.java96 private int mLastSessionId; field in WatchdogProcessHandler
446 if (++mLastSessionId <= 0) { in getNewSessionId()
447 mLastSessionId = 1; in getNewSessionId()
449 return mLastSessionId; in getNewSessionId()
/packages/services/Car/tests/carservice_test/src/com/android/car/watchdog/
DCarWatchdogServiceTest.java327 protected int mLastSessionId = INVALID_SESSION_ID; field in CarWatchdogServiceTest.BaseAndroidClient
331 mLastSessionId = sessionId; in onCheckHealthStatus()
341 return mLastSessionId; in getLastSessionId()
/packages/services/Car/cpp/watchdog/server/src/
DWatchdogProcessService.cpp248 mLastSessionId(0), in WatchdogProcessService()
1267 if (++mLastSessionId <= 0) { in getNewSessionId()
1268 mLastSessionId = 1; in getNewSessionId()
1270 return mLastSessionId; in getNewSessionId()
DWatchdogProcessService.h315 int32_t mLastSessionId; variable