Home
last modified time | relevance | path

Searched refs:AutomaticOnOffKeepaliveTracker (Results 1 – 7 of 7) sorted by relevance

/packages/modules/Connectivity/tests/unit/java/com/android/server/connectivity/
DAutomaticOnOffKeepaliveTrackerTest.java23 import static com.android.server.connectivity.AutomaticOnOffKeepaliveTracker.METRICS_COLLECTION_DUR…
77 import com.android.server.connectivity.AutomaticOnOffKeepaliveTracker.AutomaticOnOffKeepalive;
116 private AutomaticOnOffKeepaliveTracker mAOOKeepaliveTracker;
120 @Mock AutomaticOnOffKeepaliveTracker.Dependencies mDependencies;
359 new AutomaticOnOffKeepaliveTracker(mCtx, mTestHandler, mDependencies); in setup()
372 public AutomaticOnOffKeepaliveTracker.AutomaticOnOffKeepalive mLastAutoKi = null;
381 case AutomaticOnOffKeepaliveTracker.CMD_REQUEST_START_KEEPALIVE: in handleMessage()
385 case AutomaticOnOffKeepaliveTracker.CMD_MONITOR_AUTOMATIC_KEEPALIVE: in handleMessage()
/packages/modules/Connectivity/tests/unit/java/com/android/server/connectivityservice/base/
DCSTest.kt66 import com.android.server.connectivity.AutomaticOnOffKeepaliveTracker
302 private inner class AOOKTDeps(c: Context) : AutomaticOnOffKeepaliveTracker.Dependencies(c) {
308 AutomaticOnOffKeepaliveTracker(c, h, AOOKTDeps(c)) in makeAutomaticOnOffKeepaliveTracker()
/packages/modules/Connectivity/service/src/com/android/metrics/
Dstats.proto370 * server/connectivity/AutomaticOnOffKeepaliveTracker.
397 * server/connectivity/AutomaticOnOffKeepaliveTracker.
418 * server/connectivity/AutomaticOnOffKeepaliveTracker.
430 * server/connectivity/AutomaticOnOffKeepaliveTracker.
/packages/modules/Connectivity/service/src/com/android/server/connectivity/
DAutomaticOnOffKeepaliveTracker.java86 public class AutomaticOnOffKeepaliveTracker { class
317 public AutomaticOnOffKeepaliveTracker(@NonNull Context context, @NonNull Handler handler) { in AutomaticOnOffKeepaliveTracker() method in AutomaticOnOffKeepaliveTracker
322 public AutomaticOnOffKeepaliveTracker(@NonNull Context context, @NonNull Handler handler, in AutomaticOnOffKeepaliveTracker() method in AutomaticOnOffKeepaliveTracker
DKeepaliveStatsTracker.java83 AutomaticOnOffKeepaliveTracker.METRICS_COLLECTION_DURATION_MS + 2 * 60 * 60 * 1_000L;
/packages/modules/Connectivity/service/src/com/android/server/
DConnectivityService.java334 import com.android.server.connectivity.AutomaticOnOffKeepaliveTracker;
335 import com.android.server.connectivity.AutomaticOnOffKeepaliveTracker.AutomaticOnOffKeepalive;
573 AutomaticOnOffKeepaliveTracker.class });
994 private final AutomaticOnOffKeepaliveTracker mKeepaliveTracker;
1510 public AutomaticOnOffKeepaliveTracker makeAutomaticOnOffKeepaliveTracker( in makeAutomaticOnOffKeepaliveTracker()
1512 return new AutomaticOnOffKeepaliveTracker(c, h); in makeAutomaticOnOffKeepaliveTracker()
6675 case AutomaticOnOffKeepaliveTracker.CMD_REQUEST_START_KEEPALIVE: {
6679 case AutomaticOnOffKeepaliveTracker.CMD_MONITOR_AUTOMATIC_KEEPALIVE: {
/packages/modules/Connectivity/tests/unit/java/com/android/server/
DConnectivityServiceTest.java416 import com.android.server.connectivity.AutomaticOnOffKeepaliveTracker;
2051 public AutomaticOnOffKeepaliveTracker makeAutomaticOnOffKeepaliveTracker(final Context c, in makeAutomaticOnOffKeepaliveTracker()
2053 return new AutomaticOnOffKeepaliveTracker(c, h, mAutoOnOffKeepaliveDependencies); in makeAutomaticOnOffKeepaliveTracker()
2374 extends AutomaticOnOffKeepaliveTracker.Dependencies {