Home
last modified time | relevance | path

Searched refs:role_str (Results 1 – 3 of 3) sorted by relevance

/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
Dtransportdescription.cc34 bool StringToConnectionRole(const std::string& role_str, ConnectionRole* role) { in StringToConnectionRole() argument
43 if (stricmp(roles[i], role_str.c_str()) == 0) { in StringToConnectionRole()
51 bool ConnectionRoleToString(const ConnectionRole& role, std::string* role_str) { in ConnectionRoleToString() argument
54 *role_str = cricket::CONNECTIONROLE_ACTIVE_STR; in ConnectionRoleToString()
57 *role_str = cricket::CONNECTIONROLE_ACTPASS_STR; in ConnectionRoleToString()
60 *role_str = cricket::CONNECTIONROLE_PASSIVE_STR; in ConnectionRoleToString()
63 *role_str = cricket::CONNECTIONROLE_HOLDCONN_STR; in ConnectionRoleToString()
Dtransportdescription.h96 bool StringToConnectionRole(const std::string& role_str, ConnectionRole* role);
97 bool ConnectionRoleToString(const ConnectionRole& role, std::string* role_str);
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
Dwebrtcsdp.cc1968 std::string role_str = fields[1]; in ParseDtlsSetup() local
1969 if (!cricket::StringToConnectionRole(role_str, role)) { in ParseDtlsSetup()