Home
last modified time | relevance | path

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

/base/security/asset/services/core_service/src/operations/common/
Dargument_check.rs54 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/
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.rs155 pub enum Value { enum
166 impl Drop for Value { implementation
420 fn into_value(self) -> Value; in into_value()
/base/hiviewdfx/hiappevent/frameworks/native/libhiappevent/include/
Dhiappevent_c.h94 union Value { union
/base/security/asset/services/plugin/src/
Dasset_plugin.rs206 condition_value: &[Value], in remove_with_specific_cond()
222 condition_value: &[Value], in ce_remove_with_specific_cond()
/base/security/asset/services/common/src/
Dcalling_info.rs48 pub fn build(specific_user_id: Option<Value>, process_info: &ProcessInfo) -> Self { in build()
/base/security/asset/services/db_operator/src/
Ddatabase_file_upgrade.rs80 fn get_value_from_db_map(db_map: &DbMap, key: &str) -> Result<Value> { in get_value_from_db_map()
Dstatement.rs136 pub(crate) fn query_column_auto_type(&self, i: i32) -> Result<Option<Value>> { in query_column_auto_type()
Dtable.rs63 fn bind_where_with_specific_condifion(datas: &[Value], stmt: &Statement, index: &mut i32) -> Result… in bind_where_with_specific_condifion()