Home | History | Annotate | Download | only in bluetooth

Lines Matching refs:linkProperties

27 import android.net.LinkProperties;
82 mLinkProperties = new LinkProperties();
247 * Fetch LinkProperties for the network
249 public LinkProperties getLinkProperties() {
251 return new LinkProperties(mLinkProperties);
306 void startReverseTether(final LinkProperties linkProperties) {
307 if (linkProperties == null || TextUtils.isEmpty(linkProperties.getInterfaceName())) {
316 mLinkProperties = linkProperties;
322 boolean success = NetworkUtils.runDhcp(linkProperties.getInterfaceName(),
325 if (linkProperties.getInterfaceName() != mLinkProperties.getInterfaceName()) {
333 mLinkProperties = dhcpResults.linkProperties;
375 public void addStackedLink(LinkProperties link) {
380 public void removeStackedLink(LinkProperties link) {
414 LinkProperties linkProperties = (LinkProperties)(msg.obj);
415 if (VDBG) Log.d(TAG, "got EVENT_NETWORK_CONNECTED, " + linkProperties);
416 mBtdt.startReverseTether(linkProperties);
419 linkProperties = (LinkProperties)(msg.obj);
420 if (VDBG) Log.d(TAG, "got EVENT_NETWORK_DISCONNECTED, " + linkProperties);