/system/tpm/tpm_manager/server/ |
openssl_crypto_util_impl.cc | 26 std::string* random_data) { 27 random_data->resize(num_bytes); 29 reinterpret_cast<unsigned char*>(string_as_array(random_data)); 32 random_data->clear();
|
mock_openssl_crypto_util.cc | 32 std::string* random_data) { 33 random_data->assign(num_bytes, 'a');
|
openssl_crypto_util.h | 33 // This method sets the out argument |random_data| to a string with at 36 std::string* random_data) WARN_UNUSED_RESULT = 0;
|
mock_openssl_crypto_util.h | 34 bool FakeGetRandomBytes(size_t num_bytes, std::string* random_data);
|
tpm2_initializer_impl.h | 65 // |random_data|. Returns true on success. 66 bool GetTpmRandomData(size_t num_bytes, std::string* random_data);
|
openssl_crypto_util_impl.h | 42 std::string* random_data) override WARN_UNUSED_RESULT;
|
tpm2_initializer_impl.cc | 126 std::string* random_data) { 128 num_bytes, nullptr /* No Authorization */, random_data);
|
/external/bison/lib/ |
stdlib.in.h | 59 /* OSF/1 5.1 declares 'struct random_data' in <random.h>, which is included 61 'struct random_data'. */ 71 /* Define 'struct random_data'. 74 struct random_data 598 _GL_FUNCDECL_RPL (random_r, int, (struct random_data *buf, int32_t *result) 600 _GL_CXXALIAS_RPL (random_r, int, (struct random_data *buf, int32_t *result)); 603 _GL_FUNCDECL_SYS (random_r, int, (struct random_data *buf, int32_t *result) 606 _GL_CXXALIAS_SYS (random_r, int, (struct random_data *buf, int32_t *result)); 624 (unsigned int seed, struct random_data *rand_state) 627 (unsigned int seed, struct random_data *rand_state)) [all...] |
/bionic/libc/bionic/ |
setjmp_cookie.cpp | 43 char* random_data = reinterpret_cast<char*>(args.getauxval(AT_RANDOM)); local 44 long value = *reinterpret_cast<long*>(random_data + 8);
|
/cts/hostsidetests/services/activitymanager/app/src/android/server/app/ |
LaunchToSideActivity.java | 32 if (extras.getBoolean("random_data")) {
|
/external/bison/darwin-lib/ |
stdlib.h | 60 /* OSF/1 5.1 declares 'struct random_data' in <random.h>, which is included 62 'struct random_data'. */ 72 /* Define 'struct random_data'. 75 struct random_data [all...] |
/external/bison/linux-lib/ |
stdlib.h | 60 /* OSF/1 5.1 declares 'struct random_data' in <random.h>, which is included 62 'struct random_data'. */ 72 /* Define 'struct random_data'. 75 struct random_data [all...] |
/system/tpm/attestation/common/ |
crypto_utility.h | 31 // Generates |num_bytes| of |random_data|. Returns true on success. 32 virtual bool GetRandom(size_t num_bytes, std::string* random_data) const = 0;
|
crypto_utility_impl.h | 38 bool GetRandom(size_t num_bytes, std::string* random_data) const override;
|
crypto_utility_impl.cc | 72 std::string* random_data) const { 77 random_data->resize(num_bytes); 78 unsigned char* buffer = StringAsOpenSSLBuffer(random_data);
|
/art/runtime/jit/ |
profile_compilation_info_test.cc | 316 uint8_t random_data[] = { 1, 2, 3}; local 317 ASSERT_TRUE(profile.GetFile()->WriteFully(random_data, sizeof(random_data)));
|
/system/keymaster/ |
android_keymaster_messages.cpp | 296 return random_data.SerializedSize(); 300 return random_data.Serialize(buf, end); 304 return random_data.Deserialize(buf_ptr, end);
|
android_keymaster.cpp | 182 response->error = context_->AddRngEntropy(request.random_data.peek_read(), 183 request.random_data.available_read());
|
android_keymaster_messages_test.cpp | 516 msg.random_data.Reinitialize("foo", 3); 519 EXPECT_EQ(3U, deserialized->random_data.available_read()); 520 EXPECT_EQ(0, memcmp("foo", deserialized->random_data.peek_read(), 3));
|
/system/tpm/trunks/ |
trunks_factory_for_test.cc | 160 std::string* random_data) override { 161 return target_->GenerateRandom(num_bytes, delegate, random_data);
|
tpm_utility_impl.h | 55 std::string* random_data) override;
|
/frameworks/native/cmds/installd/ |
otapreopt.cpp | 457 uint64_t random_data; local 458 arc4random_buf(&random_data, sizeof(random_data)); 459 return random_data;
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/ |
stdlib.h | 349 struct random_data struct 360 extern int random_r (struct random_data *__restrict __buf, 363 extern int srandom_r (unsigned int __seed, struct random_data *__buf) 368 struct random_data *__restrict __buf) 372 struct random_data *__restrict __buf) [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/ |
stdlib.h | 349 struct random_data struct 360 extern int random_r (struct random_data *__restrict __buf, 363 extern int srandom_r (unsigned int __seed, struct random_data *__buf) 368 struct random_data *__restrict __buf) 372 struct random_data *__restrict __buf) [all...] |
/art/runtime/ |
mem_map.cc | 121 uint64_t random_data; local 122 arc4random_buf(&random_data, sizeof(random_data)); 123 return CreateStartPos(random_data); [all...] |