HomeSort by relevance Sort by last modified time
    Searched refs:CreateRandomId (Results 1 - 10 of 10) sorted by null

  /external/webrtc/webrtc/base/
helpers_unittest.cc 22 CreateRandomId();
54 EXPECT_EQ(2154761789U, CreateRandomId());
60 EXPECT_EQ(2154761789U, CreateRandomId());
helpers.h 46 uint32_t CreateRandomId();
timeutils_unittest.cc 186 int year = rtc::CreateRandomId() % 400 + 1970;
198 tm.tm_mon = rtc::CreateRandomId() % 12;
199 tm.tm_mday = rtc::CreateRandomId() % mdays[tm.tm_mon] + 1;
200 tm.tm_hour = rtc::CreateRandomId() % 24;
201 tm.tm_min = rtc::CreateRandomId() % 60;
202 tm.tm_sec = rtc::CreateRandomId() % 60;
207 switch (rtc::CreateRandomId() % 11) {
247 time_t t = rtc::CreateRandomId() % 0x80000000;
helpers.cc 283 uint32_t CreateRandomId() {
292 return static_cast<uint64_t>(CreateRandomId()) << 32 | CreateRandomId();
298 id = CreateRandomId();
304 return CreateRandomId() / (std::numeric_limits<uint32_t>::max() +
sslidentity_unittest.cc 373 buf[length] = rtc::CreateRandomId(); // ...and terminate it with junk.
382 buf[length] = rtc::CreateRandomId(); // ...and terminate it with junk.
396 params.not_after = rtc::CreateRandomId() % 0x80000000;
sslstreamadapter_unittest.cc 409 if (rtc::CreateRandomId() % 100 < static_cast<uint32_t>(loss_)) {
    [all...]
  /external/webrtc/talk/app/webrtc/
jsepsessiondescription_unittest.cc 107 rtc::ToString(rtc::CreateRandomId());
webrtcsession_unittest.cc 716 rtc::ToString(rtc::CreateRandomId());
    [all...]
  /external/webrtc/webrtc/p2p/client/
basicportallocator.cc 30 using rtc::CreateRandomId;
57 return SHAKE_MIN_DELAY + CreateRandomId() % range;
    [all...]
  /external/webrtc/webrtc/p2p/base/
pseudotcp_unittest.cc 143 if (rtc::CreateRandomId() % 100 < static_cast<uint32_t>(loss_)) {

Completed in 217 milliseconds