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

1 2 3

  /system/bt/test/suite/gatt/
gatt_unittest.cc 29 bluetooth::Uuid gatt_client_uuid = bluetooth::Uuid::GetRandom();
41 bluetooth::Uuid gatt_server_uuid = bluetooth::Uuid::GetRandom();
53 bluetooth::Uuid gatt_server_uuid = bluetooth::Uuid::GetRandom();
60 bluetooth::Uuid srvc_uuid = bluetooth::Uuid::GetRandom();
63 bluetooth::Uuid char_uuid = bluetooth::Uuid::GetRandom();
66 bluetooth::Uuid desc_uuid = bluetooth::Uuid::GetRandom();
  /system/bt/service/test/
parcelable_unittest.cc 88 Uuid uuid = Uuid::GetRandom();
118 Uuid uuid = Uuid::GetRandom();
124 Uuid mask = Uuid::GetRandom();
149 Descriptor s = Descriptor(0x0000, Uuid::GetRandom(),
151 Descriptor s2 = Descriptor(0xFFFE, Uuid::GetRandom(),
153 Descriptor s3 = Descriptor(0x003D, Uuid::GetRandom(),
171 Characteristic c = Characteristic(0x0004, Uuid::GetRandom(), 0, 0,
172 {Descriptor(0x0005, Uuid::GetRandom(), 0),
173 Descriptor(0x0007, Uuid::GetRandom(), 0),
174 Descriptor(0x00A1, Uuid::GetRandom(), 0)})
    [all...]
gatt_client_unittest.cc 101 Uuid uuid0 = Uuid::GetRandom();
118 Uuid uuid1 = Uuid::GetRandom();
125 Uuid uuid2 = Uuid::GetRandom();
low_energy_client_unittest.cc 137 Uuid uuid = Uuid::GetRandom();
190 Uuid uuid0 = Uuid::GetRandom();
207 Uuid uuid1 = Uuid::GetRandom();
214 Uuid uuid2 = Uuid::GetRandom();
  /prebuilts/go/darwin-x86/src/crypto/rand/
rand_linux.go 16 // getrandom() syscall. In linux at most 2^25-1 bytes will be returned per call.
20 // is returned by a single call to getrandom() on systems where int
38 // If the kernel is too old (before 3.17) to support the getrandom syscall(),
39 // unix.GetRandom will immediately return ENOSYS and we will then fall back to
40 // reading from /dev/urandom in rand_unix.go. unix.GetRandom caches the ENOSYS
42 // If the kernel supports the getrandom() syscall, unix.GetRandom will block
44 // In this case, unix.GetRandom will not return an error.
46 n, err := unix.GetRandom(p, 0)
  /prebuilts/go/linux-x86/src/crypto/rand/
rand_linux.go 16 // getrandom() syscall. In linux at most 2^25-1 bytes will be returned per call.
20 // is returned by a single call to getrandom() on systems where int
38 // If the kernel is too old (before 3.17) to support the getrandom syscall(),
39 // unix.GetRandom will immediately return ENOSYS and we will then fall back to
40 // reading from /dev/urandom in rand_unix.go. unix.GetRandom caches the ENOSYS
42 // If the kernel supports the getrandom() syscall, unix.GetRandom will block
44 // In this case, unix.GetRandom will not return an error.
46 n, err := unix.GetRandom(p, 0)
  /prebuilts/go/darwin-x86/src/internal/syscall/unix/
getrandom_linux_386.go 7 // Linux getrandom system call number.
8 // See GetRandom in getrandom_linux.go.
getrandom_linux_amd64.go 7 // Linux getrandom system call number.
8 // See GetRandom in getrandom_linux.go.
getrandom_linux_arm.go 7 // Linux getrandom system call number.
8 // See GetRandom in getrandom_linux.go.
getrandom_linux_mips64x.go 9 // Linux getrandom system call number.
10 // See GetRandom in getrandom_linux.go.
getrandom_linux_mipsx.go 9 // Linux getrandom system call number.
10 // See GetRandom in getrandom_linux.go.
getrandom_linux_ppc64x.go 9 // Linux getrandom system call number.
10 // See GetRandom in getrandom_linux.go.
getrandom_linux_s390x.go 7 // Linux getrandom system call number.
8 // See GetRandom in getrandom_linux.go.
getrandom_linux.go 15 // GetRandomFlag is a flag supported by the getrandom system call.
26 // GetRandom calls the Linux getrandom system call.
28 func GetRandom(p []byte, flags GetRandomFlag) (n int, err error) {
getrandom_linux_generic.go 9 // Linux getrandom system call number.
10 // See GetRandom in getrandom_linux.go.
  /prebuilts/go/linux-x86/src/internal/syscall/unix/
getrandom_linux_386.go 7 // Linux getrandom system call number.
8 // See GetRandom in getrandom_linux.go.
getrandom_linux_amd64.go 7 // Linux getrandom system call number.
8 // See GetRandom in getrandom_linux.go.
getrandom_linux_arm.go 7 // Linux getrandom system call number.
8 // See GetRandom in getrandom_linux.go.
getrandom_linux_mips64x.go 9 // Linux getrandom system call number.
10 // See GetRandom in getrandom_linux.go.
getrandom_linux_mipsx.go 9 // Linux getrandom system call number.
10 // See GetRandom in getrandom_linux.go.
getrandom_linux_ppc64x.go 9 // Linux getrandom system call number.
10 // See GetRandom in getrandom_linux.go.
getrandom_linux_s390x.go 7 // Linux getrandom system call number.
8 // See GetRandom in getrandom_linux.go.
getrandom_linux.go 15 // GetRandomFlag is a flag supported by the getrandom system call.
26 // GetRandom calls the Linux getrandom system call.
28 func GetRandom(p []byte, flags GetRandomFlag) (n int, err error) {
getrandom_linux_generic.go 9 // Linux getrandom system call number.
10 // See GetRandom in getrandom_linux.go.
  /system/tpm/attestation/common/
mock_crypto_utility.cc 41 ON_CALL(*this, GetRandom(_, _)).WillByDefault(Invoke(FakeRandom));

Completed in 323 milliseconds

1 2 3