/external/webrtc/webrtc/base/ |
D | helpers_unittest.cc | 38 std::string random = CreateRandomString(256); in TEST_F() 41 EXPECT_TRUE(CreateRandomString(256, &random2)); in TEST_F() 55 EXPECT_EQ("h0ISP4S5SJKH/9EY", CreateRandomString(16)); in TEST_F() 61 EXPECT_EQ("h0ISP4S5SJKH/9EY", CreateRandomString(16)); in TEST_F() 67 EXPECT_TRUE(CreateRandomString(16, "a", &str)); in TEST_F() 69 EXPECT_TRUE(CreateRandomString(16, "abc", &str)); in TEST_F()
|
D | helpers.cc | 216 std::string CreateRandomString(size_t len) { in CreateRandomString() function 218 CreateRandomString(len, &str); in CreateRandomString() 222 bool CreateRandomString(size_t len, in CreateRandomString() function 238 bool CreateRandomString(size_t len, std::string* str) { in CreateRandomString() function 239 return CreateRandomString(len, kBase64, 64, str); in CreateRandomString() 242 bool CreateRandomString(size_t len, const std::string& table, in CreateRandomString() function 244 return CreateRandomString(len, table.c_str(), in CreateRandomString()
|
D | 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,
|
D | opensslidentity.cc | 212 actual_params.common_name = CreateRandomString(8); in Generate()
|
/external/webrtc/webrtc/p2p/base/ |
D | transportdescriptionfactory.cc | 32 desc->ice_ufrag = rtc::CreateRandomString(ICE_UFRAG_LENGTH); in CreateOffer() 33 desc->ice_pwd = rtc::CreateRandomString(ICE_PWD_LENGTH); in CreateOffer() 66 desc->ice_ufrag = rtc::CreateRandomString(ICE_UFRAG_LENGTH); in CreateAnswer() 67 desc->ice_pwd = rtc::CreateRandomString(ICE_PWD_LENGTH); in CreateAnswer()
|
D | stunport_unittest.cc | 67 kLocalAddr.ipaddr(), 0, 0, rtc::CreateRandomString(16), in CreateStunPort() 68 rtc::CreateRandomString(22), stun_servers, std::string())); in CreateStunPort() 84 rtc::CreateRandomString(16), rtc::CreateRandomString(22), in CreateSharedStunPort()
|
D | stunrequest.cc | 145 rtc::CreateRandomString(kStunTransactionIdLength)); in StunRequest() 152 rtc::CreateRandomString(kStunTransactionIdLength)); in StunRequest()
|
D | candidate.h | 37 : id_(rtc::CreateRandomString(8)), in Candidate() 52 : id_(rtc::CreateRandomString(8)), in Candidate()
|
D | relayport_unittest.cc | 54 username_(rtc::CreateRandomString(16)), in RelayPortTest() 55 password_(rtc::CreateRandomString(16)), in RelayPortTest()
|
D | transport.cc | 240 std::vector<std::string>(), rtc::CreateRandomString(ICE_UFRAG_LENGTH), in ConnectChannels() 241 rtc::CreateRandomString(ICE_PWD_LENGTH), ICEMODE_FULL, in ConnectChannels()
|
D | relayserver_unittest.cc | 44 username_(rtc::CreateRandomString(12)), in RelayServerTest() 45 password_(rtc::CreateRandomString(12)) {} in RelayServerTest() 145 rtc::CreateRandomString(kStunTransactionIdLength)); in CreateStunMessage()
|
D | port.cc | 195 ice_username_fragment_ = rtc::CreateRandomString(ICE_UFRAG_LENGTH); in Construct() 196 password_ = rtc::CreateRandomString(ICE_PWD_LENGTH); in Construct() 240 c.set_id(rtc::CreateRandomString(8)); in AddAddress() 1378 std::string id = rtc::CreateRandomString(8); in MaybeAddPrflxCandidate()
|
D | turnserver.cc | 120 nonce_key_(rtc::CreateRandomString(kNonceKeySize)), in TurnServer() 801 rtc::CreateRandomString(kStunTransactionIdLength)); in OnExternalPacket()
|
D | turnport.cc | 1422 rtc::CreateRandomString(kStunTransactionIdLength)); in Send()
|
D | port_unittest.cc | 376 username_(rtc::CreateRandomString(ICE_UFRAG_LENGTH)), in PortTest() 377 password_(rtc::CreateRandomString(ICE_PWD_LENGTH)), in PortTest()
|
/external/webrtc/webrtc/p2p/stunprober/ |
D | stunprober.cc | 140 rtc::CreateRandomString(cricket::kStunTransactionIdLength)); in SendStunRequest()
|
/external/webrtc/talk/session/media/ |
D | mediasession.cc | 104 if (!rtc::CreateRandomString(SRTP_MASTER_KEY_BASE64_LEN, &key)) { in CreateCryptoParams() 270 if (!rtc::CreateRandomString(16, cname)) { in GenerateCname()
|
D | channel_unittest.cc | 1821 "inline:" + rtc::CreateRandomString(40), std::string())); in CreateContent() 1893 "inline:" + rtc::CreateRandomString(40), std::string())); in CreateContent() 2609 "inline:" + rtc::CreateRandomString(40), std::string())); in CreateContent()
|
/external/webrtc/webrtc/p2p/client/ |
D | basicportallocator.cc | 31 using rtc::CreateRandomString;
|
/external/webrtc/talk/app/webrtc/ |
D | webrtcsdp.cc | 234 msid_appdata(rtc::CreateRandomString(8)) { in SsrcInfo()
|