Home
last modified time | relevance | path

Searched refs:build_str_param (Results 1 – 6 of 6) sorted by relevance

/ohos5.0/base/security/asset/services/core_service/src/
H A Dsys_event.rs26 use hisysevent::{build_number_param, build_str_param, write, EventType, HiSysEventParam};
69 .set_param(build_str_param!(SysEvent::FUNCTION, func_name)) in upload_statistic_system_event()
71 .set_param(build_str_param!(SysEvent::CALLER, owner_info.clone())) in upload_statistic_system_event()
73 … .set_param(build_str_param!(SysEvent::EXTRA, format!("CallingUid={}", Skeleton::calling_uid()))) in upload_statistic_system_event()
93 .set_param(build_str_param!(SysEvent::FUNCTION, func_name)) in upload_fault_system_event()
95 .set_param(build_str_param!(SysEvent::CALLER, owner_info.clone())) in upload_fault_system_event()
97 .set_param(build_str_param!(SysEvent::EXTRA, e.msg.clone())) in upload_fault_system_event()
/ohos5.0/base/hiviewdfx/hisysevent/test/unittest/rust/src/
H A Dmain.rs32 hisysevent::build_str_param!("STRING_SINGLE", "test_hisysevent_write_001"), in test_hisysevent_write_001()
74 &[hisysevent::build_str_param!("STRING_SINGLE", "test_hisysevent_add_remove_watcher_001")] in test_hisysevent_add_remove_watcher_001()
81 &[hisysevent::build_str_param!("STRING_SINGLE", "test_hisysevent_add_remove_watcher_001")] in test_hisysevent_add_remove_watcher_001()
100 &[hisysevent::build_str_param!("STRING_SINGLE", "test_hisysevent_query_001")] in test_hisysevent_query_001()
107 &[hisysevent::build_str_param!("STRING_SINGLE", "test_hisysevent_query_001")] in test_hisysevent_query_001()
/ohos5.0/base/security/code_signature/services/key_enable/src/
H A Dcs_hisysevent.rs25 hisysevent::build_str_param!("STRING_SINGLE", cert_type), in report_add_key_err()
38 hisysevent::build_str_param!("STRING_SINGLE", profile_path), in report_parse_profile_err()
/ohos5.0/base/hiviewdfx/faultloggerd/interfaces/rust/panic_handler/
H A Dlib.rs83 &[hisysevent::build_str_param!("MODULE", process_name.as_str()), in report_info_handler()
84 hisysevent::build_str_param!("REASON", panic_reason.as_str()), in report_info_handler()
88 hisysevent::build_str_param!("SUMMARY", thread_label.as_str()), in report_info_handler()
/ohos5.0/base/request/request/services/src/manage/scheduler/
H A Dmod.rs305 use hisysevent::{build_number_param, build_str_param}; in sys_event()
318 .param(build_str_param!(crate::sys_event::TASKS_TYPE, action)) in sys_event()
/ohos5.0/base/hiviewdfx/hisysevent/interfaces/rust/innerkits/src/
H A Dmacros.rs246 macro_rules! build_str_param { macro