Home
last modified time | relevance | path

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

/frameworks/base/services/companion/java/com/android/server/companion/devicepresence/
DCompanionServiceConnector.java19 import static android.content.Context.BIND_ALMOST_PERCEPTIBLE;
92 : BIND_ALMOST_PERCEPTIBLE; in newInstance()
/frameworks/base/services/tests/mockingservicestests/src/com/android/server/am/
DMockingOomAdjusterTests.java686 null, null, Context.BIND_ALMOST_PERCEPTIBLE, mock(IBinder.class)); in testUpdateOomAdj_DoOne_PerceptibleRecent_AlmostPerceptibleService()
720 null, null, Context.BIND_ALMOST_PERCEPTIBLE + 2, mock(IBinder.class)); in testUpdateOomAdj_DoOne_PerceptibleRecent_AlmostPerceptibleService()
742 null, null, Context.BIND_ALMOST_PERCEPTIBLE, mock(IBinder.class)); in testUpdateOomAdj_DoOne_PerceptibleRecent_AlmostPerceptibleService()
767 null, null, Context.BIND_ALMOST_PERCEPTIBLE, mock(IBinder.class)); in testUpdateOomAdj_DoOne_ImpFg_AlmostPerceptibleService()
1319 Context.BIND_ALMOST_PERCEPTIBLE | Context.BIND_NOT_FOREGROUND, in testUpdateOomAdj_DoOne_Service_AlmostPerceptible()
1338 Context.BIND_ALMOST_PERCEPTIBLE | Context.BIND_NOT_FOREGROUND, in testUpdateOomAdj_DoOne_Service_AlmostPerceptible()
1356 Context.BIND_ALMOST_PERCEPTIBLE, in testUpdateOomAdj_DoOne_Service_AlmostPerceptible()
1375 Context.BIND_ALMOST_PERCEPTIBLE, in testUpdateOomAdj_DoOne_Service_AlmostPerceptible()
2122 bindService(app1, client1, null, null, Context.BIND_ALMOST_PERCEPTIBLE, in testUpdateOomAdj_DoOne_BindAlmostPerceptibleFGS()
/frameworks/base/services/core/java/com/android/server/am/
DProcessServiceRecord.java314 if (cr.hasFlag(Context.BIND_ALMOST_PERCEPTIBLE)) { in isAlmostPerceptible()
DOomAdjuster.java2814 } else if (cr.hasFlag(Context.BIND_ALMOST_PERCEPTIBLE) in computeServiceHostOomAdjLSP()
2821 } else if (cr.hasFlag(Context.BIND_ALMOST_PERCEPTIBLE) in computeServiceHostOomAdjLSP()
DActiveServices.java4130 if ((flags & Context.BIND_ALMOST_PERCEPTIBLE) != 0 && !isCallerSystem) { in bindServiceLocked()
4276 && c.hasFlag(Context.BIND_ALMOST_PERCEPTIBLE)) { in bindServiceLocked()
6600 if (c.hasFlag(Context.BIND_ALMOST_PERCEPTIBLE)) { in removeConnectionLocked()
/frameworks/base/apex/jobscheduler/service/java/com/android/server/job/
DJobServiceContext.java424 bindFlags |= Context.BIND_ALMOST_PERCEPTIBLE; in executeRunnableJob()
432 bindFlags |= Context.BIND_NOT_FOREGROUND | Context.BIND_ALMOST_PERCEPTIBLE; in executeRunnableJob()
/frameworks/base/core/java/android/content/
DContext.java559 public static final int BIND_ALMOST_PERCEPTIBLE = 0x000010000; field in Context