Home
last modified time | relevance | path

Searched refs:DistributedInterfaceCode (Results 1 – 5 of 5) sorted by relevance

/ohos5.0/foundation/bundlemanager/distributed_bundle_framework/services/dbms/src/
H A Ddistributed_bms_host.cpp53 case static_cast<uint32_t>(DistributedInterfaceCode::GET_REMOTE_ABILITY_INFO): in OnRemoteRequest()
54 case static_cast<uint32_t>(DistributedInterfaceCode::GET_REMOTE_ABILITY_INFO_WITH_LOCALE): in OnRemoteRequest()
56 case static_cast<uint32_t>(DistributedInterfaceCode::GET_REMOTE_ABILITY_INFOS): in OnRemoteRequest()
57 case static_cast<uint32_t>(DistributedInterfaceCode::GET_REMOTE_ABILITY_INFOS_WITH_LOCALE): in OnRemoteRequest()
59 case static_cast<uint32_t>(DistributedInterfaceCode::GET_ABILITY_INFO): in OnRemoteRequest()
60 case static_cast<uint32_t>(DistributedInterfaceCode::GET_ABILITY_INFO_WITH_LOCALE): in OnRemoteRequest()
62 case static_cast<uint32_t>(DistributedInterfaceCode::GET_ABILITY_INFOS): in OnRemoteRequest()
63 case static_cast<uint32_t>(DistributedInterfaceCode::GET_ABILITY_INFOS_WITH_LOCALE): in OnRemoteRequest()
65 case static_cast<uint32_t>(DistributedInterfaceCode::GET_DISTRIBUTED_BUNDLE_INFO): in OnRemoteRequest()
67 case static_cast<uint32_t>(DistributedInterfaceCode::GET_DISTRIBUTED_BUNDLE_NAME): in OnRemoteRequest()
/ohos5.0/foundation/bundlemanager/distributed_bundle_framework/interfaces/inner_api/src/
H A Ddistributed_bms_proxy.cpp67 DistributedInterfaceCode::GET_REMOTE_ABILITY_INFO_WITH_LOCALE, data, remoteAbilityInfo); in GetRemoteAbilityInfo()
109 DistributedInterfaceCode::GET_REMOTE_ABILITY_INFOS_WITH_LOCALE, data, remoteAbilityInfos); in GetRemoteAbilityInfos()
143 DistributedInterfaceCode::GET_ABILITY_INFO_WITH_LOCALE, data, remoteAbilityInfo); in GetAbilityInfo()
146 DistributedInterfaceCode::GET_ABILITY_INFO, data, remoteAbilityInfo); in GetAbilityInfo()
178 DistributedInterfaceCode::GET_ABILITY_INFOS_WITH_LOCALE, data, remoteAbilityInfos); in GetAbilityInfos()
181 DistributedInterfaceCode::GET_ABILITY_INFOS, data, remoteAbilityInfos); in GetAbilityInfos()
204 DistributedInterfaceCode::GET_DISTRIBUTED_BUNDLE_INFO, data, distributedBundleInfo); in GetDistributedBundleInfo()
228 … int32_t result = SendRequest(DistributedInterfaceCode::GET_DISTRIBUTED_BUNDLE_NAME, data, reply); in GetDistributedBundleName()
253 int32_t DistributedBmsProxy::GetParcelableInfo(DistributedInterfaceCode code, MessageParcel &data, … in GetParcelableInfo()
279 DistributedInterfaceCode code, MessageParcel &data, std::vector<T> &parcelableInfos) in GetParcelableInfos()
[all …]
/ohos5.0/foundation/bundlemanager/distributed_bundle_framework/services/dbms/test/unittest/distributed_bms_host_test/
H A Ddistributed_bms_host_test.cpp63 (DistributedInterfaceCode::GET_REMOTE_ABILITY_INFO), data, reply, option);
82 …int res = host.OnRemoteRequest(static_cast<uint32_t>(DistributedInterfaceCode::GET_REMOTE_ABILITY_…
102 …int res = host.OnRemoteRequest(static_cast<uint32_t>(DistributedInterfaceCode::GET_REMOTE_ABILITY_…
126 (DistributedInterfaceCode::GET_REMOTE_ABILITY_INFOS), data, reply, option);
149 (DistributedInterfaceCode::GET_REMOTE_ABILITY_INFOS_WITH_LOCALE), data, reply, option);
172 (DistributedInterfaceCode::GET_REMOTE_ABILITY_INFOS_WITH_LOCALE), data, reply, option);
194 (DistributedInterfaceCode::GET_ABILITY_INFO), data, reply, option);
217 (DistributedInterfaceCode::GET_ABILITY_INFO_WITH_LOCALE), data, reply, option);
241 (DistributedInterfaceCode::GET_ABILITY_INFOS), data, reply, option);
265 (DistributedInterfaceCode::GET_ABILITY_INFOS_WITH_LOCALE), data, reply, option);
[all …]
/ohos5.0/foundation/bundlemanager/distributed_bundle_framework/interfaces/inner_api/include/
H A Ddistributed_bms_proxy.h121 int32_t SendRequest(DistributedInterfaceCode code, MessageParcel &data, MessageParcel &reply);
125 … int32_t GetParcelableInfo(DistributedInterfaceCode code, MessageParcel &data, T &parcelableInfo);
127 …int32_t GetParcelableInfos(DistributedInterfaceCode code, MessageParcel &data, std::vector<T> &par…
H A Ddistributed_bundle_ipc_interface_code.h22 enum class DistributedInterfaceCode : uint32_t { enum