Searched refs:mPendingRilWakelocks (Results 1 – 2 of 2) sorted by relevance
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | ClientWakelockAccountant.java | 31 public ArrayList<RilWakelockInfo> mPendingRilWakelocks = new ArrayList<>(); field in ClientWakelockAccountant 43 synchronized (mPendingRilWakelocks) { in startAttributingWakelock() 44 mPendingRilWakelocks.add(wlInfo); in startAttributingWakelock() 58 synchronized (mPendingRilWakelocks) { in stopAllPendingRequests() 59 for (RilWakelockInfo wlInfo : mPendingRilWakelocks) { in stopAllPendingRequests() 62 mPendingRilWakelocks.clear(); in stopAllPendingRequests() 68 synchronized (mPendingRilWakelocks) { in changeConcurrentRequests() 69 for (RilWakelockInfo wlInfo : mPendingRilWakelocks) { in changeConcurrentRequests() 87 return mPendingRilWakelocks.size(); in getPendingRequestCount() 93 synchronized (mPendingRilWakelocks) { in updatePendingRequestWakelockTime() [all …]
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
D | ClientWakelockTrackerTest.java | 46 assertEquals(2, abc.mPendingRilWakelocks.get(0).getConcurrentRequests()); in testTwoClients() 47 assertEquals(2, pqr.mPendingRilWakelocks.get(0).getConcurrentRequests()); in testTwoClients() 52 assertEquals(1, pqr.mPendingRilWakelocks.get(0).getConcurrentRequests()); in testTwoClients() 79 assertEquals(2, abc.mPendingRilWakelocks.get(0).getConcurrentRequests()); 80 assertEquals(2, abc.mPendingRilWakelocks.get(1).getConcurrentRequests()); 85 assertEquals(1, abc.mPendingRilWakelocks.get(0).getConcurrentRequests()); 105 assertEquals(2, abc.mPendingRilWakelocks.get(0).getConcurrentRequests()); 106 assertEquals(2, abc.mPendingRilWakelocks.get(1).getConcurrentRequests()); 128 assertEquals(2, abc.mPendingRilWakelocks.get(0).getConcurrentRequests()); 129 assertEquals(2, pqr.mPendingRilWakelocks.get(0).getConcurrentRequests());
|