HomeSort by relevance Sort by last modified time
    Searched refs:GetRandom (Results 26 - 50 of 51) sorted by null

12 3

  /system/tpm/attestation/common/
crypto_utility.h 32 virtual bool GetRandom(size_t num_bytes, std::string* random_data) const = 0;
mock_crypto_utility.h 33 MOCK_CONST_METHOD2(GetRandom, bool(size_t, std::string*));
crypto_utility_impl_test.cc 72 EXPECT_TRUE(crypto_utility_->GetRandom(20, &random1));
74 EXPECT_TRUE(crypto_utility_->GetRandom(20, &random2));
81 EXPECT_FALSE(crypto_utility_->GetRandom(num_bytes, &buffer));
crypto_utility_impl.h 38 bool GetRandom(size_t num_bytes, std::string* random_data) const override;
crypto_utility_impl.cc 71 bool CryptoUtilityImpl::GetRandom(size_t num_bytes,
84 if (!GetRandom(kAesKeySize, aes_key)) {
85 LOG(ERROR) << __func__ << ": GetRandom failed.";
100 if (!GetRandom(kAesBlockSize, &iv)) {
101 LOG(ERROR) << __func__ << ": GetRandom failed.";
223 if (!GetRandom(kAesKeySize, &aes_key)) {
224 LOG(ERROR) << __func__ << ": GetRandom failed.";
426 if (!GetRandom(kAesBlockSize, &iv)) {
427 LOG(ERROR) << __func__ << ": GetRandom failed.";
  /external/deqp/framework/randomshaders/
rsgBinaryOps.cpp 128 VariableType::Type baseType = state.getRandom().choose<VariableType::Type>(baseTypes.begin(), baseTypes.end());
129 int numElements = state.getRandom().getInt(1, availableLevels >= 3 ? 4 : 1);
163 ComputeValueRange()(state.getRandom(), dst.getMin().asFloat(), dst.getMax().asFloat(),
167 ComputeValueRange()(state.getRandom(), dst.getMin().asInt(), dst.getMax().asInt(),
173 ComputeValueRange()(state.getRandom(), dst.getMin().asBool(), dst.getMax().asBool(),
299 struct GetRandom
306 T subRangeLen = GetRandom()(random, T(0), rangeLen);
307 T aOffset = GetRandom()(random, T(-8), T(8));
349 struct GetRandom
356 T subRangeLen = GetRandom()(random, T(0), rangeLen)
    [all...]
  /device/generic/goldfish/gatekeeper/
SoftGateKeeper.h 89 virtual void GetRandom(void *random, uint32_t requested_length) const {
162 GetRandom(&salt, sizeof(salt));
  /device/google/cuttlefish_common/guest/hals/gatekeeper/
SoftGateKeeper.h 89 virtual void GetRandom(void *random, uint32_t requested_length) const {
162 GetRandom(&salt, sizeof(salt));
  /system/core/gatekeeperd/
SoftGateKeeper.h 89 virtual void GetRandom(void *random, uint32_t requested_length) const {
162 GetRandom(&salt, sizeof(salt));
  /system/bt/types/bluetooth/
uuid.h 50 static Uuid GetRandom();
uuid.cc 149 Uuid Uuid::GetRandom() {
  /system/gatekeeper/include/gatekeeper/
gatekeeper.h 99 virtual void GetRandom(void *random, uint32_t requested_size) const = 0;
  /system/bt/service/ipc/binder/
interface_with_instances_base.cc 37 bluetooth::Uuid app_uuid = bluetooth::Uuid::GetRandom();
  /external/webrtc/webrtc/base/
helpers.cc 155 static_cast<uint8_t*>(buf)[i] = static_cast<uint8_t>(GetRandom());
161 int GetRandom() {
  /system/bt/service/test/
gatt_server_unittest.cc 215 Uuid uuid = Uuid::GetRandom();
249 Uuid uuid0 = Uuid::GetRandom();
250 Uuid uuid1 = Uuid::GetRandom();
251 Uuid uuid2 = Uuid::GetRandom();
322 Uuid uuid0 = Uuid::GetRandom();
339 Uuid uuid1 = Uuid::GetRandom();
346 bluetooth::Uuid hal_uuid = bluetooth::Uuid::GetRandom();
low_energy_scanner_unittest.cc 161 Uuid uuid = Uuid::GetRandom();
214 Uuid uuid0 = Uuid::GetRandom();
227 Uuid uuid1 = Uuid::GetRandom();
low_energy_advertiser_unittest.cc 129 Uuid uuid = Uuid::GetRandom();
223 Uuid uuid0 = Uuid::GetRandom();
241 Uuid uuid1 = Uuid::GetRandom();
  /system/gatekeeper/
gatekeeper.cpp 38 GetRandom(&user_id, sizeof(secure_id_t));
91 GetRandom(&salt, sizeof(salt));
  /system/tpm/attestation/server/
attestation_service_test.cc 302 EXPECT_CALL(mock_crypto_utility_, GetRandom(_, _))
316 EXPECT_CALL(mock_crypto_utility_, GetRandom(_, _))
779 EXPECT_CALL(mock_crypto_utility_, GetRandom(_, _))
    [all...]
attestation_service.cc 562 if (!crypto_utility_->GetRandom(kNonceSize, message_id)) {
563 LOG(ERROR) << __func__ << ": GetRandom(message_id) failed.";
678 if (!crypto_utility_->GetRandom(kNonceSize, &nonce)) {
679 LOG(ERROR) << __func__ << ": GetRandom(nonce) failed.";
  /system/bt/bta/gatt/
bta_gattc_api.cc 79 do_in_bta_thread(FROM_HERE, base::Bind(&bta_gattc_register, Uuid::GetRandom(),
  /external/tpm2/
Makefile 66 SOURCES += GetRandom.c
  /system/bt/service/
gatt_server_old.cc 199 bluetooth::Uuid client_id = bluetooth::Uuid::GetRandom();
  /system/tpm/trunks/
mock_tpm.h 447 MOCK_METHOD3(GetRandom,
    [all...]
tpm_generated.h     [all...]

Completed in 1290 milliseconds

12 3