Searched refs:activeCalls (Results 1 – 6 of 6) sorted by relevance
29 ImmutableList<ActiveCallInfo> activeCalls = ImmutableList.of(); field in ActiveCallsImpl36 return activeCalls; in getActiveCalls()41 public void setActiveCalls(ImmutableList<ActiveCallInfo> activeCalls) { in setActiveCalls() argument43 this.activeCalls = Assert.isNotNull(activeCalls); in setActiveCalls()
50 ImmutableList.Builder<ActiveCallInfo> activeCalls = ImmutableList.builder(); in onCallListChange() local53 activeCalls.add( in onCallListChange()59 ActiveCallsComponent.get(appContext).activeCalls().setActiveCalls(activeCalls.build()); in onCallListChange()
401 ImmutableList<ActiveCallInfo> activeCalls = in isSelectable() local402 ActiveCallsComponent.get(appContext).activeCalls().getActiveCalls(); in isSelectable()403 if (activeCalls.isEmpty()) { in isSelectable()406 for (ActiveCallInfo activeCall : activeCalls) { in isSelectable()415 ImmutableList<ActiveCallInfo> activeCalls = in getActiveCallLabel() local416 ActiveCallsComponent.get(appContext).activeCalls().getActiveCalls(); in getActiveCallLabel()418 if (activeCalls.isEmpty()) { in getActiveCallLabel()422 ActiveCallInfo activeCall = activeCalls.get(0); in getActiveCallLabel()
33 void setActiveCalls(ImmutableList<ActiveCallInfo> activeCalls); in setActiveCalls() argument
28 public abstract ActiveCalls activeCalls(); in activeCalls() method in ActiveCallsComponent
62 ActiveCallsComponent.get(appContext).activeCalls().getActiveCalls().toString()); in run()