HomeSort by relevance Sort by last modified time
    Searched defs:IpClient (Results 1 - 3 of 3) sorted by null

  /frameworks/base/tests/net/java/android/net/ip/
IpClientTest.java 44 import android.net.ip.IpClient.Callback;
45 import android.net.ip.IpClient.InitialConfiguration;
46 import android.net.ip.IpClient.ProvisioningConfiguration;
74 * Tests for IpClient.
94 @Mock private IpClient.Dependencies mDependecies;
126 private IpClient makeIpClient(String ifname) throws Exception {
128 final IpClient ipc = new IpClient(mContext, ifname, mCb, mDependecies);
143 final IpClient ipc = new IpClient(mContext, null, mCb, mDependecies)
    [all...]
  /frameworks/base/services/core/java/com/android/server/connectivity/
IpConnectivityMetrics.java 23 import android.net.ip.IpClient;
273 // Dump all IpClient logs ("ipclient").
274 static final String CMD_IPCLIENT = IpClient.DUMP_ARG;
276 // of calling both the "list" and "ipclient" commands. This includes most notably bug
302 IpClient.dumpAllLogs(pw, ipclientArgs);
311 IpClient.dumpAllLogs(pw, null);
  /frameworks/base/services/net/java/android/net/ip/
IpClient.java 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
    [all...]

Completed in 200 milliseconds