Searched refs:mPendingRilWakelocks (Results 1 – 2 of 2) sorted by relevance
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | ClientWakelockAccountant.java | 32 public ArrayList<RilWakelockInfo> mPendingRilWakelocks = new ArrayList<>(); field in ClientWakelockAccountant 44 synchronized (mPendingRilWakelocks) { in startAttributingWakelock() 45 mPendingRilWakelocks.add(wlInfo); in startAttributingWakelock() 59 synchronized (mPendingRilWakelocks) { in stopAllPendingRequests() 60 for (RilWakelockInfo wlInfo : mPendingRilWakelocks) { in stopAllPendingRequests() 63 mPendingRilWakelocks.clear(); in stopAllPendingRequests() 69 synchronized (mPendingRilWakelocks) { in changeConcurrentRequests() 70 for (RilWakelockInfo wlInfo : mPendingRilWakelocks) { in changeConcurrentRequests() 88 return mPendingRilWakelocks.size(); in getPendingRequestCount() 94 synchronized (mPendingRilWakelocks) { in updatePendingRequestWakelockTime() [all …]
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
D | ClientWakelockTrackerTest.java | 50 assertEquals(2, abc.mPendingRilWakelocks.get(0).getConcurrentRequests()); in testTwoClients() 51 assertEquals(2, pqr.mPendingRilWakelocks.get(0).getConcurrentRequests()); in testTwoClients() 56 assertEquals(1, pqr.mPendingRilWakelocks.get(0).getConcurrentRequests()); in testTwoClients() 84 assertEquals(2, abc.mPendingRilWakelocks.get(0).getConcurrentRequests()); 85 assertEquals(2, abc.mPendingRilWakelocks.get(1).getConcurrentRequests()); 90 assertEquals(1, abc.mPendingRilWakelocks.get(0).getConcurrentRequests()); 111 assertEquals(2, abc.mPendingRilWakelocks.get(0).getConcurrentRequests()); 112 assertEquals(2, abc.mPendingRilWakelocks.get(1).getConcurrentRequests()); 134 assertEquals(2, abc.mPendingRilWakelocks.get(0).getConcurrentRequests()); 135 assertEquals(2, pqr.mPendingRilWakelocks.get(0).getConcurrentRequests());
|