HomeSort by relevance Sort by last modified time
    Searched defs:route (Results 76 - 100 of 301) sorted by null

1 2 34 5 6 7 8 91011>>

  /system/bt/tools/hci/
main.c 48 "(pcm|i2s|uart) - sets the SCO packet route to one of the specified "
133 printf("SCO route parameter must be specified.\n");
137 uint8_t route = 0xFF; local
139 route = 0;
141 route = 3;
143 route = 1;
145 if (route == 0xFF) {
146 printf("Invalid SCO route specified: %s\n", argv[0]);
151 packet[3] = route;
  /external/apache-http/src/org/apache/http/conn/routing/
RouteTracker.java 40 * Helps tracking the steps in establishing a route.
67 // now follow attributes that indicate the established route
69 /** Whether the first hop of the route is established. */
75 /** Whether the the route is tunnelled end-to-end through proxies. */
78 /** Whether the route is layered over a tunnel. */
81 /** Whether the route is secure. */
86 * Creates a new route tracker.
89 * @param target the host to which to route
90 * @param local the local address to route from, or
105 * Creates a new tracker for the given route
    [all...]
  /packages/apps/Settings/src/com/android/settings/wfd/
WifiDisplaySettings.java 274 MediaRouter.RouteInfo route = mRouter.getRouteAt(i); local
275 if (route.matchesTypes(MediaRouter.ROUTE_TYPE_REMOTE_DISPLAY)) {
276 preferenceScreen.addPreference(createRoutePreference(route));
304 private RoutePreference createRoutePreference(MediaRouter.RouteInfo route) {
305 WifiDisplay display = findWifiDisplay(route.getDeviceAddress());
307 return new WifiDisplayRoutePreference(getPrefContext(), route, display);
309 return new RoutePreference(getPrefContext(), route);
560 private void toggleRoute(MediaRouter.RouteInfo route) {
561 if (route.isSelected()) {
565 route.select()
815 final MediaRouter.RouteInfo route = mRouter.getRouteAt(i); local
    [all...]
  /external/apache-http/src/org/apache/http/impl/conn/
AbstractPoolEntry.java 52 * {@link HttpRoute route} established.
53 * The adapter delegates methods for establishing the route to
58 * underlying connection and the established route.
82 /** The route for which this entry gets allocated. */
86 protected volatile HttpRoute route; field in class:AbstractPoolEntry
91 /** The tracked route, or <code>null</code> before tracking starts. */
99 * @param route the planned route for the connection,
103 HttpRoute route) {
110 this.route = route
    [all...]
  /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...]
AbstractConnPool.java 152 * @param route the route for which to get the connection
157 * @return pool entry holding a connection for the route
166 HttpRoute route,
171 return requestPoolEntry(route, state).getPoolEntry(timeout, tunit);
178 public abstract PoolEntryRequest requestPoolEntry(HttpRoute route, Object state);
211 final HttpRoute route = local
214 log.debug("Connection garbage collected. " + route);
216 handleLostEntry(route);
227 * Handles cleaning up for a lost pool entry with the given route
    [all...]
  /external/libnl/src/lib/
route.c 2 * src/lib/route.c CLI Route Helpers
20 #include <netlink/cli/route.h>
24 struct rtnl_route *route; local
26 route = rtnl_route_alloc();
27 if (!route)
28 nl_cli_fatal(ENOMEM, "Unable to allocate route object");
30 return route;
39 nl_cli_fatal(err, "Unable to allocate route cache: %s\n",
47 void nl_cli_route_parse_family(struct rtnl_route *route, char *arg
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
DefaultRouter.java 51 * URI Jiang He - use address in route header. Significant changes to conform to
53 * strict route post processing code.
69 * <li> If the request contains one or more Route headers, use the URI of the
70 * topmost Route header as next hop, possibly modifying the request in the
71 * process if the topmost Route header contains no lr parameter(*)
80 * (*)Note that in case the topmost Route header contains no 'lr' parameter
82 * perform 'Route Information Postprocessing' as described in RFC3261 section
83 * 16.6 step 6 (also known as "Route header popping"). That is, the following
86 * <li>The implementation places the Request-URI into the Route header field as
88 * <li>The implementation then places the first Route header field value int
196 Route route = (Route) routes.getFirst(); local
272 Route route = new Route(addr); local
    [all...]
SIPClientTransaction.java 36 import gov.nist.javax.sip.header.Route;
529 * add the route before you process the response. dialog.setLastResponse(this,
1166 Route route = new Route(); local
1181 Route route = null; local
    [all...]
  /frameworks/av/packages/MediaComponents/src/com/android/support/mediarouter/jellybean-mr1/
MediaRouterJellybeanMr1.java 50 Log.w(TAG, "Cannot get presentation display for the route.", ex);
156 android.media.MediaRouter.RouteInfo route = local
161 int statusCode = (Integer)mGetStatusCodeMethod.invoke(route);
181 android.media.MediaRouter.RouteInfo route) {
182 mCallback.onRoutePresentationDisplayChanged(route);
  /frameworks/av/packages/MediaComponents/src/com/android/support/mediarouter/media/
MediaRouteProviderDescriptor.java 27 * Describes the state of a media route provider and the routes that it publishes.
67 * Returns true if the route provider descriptor and all of the routes that
78 MediaRouteDescriptor route = mRoutes.get(i); local
79 if (route == null || !route.isValid()) {
117 * Builder for {@link MediaRouteProviderDescriptor media route provider descriptors}.
124 * Creates an empty media route provider descriptor builder.
131 * Creates a media route provider descriptor builder whose initial contents are
148 * Adds a route.
150 public Builder addRoute(MediaRouteDescriptor route) {
    [all...]
  /frameworks/base/nfc-extras/java/com/android/nfc_extras/
NfcAdapterExtras.java 122 * Immutable data class that describes a card emulation route.
138 * A route such as {@link #ROUTE_OFF} or {@link #ROUTE_ON_WHEN_SCREEN_ON}.
140 public final int route; field in class:NfcAdapterExtras.CardEmulationRoute
144 * <p>null if {@link #route} is {@link #ROUTE_OFF}, otherwise not null.
148 public CardEmulationRoute(int route, NfcExecutionEnvironment nfcEe) {
149 if (route == ROUTE_OFF && nfcEe != null) {
151 } else if (route != ROUTE_OFF && nfcEe == null) {
152 throw new IllegalArgumentException("must specifiy a NFC-EE for this route");
154 this.route = route;
180 int route = sService.getCardEmulationRoute(mPackageName); local
    [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...]
  /frameworks/support/mediarouter/jellybean-mr1/androidx/mediarouter/media/
MediaRouterJellybeanMr1.java 51 Log.w(TAG, "Cannot get presentation display for the route.", ex);
160 android.media.MediaRouter.RouteInfo route = local
165 int statusCode = (Integer)mGetStatusCodeMethod.invoke(route);
185 android.media.MediaRouter.RouteInfo route) {
186 mCallback.onRoutePresentationDisplayChanged(route);
  /frameworks/support/mediarouter/src/main/java/androidx/mediarouter/media/
MediaRouteProviderDescriptor.java 27 * Describes the state of a media route provider and the routes that it publishes.
67 * Returns true if the route provider descriptor and all of the routes that
78 MediaRouteDescriptor route = mRoutes.get(i); local
79 if (route == null || !route.isValid()) {
117 * Builder for {@link MediaRouteProviderDescriptor media route provider descriptors}.
124 * Creates an empty media route provider descriptor builder.
131 * Creates a media route provider descriptor builder whose initial contents are
148 * Adds a route.
150 public Builder addRoute(MediaRouteDescriptor route) {
    [all...]
  /developers/build/prebuilts/gradle/PermissionRequest/Application/src/main/java/com/example/android/permissionrequest/
SimpleWebServer.java 123 String route = null; local
125 // Read HTTP headers and parse out the route.
132 route = line.substring(start, end);
141 if (null == route) {
145 byte[] bytes = loadContent(route);
153 output.println("Content-Type: " + detectMimeType(route));
  /developers/samples/android/content/webview/PermissionRequest/Application/src/main/java/com/example/android/permissionrequest/
SimpleWebServer.java 123 String route = null; local
125 // Read HTTP headers and parse out the route.
132 route = line.substring(start, end);
141 if (null == route) {
145 byte[] bytes = loadContent(route);
153 output.println("Content-Type: " + detectMimeType(route));
  /development/samples/ApiDemos/src/com/example/android/apis/app/
PresentationWithMediaRouterActivity.java 110 // Update the presentation based on the currently selected route.
159 // Get the current route and its presentation display.
160 MediaRouter.RouteInfo route = mMediaRouter.getSelectedRoute( local
162 Display presentationDisplay = route != null ? route.getPresentationDisplay() : null;
166 Log.i(TAG, "Dismissing presentation because the current route no longer "
  /development/samples/browseable/PermissionRequest/src/com.example.android.permissionrequest/
SimpleWebServer.java 123 String route = null; local
125 // Read HTTP headers and parse out the route.
132 route = line.substring(start, end);
141 if (null == route) {
145 byte[] bytes = loadContent(route);
153 output.println("Content-Type: " + detectMimeType(route));
  /external/libdrm/include/drm/
nouveau_ioctl.h 27 __u8 route; member in struct:nvif_ioctl_v0
48 __u8 route; member in struct:nvif_ioctl_new_v0
  /external/libdrm/nouveau/nvif/
ioctl.h 28 __u8 route; member in struct:nvif_ioctl_v0
54 __u8 route; member in struct:nvif_ioctl_new_v0
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
RouteSelector.java 20 import com.squareup.okhttp.Route;
42 /* The most recently attempted route. */
55 private final List<Route> postponedRoutes = new ArrayList<>();
65 * Returns true if there's another route to attempt. Every address has at
66 * least one route.
74 public Route next() throws IOException {
75 // Compute the next route to attempt.
87 Route route = new Route(address, lastProxy, lastInetSocketAddress) local
    [all...]
StreamAllocation.java 20 import com.squareup.okhttp.Route;
174 Route route = routeSelector.next(); local
175 RealConnection newConnection = new RealConnection(route);
279 // Record the failure on a fresh route.
280 Route failedRoute = connection.getRoute();
283 // We saw a failure on a recycled connection, reset this allocation with a fresh route.
370 // Problems with a route may mean the connection can be retried with a new route, or may
382 // we should try the next route (if there is one)
    [all...]
  /external/scapy/scapy/layers/
l2.py 27 if conf.route is None:
28 # unused import, only to initialize conf.route
29 import scapy.route
68 iff,a,gw = conf.route.route(ip)
69 if ( (iff == scapy.consts.LOOPBACK_INTERFACE) or (ip == conf.route.get_if_bcast(iff)) ):
116 self.getif = ((lambda pkt: pkt.payload.route()[0])
139 getif=lambda pkt: pkt.route()[0],
299 def route(self): member in class:ARP
303 return conf.route.route(dst
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/keyguard/
KeyguardDisplayManager.java 102 MediaRouter.RouteInfo route = mMediaRouter.getSelectedRoute( local
104 boolean useDisplay = route != null
105 && route.getPlaybackType() == MediaRouter.RouteInfo.PLAYBACK_TYPE_REMOTE;
106 Display presentationDisplay = useDisplay ? route.getPresentationDisplay() : null;

Completed in 1961 milliseconds

1 2 34 5 6 7 8 91011>>