Home
last modified time | relevance | path

Searched refs:authUserInfoParcel (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/base/security/dlp_permission_service/frameworks/dlp_permission/src/
H A Dauth_user_info_parcel.cpp49 auto authUserInfoParcel = new (std::nothrow) AuthUserInfoParcel(); in Unmarshalling() local
50 if (authUserInfoParcel == nullptr) { in Unmarshalling()
57 delete authUserInfoParcel; in Unmarshalling()
58 authUserInfoParcel = nullptr; in Unmarshalling()
64 delete authUserInfoParcel; in Unmarshalling()
65 authUserInfoParcel = nullptr; in Unmarshalling()
71 delete authUserInfoParcel; in Unmarshalling()
72 authUserInfoParcel = nullptr; in Unmarshalling()
78 delete authUserInfoParcel; in Unmarshalling()
79 authUserInfoParcel = nullptr; in Unmarshalling()
[all …]
H A Ddlp_policy_parcel.cpp37 sptr<AuthUserInfoParcel> authUserInfoParcel = new (std::nothrow) AuthUserInfoParcel(); in Marshalling() local
38 if (authUserInfoParcel == nullptr) { in Marshalling()
42 authUserInfoParcel->authUserInfo_ = userList[i]; in Marshalling()
43 if (!(out.WriteParcelable(authUserInfoParcel))) { in Marshalling()
246 sptr<AuthUserInfoParcel> authUserInfoParcel = in.ReadParcelable<AuthUserInfoParcel>(); in ReadParcel() local
247 if (authUserInfoParcel == nullptr) { in ReadParcel()
251 policyParcel->policyParams_.authUsers_.emplace_back(authUserInfoParcel->authUserInfo_); in ReadParcel()