Home
last modified time | relevance | path

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

/ohos5.0/base/security/access_token/frameworks/privacy/src/
H A Dpermission_used_record_parcel.cpp36 UsedRecordDetailParcel detailParcel; in Marshalling() local
37 detailParcel.detail = accRecord; in Marshalling()
38 out.WriteParcelable(&detailParcel); in Marshalling()
43 UsedRecordDetailParcel detailParcel; in Marshalling() local
44 detailParcel.detail = rejRecord; in Marshalling()
45 out.WriteParcelable(&detailParcel); in Marshalling()
69 sptr<UsedRecordDetailParcel> detailParcel = in.ReadParcelable<UsedRecordDetailParcel>(); in Unmarshalling() local
70 RELEASE_IF_FALSE(detailParcel != nullptr, permissionRecordParcel); in Unmarshalling()
71 permissionRecordParcel->permissionRecord.accessRecords.emplace_back(detailParcel->detail); in Unmarshalling()
82 sptr<UsedRecordDetailParcel> detailParcel = in.ReadParcelable<UsedRecordDetailParcel>(); in Unmarshalling() local
[all …]
/ohos5.0/base/security/access_token/frameworks/test/unittest/
H A Dprivacy_parcel_test.cpp397 UsedRecordDetailParcel detailParcel; in DataMarshalling() local
398 detailParcel.detail = detailIns; in DataMarshalling()
399 EXPECT_EQ(true, out.WriteParcelable(&detailParcel)); in DataMarshalling()
404 UsedRecordDetailParcel detailParcel; in DataMarshalling() local
405 detailParcel.detail = detailIns; in DataMarshalling()
406 EXPECT_EQ(true, out.WriteParcelable(&detailParcel)); in DataMarshalling()