Home
last modified time | relevance | path

Searched defs:Unspecified (Results 1 – 25 of 222) sorted by relevance

123456789

/aosp_15_r20/external/rust/android-crates-io/crates/ring/tests/
Daead_tests.rs99 f: impl Fn(&'static aead::Algorithm, KnownAnswerTestCase) -> Result<(), error::Unspecified>, in test_aead()
142 ) -> Result<(), error::Unspecified> in test_seal_append_tag()
160 ) -> Result<(), error::Unspecified> in test_seal_separate_tag()
175 ) -> Result<(), error::Unspecified> in test_open_in_place()
195 ) -> Result<(), error::Unspecified> { in test_open_in_place_seperate_tag()
230 ) -> Result<(), error::Unspecified> in test_open_within()
324 ) -> Result<(), error::Unspecified> { in sealing_key_seal_in_place_append_tag()
334 ) -> Result<(), error::Unspecified> { in sealing_key_seal_in_place_separate_tag()
344 ) -> Result<(), error::Unspecified> { in opening_key_open_in_place()
354 ) -> Result<(), error::Unspecified> { in opening_key_open_within()
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/ring/src/ec/suite_b/
Dprivate_key.rs30 ) -> Result<Scalar, error::Unspecified> { in random_scalar()
42 ) -> Result<(), error::Unspecified> { in generate_private_scalar_bytes()
101 ) -> Result<(), error::Unspecified> { in check_scalar_big_endian_bytes()
114 ) -> Result<Scalar, error::Unspecified> { in scalar_from_big_endian_bytes()
137 ) -> Result<(), error::Unspecified> { in public_from_private()
153 ) -> Result<(Elem<R>, Elem<R>), error::Unspecified> { in affine_from_jacobian()
190 ) -> Result<(), error::Unspecified> { in big_endian_affine_from_jacobian()
/aosp_15_r20/external/rust/android-crates-io/crates/ring/src/io/
Dder.rs60 ) -> Result<untrusted::Input<'a>, error::Unspecified> { in expect_tag_and_get_value()
70 ) -> Result<(u8, untrusted::Input<'a>), error::Unspecified> { in read_tag_and_get_value()
109 ) -> Result<untrusted::Input<'a>, error::Unspecified> { in bit_string_with_no_unused_bits()
116 ) -> Result<untrusted::Input<'a>, error::Unspecified> { in bit_string_tagged_with_no_unused_bits()
143 ) -> Result<untrusted::Input<'a>, error::Unspecified> { in nonnegative_integer()
171 pub fn small_nonnegative_integer(input: &mut untrusted::Reader) -> Result<u8, error::Unspecified> { in small_nonnegative_integer()
183 ) -> Result<Positive<'a>, error::Unspecified> { in positive_integer()
193 fn with_i<'a, F, R>(value: &'a [u8], f: F) -> Result<R, error::Unspecified> in with_i()
/aosp_15_r20/external/rust/android-crates-io/crates/ring/src/
Derror.rs77 pub struct Unspecified; struct
80 impl core::fmt::Display for Unspecified { implementation
87 impl std::error::Error for Unspecified {} implementation
89 impl From<untrusted::EndOfInput> for Unspecified { implementation
95 impl From<core::array::TryFromSliceError> for Unspecified { implementation
194 impl From<KeyRejected> for Unspecified { implementation
Drand.rs25 fn fill(&self, dest: &mut [u8]) -> Result<(), error::Unspecified>; in fill()
33 fn fill(&self, dest: &mut [u8]) -> Result<(), error::Unspecified> { in fill()
70 fn fill_impl(&self, dest: &mut [u8]) -> Result<(), error::Unspecified>; in fill_impl()
151 fn fill_impl(&self, dest: &mut [u8]) -> Result<(), error::Unspecified> { in fill_impl()
Dagreement.rs108 ) -> Result<Self, error::Unspecified> { in generate()
124 pub fn compute_public_key(&self) -> Result<PublicKey, error::Unspecified> { in compute_public_key()
249 ) -> Result<R, error::Unspecified> { in agree_ephemeral()
261 ) -> Result<R, error::Unspecified> { in agree_ephemeral_()
Dtest.rs320 F: FnMut(&str, &mut TestCase) -> Result<(), error::Unspecified>, in run()
486 fn fill_impl(&self, dest: &mut [u8]) -> Result<(), error::Unspecified> { in fill_impl()
501 fn fill_impl(&self, dest: &mut [u8]) -> Result<(), error::Unspecified> { in fill_impl()
524 fn fill_impl(&self, dest: &mut [u8]) -> Result<(), error::Unspecified> { in fill_impl()
Dhkdf.rs131 ) -> Result<Okm<'a, L>, error::Unspecified> { in expand()
183 pub fn fill(self, out: &mut [u8]) -> Result<(), error::Unspecified> { in fill()
193 ) -> Result<(), error::Unspecified> { in fill_okm()
Dhmac.rs177 ) -> Result<Self, error::Unspecified> { in generate()
181 fn construct<F>(algorithm: Algorithm, fill: F) -> Result<Self, error::Unspecified> in construct()
340 pub fn verify(key: &Key, data: &[u8], tag: &[u8]) -> Result<(), error::Unspecified> { in verify()
/aosp_15_r20/external/oboe/include/oboe/
H A DDefinitions.h104 Unspecified = 0, // AAUDIO_FORMAT_UNSPECIFIED, enumerator
258 Unspecified = kUnspecified, enumerator
499 Unspecified = kUnspecified, enumerator
527 Unspecified = kUnspecified, enumerator
753 Unspecified = kUnspecified, enumerator
781 Unspecified = kUnspecified, enumerator
807 Unspecified = kUnspecified, enumerator
/aosp_15_r20/external/rust/android-crates-io/crates/ring/src/aead/
Dquic.rs53 ) -> Result<Self, error::Unspecified> { in new()
63 pub fn new_mask(&self, sample: &[u8]) -> Result<[u8; 5], error::Unspecified> { in new_mask()
146 fn aes_init_128(key: &[u8], cpu_features: cpu::Features) -> Result<KeyInner, error::Unspecified> { in aes_init_128()
151 fn aes_init_256(key: &[u8], cpu_features: cpu::Features) -> Result<KeyInner, error::Unspecified> { in aes_init_256()
173 fn chacha20_init(key: &[u8], cpu_features: cpu::Features) -> Result<KeyInner, error::Unspecified> { in chacha20_init()
Dless_safe_key.rs39 ) -> Result<Self, error::Unspecified> { in new_()
170 ) -> Result<&'in_out mut [u8], error::Unspecified> { in open_within_()
199 ) -> Result<Tag, error::Unspecified> { in seal_in_place_separate_tag_()
204 fn check_per_nonce_max_bytes(alg: &Algorithm, in_out_len: usize) -> Result<(), error::Unspecified> { in check_per_nonce_max_bytes()
Daes_gcm.rs49 fn init_128(key: &[u8], cpu_features: cpu::Features) -> Result<aead::KeyInner, error::Unspecified> { in init_128()
53 fn init_256(key: &[u8], cpu_features: cpu::Features) -> Result<aead::KeyInner, error::Unspecified> { in init_256()
61 ) -> Result<aead::KeyInner, error::Unspecified> { in init()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/clang/Basic/
DSpecifiers.h35 enum class ConstexprSpecKind { Unspecified, Constexpr, Consteval, Constinit }; enumerator
47 enum class TypeSpecifierWidth { Unspecified, Short, Long, LongLong }; enumerator
50 enum class TypeSpecifierSign { Unspecified, Signed, Unsigned }; enumerator
52 enum class TypeSpecifiersPipe { Unspecified, Pipe }; enumerator
341 Unspecified, enumerator
392 Unspecified = 3, enumerator
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/clang/Basic/
DSpecifiers.h35 enum class ConstexprSpecKind { Unspecified, Constexpr, Consteval, Constinit }; enumerator
47 enum class TypeSpecifierWidth { Unspecified, Short, Long, LongLong }; enumerator
50 enum class TypeSpecifierSign { Unspecified, Signed, Unsigned }; enumerator
52 enum class TypeSpecifiersPipe { Unspecified, Pipe }; enumerator
338 Unspecified, enumerator
389 Unspecified = 3, enumerator
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/clang/Basic/
DSpecifiers.h35 enum class ConstexprSpecKind { Unspecified, Constexpr, Consteval, Constinit }; enumerator
47 enum class TypeSpecifierWidth { Unspecified, Short, Long, LongLong }; enumerator
50 enum class TypeSpecifierSign { Unspecified, Signed, Unsigned }; enumerator
52 enum class TypeSpecifiersPipe { Unspecified, Pipe }; enumerator
342 Unspecified, enumerator
393 Unspecified = 3, enumerator
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/clang/Basic/
DSpecifiers.h35 enum class ConstexprSpecKind { Unspecified, Constexpr, Consteval, Constinit }; enumerator
47 enum class TypeSpecifierWidth { Unspecified, Short, Long, LongLong }; enumerator
50 enum class TypeSpecifierSign { Unspecified, Signed, Unsigned }; enumerator
52 enum class TypeSpecifiersPipe { Unspecified, Pipe }; enumerator
341 Unspecified, enumerator
392 Unspecified = 3, enumerator
/aosp_15_r20/external/rust/android-crates-io/crates/ring/src/ec/
Dkeys.rs10 pub fn derive(seed: Seed) -> Result<Self, error::Unspecified> { in derive()
35 ) -> Result<Self, error::Unspecified> { in generate()
49 ) -> Result<Self, error::Unspecified> { in from_bytes()
68 pub fn compute_public_key(&self) -> Result<PublicKey, error::Unspecified> { in compute_public_key()
Dsuite_b.rs35 ) -> Result<(), error::Unspecified> { in verify_affine_point_is_on_the_curve()
51 ) -> Result<Elem<R>, error::Unspecified> { in verify_jacobian_point_is_on_the_curve()
141 ) -> Result<(), error::Unspecified> { in verify_affine_point_is_on_the_curve_scaled()
/aosp_15_r20/external/rust/android-crates-io/crates/ring/src/ec/curve25519/
Dx25519.rs43 fn x25519_check_private_key_bytes(bytes: &[u8]) -> Result<(), error::Unspecified> { in x25519_check_private_key_bytes()
51 ) -> Result<(), error::Unspecified> { in x25519_generate_private_key()
58 ) -> Result<(), error::Unspecified> { in x25519_public_from_private()
100 ) -> Result<(), error::Unspecified> { in x25519_ecdh()
/aosp_15_r20/external/rust/android-crates-io/crates/ring/src/rsa/
Dverification.rs28 ) -> Result<(), error::Unspecified> { in verify()
178 ) -> Result<(), error::Unspecified> { in verify()
196 ) -> Result<(), error::Unspecified> { in verify_rsa_()
/aosp_15_r20/external/rust/android-crates-io/crates/ring/src/ec/suite_b/ecdsa/
Dverification.rs58 ) -> Result<(), error::Unspecified> { in verify()
80 ) -> Result<(), error::Unspecified> { in verify_digest()
178 ) -> Result<(untrusted::Input<'a>, untrusted::Input<'a>), error::Unspecified> { in split_rs_fixed()
188 ) -> Result<(untrusted::Input<'a>, untrusted::Input<'a>), error::Unspecified> { in split_rs_asn1()
Dsigning.rs85 ) -> Result<pkcs8::Document, error::Unspecified> { in generate_pkcs8()
176 ) -> Result<signature::Signature, error::Unspecified> { in sign()
197 ) -> Result<signature::Signature, error::Unspecified> { in sign_with_fixed_nonce_during_test()
210 ) -> Result<signature::Signature, error::Unspecified> { in sign_digest()
299 fn fill_impl(&self, dest: &mut [u8]) -> Result<(), error::Unspecified> { in fill_impl()
/aosp_15_r20/external/rust/android-crates-io/crates/ring/src/arithmetic/
Dbigint.rs177 ) -> Result<Self, error::Unspecified> { in from_be_bytes_padded()
437 ) -> Result<Elem<M, Unencoded>, error::Unspecified> { in elem_inverse_consttime()
446 ) -> Result<Elem<M, Unencoded>, error::Unspecified> { in elem_exp_consttime()
533 ) -> Result<Elem<M, Unencoded>, error::Unspecified> { in elem_exp_consttime()
723 ) -> Result<(), error::Unspecified> { in verify_inverses_consttime()
735 ) -> Result<(), error::Unspecified> { in elem_verify_equal_consttime()
745 pub fn to_elem<M>(&self, m: &Modulus<M>) -> Result<Elem<M, Unencoded>, error::Unspecified> { in to_elem()
752 pub fn verify_less_than_modulus<M>(&self, m: &Modulus<M>) -> Result<(), error::Unspecified> { in verify_less_than_modulus()
/aosp_15_r20/external/rust/android-crates-io/crates/ring/src/rsa/padding/
Dpss.rs46 ) -> Result<(), error::Unspecified> { in encode()
109 ) -> Result<(), error::Unspecified> { in verify()
206 ) -> Result<Self, error::Unspecified> { in new()

123456789