Home | History | Annotate | Download | only in ip

Lines Matching refs:IpClient

85  * IpClient
92 * IpClient is designed to be instantiated as soon as the interface name is
98 public class IpClient extends StateMachine {
102 private static final Class[] sMessageClasses = { IpClient.class, DhcpClient.class };
111 // we should print IpClient logs (filter out all others).
137 * Callbacks for handling IpClient events.
139 * These methods are called by IpClient on its own thread. Implementations
142 * methods of the same IpClient instance.
149 // IpClient#completedPreDhcpAction() to indicate that DHCP is clear
172 // Called when the IpClient state machine terminates.
181 // by sending an IpClient#EVENT_READ_PACKET_FILTER_COMPLETE message.
220 // Any new method added to IpClient.Callback must be overridden
308 * IpClient#startProvisioning(). A defensive copy is made by IpClient
309 * and the values specified herein are in force until IpClient#stop()
324 * IpClient#stop() is called. Future calls to IpClient#startProvisioning()
591 public static final String DUMP_ARG = "ipclient";
615 // TODO: Revert this hack once IpClient and Nat464Xlat work in concert.
683 public IpClient(Context context, String ifName, Callback callback) {
689 * TODO: migrate all test users to mock IpClient directly and remove this ctor.
691 public IpClient(Context context, String ifName, Callback callback,
700 IpClient(Context context, String ifName, Callback callback, Dependencies deps) {
701 super(IpClient.class.getSimpleName() + "." + ifName);
752 // TODO: consider sending a message to the IpClient main
820 // Shut down this IpClient instance altogether.
827 // IpClient instance's thread. This prohibition includes code executed by
828 // when methods on the passed-in IpClient.Callback instance are called.
943 pw.println("IpClient not yet started.");
1017 // invocation of IpClient.Callback#onLinkPropertiesChange().
1173 // Updates all IpClient-related state concerned with LinkProperties.
1175 // parties that are not fronted by IpClient.
1209 // edge-only model, or by giving IpClient its own netlink socket(s)
1355 mDhcpClient = DhcpClient.makeDhcpClient(mContext, IpClient.this, mInterfaceParams);
1523 // tethering or during an IpClient restart.