/external/webrtc/webrtc/base/ |
helpers.h | 29 std::string CreateRandomString(size_t length); 34 bool CreateRandomString(size_t length, std::string* str); 39 bool CreateRandomString(size_t length, const std::string& table,
|
helpers_unittest.cc | 38 std::string random = CreateRandomString(256); 41 EXPECT_TRUE(CreateRandomString(256, &random2)); 55 EXPECT_EQ("h0ISP4S5SJKH/9EY", CreateRandomString(16)); 61 EXPECT_EQ("h0ISP4S5SJKH/9EY", CreateRandomString(16)); 67 EXPECT_TRUE(CreateRandomString(16, "a", &str)); 69 EXPECT_TRUE(CreateRandomString(16, "abc", &str));
|
helpers.cc | 216 std::string CreateRandomString(size_t len) { 218 CreateRandomString(len, &str); 222 bool CreateRandomString(size_t len, 238 bool CreateRandomString(size_t len, std::string* str) { 239 return CreateRandomString(len, kBase64, 64, str); 242 bool CreateRandomString(size_t len, const std::string& table, 244 return CreateRandomString(len, table.c_str(),
|
opensslidentity.cc | 212 actual_params.common_name = CreateRandomString(8);
|
/external/webrtc/webrtc/p2p/base/ |
transportdescriptionfactory.cc | 32 desc->ice_ufrag = rtc::CreateRandomString(ICE_UFRAG_LENGTH); 33 desc->ice_pwd = rtc::CreateRandomString(ICE_PWD_LENGTH); 66 desc->ice_ufrag = rtc::CreateRandomString(ICE_UFRAG_LENGTH); 67 desc->ice_pwd = rtc::CreateRandomString(ICE_PWD_LENGTH);
|
stunport_unittest.cc | 67 kLocalAddr.ipaddr(), 0, 0, rtc::CreateRandomString(16), 68 rtc::CreateRandomString(22), stun_servers, std::string())); 84 rtc::CreateRandomString(16), rtc::CreateRandomString(22),
|
candidate.h | 37 : id_(rtc::CreateRandomString(8)), 52 : id_(rtc::CreateRandomString(8)),
|
relayport_unittest.cc | 54 username_(rtc::CreateRandomString(16)), 55 password_(rtc::CreateRandomString(16)),
|
stunrequest.cc | 145 rtc::CreateRandomString(kStunTransactionIdLength)); 152 rtc::CreateRandomString(kStunTransactionIdLength));
|
transport.cc | 240 std::vector<std::string>(), rtc::CreateRandomString(ICE_UFRAG_LENGTH), 241 rtc::CreateRandomString(ICE_PWD_LENGTH), ICEMODE_FULL,
|
relayserver_unittest.cc | 44 username_(rtc::CreateRandomString(12)), 45 password_(rtc::CreateRandomString(12)) {} 145 rtc::CreateRandomString(kStunTransactionIdLength));
|
port.cc | 195 ice_username_fragment_ = rtc::CreateRandomString(ICE_UFRAG_LENGTH); 196 password_ = rtc::CreateRandomString(ICE_PWD_LENGTH); 240 c.set_id(rtc::CreateRandomString(8)); [all...] |
turnserver.cc | 120 nonce_key_(rtc::CreateRandomString(kNonceKeySize)), 801 rtc::CreateRandomString(kStunTransactionIdLength));
|
turnport.cc | [all...] |
port_unittest.cc | 376 username_(rtc::CreateRandomString(ICE_UFRAG_LENGTH)), 377 password_(rtc::CreateRandomString(ICE_PWD_LENGTH)), [all...] |
/external/webrtc/webrtc/p2p/stunprober/ |
stunprober.cc | 140 rtc::CreateRandomString(cricket::kStunTransactionIdLength));
|
/external/webrtc/talk/session/media/ |
mediasession.cc | 104 if (!rtc::CreateRandomString(SRTP_MASTER_KEY_BASE64_LEN, &key)) { 270 if (!rtc::CreateRandomString(16, cname)) { [all...] |
channel_unittest.cc | [all...] |
/external/webrtc/webrtc/p2p/client/ |
basicportallocator.cc | 31 using rtc::CreateRandomString; [all...] |
/external/webrtc/talk/app/webrtc/ |
webrtcsdp.cc | 234 msid_appdata(rtc::CreateRandomString(8)) { [all...] |