HomeSort by relevance Sort by last modified time
    Searched refs:Holdable (Results 1 - 8 of 8) sorted by null

  /packages/services/Telephony/src/com/android/services/telephony/
Holdable.java 19 /** The inference used to track the hold state of a holdable object. */
20 public interface Holdable {
22 /** Returns true if this holdable is a child node of other holdable. */
26 * Sets the holdable property for a holdable object.
28 * @param isHoldable true means this holdable object can be held.
HoldTracker.java 31 private final Map<PhoneAccountHandle, List<Holdable>> mHoldables;
38 * Adds the holdable associated with the {@code phoneAccountHandle}, this method may update
39 * the hold state for all holdable associated with the {@code phoneAccountHandle}.
41 public void addHoldable(PhoneAccountHandle phoneAccountHandle, Holdable holdable) {
45 List<Holdable> holdables = mHoldables.get(phoneAccountHandle);
46 if (!holdables.contains(holdable)) {
47 holdables.add(holdable);
53 * Removes the holdable associated with the {@code phoneAccountHandle}, this method may update
54 * the hold state for all holdable associated with the {@code phoneAccountHandle}
    [all...]
CdmaConference.java 35 public class CdmaConference extends Conference implements Holdable {
TelephonyConference.java 33 public class TelephonyConference extends Conference implements Holdable {
TelephonyConnectionService.java     [all...]
ImsConference.java 68 public class ImsConference extends Conference implements Holdable {
    [all...]
TelephonyConnection.java 74 abstract class TelephonyConnection extends Connection implements Holdable {
    [all...]
  /packages/services/Telephony/tests/src/com/android/services/telephony/
HoldTrackerTest.java 84 // Both phones account have only one top holdable, so the holdable of each phone account can
107 private class FakeHoldable implements Holdable {

Completed in 225 milliseconds