/base/telephony/ril_adapter/frameworks/src/ |
D | hril_data_parcel.cpp | 22 bool SetupDataCallResultInfo::ReadFromParcel(Parcel &parcel) in ReadFromParcel() argument 24 if (!Read(parcel, flag)) { in ReadFromParcel() 27 if (!Read(parcel, reason)) { in ReadFromParcel() 30 if (!Read(parcel, retryTime)) { in ReadFromParcel() 33 if (!Read(parcel, cid)) { in ReadFromParcel() 36 if (!Read(parcel, active)) { in ReadFromParcel() 39 if (!Read(parcel, type)) { in ReadFromParcel() 42 if (!Read(parcel, netPortName)) { in ReadFromParcel() 45 if (!Read(parcel, address)) { in ReadFromParcel() 48 if (!Read(parcel, dns)) { in ReadFromParcel() [all …]
|
D | hril_sim_parcel.cpp | 20 bool CardStatusInfo::ReadFromParcel(Parcel &parcel) in ReadFromParcel() argument 22 if (!ReadBaseInt32(parcel, index)) { in ReadFromParcel() 25 if (!ReadBaseInt32(parcel, simType)) { in ReadFromParcel() 28 if (!ReadBaseInt32(parcel, simState)) { in ReadFromParcel() 34 bool CardStatusInfo::Marshalling(Parcel &parcel) const in Marshalling() 36 if (!WriteBaseInt32(parcel, index)) { in Marshalling() 39 if (!WriteBaseInt32(parcel, simType)) { in Marshalling() 42 if (!WriteBaseInt32(parcel, simState)) { in Marshalling() 48 std::shared_ptr<CardStatusInfo> CardStatusInfo::UnMarshalling(Parcel &parcel) in UnMarshalling() argument 51 if (param == nullptr || !param->ReadFromParcel(parcel)) { in UnMarshalling() [all …]
|
D | hril_network_parcel.cpp | 22 std::shared_ptr<OperatorInfoResult> OperatorInfoResult::UnMarshalling(Parcel &parcel) in UnMarshalling() argument 25 if (param == nullptr || !param->ReadFromParcel(parcel)) { in UnMarshalling() 31 bool OperatorInfoResult::ReadFromParcel(Parcel &parcel) in ReadFromParcel() argument 33 if (!ReadBaseString(parcel, longName)) { in ReadFromParcel() 36 if (!ReadBaseString(parcel, shortName)) { in ReadFromParcel() 39 if (!ReadBaseString(parcel, numeric)) { in ReadFromParcel() 45 bool OperatorInfoResult::Marshalling(Parcel &parcel) const in Marshalling() 47 if (!WriteBaseString(parcel, longName)) { in Marshalling() 50 if (!WriteBaseString(parcel, shortName)) { in Marshalling() 53 if (!WriteBaseString(parcel, numeric)) { in Marshalling() [all …]
|
D | hril_sms_parcel.cpp | 22 bool GsmSmsMessageInfo::ReadFromParcel(Parcel &parcel) in ReadFromParcel() argument 24 if (!ReadBaseInt32(parcel, serial)) { in ReadFromParcel() 27 if (!ReadBaseString(parcel, smscPdu)) { in ReadFromParcel() 30 if (!ReadBaseString(parcel, pdu)) { in ReadFromParcel() 33 if (!ReadBaseInt32(parcel, state)) { in ReadFromParcel() 39 bool GsmSmsMessageInfo::Marshalling(Parcel &parcel) const in Marshalling() 41 if (!WriteBaseInt32(parcel, serial)) { in Marshalling() 44 if (!WriteBaseString(parcel, smscPdu)) { in Marshalling() 47 if (!WriteBaseString(parcel, pdu)) { in Marshalling() 50 if (!WriteBaseInt32(parcel, state)) { in Marshalling() [all …]
|
D | hril_call_parcel.cpp | 21 std::shared_ptr<DialInfo> DialInfo::UnMarshalling(Parcel &parcel) in UnMarshalling() argument 24 if (param == nullptr || !param->ReadFromParcel(parcel)) { in UnMarshalling() 30 bool DialInfo::ReadFromParcel(Parcel &parcel) in ReadFromParcel() argument 32 if (!Read(parcel, serial)) { in ReadFromParcel() 35 if (!Read(parcel, address)) { in ReadFromParcel() 38 if (!Read(parcel, clir)) { in ReadFromParcel() 44 bool DialInfo::Marshalling(Parcel &parcel) const in Marshalling() 46 if (!Write(parcel, serial)) { in Marshalling() 49 if (!Write(parcel, address)) { in Marshalling() 52 if (!Write(parcel, clir)) { in Marshalling() [all …]
|
D | hril_base_parcel.cpp | 21 bool Read(Parcel &parcel, int8_t &value) in Read() argument 23 return parcel.ReadInt8(value); in Read() 26 bool Read(Parcel &parcel, uint8_t &value) in Read() argument 28 return parcel.ReadUint8(value); in Read() 31 bool Read(Parcel &parcel, int32_t &value) in Read() argument 33 return parcel.ReadInt32(value); in Read() 36 bool Read(Parcel &parcel, uint32_t &value) in Read() argument 38 return parcel.ReadUint32(value); in Read() 41 bool Read(Parcel &parcel, int64_t &value) in Read() argument 43 return parcel.ReadInt64(value); in Read() [all …]
|
D | hril_modem_parcel.cpp | 20 bool UniInfo::ReadFromParcel(Parcel &parcel) in ReadFromParcel() argument 22 if (!Read(parcel, serial)) { in ReadFromParcel() 25 if (!Read(parcel, gsmIndex)) { in ReadFromParcel() 28 if (!Read(parcel, flag)) { in ReadFromParcel() 31 if (!Read(parcel, arg1)) { in ReadFromParcel() 34 if (!Read(parcel, arg2)) { in ReadFromParcel() 37 if (!Read(parcel, strTmp)) { in ReadFromParcel() 43 bool UniInfo::Marshalling(Parcel &parcel) const in Marshalling() 45 if (!Write(parcel, serial)) { in Marshalling() 48 if (!Write(parcel, gsmIndex)) { in Marshalling() [all …]
|
/base/security/deviceauth/common_lib/impl/src/ |
D | hc_parcel.c | 25 HcParcel parcel; in CreateParcel() local 26 (void)memset_s(&parcel, sizeof(parcel), 0, sizeof(parcel)); in CreateParcel() 27 parcel.allocUnit = allocUnit; in CreateParcel() 28 if (parcel.allocUnit == 0) { in CreateParcel() 29 parcel.allocUnit = PARCEL_DEFAULT_INCREASE_STEP; in CreateParcel() 32 parcel.data = (char *)ClibMalloc(size, 0); in CreateParcel() 33 if (parcel.data != NULL) { in CreateParcel() 34 parcel.length = size; in CreateParcel() 37 return parcel; in CreateParcel() 40 void DeleteParcel(HcParcel *parcel) in DeleteParcel() argument [all …]
|
/base/security/deviceauth/common_lib/interfaces/ |
D | hc_parcel.h | 38 void DeleteParcel(HcParcel *parcel); 39 void ClearParcel(HcParcel *parcel); 40 void ResetParcel(HcParcel *parcel, uint32_t size, uint32_t allocUnit); 41 HcBool ParcelReadWithoutPopData(HcParcel *parcel, void *dst, uint32_t dataSize); 42 HcBool ParcelRead(HcParcel *parcel, void *dst, uint32_t dataSize); 43 HcBool ParcelWrite(HcParcel *parcel, const void *src, uint32_t dataSize); 44 HcBool ParcelReadRevert(HcParcel *parcel, void *dst, uint32_t dataSize); 45 HcBool ParcelWriteRevert(HcParcel *parcel, const void *src, uint32_t dataSize); 46 uint32_t GetParcelDataSize(const HcParcel *parcel); 47 const char *GetParcelData(const HcParcel *parcel); [all …]
|
/base/location/location_common/common/source/ |
D | location.cpp | 44 void Location::ReadFromParcel(Parcel& parcel) in ReadFromParcel() argument 46 latitude_ = parcel.ReadDouble(); in ReadFromParcel() 47 longitude_ = parcel.ReadDouble(); in ReadFromParcel() 48 altitude_ = parcel.ReadDouble(); in ReadFromParcel() 49 accuracy_ = parcel.ReadFloat(); in ReadFromParcel() 50 speed_ = parcel.ReadFloat(); in ReadFromParcel() 51 direction_ = parcel.ReadDouble(); in ReadFromParcel() 52 timeStamp_ = parcel.ReadInt64(); in ReadFromParcel() 53 timeSinceBoot_ = parcel.ReadInt64(); in ReadFromParcel() 56 void Location::ReadFromParcelLocation(Parcel& parcel) in ReadFromParcelLocation() argument [all …]
|
D | geo_address.cpp | 58 std::unique_ptr<GeoAddress> GeoAddress::Unmarshalling(Parcel& parcel) in Unmarshalling() argument 61 geoAddress->ReadFromParcel(parcel); in Unmarshalling() 106 bool GeoAddress::Marshalling(Parcel& parcel) const in Marshalling() 108 parcel.WriteString(m_localeLanguage); in Marshalling() 109 parcel.WriteString(m_localeCountry); in Marshalling() 111 parcel.WriteInt32(0); in Marshalling() 113 parcel.WriteInt32(m_descriptions.size()); in Marshalling() 115 parcel.WriteInt32(iter->first); in Marshalling() 116 parcel.WriteString(iter->second); in Marshalling() 119 parcel.WriteString(m_placeName); in Marshalling() [all …]
|
/base/hiviewdfx/hiview/plugins/faultlogger/service/idl/src/ |
D | faultlog_info_ohos.cpp | 21 bool FaultLogInfoOhos::Marshalling(Parcel& parcel) const in Marshalling() 23 if (!parcel.WriteInt64(time)) { in Marshalling() 27 if (!parcel.WriteInt32(uid)) { in Marshalling() 31 if (!parcel.WriteInt32(pid)) { in Marshalling() 35 if (!parcel.WriteInt32(faultLogType)) { in Marshalling() 39 if (!parcel.WriteString(module)) { in Marshalling() 43 if (!parcel.WriteString(reason)) { in Marshalling() 47 if (!parcel.WriteString(summary)) { in Marshalling() 51 if (!parcel.WriteString(logPath)) { in Marshalling() 56 if (!parcel.WriteUint32(size)) { in Marshalling() [all …]
|
/base/powermgr/power_manager/frameworks/native/ |
D | running_lock_info.cpp | 24 bool RunningLockInfo::ReadFromParcelWorkTriggerList(Parcel& parcel, WorkTriggerList& list) in ReadFromParcelWorkTriggerList() argument 27 if (!parcel.ReadUint32(listSize)) { in ReadFromParcelWorkTriggerList() 32 std::shared_ptr<WorkTrigger> workTrigger(parcel.ReadParcelable<WorkTrigger>()); in ReadFromParcelWorkTriggerList() 42 bool RunningLockInfo::ReadFromParcel(Parcel& parcel) in ReadFromParcel() argument 45 READ_PARCEL_WITH_RET(parcel, String, name, false); in ReadFromParcel() 46 READ_PARCEL_WITH_RET(parcel, Uint32, readType, false); in ReadFromParcel() 48 return ReadFromParcelWorkTriggerList(parcel, workTriggerlist); in ReadFromParcel() 51 RunningLockInfo* RunningLockInfo::Unmarshalling(Parcel& parcel) in Unmarshalling() argument 58 if (!info->ReadFromParcel(parcel)) { in Unmarshalling() 65 bool RunningLockInfo::MarshallingWorkTriggerList(Parcel& parcel, const WorkTriggerList& list) in MarshallingWorkTriggerList() argument [all …]
|
/base/telephony/core_service/frameworks/native/src/ |
D | cell_location.cpp | 21 CellLocation *CellLocation::Unmarshalling(Parcel &parcel) in Unmarshalling() argument 26 bool GsmCellLocation::Marshalling(Parcel &parcel) const in Marshalling() 28 if (!parcel.WriteInt32(static_cast<int32_t>(CellLocation::CellType::CELL_TYPE_GSM))) { in Marshalling() 31 if (!parcel.WriteInt32(cellId_)) { in Marshalling() 34 if (!parcel.WriteInt32(lac_)) { in Marshalling() 37 if (!parcel.WriteInt32(psc_)) { in Marshalling() 40 if (!parcel.WriteInt64(timeStamp_)) { in Marshalling() 46 GsmCellLocation *GsmCellLocation::Unmarshalling(Parcel &parcel) in Unmarshalling() argument 52 if (!param->ReadFromParcel(parcel)) { in Unmarshalling() 59 bool GsmCellLocation::ReadFromParcel(Parcel &parcel) in ReadFromParcel() argument [all …]
|
D | cell_information.cpp | 90 CellInformation *CellInformation::Unmarshalling(Parcel &parcel) in Unmarshalling() argument 158 bool GsmCellInformation::Marshalling(Parcel &parcel) const in Marshalling() 160 if (!parcel.WriteInt32(static_cast<int32_t>(CellInformation::CellType::CELL_TYPE_GSM))) { in Marshalling() 163 if (!parcel.WriteString(mcc_)) { in Marshalling() 166 if (!parcel.WriteString(mnc_)) { in Marshalling() 169 if (!parcel.WriteInt32(arfcn_)) { in Marshalling() 172 if (!parcel.WriteInt32(cellId_)) { in Marshalling() 175 if (!parcel.WriteInt32(bsic_)) { in Marshalling() 178 if (!parcel.WriteInt32(lac_)) { in Marshalling() 181 if (!parcel.WriteInt64(timeStamp_)) { in Marshalling() [all …]
|
/base/telephony/ril_adapter/interfaces/innerkits/include/ |
D | hril_base_parcel.h | 31 bool Read(Parcel &parcel, int8_t &value); 32 bool Read(Parcel &parcel, uint8_t &value); 33 bool Read(Parcel &parcel, int32_t &value); 34 bool Read(Parcel &parcel, uint32_t &value); 35 bool Read(Parcel &parcel, int64_t &value); 36 bool Read(Parcel &parcel, uint64_t &value); 37 bool Read(Parcel &parcel, bool &value); 38 bool Read(Parcel &parcel, std::string &value); 41 bool Read(Parcel &parcel, E &e) in Read() argument 46 return Read(parcel, *((int32_t *)&e)); in Read() [all …]
|
D | hril_network_parcel.h | 28 bool ReadFromParcel(Parcel &parcel); 29 virtual bool Marshalling(Parcel &parcel) const override; 30 std::shared_ptr<OperatorInfoResult> UnMarshalling(Parcel &parcel); 40 bool ReadFromParcel(Parcel &parcel); 41 virtual bool Marshalling(Parcel &parcel) const override; 42 std::shared_ptr<AvailableNetworkInfo> UnMarshalling(Parcel &parcel); 50 bool ReadFromParcel(Parcel &parcel); 51 virtual bool Marshalling(Parcel &parcel) const override; 52 std::shared_ptr<AvailableNetworkList> UnMarshalling(Parcel &parcel); 61 bool ReadFromParcel(Parcel &parcel); [all …]
|
D | hril_call_parcel.h | 28 bool ReadFromParcel(Parcel &parcel); 29 virtual bool Marshalling(Parcel &parcel) const override; 30 std::shared_ptr<DialInfo> UnMarshalling(Parcel &parcel); 36 bool ReadFromParcel(Parcel &parcel); 37 virtual bool Marshalling(Parcel &parcel) const override; 38 std::shared_ptr<UusData> UnMarshalling(Parcel &parcel); 46 bool ReadFromParcel(Parcel &parcel); 47 virtual bool Marshalling(Parcel &parcel) const override; 48 std::shared_ptr<GetClipResult> UnMarshalling(Parcel &parcel); 56 bool ReadFromParcel(Parcel &parcel); [all …]
|
/base/accessibility/frameworks/asacfwk/src/ |
D | accessibility_event_info.cpp | 22 bool AccessibilityMemo::ReadFromParcel(Parcel &parcel) in ReadFromParcel() argument 25 READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(Int32, parcel, channelId_); in ReadFromParcel() 26 READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(Int32, parcel, componentId_); in ReadFromParcel() 27 READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(Int32, parcel, windowId_); in ReadFromParcel() 28 READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(Int32, parcel, currentIndex_); in ReadFromParcel() 29 READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(Int32, parcel, beginIndex_); in ReadFromParcel() 30 READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(Int32, parcel, endIndex_); in ReadFromParcel() 31 READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(StringVector, parcel, &contents_); in ReadFromParcel() 32 READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(String, parcel, componentType_); in ReadFromParcel() 33 READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(String, parcel, description_); in ReadFromParcel() [all …]
|
/base/accessibility/services/test/mock/ |
D | accessibility_window_info_mock.cpp | 23 bool AccessibilityWindowInfo::ReadFromParcel(Parcel &parcel) in ReadFromParcel() argument 26 READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(Int32, parcel, windowType); in ReadFromParcel() 28 READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(Int32, parcel, windowLayer_); in ReadFromParcel() 29 READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(Int32, parcel, windowId_); in ReadFromParcel() 30 READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(Int32, parcel, parentId_); in ReadFromParcel() 31 READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(String, parcel, windowTitle_); in ReadFromParcel() 32 READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(Int32Vector, parcel, &childIds_); in ReadFromParcel() 33 READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(Int32, parcel, anchorId_); in ReadFromParcel() 34 READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(Int32, parcel, childNum_); in ReadFromParcel() 35 READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(Int32, parcel, channelId_); in ReadFromParcel() [all …]
|
/base/accessibility/services/test/moduletest/aamstest/aams_accessibility_touch_guider_test/mock/ |
D | accessibility_window_info_mock.cpp | 23 bool AccessibilityWindowInfo::ReadFromParcel(Parcel &parcel) in ReadFromParcel() argument 26 READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(Int32, parcel, windowType); in ReadFromParcel() 28 READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(Int32, parcel, windowLayer_); in ReadFromParcel() 29 READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(Int32, parcel, windowId_); in ReadFromParcel() 30 READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(Int32, parcel, parentId_); in ReadFromParcel() 31 READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(String, parcel, windowTitle_); in ReadFromParcel() 32 READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(Int32Vector, parcel, &childIds_); in ReadFromParcel() 33 READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(Int32, parcel, anchorId_); in ReadFromParcel() 34 READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(Int32, parcel, childNum_); in ReadFromParcel() 35 READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(Int32, parcel, channelId_); in ReadFromParcel() [all …]
|
/base/notification/ans_standard/frameworks/ans/native/src/ |
D | notification.cpp | 221 bool Notification::MarshallingBool(Parcel &parcel) const in MarshallingBool() 223 if (!parcel.WriteBool(enableLight_)) { in MarshallingBool() 228 if (!parcel.WriteBool(enableSound_)) { in MarshallingBool() 233 if (!parcel.WriteBool(enableViration_)) { in MarshallingBool() 238 if (!parcel.WriteBool(isRemoveAllowed_)) { in MarshallingBool() 246 bool Notification::MarshallingString(Parcel &parcel) const in MarshallingString() 248 if (!parcel.WriteString(key_)) { in MarshallingString() 254 if (!parcel.WriteString(sound_->ToString())) { in MarshallingString() 260 if (!parcel.WriteString(deviceId_)) { in MarshallingString() 268 bool Notification::MarshallingInt32(Parcel &parcel) const in MarshallingInt32() [all …]
|
/base/accessibility/services/test/moduletest/aamstest/aams_accessibility_touchEvent_injector_test/mock/ |
D | accessibility_window_info_mock.cpp | 23 bool AccessibilityWindowInfo::ReadFromParcel(Parcel &parcel) in ReadFromParcel() argument 26 READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(Int32, parcel, windowType); in ReadFromParcel() 28 READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(Int32, parcel, windowLayer_); in ReadFromParcel() 29 READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(Int32, parcel, windowId_); in ReadFromParcel() 30 READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(Int32, parcel, parentId_); in ReadFromParcel() 31 READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(String, parcel, windowTitle_); in ReadFromParcel() 32 READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(Int32Vector, parcel, &childIds_); in ReadFromParcel() 33 READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(Int32, parcel, anchorId_); in ReadFromParcel() 34 READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(Int32, parcel, childNum_); in ReadFromParcel() 35 READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(Int32, parcel, channelId_); in ReadFromParcel() [all …]
|
/base/accessibility/services/aams/test/mock/ |
D | accessibility_window_info_mock.cpp | 26 bool AccessibilityWindowInfo::ReadFromParcel(Parcel &parcel) in ReadFromParcel() argument 29 READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(Int32, parcel, windowType); in ReadFromParcel() 31 READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(Int32, parcel, windowLayer_); in ReadFromParcel() 32 READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(Int32, parcel, windowId_); in ReadFromParcel() 33 READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(Int32, parcel, parentId_); in ReadFromParcel() 34 READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(String, parcel, windowTitle_); in ReadFromParcel() 35 READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(Int32Vector, parcel, &childIds_); in ReadFromParcel() 36 READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(Int32, parcel, anchorId_); in ReadFromParcel() 37 READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(Int32, parcel, childNum_); in ReadFromParcel() 38 READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(Int32, parcel, channelId_); in ReadFromParcel() [all …]
|
/base/user_iam/auth_executor_mgr/common/database/src/ |
D | idm_file_manager.c | 72 static ResultCode StreamWrite(Buffer *parcel, void *from, uint32_t size) in StreamWrite() argument 74 if (!IsBufferValid(parcel) || from == NULL) { in StreamWrite() 78 if (GetRemainSpace(parcel) < size) { in StreamWrite() 79 ResultCode result = CapacityExpansion(parcel, size); in StreamWrite() 85 if (memcpy_s(GetStreamAddress(parcel), GetRemainSpace(parcel), from, size) != EOK) { in StreamWrite() 89 parcel->contentSize += size; in StreamWrite() 93 static ResultCode StreamWriteEnrolledInfo(Buffer *parcel, LinkedList *enrolledList) in StreamWriteEnrolledInfo() argument 95 if (!IsBufferValid(parcel) || enrolledList == NULL) { in StreamWriteEnrolledInfo() 100 ResultCode ret = StreamWrite(parcel, &size, sizeof(uint32_t)); in StreamWriteEnrolledInfo() 111 if (StreamWrite(parcel, temp->data, sizeof(EnrolledInfoHal)) != RESULT_SUCCESS) { in StreamWriteEnrolledInfo() [all …]
|