Home
last modified time | relevance | path

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

/frameworks/base/telecomm/java/com/android/internal/telecom/
DClientTransactionalServiceRepository.java56 PhoneAccountHandle pah) { in getTransactionalServiceWrapper() argument
57 return LOOKUP_TABLE.get(pah); in getTransactionalServiceWrapper()
60 private boolean hasExistingServiceWrapper(PhoneAccountHandle pah) { in hasExistingServiceWrapper() argument
61 return LOOKUP_TABLE.containsKey(pah); in hasExistingServiceWrapper()
68 public boolean removeServiceWrapper(PhoneAccountHandle pah) { in removeServiceWrapper() argument
69 if (!hasExistingServiceWrapper(pah)) { in removeServiceWrapper()
72 LOOKUP_TABLE.remove(pah); in removeServiceWrapper()
81 public boolean removeCallFromServiceWrapper(PhoneAccountHandle pah, String callId) { in removeCallFromServiceWrapper() argument
82 if (!hasExistingServiceWrapper(pah)) { in removeCallFromServiceWrapper()
85 ClientTransactionalServiceWrapper service = LOOKUP_TABLE.get(pah); in removeCallFromServiceWrapper()