Home
last modified time | relevance | path

Searched defs:Value (Results 1 – 7 of 7) sorted by relevance

/base/security/asset/services/core_service/src/operations/common/
Dargument_check.rs52 fn check_array_size(tag: &Tag, value: &Value, min: usize, max: usize) -> Result<()> { in check_array_size()
53 let Value::Bytes(v) = value else { in check_array_size() localVariable
68 let Value::Number(n) = value else { in check_enum_variant() localVariable
82 fn check_valid_bits(tag: &Tag, value: &Value, min_bits: u32, max_bits: u32) -> Result<()> { in check_valid_bits()
83 let Value::Number(n) = value else { in check_valid_bits() localVariable
98 fn check_number_range(tag: &Tag, value: &Value, min: u32, max: u32) -> Result<()> { in check_number_range()
99 let Value::Number(n) = value else { in check_number_range() localVariable
113 fn check_tag_range(tag: &Tag, value: &Value, tags: &[Tag]) -> Result<()> { in check_tag_range()
114 let Value::Number(n) = value else { in check_tag_range() localVariable
/base/security/asset/frameworks/definition/src/
Dextension.rs43 fn into_value(self) -> Value { in into_value()
48 impl Conversion for Value { implementation
57 fn into_value(self) -> Value { in into_value()
67 fn into_value(self) -> Value { in into_value()
77 fn into_value(self) -> Value { in into_value()
87 fn into_value(self) -> Value { in into_value()
Dlib.rs123 pub enum Value { enum
134 impl Drop for Value { implementation
328 fn into_value(self) -> Value; in into_value()
/base/telephony/telephony_data/common/include/
Dparser_util.h26 class Value; variable
/base/telephony/core_service/services/network_search/include/
Doperator_name_utils.h24 class Value; variable
/base/hiviewdfx/hiappevent/frameworks/native/libhiappevent/include/
Dhiappevent_c.h94 union Value { union
/base/security/asset/services/db_operator/src/
Dstatement.rs136 pub(crate) fn query_column_auto_type(&self, i: i32) -> Result<Option<Value>> { in query_column_auto_type()