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

  /frameworks/base/services/core/java/com/android/server/connectivity/tethering/
IControlsTethering.java 51 * @param who corresponding instance of a TetherInterfaceStateMachine
55 public void updateInterfaceState(TetherInterfaceStateMachine who, int state, int lastError) {}
62 * @param who corresponding instance of a TetherInterfaceStateMachine
65 public void updateLinkProperties(TetherInterfaceStateMachine who, LinkProperties newLp) {}
IPv6TetheringCoordinator.java 53 public final TetherInterfaceStateMachine tism;
58 Downstream(TetherInterfaceStateMachine tism, int mode, short subnetId) {
65 private final ArrayList<TetherInterfaceStateMachine> mNotifyList;
77 public IPv6TetheringCoordinator(ArrayList<TetherInterfaceStateMachine> notifyList,
86 public void addActiveDownstream(TetherInterfaceStateMachine downstream, int mode) {
101 public void removeActiveDownstream(TetherInterfaceStateMachine downstream) {
136 for (TetherInterfaceStateMachine sm : mNotifyList) {
159 for (TetherInterfaceStateMachine sm : mNotifyList) {
161 sm.sendMessage(TetherInterfaceStateMachine.CMD_IPV6_TETHER_UPDATE, 0, 0, lp);
166 private LinkProperties getInterfaceIPv6LinkProperties(TetherInterfaceStateMachine sm)
    [all...]
TetheringDependencies.java 48 ArrayList<TetherInterfaceStateMachine> notifyList, SharedLog log) {
TetherInterfaceStateMachine.java 67 public class TetherInterfaceStateMachine extends StateMachine {
80 TetherInterfaceStateMachine.class
139 public TetherInterfaceStateMachine(
460 TetherInterfaceStateMachine.this, newInterfaceState, mLastError);
466 TetherInterfaceStateMachine.this, new LinkProperties(mLinkProperties));
587 // functional element outside of TetherInterfaceStateMachine.
623 // functional element outside of TetherInterfaceStateMachine.
  /frameworks/base/tests/net/java/com/android/server/connectivity/tethering/
TetherInterfaceStateMachineTest.java 82 private TetherInterfaceStateMachine mTestedSm;
85 mTestedSm = new TetherInterfaceStateMachine(
98 dispatchCommand(TetherInterfaceStateMachine.CMD_TETHER_REQUESTED, STATE_TETHERED);
113 mTestedSm = new TetherInterfaceStateMachine(IFACE_NAME, mLooper.getLooper(),
128 TetherInterfaceStateMachine.CMD_TETHER_UNREQUESTED,
129 TetherInterfaceStateMachine.CMD_IP_FORWARDING_ENABLE_ERROR,
130 TetherInterfaceStateMachine.CMD_IP_FORWARDING_DISABLE_ERROR,
131 TetherInterfaceStateMachine.CMD_START_TETHERING_ERROR,
132 TetherInterfaceStateMachine.CMD_STOP_TETHERING_ERROR,
133 TetherInterfaceStateMachine.CMD_SET_DNS_FORWARDERS_ERROR
    [all...]
  /frameworks/base/services/core/java/com/android/server/connectivity/
Tethering.java 119 import com.android.server.connectivity.tethering.TetherInterfaceStateMachine;
153 Tethering.class, TetherMasterSM.class, TetherInterfaceStateMachine.class
163 public final TetherInterfaceStateMachine stateMachine;
167 public TetherState(TetherInterfaceStateMachine sm) {
202 private final HashSet<TetherInterfaceStateMachine> mForwardedDownstreams;
641 TetherInterfaceStateMachine.CMD_TETHER_REQUESTED, requestedState);
659 TetherInterfaceStateMachine.CMD_TETHER_UNREQUESTED);
    [all...]
  /frameworks/base/tests/net/java/com/android/server/connectivity/
TetheringTest.java 104 import com.android.server.connectivity.tethering.TetherInterfaceStateMachine;
188 ArrayList<TetherInterfaceStateMachine> ipv6CoordinatorNotifyList;
211 ArrayList<TetherInterfaceStateMachine> notifyList, SharedLog log) {
450 // then it creates a TetherInterfaceStateMachine and sends out a
555 for (TetherInterfaceStateMachine tism :
558 tism.sendMessage(TetherInterfaceStateMachine.CMD_IPV6_TETHER_UPDATE, 0, 0,
    [all...]

Completed in 318 milliseconds