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

1 2

  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
transportdescriptionfactory.cc 54 desc->transport_type = NS_JINGLE_ICE_UDP;
56 desc->transport_type = NS_JINGLE_ICE_UDP;
59 desc->transport_type = NS_GINGLE_P2P;
94 if (offer && offer->transport_type == NS_JINGLE_ICE_UDP &&
97 desc->transport_type = NS_JINGLE_ICE_UDP;
98 } else if (offer && offer->transport_type == NS_JINGLE_ICE_UDP &&
101 desc->transport_type = NS_GINGLE_P2P;
103 } else if ((!offer || offer->transport_type == NS_GINGLE_P2P) &&
106 desc->transport_type = NS_GINGLE_P2P;
transportdescription.h 104 TransportDescription(const std::string& transport_type,
112 : transport_type(transport_type),
120 TransportDescription(const std::string& transport_type,
123 : transport_type(transport_type),
129 : transport_type(from.transport_type),
143 transport_type = from.transport_type;
173 std::string transport_type; \/\/ xmlns of <transport> member in struct:cricket::TransportDescription
    [all...]
p2ptransport.cc 87 desc->transport_type = elem->Name().Namespace();
88 if (desc->transport_type != NS_GINGLE_P2P)
116 NewTransportElement(desc.transport_type));
sessionmessages.cc 251 const std::string& transport_type) {
252 TransportParserMap::const_iterator map = trans_parsers.find(transport_type);
273 const std::string& transport_type,
278 *parser = GetTransportParser(trans_parsers, transport_type);
280 return BadParse("unknown transport type: " + transport_type, error);
292 const std::string& transport_type,
297 *parser = GetTransportParser(trans_parsers, transport_type);
299 return BadWrite("unknown transport type: " + transport_type, error);
481 const std::string& transport_type,
489 transport_type, content_name
528 std::string transport_type = tinfo.description.transport_type; local
    [all...]
dtlstransportchannel_unittest.cc 167 std::string transport_type = (protocol_ == cricket::ICEPROTO_GOOGLE) ? local
170 transport_type, std::vector<std::string>(), kIceUfrag1, kIcePwd1,
179 transport_type, std::vector<std::string>(), kIceUfrag1, kIcePwd1,
session.cc 819 << " Transport:" << transport_type();
    [all...]
session_unittest.cc 225 const std::string& transport_type) {
234 " xmlns=\"" + transport_type + "\""
241 const std::string& transport_type,
243 std::string transport = transport_type.empty() ? "" :
245 " xmlns=\"" + transport_type + "\""
262 const std::string& transport_type,
269 " xmlns=\"" + transport_type + "\""
    [all...]
  /system/core/adb/
adb_client.h 26 void adb_set_transport(transport_type type, const char* serial);
adb_client.c 16 static transport_type __adb_transport = kTransportAny;
22 void adb_set_transport(transport_type type, const char* serial)
101 char* transport_type = "???"; local
105 transport_type = "transport-usb";
108 transport_type = "transport-local";
111 transport_type = "transport-any";
119 snprintf(service, sizeof service, "host:%s", transport_type);
adb.h 166 typedef enum transport_type { enum
171 } transport_type; typedef in typeref:enum:transport_type
192 transport_type type;
282 atransport *acquire_one_transport(int state, transport_type ttype, const char* serial, char **error_out);
327 int handle_forward_request(const char* service, transport_type ttype, char* serial, int reply_fd);
415 int handle_host_request(char *service, transport_type ttype, char* serial, int reply_fd, asocket *s);
commandline.c 41 static int do_cmd(transport_type ttype, char* serial, char *cmd, ...);
46 int install_app(transport_type transport, char* serial, int argc, char** argv);
47 int install_multiple_app(transport_type transport, char* serial, int argc, char** argv);
48 int uninstall_app(transport_type transport, char* serial, int argc, char** argv);
434 static void format_host_command(char* buffer, size_t buflen, const char* command, transport_type ttype, const char* serial)
635 static void status_window(transport_type ttype, const char* serial)
798 static int send_shellcommand(transport_type transport, char* serial, char* buf)
819 static int logcat(transport_type transport, char* serial, int argc, char **argv)
    [all...]
adb.c     [all...]
  /external/chromium_org/content/common/gpu/
image_transport_surface_linux.cc 15 DCHECK(handle.transport_type == gfx::NATIVE_DIRECT);
image_transport_surface_win.cc 29 DCHECK_EQ(handle.transport_type, gfx::NATIVE_DIRECT);
image_transport_surface_android.cc 167 if (handle.transport_type == gfx::NATIVE_TRANSPORT) {
176 DCHECK_EQ(handle.transport_type, gfx::NATIVE_DIRECT);
image_transport_surface.cc 37 if (handle.transport_type == gfx::TEXTURE_TRANSPORT)
  /hardware/qcom/bt/libbt-vendor/src/
userial_vendor.c 38 char transport_type[10] = {0,}; local
41 ret = property_get("ro.qualcomm.bt.hci_transport", transport_type, NULL);
45 printf("ro.qualcomm.bt.hci_transport: %s \n", transport_type);
47 if (!strcasecmp(transport_type, "smd"))
  /external/chromium_org/ui/gfx/
native_widget_types.h 219 transport_type(EMPTY),
224 transport_type(transport_),
227 DCHECK(transport_type != TEXTURE_TRANSPORT ||
230 bool is_null() const { return transport_type == EMPTY; }
232 return transport_type == NATIVE_TRANSPORT ||
233 transport_type == TEXTURE_TRANSPORT;
236 SurfaceType transport_type; member in struct:gfx::GLSurfaceHandle
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
portallocatorfactory.cc 76 if (cricket::StringToProto(turn[i].transport_type.c_str(), &protocol)) {
83 << "Reason= Incorrect " << turn[i].transport_type
peerconnectioninterface.h 357 const std::string& transport_type,
362 transport_type(transport_type),
367 std::string transport_type; member in struct:webrtc::PortAllocatorFactoryInterface::TurnConfiguration
peerconnectionfactory_unittest.cc 139 EXPECT_EQ(turn_config[i].transport_type,
140 allocator->turn_configs()[i].transport_type);
  /bootable/recovery/minadbd/
adb.h 156 typedef enum transport_type { enum
161 } transport_type; typedef in typeref:enum:transport_type
179 transport_type type;
237 atransport *acquire_one_transport(int state, transport_type ttype, const char* serial, char **error_out);
422 int handle_host_request(char *service, transport_type ttype, char* serial, int reply_fd, asocket *s);
  /external/chromium_org/content/renderer/p2p/
port_allocator.h 42 std::string transport_type; member in struct:content::P2PPortAllocator::Config::RelayServerConfig
port_allocator.cc 270 if (!cricket::StringToProto(config.relays[i].transport_type.c_str(),
275 << config.relays[i].transport_type
  /external/chromium_org/content/renderer/media/webrtc/
peer_connection_dependency_factory.cc 135 relay_config.transport_type = turn_configurations[i].transport_type;

Completed in 814 milliseconds

1 2