HomeSort by relevance Sort by last modified time
    Searched defs:transport (Results 51 - 71 of 71) sorted by null

1 23

  /cts/tests/tests/webkit/src/android/webkit/cts/
WebChromeClientTest.java 407 WebView.WebViewTransport transport = (WebView.WebViewTransport) resultMsg.obj; local
409 transport.setWebView(null);
415 transport.setWebView(childView);
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
statscollector.cc 504 // Add the mapping of SSRC to transport.
542 // Add the mapping of SSRC to transport.
627 // Attempt to get a copy of the certificates from the transport and
628 // expose them in stats reports. All channels in a transport share the
631 cricket::Transport* transport = local
633 if (transport) {
635 if (transport->GetIdentity(identity.accept()))
640 if (transport->GetRemoteCertificate(cert.accept()))
720 LOG(LS_ERROR) << "Failed to get transport name for proxy
    [all...]
webrtcsession_unittest.cc 845 const cricket::Transport* transport = session_->GetTransport(content_name); local
    [all...]
webrtcsdp.cc 286 TransportDescription* transport,
1010 const std::string transport = fields[2]; local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/
SipProviderImpl.java 103 * transport
151 public ListeningPoint getListeningPoint(String transport) {
152 if (transport == null)
153 throw new NullPointerException("Null transport param");
154 return (ListeningPoint) this.listeningPoints.get(transport
354 String transport = hop.getTransport(); local
356 .getListeningPoint(transport);
389 //set port and transport if user hasn't already done this.
391 topmostVia.setTransport(transport);
751 String transport = via.getTransport() local
807 String transport = lp.getTransport().toUpperCase(); local
1022 String transport = lp.getTransport().toUpperCase(); local
    [all...]
  /frameworks/av/media/libstagefright/wifi-display/source/
WifiDisplaySource.cpp 1165 AString transport; local
    [all...]
  /frameworks/base/location/java/android/location/
LocationManager.java 842 ListenerTransport transport = mListeners.get(listener); local
857 ListenerTransport transport = wrapListener(listener, looper); local
879 ListenerTransport transport; local
1492 GpsStatusListenerTransport transport = new GpsStatusListenerTransport(listener); local
1512 GpsStatusListenerTransport transport = mGpsStatusListeners.remove(listener); local
1538 GpsStatusListenerTransport transport = new GpsStatusListenerTransport(listener); local
1558 GpsStatusListenerTransport transport = mNmeaListeners.remove(listener); local
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapService.java 308 // setup RFCOMM transport
309 BluetoothMapRfcommTransport transport = new BluetoothMapRfcommTransport(mConnSocket); local
310 mServerSession = new ServerSession(transport, mMapServer, mAuth);
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapService.java 475 BluetoothPbapRfcommTransport transport = new BluetoothPbapRfcommTransport(mConnSocket); local
476 mServerSession = new ServerSession(transport, mPbapServer, mAuth);
  /packages/apps/Email/tests/src/com/android/email/mail/store/
Pop3StoreUnitTests.java 25 import com.android.email.mail.transport.MockTransport;
235 mockTransport.expect(null, "-ERR from the Mock Transport.");
380 * Test the scenario where the transport is "open" but not really (e.g. server closed). Two
423 * Test the scenario where the transport is "open" but not really (e.g. server closed). Two
465 * Test the scenario where the transport is "open" but not really (e.g. server closed). Two
508 * Test the scenario where the transport is "open" but not really (e.g. server closed). Two
560 * Test the scenario where the transport is "open" but not really (e.g. server closed). Two
607 * Test the scenario where the transport is "open" but not really (e.g. server closed). Two
666 * Test the scenario where the transport is "open" but not really (e.g. server closed). Two
713 * Test the scenario where the transport is "open" but not really (e.g. server closed). Tw
    [all...]
  /system/core/adb/
adb.c 106 { "transport", TRACE_TRANSPORT },
668 s->transport = l->transport;
694 if (l->transport) {
695 remove_transport_disconnect(l->transport, &l->disconnect);
752 int serial_len = strlen(l->transport->serial);
756 l->transport->serial, l->local_name, l->connect_to);
788 static int remove_listener(const char *local_name, atransport* transport)
794 listener_disconnect(l, l->transport);
809 listener_disconnect(l, l->transport);
1392 atransport *transport = NULL; local
1541 atransport *transport; local
    [all...]
adb.h 22 #include "transport.h" /* readx(), writex() */
132 atransport *transport; member in struct:asocket
137 ** will be called whenever a transport is disconnected (e.g. by the user)
139 ** transport (e.g. remote sockets, listeners, etc...)
150 /* a transport object models the connection to a remote device or emulator
151 ** there is one transport per connected device/emulator. a "local transport"
152 ** connects through TCP (for the emulator), while a "usb transport" through
155 ** note that kTransportHost doesn't really correspond to a real transport
197 int adb_port; // Use for emulators (local transport)
229 atransport *transport; member in struct:alistener
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
session_unittest.cc 68 // TODO: When we need to test more than one transport type,
70 static const std::string kTransportType = "http://www.google.com/transport/p2p";
246 "<transport"
256 std::string transport = transport_type.empty() ? "" : local
257 "<transport"
261 "</transport>";
270 + transport +
281 "<transport"
285 "</transport>"
372 "transport-info"
981 const cricket::Transport* transport = session->GetTransport(content_name); local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPServerTransaction.java 85 * | | Transport Err.
103 * V or Transport Err.|
408 // The server transport uses the value of the top Via header field
413 // If the "sent-protocol" is a reliable transport
430 String transport = via.getTransport(); local
431 if (transport == null)
432 throw new IOException("missing transport!");
438 if (transport.equalsIgnoreCase("TLS"))
478 transport));
    [all...]
SIPTransaction.java 729 // Use the peer address, port and transport
1122 String transport = getTransport(); local
    [all...]
SIPDialog.java 405 * Issue 106. Section 13.3.1.4 RFC 3261 The 2xx response is passed to the transport
2430 String transport = uri4transport.getTransportParam(); local
    [all...]
  /frameworks/av/media/libstagefright/rtsp/
MyHandler.h 301 bool pokeAHole(int rtpSocket, int rtcpSocket, const AString &transport) {
308 if (!GetAttribute(transport.c_str(),
311 ALOGW("Missing 'source' field in Transport response. Using "
327 if (!GetAttribute(transport.c_str(),
330 ALOGI("Missing 'server_port' field in Transport response.");
686 i = response->mHeaders.indexOfKey("transport");
690 AString transport = response->mHeaders.valueAt(i); local
697 transport);
    [all...]
  /frameworks/base/services/java/com/android/server/
BackupManagerService.java 169 // Retry interval for clear/init when the transport is unavailable
266 // Transport bookkeeping
305 public IBackupTransport transport; field in class:BackupManagerService.RestoreGetSetsParams
311 transport = _transport;
318 public IBackupTransport transport; field in class:BackupManagerService.RestoreParams
329 transport = _transport;
341 transport = _transport;
353 transport = _transport;
365 public IBackupTransport transport; field in class:BackupManagerService.ClearParams
369 transport = _transport
510 IBackupTransport transport = getTransport(mCurrentTransport); local
1375 IBackupTransport transport = getTransport(transportName); local
1557 IBackupTransport transport = IBackupTransport.Stub.asInterface(service); local
1558 registerTransport(transport.name(), component.flattenToShortString(), transport); local
1768 IBackupTransport transport = mTransports.get(transportName); local
5082 IBackupTransport transport = getTransport(transportName); local
5284 final IBackupTransport transport = getTransport(transportName); local
5685 Settings.Secure.BACKUP_TRANSPORT, transport); local
5703 final IBackupTransport transport = mTransports.get(transportName); local
5729 final IBackupTransport transport = mTransports.get(transportName); local
5799 IBackupTransport transport = getTransport(mCurrentTransport); local
6228 IBackupTransport transport = getTransport(t); local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.artifact.repository_1.1.1.R36x_v20100901.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
jdi.jar 
jdimodel.jar 

Completed in 1390 milliseconds

1 23