Home
last modified time | relevance | path

Searched refs:RouteInfo (Results 1 – 11 of 11) sorted by relevance

/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowMediaRouterTest.java13 import android.media.MediaRouter.RouteInfo;
44 RouteInfo bluetoothRoute = mediaRouter.getRouteAt(1); in testAddBluetoothRoute_bluetoothRouteSelected()
51 RouteInfo bluetoothRoute = mediaRouter.getRouteAt(1); in testAddBluetoothRoute_checkBluetoothRouteProperties()
59 RouteInfo bluetoothRoute = mediaRouter.getRouteAt(1); in testAddBluetoothRoute_checkBluetoothRouteProperties_apiJbMr2()
67 RouteInfo bluetoothRoute = mediaRouter.getRouteAt(1); in testAddBluetoothRoute_checkBluetoothRouteProperties_apiN()
68 assertThat(bluetoothRoute.getDeviceType()).isEqualTo(RouteInfo.DEVICE_TYPE_BLUETOOTH); in testAddBluetoothRoute_checkBluetoothRouteProperties_apiN()
76 RouteInfo bluetoothRoute = mediaRouter.getRouteAt(1); in testSelectBluetoothRoute_getsSetAsSelectedRoute()
96 RouteInfo bluetoothRoute = mediaRouter.getRouteAt(1); in testRemoveBluetoothRoute_whenDefaultSelected_defaultRouteAvailableAndSelected()
123 RouteInfo bluetoothRoute = mediaRouter.getRouteAt(1); in testIsBluetoothRouteSelected_bluetoothRouteSelectedForDifferentType_returnsFalse()
135 RouteInfo bluetoothRoute = mediaRouter.getRouteAt(1); in testIsBluetoothRouteSelected_bluetoothRouteSelected_returnsTrue()
[all …]
/external/apache-http/src/org/apache/http/conn/routing/
DBasicRouteDirector.java69 public int nextStep(RouteInfo plan, RouteInfo fact) { in nextStep()
96 protected int firstStep(RouteInfo plan) { in firstStep()
112 protected int directStep(RouteInfo plan, RouteInfo fact) { in directStep()
147 protected int proxiedStep(RouteInfo plan, RouteInfo fact) { in proxiedStep()
DHttpRouteDirector.java89 public int nextStep(RouteInfo plan, RouteInfo fact) in nextStep()
DRouteInfo.java55 public interface RouteInfo { interface
DRouteTracker.java55 public final class RouteTracker implements RouteInfo, Cloneable {
DHttpRoute.java56 public final class HttpRoute implements RouteInfo, Cloneable {
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowMediaRouter.java8 import android.media.MediaRouter.RouteInfo;
39 ClassParameter.from(RouteInfo.class, getBluetoothA2dpRoute())); in addBluetoothRoute()
57 private static RouteInfo getBluetoothA2dpRoute() { in getBluetoothA2dpRoute()
/external/apache-http/
Dart-profile173 …Director;->directStep(Lorg/apache/http/conn/routing/RouteInfo;Lorg/apache/http/conn/routing/RouteI…
174 …teDirector;->nextStep(Lorg/apache/http/conn/routing/RouteInfo;Lorg/apache/http/conn/routing/RouteI…
175 …/http/HttpHost;ZLorg/apache/http/conn/routing/RouteInfo$TunnelType;Lorg/apache/http/conn/routing/R…
178 …/http/HttpHost;ZLorg/apache/http/conn/routing/RouteInfo$TunnelType;Lorg/apache/http/conn/routing/R…
187 …teDirector;->nextStep(Lorg/apache/http/conn/routing/RouteInfo;Lorg/apache/http/conn/routing/RouteI…
189 HPLorg/apache/http/conn/routing/RouteInfo$LayerType;-><init>(Ljava/lang/String;I)V
190 HPLorg/apache/http/conn/routing/RouteInfo$TunnelType;-><init>(Ljava/lang/String;I)V
880 HSPLorg/apache/http/conn/routing/RouteInfo;->getHopCount()I
881 HSPLorg/apache/http/conn/routing/RouteInfo;->getHopTarget(I)Lorg/apache/http/HttpHost;
882 HSPLorg/apache/http/conn/routing/RouteInfo;->getLayerType()Lorg/apache/http/conn/routing/RouteInfo$…
[all …]
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/
DConnectivityManagerFacade.java39 import android.net.RouteInfo;
854 List<RouteInfo> routeInfos = linkProp.getRoutes(); in connectivityGetIPv4DefaultGateway()
855 for (RouteInfo routeInfo: routeInfos) { in connectivityGetIPv4DefaultGateway()
/external/apache-http/api/
Dcurrent.txt1818 …otected int directStep(org.apache.http.conn.routing.RouteInfo, org.apache.http.conn.routing.RouteI…
1819 method @Deprecated protected int firstStep(org.apache.http.conn.routing.RouteInfo);
1820 …ed public int nextStep(org.apache.http.conn.routing.RouteInfo, org.apache.http.conn.routing.RouteI…
1821 …tected int proxiedStep(org.apache.http.conn.routing.RouteInfo, org.apache.http.conn.routing.RouteI…
1824 …ublic final class HttpRoute implements java.lang.Cloneable org.apache.http.conn.routing.RouteInfo {
1825 …Host[], boolean, org.apache.http.conn.routing.RouteInfo.TunnelType, org.apache.http.conn.routing.R…
1826 …tpHost, boolean, org.apache.http.conn.routing.RouteInfo.TunnelType, org.apache.http.conn.routing.R…
1833 method @Deprecated public org.apache.http.conn.routing.RouteInfo.LayerType getLayerType();
1837 method @Deprecated public org.apache.http.conn.routing.RouteInfo.TunnelType getTunnelType();
1844 …ed public int nextStep(org.apache.http.conn.routing.RouteInfo, org.apache.http.conn.routing.RouteI…
[all …]
/external/sl4a/Common/src/com/googlecode/android_scripting/jsonrpc/
DJsonBuilder.java42 import android.net.RouteInfo;
329 if (data instanceof RouteInfo) { in build()
330 return buildRouteInfo((RouteInfo) data); in build()
1375 private static JSONObject buildRouteInfo(RouteInfo data) throws JSONException { in buildRouteInfo()