Searched defs:Value (Results 1 – 5 of 5) sorted by relevance
/base/security/asset/services/core_service/src/operations/common/ |
D | argument_check.rs | 54 fn check_array_size(tag: &Tag, value: &Value, min: usize, max: usize) -> Result<()> { in check_array_size() 55 let Value::Bytes(v) = value else { in check_array_size() localVariable 70 let Value::Number(n) = value else { in check_enum_variant() localVariable 84 fn check_valid_bits(tag: &Tag, value: &Value, min_bits: u32, max_bits: u32) -> Result<()> { in check_valid_bits() 85 let Value::Number(n) = value else { in check_valid_bits() localVariable 100 fn check_number_range(tag: &Tag, value: &Value, min: u32, max: u32) -> Result<()> { in check_number_range() 101 let Value::Number(n) = value else { in check_number_range() localVariable 115 fn check_tag_range(tag: &Tag, value: &Value, tags: &[Tag]) -> Result<()> { in check_tag_range() 116 let Value::Number(n) = value else { in check_tag_range() localVariable 134 let Value::Number(n) = value else { in check_user_id() localVariable
|
/base/security/asset/frameworks/definition/src/ |
D | extension.rs | 43 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()
|
D | lib.rs | 152 pub enum Value { enum 163 impl Drop for Value { implementation 414 fn into_value(self) -> Value; in into_value()
|
/base/hiviewdfx/hiappevent/frameworks/native/libhiappevent/include/ |
D | hiappevent_c.h | 94 union Value { union
|
/base/security/asset/services/db_operator/src/ |
D | statement.rs | 136 pub(crate) fn query_column_auto_type(&self, i: i32) -> Result<Option<Value>> { in query_column_auto_type()
|