/system/secretkeeper/comm/src/ |
D | wire.rs | 65 Self::DeleteAll => vec![OpCode::DeleteAll.to_cbor_value()?, Value::Null], in to_cbor_value() 197 Self::Empty => Value::Null, in to_cbor_value() 204 Value::Null => Ok(Self::Empty), in from_cbor_value() 223 Value::Null => "null", in cbor_type_error()
|
/system/libcppbor/tests/ |
D | cppbor_test.cpp | 113 EXPECT_EQ("\xf6"s, Null().toString()); in TEST() 226 TEST(MakeEntryTest, Null) { in TEST() argument 634 TEST(EqualityTest, Null) { in TEST() argument 635 Null val; in TEST() 636 EXPECT_EQ(val, Null()); in TEST() 663 EXPECT_NE(val, Null()); in TEST() 678 EXPECT_NE(val, Null()); in TEST() 927 TEST(ConvertTest, Null) { in TEST() argument 928 unique_ptr<Item> item(new Null); in TEST() 1045 Map item("key", Array("value1", "value2", 3), 15, Null(), -5, 45), in TEST() [all …]
|
/system/libcppbor/include/cppbor/ |
D | cppbor.h | 83 class Null; variable 149 virtual Null* asNull() { return nullptr; } in asNull() 150 const Null* asNull() const { return const_cast<Item*>(this)->asNull(); } in asNull() 909 class Null : public Simple { 913 explicit Null() {} in Null() function 916 Null* asNull() override { return this; } in asNull() 928 std::unique_ptr<Item> clone() const override { return std::make_unique<Null>(); } in clone() 1047 p = new Null();
|
/system/secretkeeper/comm/tests/ |
D | data_types.rs | 126 *Request::new(vec![Value::Bytes(ex_id_bytes()), Value::Null]).unwrap(); in request_creation() 153 assert!(<GetVersionRequest as Request>::new(vec![Value::Null]).is_err()); in invalid_request_creation()
|
/system/keymint/wire/src/ |
D | lib.rs | 292 Value::Null => "null", in cbor_type_error() 560 cbor::value::Value::Null => Ok(()), in from_cbor_value() 565 Ok(cbor::value::Value::Null) in to_cbor_value()
|
/system/secretkeeper/comm/src/data_types/ |
D | request_response_impl.rs | 155 self.updated_sealing_policy.as_ref().map_or(Value::Null, |x| x.as_slice().into()); in args()
|
/system/authgraph/wire/src/ |
D | cbor.rs | 90 Value::Null => "null", in cbor_type_error()
|
/system/keymaster/android_keymaster/ |
D | remote_provisioning_utils.cpp | 212 .add(cppbor::Null())); // No ciphertext in buildCertReqRecipients()
|
D | android_keymaster.cpp | 416 cose_public_key_map.add(CoseKey::TEST_KEY, cppbor::Null()); in GenerateRkpKey()
|
/system/security/keystore2/src/ |
D | key_parameter.rs | 108 use rusqlite::types::{Null, ToSql, ToSqlOutput}; 427 $enum_name::$vname => Ok(ToSqlOutput::from(Null)), 1280 insert_into_keyparameter(&db, 1, Tag::CALLER_NONCE.0, &Null, SecurityLevel::STRONGBOX.0)?; in test_new_from_sql_bool() 1408 insert_into_keyparameter(&db, 1, Tag::ALGORITHM.0, &Null, 1)?; in test_invalid_conversion_from_sql()
|
D | database.rs | 378 Self::Password => Ok(ToSqlOutput::Owned(Value::Null)), in to_sql() 387 ValueRef::Null => Ok(Self::Password), in column_result()
|
/system/security/provisioner/ |
D | rkp_factory_extraction_lib.cpp | 112 .add(Null()) // nil for the payload in composeCertificateRequestV1()
|
/system/authgraph/core/src/ |
D | key.rs | 947 (RESETTABLE, Value::Null) => { in from_cbor_value() 956 (RKP_VM_MARKER, Value::Null) => { in from_cbor_value()
|
/system/libcppbor/src/ |
D | cppbor_parse.cpp | 96 std::unique_ptr<Item> item = std::make_unique<Null>(); in handleNull()
|
D | cppbor.cpp | 241 const Null* asNull = item->asSimple()->asNull(); in prettyPrintInternal()
|
/system/keymint/common/src/crypto/ |
D | ec.rs | 246 builder = builder.param(RKP_TEST_KEY_CBOR_MARKER, coset::cbor::value::Value::Null); in public_cose_key()
|
/system/chre/platform/shared/idl/ |
D | host_messages.fbs | 195 /// Null-terminated ASCII string containing the file name that contains the 286 /// Null-terminated ASCII string containing debugging information
|
/system/keymint/ta/src/ |
D | cert.rs | 22 asn1::{GeneralizedTime, Null, UtcTime}, 703 Null::from_der($tlv_bytes)?;
|