HomeSort by relevance Sort by last modified time
    Searched refs:random_data (Results 1 - 25 of 38) sorted by null

1 2

  /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');
mock_openssl_crypto_util.h 34 bool FakeGetRandomBytes(size_t num_bytes, std::string* random_data);
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;
openssl_crypto_util_impl.h 42 std::string* random_data) override WARN_UNUSED_RESULT;
tpm2_initializer_impl.h 67 // |random_data|. Returns true on success.
68 bool GetTpmRandomData(size_t num_bytes, std::string* random_data);
tpm2_initializer_impl.cc 188 std::string* random_data) {
190 num_bytes, nullptr /* No Authorization */, 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...]
  /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...]
  /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);
  /system/nvram/messages/tests/
nvram_messages_test.cpp 401 uint8_t random_data[1024]; local
402 for (size_t i = 0; i < sizeof(random_data); ++i) {
403 random_data[i] = rand() & 0xff;
407 for (size_t pos = 0; pos < sizeof(random_data); ++pos) {
408 for (size_t end = pos; end < sizeof(random_data); ++end) {
410 Decode(random_data + pos, end - pos, &request);
413 Decode(random_data + pos, end - pos, &response);
  /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...]
  /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 535 msg.random_data.Reinitialize("foo", 3);
538 EXPECT_EQ(3U, deserialized->random_data.available_read());
539 EXPECT_EQ(0, memcmp("foo", deserialized->random_data.peek_read(), 3));
  /art/runtime/
mem_map.cc 132 uint64_t random_data; local
133 arc4random_buf(&random_data, sizeof(random_data));
134 return CreateStartPos(random_data);
    [all...]
  /frameworks/native/cmds/installd/
otapreopt.cpp 1048 uint64_t random_data; local
    [all...]
  /system/tpm/trunks/
tpm_utility.h 88 std::string* random_data) = 0;
tpm_utility_impl.h 55 std::string* random_data) override;
trunks_factory_for_test.cc 147 std::string* random_data) override {
148 return target_->GenerateRandom(num_bytes, delegate, random_data);
  /external/mesa3d/src/glx/
glxhash.c 97 #define HASH_RANDOM_DECL struct random_data rd; int32_t rv; char rs[256]

Completed in 813 milliseconds

1 2