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

1 2

  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
transportdescription.h 83 TransportDescription(const std::string& transport_type,
90 : transport_type(transport_type),
97 TransportDescription(const std::string& transport_type,
99 : transport_type(transport_type),
103 : transport_type(from.transport_type),
116 transport_type = from.transport_type;
145 std::string transport_type; \/\/ xmlns of <transport> member in struct:cricket::TransportDescription
    [all...]
transportdescriptionfactory.cc 56 desc->transport_type = NS_JINGLE_ICE_UDP;
58 desc->transport_type = NS_JINGLE_ICE_UDP;
61 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;
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);
479 const std::string& transport_type,
487 transport_type, content_name
526 std::string transport_type = tinfo.description.transport_type; local
    [all...]
dtlstransportchannel_unittest.cc 149 std::string transport_type = (protocol_ == cricket::ICEPROTO_GOOGLE) ? local
152 transport_type, std::vector<std::string>(), kIceUfrag1, kIcePwd1,
158 transport_type, std::vector<std::string>(), kIceUfrag1, kIcePwd1,
session.cc 755 << " Transport:" << transport_type();
    [all...]
  /external/chromium_org/content/common/gpu/
image_transport_surface_linux.cc 15 DCHECK(handle.transport_type == gfx::NATIVE_DIRECT ||
16 handle.transport_type == gfx::NATIVE_TRANSPORT);
image_transport_surface_android.cc 20 DCHECK_EQ(handle.transport_type, gfx::NATIVE_DIRECT);
image_transport_surface_win.cc 250 DCHECK(handle.transport_type == gfx::NATIVE_DIRECT ||
251 handle.transport_type == gfx::NATIVE_TRANSPORT);
image_transport_surface.cc 32 if (handle.transport_type == gfx::TEXTURE_TRANSPORT)
image_transport_surface_mac.cc 476 DCHECK(surface_handle.transport_type == gfx::NATIVE_TRANSPORT);
  /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 159 typedef enum transport_type { enum
164 } transport_type; typedef in typeref:enum:transport_type
185 transport_type type;
275 atransport *acquire_one_transport(int state, transport_type ttype, const char* serial, char **error_out);
487 int handle_host_request(char *service, transport_type ttype, char* serial, int reply_fd, asocket *s);
commandline.c 40 static int do_cmd(transport_type ttype, char* serial, char *cmd, ...);
45 int install_app(transport_type transport, char* serial, int argc, char** argv);
46 int uninstall_app(transport_type transport, char* serial, int argc, char** argv);
374 static void format_host_command(char* buffer, size_t buflen, const char* command, transport_type ttype, const char* serial)
466 static void status_window(transport_type ttype, const char* serial)
623 static int send_shellcommand(transport_type transport, char* serial, char* buf)
644 static int logcat(transport_type transport, char* serial, int argc, char **argv)
933 transport_type ttype = kTransportAny;
    [all...]
  /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 281 transport_type(EMPTY),
287 transport_type(transport_),
291 DCHECK(transport_type != TEXTURE_TRANSPORT ||
294 bool is_null() const { return transport_type == EMPTY; }
296 return transport_type == NATIVE_TRANSPORT ||
297 transport_type == TEXTURE_TRANSPORT;
300 SurfaceType transport_type; member in struct:gfx::GLSurfaceHandle
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
portallocatorfactory.cc 78 if (cricket::StringToProto(turn[i].transport_type.c_str(), &protocol)) {
85 << "Reason= Incorrect " << turn[i].transport_type
peerconnectioninterface.h 318 const std::string& transport_type,
323 transport_type(transport_type),
328 std::string transport_type; member in struct:webrtc::PortAllocatorFactoryInterface::TurnConfiguration
peerconnectionfactory_unittest.cc 126 EXPECT_EQ(turn_config[i].transport_type,
127 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);
414 int handle_host_request(char *service, transport_type ttype, char* serial, int reply_fd, asocket *s);
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
sessionmessages.h 109 const std::string& transport_type,
112 transport_type(transport_type),
116 std::string transport_type; // xmlns of <transport> member in struct:cricket::TransportInfo
sessionmessages.cc 281 const std::string& transport_type,
285 GetTransportParser(trans_parsers, transport_type);
287 return BadParse("unknown transport type: " + transport_type, error);
344 std::string transport_type = trans_elem->Name().Namespace(); local
345 TransportInfo tinfo(content.name, transport_type, Candidates());
347 trans_parsers, transport_type,
409 tinfo->transport_type, tinfo->candidates,
423 tinfo.transport_type, tinfo.candidates, trans_parsers,
427 buzz::XmlElement* trans_elem = NewTransportElement(tinfo.transport_type);
    [all...]
  /external/chromium_org/content/renderer/p2p/
port_allocator.h 42 std::string transport_type; member in struct:content::P2PPortAllocator::Config::RelayServerConfig
port_allocator.cc 377 if (!cricket::StringToProto(relay_info.config.transport_type.c_str(),
382 << relay_info.config.transport_type

Completed in 270 milliseconds

1 2