Home
last modified time | relevance | path

Searched refs:sa (Results 1 – 25 of 295) sorted by relevance

12345678910>>...12

/ohos5.0/base/security/security_component_manager/services/security_component_service/sa/test/
H A DBUILD.gn28 "${sec_comp_root_dir}/services/security_component_service/sa/sa_main",
29 "${sec_comp_root_dir}/services/security_component_service/sa/test/mock/include",
36 "${sec_comp_root_dir}/services/security_component_service/sa/sa_main/delay_exit_task.cpp",
37 "${sec_comp_root_dir}/services/security_component_service/sa/sa_main/first_use_dialog.cpp",
39 "${sec_comp_root_dir}/services/security_component_service/sa/sa_main/sec_comp_entity.cpp",
42 "${sec_comp_root_dir}/services/security_component_service/sa/sa_main/sec_comp_manager.cpp",
44 "${sec_comp_root_dir}/services/security_component_service/sa/sa_main/sec_comp_service.cpp",
45 "${sec_comp_root_dir}/services/security_component_service/sa/sa_main/sec_comp_stub.cpp",
112 "${sec_comp_root_dir}/services/security_component_service/sa/sa_main",
113 "${sec_comp_root_dir}/services/security_component_service/sa/test/mock/include",
[all …]
/ohos5.0/base/security/dlp_permission_service/services/dlp_permission/sa/test/
H A DBUILD.gn31 "${dlp_root_dir}/services/dlp_permission/sa/adapt",
32 "${dlp_root_dir}/services/dlp_permission/sa/mock",
33 "${dlp_root_dir}/services/dlp_permission/sa/sa_main",
34 "${dlp_root_dir}/services/dlp_permission/sa/sa_common",
35 "${dlp_root_dir}/services/dlp_permission/sa/storage/include",
41 "${dlp_root_dir}/services/dlp_permission/sa/test/unittest/src",
56 "${dlp_root_dir}/services/dlp_permission/sa/adapt/account_adapt.cpp",
59 "${dlp_root_dir}/services/dlp_permission/sa/adapt/file_operator.cpp",
71 "${dlp_root_dir}/services/dlp_permission/sa/mock/mock_utils.cpp",
105 "${dlp_root_dir}/services/dlp_permission/sa:dlp_hex_string_static",
[all …]
/ohos5.0/base/security/security_component_manager/test/fuzztest/security_component/service/
H A Dsecurity_component_fuzz.gni18 "${sec_comp_dir}/services/security_component_service/sa/sa_main",
23 "${sec_comp_dir}/services/security_component_service/sa/test/mock/include",
64 "${sec_comp_dir}/services/security_component_service/sa/sa_main/app_state_observer.cpp",
65 "${sec_comp_dir}/services/security_component_service/sa/sa_main/delay_exit_task.cpp",
66 "${sec_comp_dir}/services/security_component_service/sa/sa_main/first_use_dialog.cpp",
68 "${sec_comp_dir}/services/security_component_service/sa/sa_main/sec_comp_entity.cpp",
71 "${sec_comp_dir}/services/security_component_service/sa/sa_main/sec_comp_manager.cpp",
73 "${sec_comp_dir}/services/security_component_service/sa/sa_main/sec_comp_service.cpp",
74 "${sec_comp_dir}/services/security_component_service/sa/sa_main/sec_comp_stub.cpp",
75 "${sec_comp_dir}/services/security_component_service/sa/sa_main/sec_event_handler.cpp",
[all …]
/ohos5.0/base/hiviewdfx/hidumper/frameworks/native/src/executor/
H A Dipc_stat_dumper.cpp72 sptr<IRemoteObject> &sa) in CheckPidIsSa() argument
98 sa = sam->CheckSystemAbility(SAMGR_SA_ID); in CheckPidIsSa()
103 sptr<IRemoteObject> &sa) in CheckPidIsApp() argument
130 sa = sam->CheckSystemAbility(APP_MGR_SERVICE_ID); in CheckPidIsApp()
146 if (!CheckPidIsSa(sam, args, sa) && !CheckPidIsApp(sam, args, sa)) { in SetIpcStatCmd()
172 if (sa == nullptr) { in DoDumpIpcStat()
178 int ret = sa->Dump(rawParamFd, ipcDumpCmd_); in DoDumpIpcStat()
209 if (DoDumpIpcStat(sa) != DumpStatus::DUMP_OK) { in DumpIpcStat()
231 sptr<IRemoteObject> sa; in Execute() local
232 if (SetIpcStatCmd(sam, sa) != DumpStatus::DUMP_OK) { in Execute()
[all …]
/ohos5.0/build/ohos/sa_profile/
H A Dsa_profile.gni18 # sa info config file template
48 args = [ "--sa-input-files" ]
63 type = "sa"
87 # merge sa profile insall files and generate sa profile install info
131 "--src-sa-info-file",
152 "--sa-output-dir",
154 "--sa-output-zipfile",
196 "--sa-output-dir",
198 "--merged-sa-profile",
200 "--sa-install-info-file",
[all …]
/ohos5.0/foundation/communication/dsoftbus/components/nstackx/fillp/src/public/src/
H A Dcheck_gso_support.c36 static FILLP_INT SendUdpSegment(struct sockaddr_in *sa) in SendUdpSegment() argument
60 mh.msg_name = (struct sockaddr *)sa; in SendUdpSegment()
104 struct sockaddr_in sa = {0}; in CheckGSOSupport() local
105 socklen_t len = sizeof(sa); in CheckGSOSupport()
117 sa.sin_family = AF_INET; in CheckGSOSupport()
118 sa.sin_port = 0; in CheckGSOSupport()
119 sa.sin_addr.s_addr = inet_addr("127.0.0.1"); in CheckGSOSupport()
121 ret = bind(fd, (struct sockaddr *)&sa, len); in CheckGSOSupport()
127 ret = getsockname(fd, (struct sockaddr *)&sa, &len); in CheckGSOSupport()
133 if (SendUdpSegment(&sa) != FILLP_TRUE) { in CheckGSOSupport()
/ohos5.0/foundation/communication/dsoftbus/components/nstackx/nstackx_util/platform/unix/
H A Dsys_socket.c108 static int32_t SendUdpSegment(struct sockaddr_in *sa) in SendUdpSegment() argument
129 mh.msg_name = (struct sockaddr *)sa; in SendUdpSegment()
168 socklen_t len = sizeof(*sa); in LocalAddrBindAndGet()
170 sa->sin_family = AF_INET; in LocalAddrBindAndGet()
171 sa->sin_port = 0; in LocalAddrBindAndGet()
172 sa->sin_addr.s_addr = inet_addr("127.0.0.1"); in LocalAddrBindAndGet()
173 err = bind(fd, (struct sockaddr *)sa, len); in LocalAddrBindAndGet()
178 err = getsockname(fd, (struct sockaddr *)sa, &len); in LocalAddrBindAndGet()
190 struct sockaddr_in sa = {0}; in CheckGSOSupport() local
196 if (LocalAddrBindAndGet(fd, &sa) != NSTACKX_EOK) { in CheckGSOSupport()
[all …]
/ohos5.0/docs/zh-cn/device-dev/reference/hdi-apis/fingerauth/
H A Dunion_sa_command_param_fingerauth_v11.md6 sa命令参数。
20 | struct [SaCommandParamNone](_sa_command_param_none_fingerauth_v11.md)[none](#none) | sa命令参数为空。参考[…
21 …_fingerauth_v11.md)[enableSensorIllumination](#enablesensorillumination) | sa命令参数是打开光斑使能。参考[SaComm…
34 sa命令参数是打开光斑使能。参考[SaCommandParamEnableSensorIllumination](_sa_command_param_enable_sensor_illuminati…
44 sa命令参数为空。参考[SaCommandParamNone](_sa_command_param_none_fingerauth_v11.md)。
H A D_sa_command_fingerauth_v11.md6 sa命令ID
20 | enum [SaCommandId](_hdf_fingerprint_auth_v11.md#sacommandid)[id](#id) | sa命令ID。见[SaCommandId](_hd…
21 | union [SaCommandParam](union_sa_command_param_fingerauth_v11.md)[param](#param) | sa命令参数。见[SaComm…
34 sa命令ID。见[SaCommandId](_hdf_fingerprint_auth_v11.md#sacommandid)。
44 sa命令参数。见[SaCommandParam](union_sa_command_param_fingerauth_v11.md)。
H A D_fingerprint_auth_types_8idl_v11.md23 …nsorIllumination](_sa_command_param_enable_sensor_illumination_fingerauth_v11.md) | 光斑使能的sa命令参数。 |
24 | struct&nbsp;&nbsp;[SaCommandParamNone](_sa_command_param_none_fingerauth_v11.md) | sa命令参数为空。 |
25 | union&nbsp;&nbsp;[SaCommandParam](union_sa_command_param_fingerauth_v11.md) | sa命令参数。 |
26 | struct&nbsp;&nbsp;[SaCommand](_sa_command_fingerauth_v11.md) | sa命令ID |
35 …UMINATION = 2 , TURN_ON_SENSOR_ILLUMINATION = 3 , TURN_OFF_SENSOR_ILLUMINATION = 4 } | 枚举sa命令ID。 |
H A D_hdf_fingerprint_auth_v11.md31 …nsorIllumination](_sa_command_param_enable_sensor_illumination_fingerauth_v11.md) | 光斑使能的sa命令参数。 |
32 | struct&nbsp;&nbsp;[SaCommandParamNone](_sa_command_param_none_fingerauth_v11.md) | sa命令参数为空。 |
33 | union&nbsp;&nbsp;[SaCommandParam](union_sa_command_param_fingerauth_v11.md) | sa命令参数。 |
34 | struct&nbsp;&nbsp;[SaCommand](_sa_command_fingerauth_v11.md) | sa命令ID |
46 …UMINATION = 2 , TURN_ON_SENSOR_ILLUMINATION = 3 , TURN_OFF_SENSOR_ILLUMINATION = 4 } | 枚举sa命令ID。 |
131 枚举sa命令ID。
/ohos5.0/drivers/peripheral/camera/hal_c/hdi_cif/src/
H A Dstream_operator.cpp158 StreamAttributeCIF* sa = nullptr; in GetStreamAttributes() local
159 int ret = operator_->GetStreamAttributes(&sa, &count); in GetStreamAttributes()
160 if (ret != NO_ERROR || sa == nullptr || count == 0) { in GetStreamAttributes()
169 it->streamId_ = sa[i].streamId; in GetStreamAttributes()
170 it->width_ = sa[i].width; in GetStreamAttributes()
171 it->height_ = sa[i].height; in GetStreamAttributes()
172 it->overrideFormat_ = sa[i].overrideFormat; in GetStreamAttributes()
173 it->overrideDataspace_ = sa[i].overrideDataspace; in GetStreamAttributes()
174 it->producerUsage_ = sa[i].producerUsage; in GetStreamAttributes()
175 it->producerBufferCount_ = sa[i].producerBufferCount; in GetStreamAttributes()
[all …]
/ohos5.0/foundation/systemabilitymgr/samgr/
H A Dhisysevent.yaml17 __BASE: {type: FAULT, level: CRITICAL, desc: sa main abnormal exit}
18 REASON: {type: STRING, desc: sa main abnormal exit reason}
49 __BASE: {type: FAULT, level: CRITICAL, desc: sa crash}
53 __BASE: {type: BEHAVIOR, level: CRITICAL, desc: samgr sa load time cost}
55 KEY_STAGE: {type: INT32, desc: load sa key stage}
59 __BASE: {type: BEHAVIOR, level: CRITICAL, desc: samgr sa unload time cost}
61 KEY_STAGE: {type: INT32, desc: unload sa key stage}
72 __BASE: {type: FAULT, level: CRITICAL, desc: samgr sa load failed event}
79 __BASE: {type: BEHAVIOR, level: CRITICAL, desc: samgr sa load event}
86 __BASE: {type: BEHAVIOR, level: CRITICAL, desc: samgr sa unload event}
[all …]
/ohos5.0/foundation/distributedhardware/distributed_hardware_fwk/
H A Dhisysevent.yaml43 __BASE: {type: BEHAVIOR, level: CRITICAL, desc: dhfwk sa start on demand and init}
44 MSG: {type: STRING, desc: dhfwk sa start init}
47 __BASE: {type: BEHAVIOR, level: CRITICAL, desc: dhfwk sa init end}
48 MSG: {type: STRING, desc: dhfwk sa init end}
51 __BASE: {type: FAULT, level: CRITICAL, desc: dhfwk sa init failed}
52 ERR_CODE: {type: INT32, desc: dhfwk sa init failed result}
53 ERR_MSG: {type: STRING, desc: dhfwk sa init failed}
56 __BASE: {type: BEHAVIOR, level: CRITICAL, desc: dhfwk sa start exit on demand}
57 MSG: {type: STRING, desc: dhfwk sa stop}
60 __BASE: {type: BEHAVIOR, level: CRITICAL, desc: dhfwk sa finish exit on demand}
[all …]
/ohos5.0/base/security/dlp_permission_service/interfaces/inner_api/dlp_fuse/test/
H A DBUILD.gn35 "${dlp_root_dir}/services/dlp_permission/sa/adapt",
36 "${dlp_root_dir}/services/dlp_permission/sa/mock",
37 "${dlp_root_dir}/services/dlp_permission/sa/sa_common",
46 "${dlp_root_dir}/services/dlp_permission/sa/adapt/file_operator.cpp",
60 "${dlp_root_dir}/services/dlp_permission/sa:dlp_permission_serializer_static",
98 "${dlp_root_dir}/services/dlp_permission/sa/adapt",
99 "${dlp_root_dir}/services/dlp_permission/sa/mock",
100 "${dlp_root_dir}/services/dlp_permission/sa/sa_common",
118 "${dlp_root_dir}/services/dlp_permission/sa/adapt/file_operator.cpp",
135 "${dlp_root_dir}/services/dlp_permission/sa:dlp_permission_serializer_static",
/ohos5.0/base/security/huks/services/huks_standard/huks_service/main/os_dependency/
H A DBUILD.gn54 "sa/hks_dcm_callback_handler.cpp",
55 "sa/hks_sa.cpp",
58 "sa/hks_sa_interface.cpp",
62 sources += [ "sa/hks_osaccount_check.cpp" ]
70 sources += [ "sa/hks_event_observer.cpp" ]
101 "sa/sa_mgr",
115 "//base/security/huks/services/huks_standard/huks_service/main/os_dependency/sa",
133 …"//base/security/huks/services/huks_standard/huks_service/main/os_dependency/sa/sa_mgr/hks_samgr_s…
134 …"//base/security/huks/services/huks_standard/huks_service/main/os_dependency/sa/sa_mgr/hks_samgr_s…
/ohos5.0/base/hiviewdfx/hidumper/frameworks/native/include/executor/
H A Dipc_stat_dumper.h47 DumpStatus SetIpcStatCmd(const sptr<ISystemAbilityManager> &sam, sptr<IRemoteObject> &sa);
48 DumpStatus DumpIpcStat(const sptr<ISystemAbilityManager> &sam, sptr<IRemoteObject> &sa);
49 DumpStatus DoDumpIpcStat(sptr<IRemoteObject> &sa);
51 sptr<IRemoteObject> &sa);
53 sptr<IRemoteObject> &sa);
/ohos5.0/drivers/interface/fingerprint_auth/v1_1/
H A DFingerprintAuthTypes.idl98 * @brief Enumerates sa command ids.
104 /**< Indicates that the sa command is enable sensor illumination. */
106 /**< Indicates that the sa command is disable sensor illumination. */
108 /**< Indicates that the sa command is turn on sensor illumination. */
110 /**< Indicates that the sa command is turn off sensor illumination. */
134 * @brief Indicates sa command parameter none.
143 * @brief Indicates sa command parameter.
149 /**< Indicates that sa command parameter is none. See {@link SaCommandParamNone}. */
156 * @brief Indicates sa command.
162 /**< Indicates sa command id. See {@link SaCommandId}. */
[all …]
/ohos5.0/drivers/interface/fingerprint_auth/v1_2/
H A DFingerprintAuthTypes.idl100 * @brief Enumerates sa command ids.
106 /**< Indicates that the sa command is enable sensor illumination. */
108 /**< Indicates that the sa command is disable sensor illumination. */
110 /**< Indicates that the sa command is turn on sensor illumination. */
112 /**< Indicates that the sa command is turn off sensor illumination. */
136 * @brief Indicates sa command parameter none.
145 * @brief Indicates sa command parameter.
151 /**< Indicates that sa command parameter is none. See {@link SaCommandParamNone}. */
158 * @brief Indicates sa command.
164 /**< Indicates sa command id. See {@link SaCommandId}. */
[all …]
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/fingerprint_auth_v1_1/foo/fingerprint_auth/v1_1/
H A DFingerprintAuthTypes.idl98 * @brief Enumerates sa command ids.
104 /**< Indicates that the sa command is enable sensor illumination. */
106 /**< Indicates that the sa command is disable sensor illumination. */
108 /**< Indicates that the sa command is turn on sensor illumination. */
110 /**< Indicates that the sa command is turn off sensor illumination. */
134 * @brief Indicates sa command parameter none.
143 * @brief Indicates sa command parameter.
149 /**< Indicates that sa command parameter is none. See {@link SaCommandParamNone}. */
156 * @brief Indicates sa command.
162 /**< Indicates sa command id. See {@link SaCommandId}. */
[all …]
/ohos5.0/drivers/interface/face_auth/v1_1/
H A DFaceAuthTypes.idl80 * @brief Enumerates sa command ids.
86 /**< Indicates that the sa command is begin brightness increase. */
88 /**< Indicates that the sa command is end brightness increase. */
93 * @brief Indicates sa command parameter none.
102 * @brief Indicates sa command parameter.
108 /**< Indicates that sa command parameter is none. See {@link SaCommandParamNone}. */
113 * @brief Indicates sa command.
119 /**< Indicates sa command id. See {@link SaCommandId}. */
121 /**< Indicates sa command parameter. See {@link SaCommandParam}. */
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/face_auth_v1_1/foo/face_auth/v1_1/
H A DFaceAuthTypes.idl80 * @brief Enumerates sa command ids.
86 /**< Indicates that the sa command is begin brightness increase. */
88 /**< Indicates that the sa command is end brightness increase. */
93 * @brief Indicates sa command parameter none.
102 * @brief Indicates sa command parameter.
108 /**< Indicates that sa command parameter is none. See {@link SaCommandParamNone}. */
113 * @brief Indicates sa command.
119 /**< Indicates sa command id. See {@link SaCommandId}. */
121 /**< Indicates sa command parameter. See {@link SaCommandParam}. */
/ohos5.0/docs/zh-cn/device-dev/reference/hdi-apis/faceauth/
H A D_sa_command_faceauth_v11.md20 | enum [SaCommandId](_hdf_face_auth_v11.md#sacommandid)[id](#id) | sa命令ID。详细说明请参考[SaCommandId](_hdf…
21 | union [SaCommandParam](union_sa_command_param_faceauth_v11.md)[param](#param) | sa命令参数。详细说明请参考[Sa…
34 sa命令ID。详细说明请参考[SaCommandId](_hdf_face_auth_v11.md#sacommandid)。
44 sa命令参数。详细说明请参考[SaCommandParam](union_sa_command_param_faceauth_v11.md)。
/ohos5.0/base/web/webview/sa/
H A DBUILD.gn52 shlib_type = "sa"
56 "../sa/include/app_fwk_update_service.h",
57 "../sa/src/app_fwk_update_client.cpp",
58 "../sa/src/app_fwk_update_load_callback.cpp",
59 "../sa/src/app_fwk_update_service.cpp",
65 "../sa/include",
/ohos5.0/base/security/device_security_level/test/dslm_fuzz_test/dslm_fuzzer/
H A DBUILD.gn40 "../../../services/sa/common",
41 "../../../services/sa/standard",
52 "../../../services/sa/common/dslm_rpc_process.c",
53 "../../../services/sa/standard/dslm_callback_proxy.cpp",
54 "../../../services/sa/standard/dslm_ipc_process.cpp",
55 "../../../services/sa/standard/dslm_service.cpp",

12345678910>>...12