Home
last modified time | relevance | path

Searched refs:Unmarshalling (Results 1 – 25 of 402) sorted by relevance

12345678910>>...17

/foundation/graphic/standard/rosen/modules/render_service_base/include/command/
Drs_command_templates.h59 static RSCommand* Unmarshalling(Parcel& parcel) in Unmarshalling() function
64 static inline RSCommandRegister<commandType, commandSubType, Unmarshalling> registry;
89 static RSCommand* Unmarshalling(Parcel& parcel) in Unmarshalling() function
92 if (!RSMarshallingHelper::Unmarshalling(parcel, parameter1)) { in Unmarshalling()
98 static inline RSCommandRegister<commandType, commandSubType, Unmarshalling> registry;
125 static RSCommand* Unmarshalling(Parcel& parcel) in Unmarshalling() function
129 if (!RSMarshallingHelper::Unmarshalling(parcel, parameter1)) { in Unmarshalling()
132 if (!RSMarshallingHelper::Unmarshalling(parcel, parameter2)) { in Unmarshalling()
138 static inline RSCommandRegister<commandType, commandSubType, Unmarshalling> registry;
167 static RSCommand* Unmarshalling(Parcel& parcel) in Unmarshalling() function
[all …]
Drs_node_showing_command.h114 static RSCommand* Unmarshalling(Parcel& parcel) in Unmarshalling() function
118 if (!RSMarshallingHelper::Unmarshalling(parcel, targetId) || in Unmarshalling()
119 !RSMarshallingHelper::Unmarshalling(parcel, timeoutNS)) { in Unmarshalling()
136 return RSMarshallingHelper::Unmarshalling(parcel, type) && type == commandType && in CheckHeader()
137 RSMarshallingHelper::Unmarshalling(parcel, subtype) && subtype == commandSubType && in CheckHeader()
138 RSMarshallingHelper::Unmarshalling(parcel, targetId) && targetId == targetId_ && in CheckHeader()
139 RSMarshallingHelper::Unmarshalling(parcel, timeoutNS) && timeoutNS == timeoutNS_; in CheckHeader()
144 if (!(RSMarshallingHelper::Unmarshalling(parcel, result_))) { in ReadFromParcel()
148 return RSMarshallingHelper::Unmarshalling(parcel, value_); in ReadFromParcel()
153 static inline RSCommandRegister<commandType, commandSubType, Unmarshalling> registry;
/foundation/graphic/standard/rosen/modules/render_service_base/src/transaction/
Drs_marshalling_helper.cpp45 bool RSMarshallingHelper::Unmarshalling(Parcel& parcel, TYPE& val) \
78 bool RSMarshallingHelper::Unmarshalling(Parcel& parcel, sk_sp<SkData>& val) in Unmarshalling() function in OHOS::Rosen::RSMarshallingHelper
99 bool RSMarshallingHelper::Unmarshalling(Parcel& parcel, sk_sp<SkFlattenable>& val) in Unmarshalling() function in OHOS::Rosen::RSMarshallingHelper
103 Unmarshalling(parcel, data); in Unmarshalling()
119 bool RSMarshallingHelper::Unmarshalling(Parcel& parcel, SkPath& val) in Unmarshalling() function in OHOS::Rosen::RSMarshallingHelper
122 Unmarshalling(parcel, data); in Unmarshalling()
133 bool RSMarshallingHelper::Unmarshalling(Parcel& parcel, RSShader& val) in Unmarshalling() function in OHOS::Rosen::RSMarshallingHelper
136 if (!Unmarshalling(parcel, flattenablePtr)) { in Unmarshalling()
154 bool RSMarshallingHelper::Unmarshalling(Parcel& parcel, RSPath& val) in Unmarshalling() function in OHOS::Rosen::RSMarshallingHelper
157 Unmarshalling(parcel, data); in Unmarshalling()
[all …]
/foundation/communication/bluetooth/services/bluetooth_standard/ipc/parcel/
Dbluetooth_map_mce_parameter.h28 static BluetoothIProfileMapAction *Unmarshalling(Parcel &parcel);
60 static BluetoothIProfileMasInstanceInfoList *Unmarshalling(Parcel &parcel);
92 static BluetoothIProfileSendMessageParameters *Unmarshalling(Parcel &parcel);
125 static BluetoothIProfileSetOwnerStatusParameters *Unmarshalling(Parcel &parcel);
158 static BluetoothIProfileGetConversationListingParameters *Unmarshalling(Parcel &parcel);
190 static BluetoothIProfileGetMessageParameters *Unmarshalling(Parcel &parcel);
223 static BluetoothIProfileGetMessagesListingParameters *Unmarshalling(Parcel &parcel);
255 static BluetoothIProfileBMessage *Unmarshalling(Parcel &parcel);
287 static BluetoothIProfileMessagesListing *Unmarshalling(Parcel &parcel);
325 static BluetoothIProfileConversationListing *Unmarshalling(Parcel &parcel);
[all …]
Dbluetooth_pbap_pce_parameter.h48 static BluetoothIPbapPullPhoneBookParam *Unmarshalling(Parcel &parcel);
75 static BluetoothIPbapPullvCardListingParam *Unmarshalling(Parcel &parcel);
111 static BluetoothIPbapPullvCardEntryParam *Unmarshalling(Parcel &parcel);
148 static BluetoothIPbapPhoneBookData *Unmarshalling(Parcel &parcel);
/foundation/graphic/standard/rosen/modules/render_service_base/src/animation/
Drs_render_transition_effect.cpp37 RSRenderTransitionEffect* RSRenderTransitionEffect::Unmarshalling(Parcel& parcel) in Unmarshalling() function in OHOS::Rosen::RSRenderTransitionEffect
46 return RSTransitionFade::Unmarshalling(parcel); in Unmarshalling()
48 return RSTransitionScale::Unmarshalling(parcel); in Unmarshalling()
50 return RSTransitionTranslate::Unmarshalling(parcel); in Unmarshalling()
52 return RSTransitionRotate::Unmarshalling(parcel); in Unmarshalling()
63 RSRenderTransitionEffect* RSTransitionFade::Unmarshalling(Parcel& parcel) in Unmarshalling() function in OHOS::Rosen::RSTransitionFade
66 if (!RSMarshallingHelper::Unmarshalling(parcel, alpha)) { in Unmarshalling()
79 RSRenderTransitionEffect* RSTransitionScale::Unmarshalling(Parcel& parcel) in Unmarshalling() function in OHOS::Rosen::RSTransitionScale
97 RSRenderTransitionEffect* RSTransitionTranslate::Unmarshalling(Parcel& parcel) in Unmarshalling() function in OHOS::Rosen::RSTransitionTranslate
115 RSRenderTransitionEffect* RSTransitionRotate::Unmarshalling(Parcel& parcel) in Unmarshalling() function in OHOS::Rosen::RSTransitionRotate
Drs_interpolator.cpp31 RSInterpolator* RSInterpolator::Unmarshalling(Parcel& parcel) in Unmarshalling() function in OHOS::Rosen::RSInterpolator
40 ret = RSCustomInterpolator::Unmarshalling(parcel); in Unmarshalling()
43 ret = RSCubicBezierInterpolator::Unmarshalling(parcel); in Unmarshalling()
46 ret = RSSpringInterpolator::Unmarshalling(parcel); in Unmarshalling()
54 RSCustomInterpolator* RSCustomInterpolator::Unmarshalling(Parcel& parcel) in Unmarshalling() function in OHOS::Rosen::RSCustomInterpolator
Drs_render_transition.cpp52 RSRenderTransition* RSRenderTransition::Unmarshalling(Parcel& parcel) in Unmarshalling() function in OHOS::Rosen::RSRenderTransition
69 if (!RSMarshallingHelper::Unmarshalling(parcel, effects_)) { in ParseParam()
73 if (!RSMarshallingHelper::Unmarshalling(parcel, isTransitionIn_)) { in ParseParam()
77 std::shared_ptr<RSInterpolator> interpolator(RSInterpolator::Unmarshalling(parcel)); in ParseParam()
/foundation/communication/netmanager_ext/frameworks/native/ethernetclient/src/
Dstatic_configuration.cpp56 sptr<StaticConfiguration> StaticConfiguration::Unmarshalling(Parcel &parcel) in Unmarshalling() function in OHOS::NetManagerStandard::StaticConfiguration
62 sptr<INetAddr> ipAddr = INetAddr::Unmarshalling(parcel); in Unmarshalling()
68 sptr<INetAddr> route = INetAddr::Unmarshalling(parcel); in Unmarshalling()
74 sptr<INetAddr> gateway = INetAddr::Unmarshalling(parcel); in Unmarshalling()
80 sptr<INetAddr> netMask = INetAddr::Unmarshalling(parcel); in Unmarshalling()
91 sptr<INetAddr> netAddr = INetAddr::Unmarshalling(parcel); in Unmarshalling()
Dinterface_configuration.cpp33 sptr<InterfaceConfiguration> InterfaceConfiguration::Unmarshalling(Parcel &parcel) in Unmarshalling() function in OHOS::NetManagerStandard::InterfaceConfiguration
44 sptr<StaticConfiguration> sc = StaticConfiguration::Unmarshalling(parcel); in Unmarshalling()
/foundation/multimedia/media_standard/services/services/sa_media/ipc/
Davcodeclist_parcel.h34 …static bool Unmarshalling(MessageParcel &parcel, std::vector<CapabilityData> &capabilityDataArray);
35 static bool Unmarshalling(MessageParcel &parcel, std::map<ImgSize, Range> &mapSizeToRange);
36 …static bool Unmarshalling(MessageParcel &parcel, std::map<int32_t, std::vector<int32_t>> &mapIntTo…
/foundation/graphic/standard/rosen/modules/render_service_base/include/animation/
Drs_render_transition_effect.h47 static RSRenderTransitionEffect* Unmarshalling(Parcel& parcel);
61 static RSRenderTransitionEffect* Unmarshalling(Parcel& parcel);
78 static RSRenderTransitionEffect* Unmarshalling(Parcel& parcel);
97 static RSRenderTransitionEffect* Unmarshalling(Parcel& parcel);
114 static RSRenderTransitionEffect* Unmarshalling(Parcel& parcel);
Drs_render_curve_animation.h61 static RSRenderCurveAnimation* Unmarshalling(Parcel& parcel) in Unmarshalling() function
94 if (!(RSMarshallingHelper::Unmarshalling(parcel, startValue_) && in ParseParam()
95 RSMarshallingHelper::Unmarshalling(parcel, endValue_))) { in ParseParam()
99 std::shared_ptr<RSInterpolator> interpolator(RSInterpolator::Unmarshalling(parcel)); in ParseParam()
/foundation/distributeddatamgr/distributeddatamgr/frameworks/innerkitsimpl/distributeddatafwk/src/
Ditypes_util.cpp29 bool ITypesUtil::Unmarshalling(MessageParcel &data, Blob &output) in Unmarshalling() function in OHOS::DistributedKv::ITypesUtil
42 bool ITypesUtil::Unmarshalling(MessageParcel &data, std::vector<Blob> &output) in Unmarshalling() function in OHOS::DistributedKv::ITypesUtil
52 bool ITypesUtil::Unmarshalling(MessageParcel &data, std::vector<Entry> &output) in Unmarshalling() function in OHOS::DistributedKv::ITypesUtil
65 bool ITypesUtil::Unmarshalling(MessageParcel &data, Entry &output) in Unmarshalling() function in OHOS::DistributedKv::ITypesUtil
67 if (!Unmarshalling(data, output.key)) { in Unmarshalling()
70 return Unmarshalling(data, output.value); in Unmarshalling()
84 bool ITypesUtil::Unmarshalling(MessageParcel &data, DeviceInfo &output) in Unmarshalling() function in OHOS::DistributedKv::ITypesUtil
99 bool ITypesUtil::Unmarshalling(MessageParcel &data, std::vector<DeviceInfo> &output) in Unmarshalling() function in OHOS::DistributedKv::ITypesUtil
125 bool ITypesUtil::Unmarshalling(MessageParcel &parcel, ChangeNotification &output) in Unmarshalling() function in OHOS::DistributedKv::ITypesUtil
128 if (!Unmarshalling(parcel, insertEntries)) { in Unmarshalling()
[all …]
/foundation/distributeddatamgr/distributeddatamgr/frameworks/innerkitsimpl/distributeddatafwk/include/
Ditypes_util.h29 static bool Unmarshalling(MessageParcel &data, Blob &output);
32 static bool Unmarshalling(MessageParcel &data, std::vector<Blob> &output);
35 static bool Unmarshalling(MessageParcel &data, Entry &output);
38 static bool Unmarshalling(MessageParcel &data, std::vector<Entry> &output);
41 static bool Unmarshalling(MessageParcel &data, DeviceInfo &output);
44 static bool Unmarshalling(MessageParcel &data, std::vector<DeviceInfo> &output);
47 static bool Unmarshalling(MessageParcel &parcel, ChangeNotification &output);
149 bool Reader(T &entry) { return ITypesUtil::Unmarshalling(*this, entry); } in Reader()
/foundation/graphic/standard/rosen/modules/render_service_base/include/transaction/
Drs_marshalling_helper.h55 static bool Unmarshalling(Parcel& parcel, T& val) in Unmarshalling() function
67 static bool Unmarshalling(Parcel& parcel, TYPE& val);
99 static bool Unmarshalling(Parcel& parcel, std::shared_ptr<TEMPLATE<T>>& val);
109 static bool Unmarshalling(Parcel& parcel, std::vector<T>& val);
/foundation/deviceprofile/device_profile_core/services/core/src/
Dprofile_change_notification.cpp55 bool ProfileChangeNotification::Unmarshalling(Parcel& parcel) in Unmarshalling() function in OHOS::DeviceProfile::ProfileChangeNotification
65 if (!profileEntry.Unmarshalling(parcel)) { in Unmarshalling()
82 bool ProfileEntry::Unmarshalling(Parcel& parcel) in Unmarshalling() function in OHOS::DeviceProfile::ProfileEntry
/foundation/multimodalinput/input/service/connect_manager/include/
Dmultimodal_input_connect_def_parcel.h31 static ConnectReqParcel *Unmarshalling(Parcel& in);
43 static ConnectRespParcel *Unmarshalling(Parcel &in);
/foundation/aafwk/standard/services/abilitymgr/test/unittest/phone/info_test/
Dinfo_test.cpp70 StackInfo *obj = info.Unmarshalling(parcel);
97 MissionStackInfo *obj = missionStackInfo_.Unmarshalling(parcel);
135 MissionRecordInfo *obj = missionRecordInfo_.Unmarshalling(parcel);
183 AbilityRecordInfo *obj = abilityRecordInfo_.Unmarshalling(parcel);
219 LifeCycleStateInfo *obj = lifeCycleStateInfo_.Unmarshalling(parcel);
246 ImageInfo *obj = imageInfo_.Unmarshalling(parcel);
272 MissionDescriptionInfo *obj = missionDescriptionInfo_.Unmarshalling(parcel);
300 AbilityMissionInfo *obj = recentMissionInfo_.Unmarshalling(parcel);
/foundation/aafwk/standard/frameworks/kits/content/cpp/test/unittest/common/
Dwant_params_test.cpp77 std::shared_ptr<WantParams> wantParamsOut_(WantParams::Unmarshalling(in));
96 std::shared_ptr<WantParams> wantParamsOut_(WantParams::Unmarshalling(in));
115 std::shared_ptr<WantParams> wantParamsOut_(WantParams::Unmarshalling(in));
137 std::shared_ptr<WantParams> wantParamsOut_(WantParams::Unmarshalling(in));
/foundation/aafwk/standard/interfaces/innerkits/ability_manager/include/
Dmission_snapshot.h39 static MissionPixelMap *Unmarshalling(Parcel &parcel);
49 static MissionSnapshot *Unmarshalling(Parcel &parcel);
/foundation/communication/netmanager_base/interfaces/innerkits/netpolicyclient/include/
Dnet_policy_quota_policy.h48 static bool Unmarshalling(Parcel &parcel, NetPolicyQuotaPolicy &quotaPolicy);
49 static bool Unmarshalling(Parcel &parcel, std::vector<NetPolicyQuotaPolicy> &quotaPolicies);
/foundation/multimedia/media_standard/services/services/avcodeclist/ipc/
Davcodeclist_service_stub.cpp131 (void)MediaParcel::Unmarshalling(data, format); in FindVideoDecoder()
139 (void)MediaParcel::Unmarshalling(data, format); in FindVideoEncoder()
147 (void)MediaParcel::Unmarshalling(data, format); in FindAudioDecoder()
155 (void)MediaParcel::Unmarshalling(data, format); in FindAudioEncoder()
/foundation/appexecfwk/standard/interfaces/innerkits/appexecfwk_base/include/
Dapplication_info.h47 static Metadata *Unmarshalling(Parcel &parcel);
58 static CustomizeData *Unmarshalling(Parcel &parcel);
92 static CompatibleApplicationInfo* Unmarshalling(Parcel& parcel);
170 static ApplicationInfo *Unmarshalling(Parcel &parcel);
/foundation/multimodalinput/input/service/connect_manager/src/
Dmultimodal_input_connect_def_parcel.cpp32 ConnectReqParcel *ConnectReqParcel::Unmarshalling(Parcel& in) in Unmarshalling() function in OHOS::MMI::ConnectReqParcel
60 ConnectRespParcel *ConnectRespParcel::Unmarshalling(Parcel &in) in Unmarshalling() function in OHOS::MMI::ConnectRespParcel

12345678910>>...17