/foundation/communication/nfc/services/src/nci_adapter/nci_native_default/src/ |
H A D | nci_tag_impl_default.cpp | 30 auto tag = TagNativeImpl::GetInstance().GetTag(tagDiscId).lock(); in GetTechList() local 31 if (tag) { in GetTechList() 32 return tag->GetTechList(); in GetTechList() 39 auto tag = TagNativeImpl::GetInstance().GetTag(tagDiscId).lock(); in GetConnectedTech() local 40 if (tag) { in GetConnectedTech() 41 return tag->GetConnectedTech(); in GetConnectedTech() 48 auto tag = TagNativeImpl::GetInstance().GetTag(tagDiscId).lock(); in GetTechExtrasData() local 49 if (tag) { in GetTechExtrasData() 50 return tag->GetTechExtrasData(); in GetTechExtrasData() 57 auto tag in GetTagUid() local 66 auto tag = TagNativeImpl::GetInstance().GetTag(tagDiscId).lock(); Connect() local 75 auto tag = TagNativeImpl::GetInstance().GetTag(tagDiscId).lock(); Disconnect() local 84 auto tag = TagNativeImpl::GetInstance().GetTag(tagDiscId).lock(); Reconnect() local 93 auto tag = TagNativeImpl::GetInstance().GetTag(tagDiscId).lock(); Transceive() local 102 auto tag = TagNativeImpl::GetInstance().GetTag(tagDiscId).lock(); ReadNdef() local 111 auto tag = TagNativeImpl::GetInstance().GetTag(tagDiscId).lock(); FindNdefTech() local 120 auto tag = TagNativeImpl::GetInstance().GetTag(tagDiscId).lock(); WriteNdef() local 129 auto tag = TagNativeImpl::GetInstance().GetTag(tagDiscId).lock(); FormatNdef() local 143 auto tag = TagNativeImpl::GetInstance().GetTag(tagDiscId).lock(); SetNdefReadOnly() local 152 auto tag = TagNativeImpl::GetInstance().GetTag(tagDiscId).lock(); DetectNdefInfo() local 161 auto tag = TagNativeImpl::GetInstance().GetTag(tagDiscId).lock(); IsTagFieldOn() local 170 auto tag = TagNativeImpl::GetInstance().GetTag(tagDiscId).lock(); StartFieldOnChecking() local 179 auto tag = TagNativeImpl::GetInstance().GetTag(tagDiscId_).lock(); StopFieldChecking() local 187 auto tag = TagNativeImpl::GetInstance().GetTag(tagDiscId).lock(); SetTimeout() local 195 auto tag = TagNativeImpl::GetInstance().GetTag(tagDiscId).lock(); GetTimeout() local 204 auto tag = TagNativeImpl::GetInstance().GetTag(tagDiscId).lock(); ResetTimeout() local [all...] |
/foundation/multimedia/media_foundation/engine/include/plugin/common/ |
H A D | plugin_meta.h | 32 template<Tag tag> \ 36 auto iter = map_.find(tag); \ 40 map_.insert(std::make_pair(tag, value)); \ 43 template<Tag tag> \ 47 if (map_.count(tag) == 0) { \ 50 return AnyCast<ValueType>(&map_.at(tag), value); \ 58 DEFINE_INSERT_GET_FUNC(tag == Tag::BUFFER_ALLOCATOR or tag == Tag::VIDEO_SURFACE, 61 DEFINE_INSERT_GET_FUNC(tag == Tag::SRC_INPUT_TYPE, SrcInputType); 62 DEFINE_INSERT_GET_FUNC(tag 142 operator [](const Tag &tag) operator []() argument [all...] |
/foundation/ability/ability_runtime/services/common/include/ |
H A D | hilog_tag_wrapper.h | 99 inline uint32_t GetOffset(AAFwkLogTag tag, AAFwkLogTag base) in GetOffset() argument 101 return static_cast<uint32_t>(tag) - static_cast<uint32_t>(base); in GetOffset() 104 inline const char* GetDomainName0(AAFwkLogTag tag) in GetDomainName0() argument 107 uint32_t offset = GetOffset(tag, AAFwkLogTag::DEFAULT); in GetDomainName0() 114 inline const char* GetDomainName1(AAFwkLogTag tag) in GetDomainName1() argument 118 uint32_t offset = GetOffset(tag, AAFwkLogTag::APPDFR); in GetDomainName1() 125 inline const char* GetDomainName2(AAFwkLogTag tag) in GetDomainName2() argument 128 uint32_t offset = GetOffset(tag, AAFwkLogTag::JSENV); in GetDomainName2() 135 inline const char* GetDomainName3(AAFwkLogTag tag) in GetDomainName3() argument 139 uint32_t offset = GetOffset(tag, AAFwkLogTa in GetDomainName3() 146 GetDomainName4(AAFwkLogTag tag) GetDomainName4() argument 157 GetDomainName5(AAFwkLogTag tag) GetDomainName5() argument 169 GetDomainName6(AAFwkLogTag tag) GetDomainName6() argument 187 GetTagInfoFromDomainId(AAFwkLogTag tag) GetTagInfoFromDomainId() argument [all...] |
/foundation/graphic/graphic_2d/rosen/modules/graphics_effect/src/ |
H A D | ge_visual_effect.cpp | 31 void GEVisualEffect::SetParam(const std::string& tag, int32_t param) in SetParam() argument 34 visualEffectImpl_->SetParam(tag, param); in SetParam() 37 void GEVisualEffect::SetParam(const std::string& tag, int64_t param) in SetParam() argument 39 visualEffectImpl_->SetParam(tag, param); in SetParam() 42 void GEVisualEffect::SetParam(const std::string& tag, float param) in SetParam() argument 44 visualEffectImpl_->SetParam(tag, param); in SetParam() 47 void GEVisualEffect::SetParam(const std::string& tag, double param) in SetParam() argument 49 visualEffectImpl_->SetParam(tag, param); in SetParam() 52 void GEVisualEffect::SetParam(const std::string& tag, const char* const param) in SetParam() argument 54 visualEffectImpl_->SetParam(tag, para in SetParam() 57 SetParam(const std::string& tag, const Drawing::Matrix param) SetParam() argument 62 SetParam(const std::string& tag, const std::vector<std::pair<float, float>> param) SetParam() argument 67 SetParam(const std::string& tag, bool param) SetParam() argument 72 SetParam(const std::string& tag, uint32_t param) SetParam() argument [all...] |
H A D | ge_visual_effect_impl.cpp | 81 void GEVisualEffectImpl::SetParam(const std::string& tag, int32_t param) in SetParam() argument 89 if (tag == GE_FILTER_KAWASE_BLUR_RADIUS) { in SetParam() 99 if (tag == GE_FILTER_MESA_BLUR_RADIUS) { in SetParam() 102 if (tag == GE_FILTER_MESA_BLUR_STRETCH_TILE_MODE) { in SetParam() 112 if (tag == GE_FILTER_LINEAR_GRADIENT_BLUR_DIRECTION) { in SetParam() 122 if (tag == GE_FILTER_MAGNIFIER_ROTATE_DEGREE) { in SetParam() 132 void GEVisualEffectImpl::SetParam(const std::string& tag, bool param) in SetParam() argument 140 if (tag == GE_FILTER_LINEAR_GRADIENT_BLUR_IS_OFF_SCREEN) { in SetParam() 150 void GEVisualEffectImpl::SetParam(const std::string& tag, int64_t param) {} in SetParam() argument 152 void GEVisualEffectImpl::SetParam(const std::string& tag, floa argument 185 SetParam(const std::string& tag, double param) SetParam() argument 187 SetParam(const std::string& tag, const char* const param) SetParam() argument 189 SetParam(const std::string& tag, const std::shared_ptr<Drawing::Image> param) SetParam() argument 191 SetParam(const std::string& tag, const std::shared_ptr<Drawing::ColorFilter> param) SetParam() argument 193 SetParam(const std::string& tag, const Drawing::Matrix param) SetParam() argument 211 SetParam(const std::string& tag, const std::vector<std::pair<float, float>> param) SetParam() argument 228 SetParam(const std::string& tag, const uint32_t param) SetParam() argument 251 SetMESABlurParams(const std::string& tag, float param) SetMESABlurParams() argument 282 SetAIBarParams(const std::string& tag, float param) SetAIBarParams() argument 307 SetGreyParams(const std::string& tag, float param) SetGreyParams() argument 324 SetLinearGradientBlurParams(const std::string& tag, float param) SetLinearGradientBlurParams() argument 349 SetMagnifierParamsFloat(const std::string& tag, float param) SetMagnifierParamsFloat() argument 382 SetMagnifierParamsUint32(const std::string& tag, uint32_t param) SetMagnifierParamsUint32() argument 405 SetWaterRippleParams(const std::string& tag, float param) SetWaterRippleParams() argument [all...] |
/foundation/resourceschedule/ffrt/src/dfx/trace/ |
H A D | ffrt_trace.h | 69 bool IsTagEnabled(uint64_t tag); 162 #define _StartTrace(label, tag, limit) \ 166 func(label, tag, limit); \ 176 #define _StartAsyncTrace(label, tag, tid, limit) \ 180 func(label, tag, tid, limit); \ 183 #define _FinishAsyncTrace(label, tag, tid) \ 187 func(label, tag, tid); \ 191 #define _TraceCount(label, tag, value) \ 195 func(label, tag, value); \ 199 #define FFRT_TRACE_BEGIN(tag) \ [all...] |
/foundation/communication/nfc/interfaces/inner_api/tags/ |
H A D | nfca_tag.cpp | 22 NfcATag::NfcATag(std::weak_ptr<TagInfo> tag) : BasicTagSession(tag, KITS::TagTechnology::NFC_A_TECH) in NfcATag() argument 24 AppExecFwk::PacMap extraData = tag.lock()->GetTechExtrasByTech(KITS::TagTechnology::NFC_A_TECH); in NfcATag() 29 if (tag.lock()->IsTechSupported(KITS::TagTechnology::NFC_MIFARE_CLASSIC_TECH)) { in NfcATag() 30 AppExecFwk::PacMap mifareExtra = tag.lock()->GetTechExtrasByTech( in NfcATag() 32 sak_ = tag.lock()->GetIntExtrasData(mifareExtra, TagInfo::SAK); in NfcATag() 36 static_cast<uint32_t>(tag.lock()->GetIntExtrasData(extraData, TagInfo::SAK)); in NfcATag() 37 atqa_ = tag.lock()->GetStringExtrasData(extraData, TagInfo::ATQA); in NfcATag() 41 std::shared_ptr<NfcATag> NfcATag::GetTag(std::weak_ptr<TagInfo> tag) in GetTag() argument 43 if (tag in GetTag() [all...] |
H A D | nfcf_tag.cpp | 21 NfcFTag::NfcFTag(std::weak_ptr<TagInfo> tag) : BasicTagSession(tag, KITS::TagTechnology::NFC_F_TECH) in NfcFTag() argument 23 if (tag.expired()) { in NfcFTag() 24 ErrorLog("NfcFTag::NfcFTag tag invalid "); in NfcFTag() 27 AppExecFwk::PacMap extraData = tag.lock()->GetTechExtrasByTech(KITS::TagTechnology::NFC_F_TECH); in NfcFTag() 32 pmm_ = tag.lock()->GetStringExtrasData(extraData, TagInfo::NFCF_PMM); in NfcFTag() 33 systemCode_ = tag.lock()->GetStringExtrasData(extraData, TagInfo::NFCF_SC); in NfcFTag() 36 std::shared_ptr<NfcFTag> NfcFTag::GetTag(std::weak_ptr<TagInfo> tag) in GetTag() argument 38 if (tag.expired() || !tag in GetTag() [all...] |
H A D | nfcb_tag.cpp | 22 NfcBTag::NfcBTag(std::weak_ptr<TagInfo> tag) : BasicTagSession(tag, KITS::TagTechnology::NFC_B_TECH) in NfcBTag() argument 24 AppExecFwk::PacMap extraData = tag.lock()->GetTechExtrasByTech(KITS::TagTechnology::NFC_B_TECH); in NfcBTag() 30 appData_ = tag.lock()->GetStringExtrasData(extraData, TagInfo::APP_DATA); in NfcBTag() 31 protocolInfo_ = tag.lock()->GetStringExtrasData(extraData, TagInfo::PROTOCOL_INFO); in NfcBTag() 36 std::shared_ptr<NfcBTag> NfcBTag::GetTag(std::weak_ptr<TagInfo> tag) in GetTag() argument 38 if (tag.expired() || !tag.lock()->IsTechSupported(KITS::TagTechnology::NFC_B_TECH)) { in GetTag() 42 return std::make_shared<NfcBTag>(tag); in GetTag()
|
H A D | isodep_tag.cpp | 22 IsoDepTag::IsoDepTag(std::weak_ptr<TagInfo> tag) : BasicTagSession(tag, KITS::TagTechnology::NFC_ISODEP_TECH) in IsoDepTag() argument 24 AppExecFwk::PacMap extraData = tag.lock()->GetTechExtrasByTech(KITS::TagTechnology::NFC_ISODEP_TECH); in IsoDepTag() 29 historicalBytes_ = tag.lock()->GetStringExtrasData(extraData, TagInfo::HISTORICAL_BYTES); in IsoDepTag() 30 hiLayerResponse_ = tag.lock()->GetStringExtrasData(extraData, TagInfo::HILAYER_RESPONSE); in IsoDepTag() 35 std::shared_ptr<IsoDepTag> IsoDepTag::GetTag(std::weak_ptr<TagInfo> tag) in GetTag() argument 37 if (tag.expired() || !tag.lock()->IsTechSupported(KITS::TagTechnology::NFC_ISODEP_TECH)) { in GetTag() 42 return std::make_shared<IsoDepTag>(tag); in GetTag()
|
/foundation/window/window_manager/utils/include/ |
H A D | window_manager_hilog.h | 26 #define PRINT_WLOG(level, ...) HILOG_IMPL(LABEL.type, level, LABEL.domain, LABEL.tag, ##__VA_ARGS__) 101 #define PRINT_TLOG(level, tag, ...) \ 103 uint32_t hilogDomain = HILOG_DOMAIN_WINDOW + static_cast<uint32_t>(tag); \ 104 const char *domainContent = DOMAIN_CONTENTS_MAP.count(tag) ? DOMAIN_CONTENTS_MAP.at(tag) : ""; \ 108 #define TLOGD(tag, fmt, ...) \ 109 PRINT_TLOG(LOG_DEBUG, tag, FMT_PREFIX fmt, WMS_FILE_NAME, C_W_FUNC, ##__VA_ARGS__) 110 #define TLOGI(tag, fmt, ...) \ 111 PRINT_TLOG(LOG_INFO, tag, FMT_PREFIX fmt, WMS_FILE_NAME, C_W_FUNC, ##__VA_ARGS__) 112 #define TLOGW(tag, fm [all...] |
/foundation/ability/idl_tool/idl_tool_2/util/ |
H A D | logger.cpp | 23 void Logger::D(const char *tag, const char *format, ...) in D() argument 31 Log(tag, format, args); in D() 35 void Logger::E(const char *tag, const char *format, ...) in E() argument 43 Err(tag, format, args); in E() 47 void Logger::V(const char *tag, const char *format, ...) in V() argument 55 Log(tag, format, args); in V() 59 void Logger::Log(const char *tag, const char *format, va_list args) in Log() argument 61 (void)printf("[%s]: ", tag); in Log() 66 void Logger::Err(const char *tag, const char *format, va_list args) in Err() argument 68 (void)fprintf(stderr, "[%s]: ", tag); in Err() [all...] |
/foundation/ability/idl_tool/util/ |
H A D | logger.cpp | 24 void Logger::D(const char* tag, const char* format, ...) in D() argument 30 Log(tag, format, args); in D() 34 void Logger::E(const char* tag, const char* format, ...) in E() argument 40 Err(tag, format, args); in E() 44 void Logger::V(const char* tag, const char* format, ...) in V() argument 50 Log(tag, format, args); in V() 54 void Logger::Log(const char* tag, const char* format, va_list args) in Log() argument 56 printf("[%s]: ", tag); in Log() 61 void Logger::Err(const char* tag, const char* format, va_list args) in Err() argument 63 fprintf(stderr, "[%s]: ", tag); in Err() [all...] |
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/crypto/src/ |
H A D | crypto_manager.cpp | 52 { .tag = HKS_TAG_ALGORITHM, .uint32Param = HKS_ALG_AES }, in GetRootKeyParams() 53 { .tag = HKS_TAG_KEY_SIZE, .uint32Param = HKS_AES_KEY_SIZE_256 }, in GetRootKeyParams() 54 { .tag = HKS_TAG_PURPOSE, .uint32Param = HKS_KEY_PURPOSE_ENCRYPT | HKS_KEY_PURPOSE_DECRYPT }, in GetRootKeyParams() 55 { .tag = HKS_TAG_DIGEST, .uint32Param = 0 }, in GetRootKeyParams() 56 { .tag = HKS_TAG_PADDING, .uint32Param = HKS_PADDING_NONE }, in GetRootKeyParams() 57 { .tag = HKS_TAG_BLOCK_MODE, .uint32Param = HKS_MODE_GCM }, in GetRootKeyParams() 58 { .tag = HKS_TAG_AUTH_STORAGE_LEVEL, .uint32Param = HKS_AUTH_STORAGE_LEVEL_DE }, in GetRootKeyParams() 133 { .tag = HKS_TAG_ALGORITHM, .uint32Param = HKS_ALG_AES }, in Encrypt() 134 { .tag = HKS_TAG_PURPOSE, .uint32Param = HKS_KEY_PURPOSE_ENCRYPT }, in Encrypt() 135 { .tag in Encrypt() [all...] |
/foundation/graphic/graphic_2d/rosen/modules/graphics_effect/include/ |
H A D | ge_visual_effect_impl.h | 48 void SetParam(const std::string& tag, int32_t param);
49 void SetParam(const std::string& tag, int64_t param);
50 void SetParam(const std::string& tag, float param);
51 void SetParam(const std::string& tag, double param);
52 void SetParam(const std::string& tag, const char* const param);
54 void SetParam(const std::string& tag, const std::shared_ptr<Drawing::Image> param);
55 void SetParam(const std::string& tag, const std::shared_ptr<Drawing::ColorFilter> param);
56 void SetParam(const std::string& tag, const Drawing::Matrix param);
57 void SetParam(const std::string& tag, const std::vector<std::pair<float, float>>);
58 void SetParam(const std::string& tag, boo [all...] |
H A D | ge_visual_effect.h | 39 void SetParam(const std::string& tag, int32_t param);
40 void SetParam(const std::string& tag, int64_t param);
41 void SetParam(const std::string& tag, float param);
42 void SetParam(const std::string& tag, double param);
43 void SetParam(const std::string& tag, const char* const param);
45 void SetParam(const std::string& tag, const std::shared_ptr<Drawing::Image> param) {}
in SetParam() argument 46 void SetParam(const std::string& tag, const std::shared_ptr<Drawing::ColorFilter> param) {}
in SetParam() argument 47 void SetParam(const std::string& tag, const Drawing::Matrix param);
48 void SetParam(const std::string& tag, const std::vector<std::pair<float, float>>);
49 void SetParam(const std::string& tag, boo [all...] |
/foundation/multimedia/image_framework/plugins/common/libs/image/libjpegplugin/src/ |
H A D | exif_info.cpp | 86 ExifTag tag; member 471 if ((static_cast<EXIFInfo*>(userData))->CheckExifEntryValid(exif_entry_get_ifd(ee), ee->tag)) { in ParseExifData() 472 (static_cast<EXIFInfo*>(userData))->SetExifTagValues(ee->tag, tagValueStr); in ParseExifData() 503 void EXIFInfo::SetExifTagValues(const ExifTag &tag, const std::string &value) in SetExifTagValues() argument 505 exifTags_.EnsureInsert(tag, value); in SetExifTagValues() 506 if (tag == EXIF_TAG_BITS_PER_SAMPLE) { in SetExifTagValues() 508 } else if (tag == EXIF_TAG_ORIENTATION) { in SetExifTagValues() 510 } else if (tag == EXIF_TAG_IMAGE_LENGTH) { in SetExifTagValues() 512 } else if (tag == EXIF_TAG_IMAGE_WIDTH) { in SetExifTagValues() 514 } else if (tag in SetExifTagValues() 539 SetExifTagValuesEx(const ExifTag &tag, const std::string &value) SetExifTagValuesEx() argument 626 ModifyExifData(const ExifTag &tag, const std::string &value, const std::string &path) ModifyExifData() argument 715 ModifyExifData(const ExifTag &tag, const std::string &value, const int fd) ModifyExifData() argument 788 ModifyExifData(const ExifTag &tag, const std::string &value, unsigned char *data, uint32_t size) ModifyExifData() argument 908 InitExifTag(ExifData *exif, ExifIfd ifd, ExifTag tag) InitExifTag() argument 955 CreateExifTag(ExifData *exif, ExifIfd ifd, ExifTag tag, size_t len, ExifFormat format) CreateExifTag() argument 1004 GetExifTag(ExifData *exif, ExifIfd ifd, ExifTag tag, size_t len) GetExifTag() argument 1155 IsValidGpsData(const std::vector<std::string> &dataVec, const ExifTag &tag) IsValidGpsData() argument 1203 SetGpsRationals(ExifData *data, ExifEntry **ptrEntry, ExifByteOrder order, const ExifTag &tag, const std::vector<ExifRational> &exifRationals) SetGpsRationals() argument 1221 SetGpsDegreeRational(ExifData *data, ExifEntry **ptrEntry, ExifByteOrder order, const ExifTag &tag, const std::vector<std::string> &dataVec) SetGpsDegreeRational() argument 1240 CreateExifEntryOfBitsPerSample(const ExifTag &tag, ExifData *data, const std::string &value, ExifByteOrder order, ExifEntry **ptrEntry) CreateExifEntryOfBitsPerSample() argument 1262 GetExifIfdByExifTag(const ExifTag &tag) GetExifIfdByExifTag() argument 1284 GetExifFormatByExifTag(const ExifTag &tag) GetExifFormatByExifTag() argument 1306 GetExifNameByExifTag(const ExifTag &tag) GetExifNameByExifTag() argument 1315 CreateExifEntryOfRationalExif(const ExifTag &tag, ExifData *data, const std::string &value, ExifByteOrder order, ExifEntry **ptrEntry, const std::string& separator, size_t sepSize) CreateExifEntryOfRationalExif() argument 1336 CreateExifEntryOfGpsTimeStamp(const ExifTag &tag, ExifData *data, const std::string &value, ExifByteOrder order, ExifEntry **ptrEntry) CreateExifEntryOfGpsTimeStamp() argument 1358 CreateExifEntryOfCompressedBitsPerPixel(const ExifTag &tag, ExifData *data, const std::string &value, ExifByteOrder order, ExifEntry **ptrEntry) CreateExifEntryOfCompressedBitsPerPixel() argument 1375 CreateExifEntryOfGpsLatitudeOrLongitude(const ExifTag &tag, ExifData *data, const std::string &value, ExifByteOrder order, ExifEntry **ptrEntry) CreateExifEntryOfGpsLatitudeOrLongitude() argument 1393 CreateExifEntry(const ExifTag &tag, ExifData *data, const std::string &value, ExifByteOrder order, ExifEntry **ptrEntry) CreateExifEntry() argument 1895 CheckExifEntryValid(const ExifIfd &ifd, const ExifTag &tag) CheckExifEntryValid() argument 1939 CheckExifEntryValidEx(const ExifIfd &ifd, const ExifTag &tag) CheckExifEntryValidEx() argument 2042 GetExifTagByName(const std::string &name, ExifTag &tag) GetExifTagByName() argument 2066 ExifTag tag; GetExifData() local 2087 ExifTag tag; ModifyExifData() local 2097 ExifTag tag; ModifyExifData() local 2107 ExifTag tag; ModifyExifData() local [all...] |
/foundation/multimedia/media_foundation/engine/plugin/plugins/source/http_source/hls/ |
H A D | m3u8.cpp | 80 tagUpdatersMap_[HlsTag::EXTXPLAYLISTTYPE] = [this](std::shared_ptr<Tag> &tag, M3U8Info &info) { in InitTagUpdatersMap() 81 bLive_ = !info.bVod && (std::static_pointer_cast<SingleValueTag>(tag)->GetValue().QuotedString() != "VOD"); in InitTagUpdatersMap() 84 tagUpdatersMap_[HlsTag::EXTXTARGETDURATION] = [this](std::shared_ptr<Tag> &tag, M3U8Info &info) { in InitTagUpdatersMap() 86 targetDuration_ = std::static_pointer_cast<SingleValueTag>(tag)->GetValue().FloatingPoint(); in InitTagUpdatersMap() 89 tagUpdatersMap_[HlsTag::EXTXMEDIASEQUENCE] = [this](std::shared_ptr<Tag> &tag, M3U8Info &info) { in InitTagUpdatersMap() 91 sequence_ = std::static_pointer_cast<SingleValueTag>(tag)->GetValue().Decimal(); in InitTagUpdatersMap() 94 tagUpdatersMap_[HlsTag::EXTXDISCONTINUITYSEQUENCE] = [this](std::shared_ptr<Tag> &tag, M3U8Info &info) { in InitTagUpdatersMap() 95 discontSequence_ = static_cast<int>(std::static_pointer_cast<SingleValueTag>(tag)->GetValue().Decimal()); in InitTagUpdatersMap() 99 tagUpdatersMap_[HlsTag::EXTINF] = [this](std::shared_ptr<Tag> &tag, M3U8Info &info) { in InitTagUpdatersMap() 100 GetExtInf(tag, inf in InitTagUpdatersMap() 153 GetExtInf(const std::shared_ptr<Tag>& tag, double& duration, std::string& title) const GetExtInf() argument [all...] |
/foundation/distributeddatamgr/udmf/framework/common/ |
H A D | tlv_object.cpp | 131 bool TLVObject::Write(TAG tag, const std::string &value)
in Write() argument 134 LOG_ERROR(UDMF_FRAMEWORK, "Has no enough buffer in tlv write. tag=%{public}hu, value=%{public}s", tag,
in Write() 139 tlvHead->tag = HostToNet(static_cast<uint16_t>(tag));
in Write() 144 LOG_ERROR(UDMF_FRAMEWORK, "memcpy error in tlv write. tag=%{public}hu, value=%{public}s", tag,
in Write() 156 LOG_ERROR(UDMF_FRAMEWORK, "Has no enough buffer in tlv read string. tag=%{public}hu", head.tag);
in Read() 160 LOG_ERROR(UDMF_FRAMEWORK, "LoadBufferFormFile error in tlv read string. tag in Read() 169 Write(TAG tag, const std::vector<uint8_t> &value) Write() argument 207 Write(TAG tag, const OHOS::AAFwk::Want &value) Write() argument 265 Write(TAG tag, const std::monostate &value) Write() argument 275 Write(TAG tag, const void *value) Write() argument 293 WriteHead(uint16_t tag, uint32_t len) WriteHead() argument 307 WriteBackHead(uint16_t tag, size_t tagCursor, uint32_t len) WriteBackHead() argument [all...] |
H A D | logger.h | 46 if (!HiLogIsLoggable(lable.domain, lable.tag, LogLevel::LOG_FATAL)) { \ 49 ((void)HILOG_IMPL(lable.type, LogLevel::LOG_FATAL, lable.domain, lable.tag, \ 56 if (!HiLogIsLoggable(lable.domain, lable.tag, LogLevel::LOG_ERROR)) { \ 59 ((void)HILOG_IMPL(lable.type, LogLevel::LOG_ERROR, lable.domain, lable.tag, \ 66 if (!HiLogIsLoggable(lable.domain, lable.tag, LogLevel::LOG_WARN)) { \ 69 ((void)HILOG_IMPL(lable.type, LogLevel::LOG_WARN, lable.domain, lable.tag, \ 76 if (!HiLogIsLoggable(lable.domain, lable.tag, LogLevel::LOG_INFO)) { \ 79 ((void)HILOG_IMPL(lable.type, LogLevel::LOG_INFO, lable.domain, lable.tag, \ 86 if (!HiLogIsLoggable(lable.domain, lable.tag, LogLevel::LOG_DEBUG)) { \ 89 ((void)HILOG_IMPL(lable.type, LogLevel::LOG_DEBUG, lable.domain, lable.tag, \ [all...] |
/foundation/arkui/ace_engine/test/unittest/core/accessibility/ |
H A D | js_inspector_test.cpp | 520 std::string tag = "tagTest"; in HWTEST_F() local 521 InspectBadge inspectBadge(nodeId, tag); in HWTEST_F() 523 EXPECT_EQ(inspectBadge.tag_, tag); in HWTEST_F() 534 std::string tag = "tagTest"; in HWTEST_F() local 535 InspectBadge inspectBadge(nodeId, tag); in HWTEST_F() 557 std::string tag = "tagTest"; in HWTEST_F() local 558 InspectButton inspectButton(nodeId, tag); in HWTEST_F() 560 EXPECT_EQ(inspectButton.tag_, tag); in HWTEST_F() 571 std::string tag = "tagTest"; in HWTEST_F() local 572 InspectButton inspectButton(nodeId, tag); in HWTEST_F() 591 std::string tag = "tagTest"; HWTEST_F() local 611 std::string tag = "tagTest"; HWTEST_F() local 631 std::string tag = "tagTest"; HWTEST_F() local 651 std::string tag = "tagTest"; HWTEST_F() local 671 std::string tag = "tagTest"; HWTEST_F() local 691 std::string tag = "tagTest"; HWTEST_F() local 705 std::string tag = "tagTest"; HWTEST_F() local 723 std::string tag = "tagTest"; HWTEST_F() local 737 std::string tag = "tagTest"; HWTEST_F() local 755 std::string tag = "tagTest"; HWTEST_F() local 769 std::string tag = "tagTest"; HWTEST_F() local 811 std::string tag = "tagTest"; HWTEST_F() local 825 std::string tag = "tagTest"; HWTEST_F() local 851 std::string tag = "tagTest"; HWTEST_F() local 865 std::string tag = "tagTest"; HWTEST_F() local 897 std::string tag = "tagTest"; HWTEST_F() local 911 std::string tag = "tagTest"; HWTEST_F() local 931 std::string tag = "tagTest"; HWTEST_F() local 951 std::string tag = "tagTest"; HWTEST_F() local 971 std::string tag = "tagTest"; HWTEST_F() local 991 std::string tag = "tagTest"; HWTEST_F() local 1011 std::string tag = "tagTest"; HWTEST_F() local 1031 std::string tag = "tagTest"; HWTEST_F() local 1045 std::string tag = "tagTest"; HWTEST_F() local 1062 std::string tag = "tagTest"; HWTEST_F() local 1076 std::string tag = "tagTest"; HWTEST_F() local 1118 std::string tag = "tagTest"; HWTEST_F() local 1132 std::string tag = "tagTest"; HWTEST_F() local 1160 std::string tag = "tagTest"; HWTEST_F() local 1174 std::string tag = "tagTest"; HWTEST_F() local 1215 std::string tag = "tagTest"; HWTEST_F() local 1229 std::string tag = "tagTest"; HWTEST_F() local 1253 std::string tag = "tagTest"; HWTEST_F() local 1267 std::string tag = "tagTest"; HWTEST_F() local 1292 std::string tag = "tagTest"; HWTEST_F() local 1306 std::string tag = "tagTest"; HWTEST_F() local 1326 std::string tag = "tagTest"; HWTEST_F() local 1346 std::string tag = "tagTest"; HWTEST_F() local 1366 std::string tag = "tagTest"; HWTEST_F() local 1386 std::string tag = "tagTest"; HWTEST_F() local 1406 std::string tag = "tagTest"; HWTEST_F() local 1426 std::string tag = "tagTest"; HWTEST_F() local 1440 std::string tag = "tagTest"; HWTEST_F() local 1460 std::string tag = "tagTest"; HWTEST_F() local 1480 std::string tag = "tagTest"; HWTEST_F() local 1500 std::string tag = "tagTest"; HWTEST_F() local 1520 std::string tag = "tagTest"; HWTEST_F() local 1540 std::string tag = "tagTest"; HWTEST_F() local 1560 std::string tag = "tagTest"; HWTEST_F() local 1574 std::string tag = "tagTest"; HWTEST_F() local 1600 std::string tag = "tagTest"; HWTEST_F() local 1614 std::string tag = "tagTest"; HWTEST_F() local 1642 std::string tag = "tagTest"; HWTEST_F() local 1656 std::string tag = "tagTest"; HWTEST_F() local 1701 std::string tag = "tagTest"; HWTEST_F() local 1715 std::string tag = "tagTest"; HWTEST_F() local 1735 std::string tag = "tagTest"; HWTEST_F() local 1755 std::string tag = "tagTest"; HWTEST_F() local 1775 std::string tag = "tagTest"; HWTEST_F() local 1795 std::string tag = "tagTest"; HWTEST_F() local 1815 std::string tag = "tagTest"; HWTEST_F() local 1835 std::string tag = "tagTest"; HWTEST_F() local 1849 std::string tag = "tagTest"; HWTEST_F() local 1876 std::string tag = "tagTest"; HWTEST_F() local 1890 std::string tag = "tagTest"; HWTEST_F() local 1915 std::string tag = "tagTest"; HWTEST_F() local 1929 std::string tag = "tagTest"; HWTEST_F() local 1946 std::string tag = "tagTest"; HWTEST_F() local 1997 std::string tag = "tagTest"; HWTEST_F() local 2015 std::string tag = "tagTest"; HWTEST_F() local 2033 std::string tag = "tagTest"; HWTEST_F() local 2047 std::string tag = "tagTest"; HWTEST_F() local 2076 std::string tag = "tagTest"; HWTEST_F() local 2090 std::string tag = "tagTest"; HWTEST_F() local 2114 std::string tag = "tagTest"; HWTEST_F() local 2128 std::string tag = "tagTest"; HWTEST_F() local 2166 std::string tag = "tagTest"; HWTEST_F() local 2180 std::string tag = "tagTest"; HWTEST_F() local 2219 std::string tag = "tagTest"; HWTEST_F() local 2233 std::string tag = "tagTest"; HWTEST_F() local 2255 std::string tag = "tagTest"; HWTEST_F() local 2269 std::string tag = "tagTest"; HWTEST_F() local 2298 std::string tag = "tagTest"; HWTEST_F() local 2312 std::string tag = "tagTest"; HWTEST_F() local 2332 std::string tag = "tagTest"; HWTEST_F() local 2352 std::string tag = "tagTest"; HWTEST_F() local 2372 std::string tag = "tagTest"; HWTEST_F() local 2392 std::string tag = "tagTest"; HWTEST_F() local 2412 std::string tag = "tagTest"; HWTEST_F() local 2432 std::string tag = "tagTest"; HWTEST_F() local 2446 std::string tag = "tagTest"; HWTEST_F() local 2471 std::string tag = "tagTest"; HWTEST_F() local 2485 std::string tag = "tagTest"; HWTEST_F() local 2505 std::string tag = "tagTest"; HWTEST_F() local 2525 std::string tag = "tagTest"; HWTEST_F() local 2545 std::string tag = "tagTest"; HWTEST_F() local 2565 std::string tag = "tagTest"; HWTEST_F() local 2585 std::string tag = "tagTest"; HWTEST_F() local 2605 std::string tag = "tagTest"; HWTEST_F() local 2619 std::string tag = "tagTest"; HWTEST_F() local 2639 std::string tag = "tagTest"; HWTEST_F() local 2659 std::string tag = "tagTest"; HWTEST_F() local 2679 std::string tag = "tagTest"; HWTEST_F() local 2699 std::string tag = "tagTest"; HWTEST_F() local 2719 std::string tag = "tagTest"; HWTEST_F() local 2739 std::string tag = "tagTest"; HWTEST_F() local 2753 std::string tag = "tagTest"; HWTEST_F() local 2778 std::string tag = "tagTest"; HWTEST_F() local 2792 std::string tag = "tagTest"; HWTEST_F() local 2815 std::string tag = "tagTest"; HWTEST_F() local 2829 std::string tag = "tagTest"; HWTEST_F() local 2849 std::string tag = "tagTest"; HWTEST_F() local 2869 std::string tag = "tagTest"; HWTEST_F() local 2889 std::string tag = "tagTest"; HWTEST_F() local 2909 std::string tag = "tagTest"; HWTEST_F() local 2929 std::string tag = "tagTest"; HWTEST_F() local 2949 std::string tag = "tagTest"; HWTEST_F() local 2963 std::string tag = "tagTest"; HWTEST_F() local 2988 std::string tag = "tagTest"; HWTEST_F() local 3002 std::string tag = "tagTest"; HWTEST_F() local 3023 std::string tag = "tagTest"; HWTEST_F() local 3037 std::string tag = "tagTest"; HWTEST_F() local 3068 std::string tag = "tagTest"; HWTEST_F() local 3082 std::string tag = "tagTest"; HWTEST_F() local 3103 std::string tag = "tagTest"; HWTEST_F() local 3117 std::string tag = "tagTest"; HWTEST_F() local 3137 std::string tag = "tagTest"; HWTEST_F() local 3157 std::string tag = "tagTest"; HWTEST_F() local 3177 std::string tag = "tagTest"; HWTEST_F() local 3197 std::string tag = "tagTest"; HWTEST_F() local 3217 std::string tag = "tagTest"; HWTEST_F() local 3237 std::string tag = "tagTest"; HWTEST_F() local 3251 std::string tag = "tagTest"; HWTEST_F() local 3284 std::string tag = "tagTest"; HWTEST_F() local 3298 std::string tag = "tagTest"; HWTEST_F() local 3320 std::string tag = "tagTest"; HWTEST_F() local 3334 std::string tag = "tagTest"; HWTEST_F() local 3356 std::string tag = "tagTest"; HWTEST_F() local 3370 std::string tag = "tagTest"; HWTEST_F() local 3393 std::string tag = "tagTest"; HWTEST_F() local 3407 std::string tag = "tagTest"; HWTEST_F() local 3429 std::string tag = "tagTest"; HWTEST_F() local 3443 std::string tag = "tagTest"; HWTEST_F() local 3465 std::string tag = "tagTest"; HWTEST_F() local 3479 std::string tag = "tagTest"; HWTEST_F() local 3501 std::string tag = "tagTest"; HWTEST_F() local 3515 std::string tag = "tagTest"; HWTEST_F() local 3550 std::string tag = "tagTest"; HWTEST_F() local 3564 std::string tag = "tagTest"; HWTEST_F() local 3578 std::string tag = "tagTest"; HWTEST_F() local [all...] |
/foundation/CastEngine/castengine_wifi_display/services/configuration/include/ |
H A D | sharing_data.h | 78 explicit SharingDataGroupByTag(const std::string &tag) : tag_(tag) {} in SharingDataGroupByTag() argument 80 bool IsTag(const std::string &tag) in IsTag() argument 82 return tag_ == tag; in IsTag() 104 using Each = std::function<void(const std::string &tag, const SharingDataGroupByTag::Ptr &value)>; 114 int32_t PutSharingValues(const std::string &tag, const SharingDataGroupByTag::Ptr &value); 115 int32_t PutSharingValue(const std::string &tag, const std::string &key, const SharingValue::Ptr value); 116 int32_t PutSharingValues(const std::string &tag, const std::unordered_map<std::string, SharingValue::Ptr> &values); 118 int32_t GetSharingValues(const std::string &tag, SharingDataGroupByTag::Ptr &value); 119 int32_t GetSharingValues(const std::string &tag, st [all...] |
/foundation/distributeddatamgr/data_share/frameworks/native/common/include/ |
H A D | datashare_log.h | 31 if (HiLogIsLoggable(lable.domain, lable.tag, LogLevel::LOG_DEBUG)) { \ 32 ((void)HILOG_IMPL(lable.type, LogLevel::LOG_DEBUG, lable.domain, lable.tag, \ 41 if (HiLogIsLoggable(lable.domain, lable.tag, LogLevel::LOG_INFO)) { \ 42 ((void)HILOG_IMPL(lable.type, LogLevel::LOG_INFO, lable.domain, lable.tag, \ 51 if (HiLogIsLoggable(lable.domain, lable.tag, LogLevel::LOG_WARN)) { \ 52 ((void)HILOG_IMPL(lable.type, LogLevel::LOG_WARN, lable.domain, lable.tag, \ 61 if (HiLogIsLoggable(lable.domain, lable.tag, LogLevel::LOG_ERROR)) { \ 62 ((void)HILOG_IMPL(lable.type, LogLevel::LOG_ERROR, lable.domain, lable.tag, \ 71 if (HiLogIsLoggable(lable.domain, lable.tag, LogLevel::LOG_FATAL)) { \ 72 ((void)HILOG_IMPL(lable.type, LogLevel::LOG_FATAL, lable.domain, lable.tag, \ [all...] |
/foundation/distributeddatamgr/relational_store/frameworks/common/include/ |
H A D | logger.h | 47 if (HiLogIsLoggable(lable.domain, lable.tag, LogLevel::LOG_DEBUG)) { \ 48 ((void)HILOG_IMPL(lable.type, LOG_DEBUG, lable.domain, lable.tag, \ 56 if (HiLogIsLoggable(lable.domain, lable.tag, LogLevel::LOG_INFO)) { \ 57 ((void)HILOG_IMPL(lable.type, LOG_INFO, lable.domain, lable.tag, \ 65 if (HiLogIsLoggable(lable.domain, lable.tag, LogLevel::LOG_WARN)) { \ 66 ((void)HILOG_IMPL(lable.type, LOG_WARN, lable.domain, lable.tag, \ 74 if (HiLogIsLoggable(lable.domain, lable.tag, LogLevel::LOG_ERROR)) { \ 75 ((void)HILOG_IMPL(lable.type, LOG_ERROR, lable.domain, lable.tag, \ 83 if (HiLogIsLoggable(lable.domain, lable.tag, LogLevel::LOG_FATAL)) { \ 84 ((void)HILOG_IMPL(lable.type, LOG_FATAL, lable.domain, lable.tag, \ [all...] |
/foundation/CastEngine/castengine_wifi_display/services/configuration/src/ |
H A D | sharing_data.cpp | 153 int32_t SharingDataGroupByModule::PutSharingValue(const std::string &tag, const std::string &key, in PutSharingValue() argument 157 auto iter = datass_.find(tag); in PutSharingValue() 159 auto grpData = std::make_shared<SharingDataGroupByTag>(tag); in PutSharingValue() 165 datass_.emplace(std::make_pair(tag, grpData)); in PutSharingValue() 172 int32_t SharingDataGroupByModule::PutSharingValues(const std::string &tag, in PutSharingValues() argument 176 auto iter = datass_.find(tag); in PutSharingValues() 178 auto grpData = std::make_shared<SharingDataGroupByTag>(tag); in PutSharingValues() 184 datass_.emplace(std::make_pair(tag, grpData)); in PutSharingValues() 191 int32_t SharingDataGroupByModule::PutSharingValues(const std::string &tag, const SharingDataGroupByTag::Ptr &value) in PutSharingValues() argument 194 auto iter = datass_.find(tag); in PutSharingValues() 204 GetSharingValue(const std::string &tag, const std::string &key) GetSharingValue() argument 216 GetSharingValues(const std::string &tag, std::unordered_map<std::string, SharingValue::Ptr> &values) GetSharingValues() argument 229 GetSharingValues(const std::string &tag, SharingDataGroupByTag::Ptr &value) GetSharingValues() argument 242 HasKey(const std::string &tag, const std::string &key) HasKey() argument 253 HasTag(const std::string &tag) HasTag() argument 282 PutSharingValue(const std::string &key, const SharingValue::Ptr value, const std::string &module, const std::string &tag) PutSharingValue() argument 313 PutSharingValues(const std::unordered_map<std::string, SharingValue::Ptr> &values, const std::string &module, const std::string &tag) PutSharingValues() argument 332 GetSharingValue(const std::string &key, const std::string &module, const std::string &tag) GetSharingValue() argument 356 GetSharingValues(std::unordered_map<std::string, SharingValue::Ptr> &values, const std::string &module, const std::string &tag) GetSharingValues() argument 368 GetSharingValues(SharingDataGroupByTag::Ptr &value, const std::string &module, const std::string &tag) GetSharingValues() argument 380 HasKey(const std::string &key, const std::string &module, const std::string &tag) HasKey() argument 397 HasTag(const std::string &module, const std::string &tag) HasTag() argument [all...] |