HomeSort by relevance Sort by last modified time
    Searched refs:route (Results 51 - 75 of 740) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/apache-http/src/org/apache/http/impl/conn/tsccm/
RouteSpecificPool.java 46 * A connection sub-pool for a specific route, used by {@link ConnPoolByRoute}.
59 /** The route this pool is for. */
60 protected final HttpRoute route; field in class:RouteSpecificPool
80 * Creates a new route-specific pool.
82 * @param route the route for which to pool
85 public RouteSpecificPool(HttpRoute route, int maxEntries) {
86 this.route = route;
95 * Obtains the route for which this pool is specific
    [all...]
  /frameworks/base/telecomm/java/android/telecom/
CallAudioState.java 76 private final int route; field in class:CallAudioState
85 * @param route The current audio route being used.
98 public CallAudioState(boolean muted, @CallAudioRoute int route,
100 this(muted, route, supportedRouteMask, null, Collections.emptyList());
105 public CallAudioState(boolean isMuted, @CallAudioRoute int route,
110 this.route = route;
119 route = state.getRoute();
129 route = state.getRoute()
    [all...]
  /external/ipsec-tools/src/racoon/samples/roadwarrior/client/
phase1-up.sh 37 route delete default
38 route add default ${DEFAULT_GW} -ifa ${INTERNAL_ADDR4}
39 route add ${REMOTE_ADDR} ${DEFAULT_GW}
44 route delete default
45 route add ${REMOTE_ADDR} gw ${DEFAULT_GW} dev ${if}
46 route add default gw ${DEFAULT_GW} dev ${if}:1
  /external/libnl/include/netlink/route/qdisc/
htb.h 2 * netlink/route/sch/htb.h HTB Qdisc
18 #include <netlink/route/tc.h>
19 #include <netlink/route/qdisc.h>
20 #include <netlink/route/class.h>
  /external/libnl/lib/route/cls/
police.c 2 * lib/route/cls/police.c Policer
16 #include <netlink-private/route/tc-api.h>
17 #include <netlink/route/classifier.h>
18 #include <netlink/route/cls/police.h>
  /external/libnl/lib/route/
route.c 2 * lib/route/route.c Routes
14 * @defgroup route Routing
24 #include <netlink/route/rtnl.h>
25 #include <netlink/route/route.h>
26 #include <netlink/route/link.h>
33 struct rtnl_route *route; local
36 if ((err = rtnl_route_parse(nlh, &route)) < 0)
39 err = pp->pp_cb((struct nl_object *) route, pp)
    [all...]
  /frameworks/base/core/java/com/android/internal/app/
MediaRouteDialogPresenter.java 30 * Shows media route dialog as appropriate.
47 MediaRouter.RouteInfo route = router.getSelectedRoute(); local
48 if (route.isDefault() || !route.matchesTypes(routeTypes)) {
50 Log.w(TAG, "showDialog(): Route chooser dialog already showing!");
60 Log.w(TAG, "showDialog(): Route controller dialog already showing!");
78 MediaRouter.RouteInfo route = router.getSelectedRoute(); local
79 if (route.isDefault() || !route.matchesTypes(routeTypes)) {
  /external/libnl/tests/
test-create-bond.c 2 #include <netlink/route/link.h>
3 #include <netlink/route/link/bonding.h>
  /external/syslinux/gpxe/src/hci/commands/
route_cmd.c 24 #include <usr/route.h>
33 * "route" command syntax message
46 * The "route" command
77 route();
84 .name = "route",
  /external/syslinux/gpxe/src/usr/
route.c 24 #include <usr/route.h>
32 void route ( void ) { function
  /prebuilts/go/darwin-x86/src/net/
interface_bsdvar.go 12 "golang_org/x/net/route"
15 func interfaceMessages(ifindex int) ([]route.Message, error) {
16 rib, err := route.FetchRIB(syscall.AF_UNSPEC, syscall.NET_RT_IFLIST, ifindex)
20 return route.ParseRIB(syscall.NET_RT_IFLIST, rib)
interface_darwin.go 10 "golang_org/x/net/route"
13 func interfaceMessages(ifindex int) ([]route.Message, error) {
14 rib, err := route.FetchRIB(syscall.AF_UNSPEC, syscall.NET_RT_IFLIST, ifindex)
18 return route.ParseRIB(syscall.NET_RT_IFLIST, rib)
24 rib, err := route.FetchRIB(syscall.AF_UNSPEC, syscall.NET_RT_IFLIST2, ifi.Index)
28 msgs, err := route.ParseRIB(syscall.NET_RT_IFLIST2, rib)
35 case *route.InterfaceMulticastAddrMessage:
41 case *route.Inet4Addr:
43 case *route.Inet6Addr:
  /prebuilts/go/linux-x86/src/net/
interface_bsdvar.go 12 "golang_org/x/net/route"
15 func interfaceMessages(ifindex int) ([]route.Message, error) {
16 rib, err := route.FetchRIB(syscall.AF_UNSPEC, syscall.NET_RT_IFLIST, ifindex)
20 return route.ParseRIB(syscall.NET_RT_IFLIST, rib)
interface_darwin.go 10 "golang_org/x/net/route"
13 func interfaceMessages(ifindex int) ([]route.Message, error) {
14 rib, err := route.FetchRIB(syscall.AF_UNSPEC, syscall.NET_RT_IFLIST, ifindex)
18 return route.ParseRIB(syscall.NET_RT_IFLIST, rib)
24 rib, err := route.FetchRIB(syscall.AF_UNSPEC, syscall.NET_RT_IFLIST2, ifi.Index)
28 msgs, err := route.ParseRIB(syscall.NET_RT_IFLIST2, rib)
35 case *route.InterfaceMulticastAddrMessage:
41 case *route.Inet4Addr:
43 case *route.Inet6Addr:
  /packages/apps/Dialer/java/com/android/dialer/app/voicemail/
VoicemailAudioManager.java 85 int newRoute = callAudioState.getRoute(); // start out with existing route
99 // We need to call this every time even if we do not change the route because the supported
124 * route to the bluetooth headset automatically if A2DP ("media") is available, but if the headset
125 * only supports SCO then dialer must route it manually.
166 * Change the audio route, for example from earpiece to speakerphone.
168 * @param route The new audio route to use. See {@link CallAudioState}.
170 void setAudioRoute(int route) {
173 "route: " + CallAudioState.audioRouteToString(route));
195 int route = selectWiredOrEarpiece(CallAudioState.ROUTE_WIRED_OR_EARPIECE, supportedRouteMask); local
    [all...]
  /frameworks/support/mediarouter/src/main/java/androidx/mediarouter/media/
MediaRouter.java 71 * can query the media router about the currently selected route and its capabilities
72 * to determine how to send content to the route's destination. Applications can
73 * also {@link RouteInfo#sendControlRequest send control requests} to the route
74 * to ask the route's destination to perform certain remote control functions
90 * and {@link Callback#onRouteUnselected(MediaRouter, RouteInfo, int)} when the reason the route
112 * a different route.
142 * except when actively scanning. This flag is typically used when the route picker
143 * dialog has been opened by the user to ensure that the route information is
149 * discover and select a new route.
160 * Flag for {@link #addCallback}: Do not filter route events
384 RouteInfo route = sGlobal.getSelectedRoute(); local
2137 RouteInfo route = mRoutes.get(i); local
2300 RouteInfo route = isGroup ? new RouteGroup(provider, id, uniqueId) : local
2320 RouteInfo route = provider.mRoutes.get(sourceIndex); local
2347 RouteInfo route = pair.first; local
2355 RouteInfo route = pair.first; local
2370 RouteInfo route = provider.mRoutes.get(i); local
2385 RouteInfo route = provider.mRoutes.remove(i); local
2965 final RouteInfo route = (RouteInfo)obj; local
    [all...]
  /packages/apps/Nfc/src/com/android/nfc/cardemulation/
AidRoutingManager.java 46 // This is the default IsoDep protocol route; it means
49 // table, because this destination is already the default route.
51 // For Nexus devices, the default route is always 0x00.
54 // For Nexus devices, just a static route to the eSE
65 // mAidRoutingTable contains the current routing table. The index is the route ID.
66 // The route can include routes to a eSE/UICC.
70 // Easy look-up what the route is for a certain AID
143 int route = aidEntry.getValue().isOnHost ? ROUTE_HOST : mDefaultOffHostRoute; local
146 Set<String> entries = aidRoutingTable.get(route, new HashSet<String>());
148 aidRoutingTable.put(route, entries)
185 int route = aidEntry.getValue(); local
200 int route = mAidRoutingTable.keyAt(i); local
    [all...]
  /frameworks/av/packages/MediaComponents/src/com/android/support/mediarouter/media/
MediaRouter.java 66 * can query the media router about the currently selected route and its capabilities
67 * to determine how to send content to the route's destination. Applications can
68 * also {@link RouteInfo#sendControlRequest send control requests} to the route
69 * to ask the route's destination to perform certain remote control functions
85 * and {@link Callback#onRouteUnselected(MediaRouter, RouteInfo, int)} when the reason the route
107 * a different route.
137 * except when actively scanning. This flag is typically used when the route picker
138 * dialog has been opened by the user to ensure that the route information is
144 * discover and select a new route.
155 * Flag for {@link #addCallback}: Do not filter route events
379 RouteInfo route = sGlobal.getSelectedRoute(); local
2131 RouteInfo route = mRoutes.get(i); local
2294 RouteInfo route = isGroup ? new RouteGroup(provider, id, uniqueId) : local
2315 RouteInfo route = provider.mRoutes.get(sourceIndex); local
2334 RouteInfo route = pair.first; local
2342 RouteInfo route = pair.first; local
2357 RouteInfo route = provider.mRoutes.get(i); local
2372 RouteInfo route = provider.mRoutes.remove(i); local
2952 final RouteInfo route = (RouteInfo)obj; local
    [all...]
  /frameworks/support/mediarouter/src/main/java/androidx/mediarouter/app/
MediaRouteChooserDialog.java 56 * This class implements the route chooser dialog for {@link MediaRouter}.
58 * This dialog allows the user to choose a route that matches a given selector.
67 // Do not update the route list immediately to avoid unnatural dialog change.
106 * Gets the media route selector for filtering the routes that the user can select.
116 * Sets the media route selector for filtering the routes that the user can select.
156 * Returns true if the route should be included in the list.
163 * @param route The route to consider, never null.
164 * @return True if the route should be included in the chooser dialog.
166 public boolean onFilterRoute(@NonNull MediaRouter.RouteInfo route) {
289 MediaRouter.RouteInfo route = getItem(position); local
317 MediaRouter.RouteInfo route = getItem(position); local
    [all...]
  /external/libnl/include/netlink/cli/
addr.h 15 #include <netlink/route/addr.h>
cls.h 15 #include <netlink/route/classifier.h>
link.h 15 #include <netlink/route/link.h>
neigh.h 15 #include <netlink/route/neighbour.h>
  /external/libnl/include/netlink/route/act/
mirred.h 2 * netlink/route/cls/mirred.h mirred action
17 #include <netlink/route/action.h>
  /external/libnl/include/netlink/route/cls/ematch/
cmp.h 2 * netlink/route/cls/ematch/cmp.h Simple Comparison
16 #include <netlink/route/cls/ematch.h>

Completed in 933 milliseconds

1 23 4 5 6 7 8 91011>>