OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:InitRandom
(Results
1 - 3
of
3
) sorted by null
/external/chromium/third_party/libjingle/source/talk/base/
helpers.h
40
bool
InitRandom
(int seed);
41
bool
InitRandom
(const char* seed, size_t len);
helpers.cc
209
bool
InitRandom
(int seed) {
210
return
InitRandom
(reinterpret_cast<const char*>(&seed), sizeof(seed));
213
bool
InitRandom
(const char* seed, size_t len) {
/external/chromium/third_party/libjingle/source/talk/examples/call/
callclient.cc
331
talk_base::
InitRandom
(client_unique.c_str(), client_unique.size());
Completed in 247 milliseconds