OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:staticIpConfiguration
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/core/java/android/net/
IpConfiguration.java
19
import android.net.
StaticIpConfiguration
;
34
* with
staticIpConfiguration
*/
45
public
StaticIpConfiguration
staticIpConfiguration
;
68
StaticIpConfiguration
staticIpConfiguration
,
72
this.
staticIpConfiguration
= (
staticIpConfiguration
== null) ?
73
null : new
StaticIpConfiguration
(
staticIpConfiguration
);
[
all
...]
/frameworks/base/services/core/java/com/android/server/net/
IpConfigStore.java
26
import android.net.
StaticIpConfiguration
;
81
StaticIpConfiguration
staticIpConfiguration
= config.
staticIpConfiguration
;
82
if (
staticIpConfiguration
!= null) {
83
if (
staticIpConfiguration
.ipAddress != null) {
84
LinkAddress ipAddress =
staticIpConfiguration
.ipAddress;
89
if (
staticIpConfiguration
.gateway != null) {
93
out.writeUTF(
staticIpConfiguration
.gateway.getHostAddress());
95
for (InetAddress inetAddr :
staticIpConfiguration
.dnsServers)
[
all
...]
Completed in 5353 milliseconds