OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mRoutes
(Results
1 - 6
of
6
) sorted by null
/frameworks/base/core/java/android/net/
DhcpInfoInternal.java
45
private Collection<RouteInfo>
mRoutes
;
48
mRoutes
= new ArrayList<RouteInfo>();
52
mRoutes
.add(routeInfo);
56
return Collections.unmodifiableCollection(
mRoutes
);
74
for (RouteInfo route :
mRoutes
) {
102
for (RouteInfo route :
mRoutes
) {
134
if (
mRoutes
.size() == 0) {
143
for (RouteInfo route :
mRoutes
) routeString += route.toString() + " | ";
145
"
mRoutes
: " + routeString +
LinkProperties.java
57
private Collection<RouteInfo>
mRoutes
= new ArrayList<RouteInfo>();
85
for (RouteInfo r : source.getRoutes())
mRoutes
.add(r);
124
if (route != null)
mRoutes
.add(route);
127
return Collections.unmodifiableCollection(
mRoutes
);
141
mRoutes
.clear();
166
for (RouteInfo route :
mRoutes
) routes += route.toString() + ",";
216
return (
mRoutes
.size() == targetRoutes.size()) ?
217
mRoutes
.containsAll(targetRoutes) : false;
323
*
mRoutes
and a list of routes that would be added to
324
*
mRoutes
which would then result in target and mRoute
[
all
...]
VpnService.java
257
private final StringBuilder
mRoutes
= new StringBuilder();
367
mRoutes
.append(String.format(" %s/%d", address.getHostAddress(), prefixLength));
469
mConfig.routes =
mRoutes
.toString();
/packages/apps/Settings/src/com/android/settings/vpn2/
VpnDialog.java
57
private TextView
mRoutes
;
90
mRoutes
= (TextView) mView.findViewById(R.id.routes);
107
mRoutes
.setText(mProfile.routes);
125
mRoutes
.addTextChangedListener(this);
251
!validateAddresses(
mRoutes
.getText().toString(), true)) {
338
profile.routes =
mRoutes
.getText().toString().trim();
/hardware/msm7k/libaudio-qsd8k/
AudioHardware.h
338
uint32_t
mRoutes
[AudioSystem::NUM_MODES];
AudioHardware.cpp
866
return
mRoutes
[mMode];
[
all
...]
Completed in 170 milliseconds