OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:linkProperties
(Results
1 - 10
of
10
) sorted by null
/frameworks/base/wifi/java/android/net/wifi/
WpsInfo.java
19
import android.net.
LinkProperties
;
61
public
LinkProperties
linkProperties
;
69
linkProperties
= new
LinkProperties
();
84
sbuf.append(
linkProperties
.toString());
102
linkProperties
= new
LinkProperties
(source.
linkProperties
);
113
dest.writeParcelable(
linkProperties
, flags)
[
all
...]
WifiConfigStore.java
23
import android.net.
LinkProperties
;
452
static
LinkProperties
getLinkProperties(int netId) {
455
if (config != null) return new
LinkProperties
(config.
linkProperties
);
465
* to using
LinkProperties
469
LinkProperties
linkProperties
= getLinkProperties(netId);
471
if (
linkProperties
!= null) {
472
Iterator<LinkAddress> iter =
linkProperties
.getLinkAddresses().iterator();
476
for (RouteInfo route :
linkProperties
.getRoutes())
[
all
...]
WifiConfiguration.java
19
import android.net.
LinkProperties
;
329
* with
linkProperties
*/
350
* with
linkProperties
*/
363
public
LinkProperties
linkProperties
;
385
linkProperties
= new
LinkProperties
();
472
sbuf.append(
linkProperties
.toString());
556
linkProperties
= new
LinkProperties
(source.linkProperties)
[
all
...]
WifiStateMachine.java
54
import android.net.
LinkProperties
;
159
private
LinkProperties
mLinkProperties;
521
mLinkProperties = new
LinkProperties
();
[
all
...]
/frameworks/base/core/java/android/net/
NetworkState.java
30
public final
LinkProperties
linkProperties
;
35
public NetworkState(NetworkInfo networkInfo,
LinkProperties
linkProperties
,
37
this(networkInfo,
linkProperties
, linkCapabilities, null);
40
public NetworkState(NetworkInfo networkInfo,
LinkProperties
linkProperties
,
43
this.
linkProperties
=
linkProperties
;
50
linkProperties
= in.readParcelable(null)
[
all
...]
/frameworks/base/telephony/java/com/android/internal/telephony/
DataCallState.java
21
import android.net.
LinkProperties
;
108
public SetupResult setLinkProperties(
LinkProperties
linkProperties
,
114
if (
linkProperties
== null)
115
linkProperties
= new
LinkProperties
();
117
linkProperties
.clear();
124
linkProperties
.setInterfaceName(ifname);
152
linkProperties
.addLinkAddress(la);
169
linkProperties
.addDns(ia)
[
all
...]
DefaultPhoneNotifier.java
20
import android.net.
LinkProperties
;
114
LinkProperties
linkProperties
= null;
119
linkProperties
= sender.getLinkProperties(apnType);
131
linkProperties
,
/packages/apps/Settings/src/com/android/settings/wifi/
WifiConfigController.java
24
import android.net.
LinkProperties
;
117
private
LinkProperties
mLinkProperties = new
LinkProperties
();
208
for(InetAddress a : config.
linkProperties
.getAddresses()) {
386
config.
linkProperties
= new
LinkProperties
(mLinkProperties);
430
private int validateIpConfigFields(
LinkProperties
linkProperties
) {
448
linkProperties
.addLinkAddress(new LinkAddress(inetAddr, networkPrefixLength));
457
linkProperties
.addRoute(new RouteInfo(gatewayAddr))
[
all
...]
/frameworks/base/services/java/com/android/server/connectivity/
Tethering.java
35
import android.net.
LinkProperties
;
[
all
...]
/frameworks/base/services/java/com/android/server/
ConnectivityService.java
40
import android.net.
LinkProperties
;
41
import android.net.
LinkProperties
.CompareResult;
139
private
LinkProperties
mCurrentLinkProperties[];
364
mCurrentLinkProperties = new
LinkProperties
[ConnectivityManager.MAX_NETWORK_TYPE+1];
718
* Return
LinkProperties
for the active (i.e., connected) default
726
public
LinkProperties
getActiveLinkProperties() {
731
public
LinkProperties
getLinkProperties(int networkType) {
[
all
...]
Completed in 1637 milliseconds