HomeSort by relevance Sort by last modified time
    Searched refs:TransportType (Results 1 - 25 of 29) sorted by null

1 2

  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
TransportManager.java 19 import android.telephony.AccessNetworkConstants.TransportType;
36 mAvailableTransports.add(TransportType.WWAN);
TelephonyComponentFactory.java 25 import android.telephony.AccessNetworkConstants.TransportType;
80 return new DcTracker(phone, TransportType.WWAN);
NetworkRegistrationManager.java 31 import android.telephony.AccessNetworkConstants.TransportType;
62 public NetworkRegistrationManager(int transportType, Phone phone) {
63 mTransportType = transportType;
197 case TransportType.WWAN:
202 case TransportType.WLAN:
CellularNetworkService.java 27 import android.telephony.AccessNetworkConstants.TransportType;
212 int transportType = TransportType.WWAN;
231 return new NetworkRegistrationState(transportType, domain, regState,
251 return new NetworkRegistrationState(transportType, domain, regState,
261 int transportType = TransportType.WWAN;
276 return new NetworkRegistrationState(transportType, domain, regState,
291 return new NetworkRegistrationState(transportType, domain, regState,
  /system/core/adb/
adb_client.h 43 void adb_set_transport(TransportType type, const char* _Nullable serial, TransportId transport_id);
44 void adb_get_transport(TransportType* _Nullable type, const char* _Nullable* _Nullable serial,
adb.h 100 enum TransportType {
209 int handle_host_request(const char* service, TransportType type, const char* serial,
transport.h 135 TransportType type = kTransportAny;
218 atransport* acquire_one_transport(TransportType type, const char* serial, TransportId transport_id,
adb_client.cpp 48 static TransportType __adb_transport = kTransportAny;
54 void adb_set_transport(TransportType type, const char* serial, TransportId transport_id) {
60 void adb_get_transport(TransportType* type, const char** serial, TransportId* transport_id) {
transport_test.cpp 144 for (TransportType type : {kTransportAny, kTransportLocal}) {
167 for (TransportType type : {kTransportAny, kTransportLocal}) {
services.cpp 339 TransportType transport_type;
adb.cpp     [all...]
commandline.cpp     [all...]
sockets.cpp 620 TransportType type = kTransportAny;
  /frameworks/base/telephony/java/android/telephony/
AccessNetworkConstants.java 40 public static final class TransportType {
47 private TransportType() {};
  /external/webrtc/webrtc/test/
rtp_rtcp_observer.h 80 enum TransportType { kReceiver, kSender };
84 TransportType transport_type,
134 TransportType transport_type_;
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
ServiceStateTest.java 285 AccessNetworkConstants.TransportType.WWAN, NetworkRegistrationState.DOMAIN_CS,
291 AccessNetworkConstants.TransportType.WWAN, NetworkRegistrationState.DOMAIN_PS,
296 AccessNetworkConstants.TransportType.WLAN, NetworkRegistrationState.DOMAIN_PS,
306 assertEquals(ss.getNetworkRegistrationStates(AccessNetworkConstants.TransportType.WWAN,
308 assertEquals(ss.getNetworkRegistrationStates(AccessNetworkConstants.TransportType.WWAN,
310 assertEquals(ss.getNetworkRegistrationStates(AccessNetworkConstants.TransportType.WLAN,
314 AccessNetworkConstants.TransportType.WWAN, NetworkRegistrationState.DOMAIN_PS,
318 assertEquals(ss.getNetworkRegistrationStates(AccessNetworkConstants.TransportType.WWAN,
CellularNetworkServiceTest.java 135 AccessNetworkConstants.TransportType.WWAN, domain, voiceRegState,
158 AccessNetworkConstants.TransportType.WWAN, domain, voiceRegState,
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DcController.java 29 import android.telephony.AccessNetworkConstants.TransportType;
204 == TransportType.WWAN) {
220 == TransportType.WWAN) {
DataServiceManager.java 19 import static android.telephony.AccessNetworkConstants.TransportType.WLAN;
20 import static android.telephony.AccessNetworkConstants.TransportType.WWAN;
120 for (int transportType : new int[] {WWAN, WLAN}) {
121 dataServices.remove(getDataServicePackageName(transportType));
229 * @param transportType The transport type. Must be a
230 * {@link AccessNetworkConstants.TransportType}.
232 public DataServiceManager(Phone phone, int transportType) {
234 mTransportType = transportType;
288 * @return package name of the data service package for the the current transportType.
301 * @param transportType either WWAN or WLA
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/dataconnection/
DataConnectionTest.java 55 import android.telephony.AccessNetworkConstants.TransportType;
170 DataServiceManager manager = new DataServiceManager(mPhone, TransportType.WWAN);
597 doReturn(TransportType.WLAN).when(mockDsm).getTransportType();
    [all...]
DcTrackerTest.java 61 import android.telephony.AccessNetworkConstants.TransportType;
183 mDct = new DcTracker(mPhone, TransportType.WWAN);
    [all...]
  /frameworks/native/libs/vr/libbufferhubqueue/benchmarks/
buffer_transport_benchmark.cpp 412 enum TransportType {
  /packages/services/Telephony/src/com/android/phone/
NetworkSelectSetting.java 425 ss.getNetworkRegistrationStates(AccessNetworkConstants.TransportType.WWAN);
  /external/webrtc/webrtc/modules/audio_device/android/
audio_device_unittest.cc 84 enum TransportType {
    [all...]
  /external/webrtc/webrtc/modules/audio_device/ios/
audio_device_unittest_ios.cc 86 enum TransportType {
    [all...]

Completed in 1272 milliseconds

1 2