/ohos5.0/docs/zh-cn/device-dev/subsystems/ |
H A D | subsys-thermal_control.md | 149 name: airplane strict: 0 enableEvent: 0 150 name: cpu_big strict: 0 enableEvent: 0 151 name: cpu_med strict: 0 enableEvent: 0 152 name: cpu_lit strict: 0 enableEvent: 0 153 name: gpu strict: 0 enableEvent: 0 154 name: boost strict: 0 enableEvent: 1 155 name: isolate strict: 0 enableEvent: 1 156 name: lcd strict: 0 enableEvent: 0 163 name: shut_down strict: 0 enableEvent: 0 165 name: popup strict: 0 enableEvent: 0 [all …]
|
/ohos5.0/docs/en/device-dev/subsystems/ |
H A D | subsys-thermal_control.md | 147 name: airplane strict: 0 enableEvent: 0 148 name: cpu_big strict: 0 enableEvent: 0 149 name: cpu_med strict: 0 enableEvent: 0 150 name: cpu_lit strict: 0 enableEvent: 0 151 name: gpu strict: 0 enableEvent: 0 152 name: boost strict: 0 enableEvent: 1 153 name: isolate strict: 0 enableEvent: 1 154 name: lcd strict: 0 enableEvent: 0 161 name: shut_down strict: 0 enableEvent: 0 163 name: popup strict: 0 enableEvent: 0 [all …]
|
/ohos5.0/base/security/device_auth/common_lib/impl/src/ |
H A D | hc_tlv_parser.c | 51 int32_t ParseTlvNode(TlvBase *tlv, HcParcel *parcel, HcBool strict) in ParseTlvNode() argument 60 int ret = tlv->parse(tlv, parcel, strict); in ParseTlvNode() 193 int32_t ParseTlvStruct(TlvBase *tlv, HcParcel *parcel, HcBool strict) in ParseTlvStruct() argument 203 if (strict) { in ParseTlvStruct() 232 if (strict && CheckStructNodeAllHasValue(tlv) != 0) { in ParseTlvStruct() 297 HcBool DecodeTlvMessage(TlvBase *msg, HcParcel *parcel, HcBool strict) in DecodeTlvMessage() argument 302 int32_t msgLen = ParseTlvNode(msg, parcel, strict); in DecodeTlvMessage() 332 int32_t ParseTlvBuffer(TlvBase *tlv, HcParcel *parcel, HcBool strict) in ParseTlvBuffer() argument 334 (void)strict; in ParseTlvBuffer() 380 int32_t ParseTlvString(TlvBase *tlv, HcParcel *parcel, HcBool strict) in ParseTlvString() argument [all …]
|
/ohos5.0/foundation/graphic/graphic_3d/lume/metaobject/src/ |
H A D | class_registry.h | 33 …nline bool CheckCategoryBits(ObjectCategoryBits compareTo, ObjectCategoryBits bitmask, bool strict) in META_BEGIN_NAMESPACE() 35 return strict ? (compareTo & bitmask) == bitmask : (compareTo & bitmask) != 0; in META_BEGIN_NAMESPACE() 47 ObjectCategoryBits category, bool strict, bool excludeDeprecated) const; 60 …const BASE_NS::vector<BASE_NS::Uid>& interfaceUids, bool strict, bool excludeDeprecated) const ove…
|
H A D | class_registry.cpp | 85 ObjectCategoryBits category, bool strict, bool excludeDeprecated) const in GetAllTypes() argument 95 if (CheckCategoryBits(factory->GetClassInfo().category, category, strict)) { in GetAllTypes() 103 const BASE_NS::vector<BASE_NS::Uid>& interfaceUids, bool strict, bool excludeDeprecated) const in GetAllTypes() argument 117 if (CheckInterfaces(factory->GetClassInterfaces(), interfaceUids, strict)) { in GetAllTypes()
|
H A D | object.cpp | 68 …vector<IObject::Ptr> Object::GetAttachments(const BASE_NS::vector<TypeId>& uids, bool strict) const in GetAttachments() 71 return attachments_->GetAttachments(uids, strict); in GetAttachments()
|
/ohos5.0/foundation/graphic/graphic_3d/lume/metaobject/include/meta/base/ |
H A D | interface_utils.h | 81 const BASE_NS::array_view<const TypeId>& ids, bool strict) noexcept in CheckInterfaces() argument 83 return strict ? ObjectImplementsAll(object, ids) : ObjectImplementsAny(object, ids); in CheckInterfaces() 94 …SE_NS::vector<BASE_NS::Uid>& uids, const BASE_NS::vector<BASE_NS::Uid>& reqs, bool strict) noexcept in CheckInterfaces() argument 102 size_t matches = strict ? reqs.size() : 1; in CheckInterfaces()
|
/ohos5.0/base/security/device_auth/common_lib/interfaces/ |
H A D | hc_tlv_parser.h | 93 int32_t ParseTlv##TlvName(TlvBase *tlv, HcParcel *parcel, HcBool strict) \ 95 (void)strict; \ 166 int32_t ParseTlvNode(TlvBase *tlv, HcParcel *parcel, HcBool strict); 170 int32_t ParseTlvStruct(TlvBase *tlv, HcParcel *parcel, HcBool strict); 175 HcBool DecodeTlvMessage(TlvBase *msg, HcParcel *parcel, HcBool strict); 184 int32_t ParseTlvBuffer(TlvBase *tlv, HcParcel *parcel, HcBool strict); 195 int32_t ParseTlvString(TlvBase *tlv, HcParcel *parcel, HcBool strict); 223 int32_t ParseTlv##TlvVecName(TlvBase *tlv, HcParcel *parcel, HcBool strict) \ 240 int32_t elementLen = ParseTlvNode((TlvBase *)curElement, parcel, strict); \
|
/ohos5.0/docs/zh-cn/release-notes/changelogs/OpenHarmony_4.0.10.11/ |
H A D | changelogs-arkcompiler.md | 36 ### 规则arkts-strict-typing 50 foo(bar(-123)) // error: arkts-strict-typing 65 foo(bar(-123)) // error: arkts-strict-typing 78 …考[适配指导案例](../../../application-dev/quick-start/arkts-more-cases.md#arkts-strict-typingstrictmodeer…
|
/ohos5.0/drivers/peripheral/display/hal/default/ |
H A D | BUILD.gn | 36 "-fno-strict-aliasing", 59 "-fno-strict-aliasing", 82 "-fno-strict-aliasing",
|
/ohos5.0/foundation/graphic/graphic_3d/lume/metaobject/include/meta/interface/property/ |
H A D | intf_stack_property.h | 38 …vector<IValue::Ptr> GetValues(const BASE_NS::array_view<const TypeId>& ids, bool strict) const = 0; 46 const BASE_NS::array_view<const TypeId>& ids, bool strict) const = 0;
|
/ohos5.0/base/powermgr/thermal_manager/test/unittest/src/ |
H A D | thermal_config_file_parser.cpp | 56 return iter.strict; in GetActionStrict() 232 xmlChar* strict = xmlGetProp(curNode, BAD_CAST("strict")); in ParseActionNode() local 233 if (strict != nullptr) { in ParseActionNode() 234 std::string strictValue = reinterpret_cast<char*>(strict); in ParseActionNode() 235 ai.strict = (TrimStr(strictValue) == TRUE_STR); in ParseActionNode() 236 xmlFree(strict); in ParseActionNode() 247 ai.name.c_str(), ai.strict, ai.params.c_str(), ai.protocol.c_str(), ai.enableEvent); in ParseActionNode()
|
/ohos5.0/drivers/peripheral/wlan/client/ |
H A D | BUILD.gn | 45 "-fno-strict-aliasing", 97 "-fno-strict-aliasing", 136 "-fno-strict-aliasing",
|
/ohos5.0/docs/en/release-notes/changelogs/OpenHarmony_4.0.10.11/ |
H A D | changelogs-arkcompiler.md | 36 ### Rule arkts-strict-typing 50 foo(bar(-123)) // error: arkts-strict-typing 65 foo(bar(-123)) // error: arkts-strict-typing 78 …on Cases](../../../application-dev/quick-start/arkts-more-cases.md#arkts-strict-typingstrictmodeer…
|
/ohos5.0/drivers/peripheral/usb/test/unittest/host_sdk/ |
H A D | BUILD.gn | 47 "-fno-strict-aliasing", 75 "-fno-strict-aliasing", 103 "-fno-strict-aliasing", 131 "-fno-strict-aliasing",
|
/ohos5.0/foundation/graphic/graphic_3d/lume/metaobject/src/property/ |
H A D | stack_property.h | 45 …r<IValue::Ptr> GetValues(const BASE_NS::array_view<const TypeId>& ids, bool strict) const override; in META_BEGIN_NAMESPACE() 51 const BASE_NS::array_view<const TypeId>& ids, bool strict) const override; in META_BEGIN_NAMESPACE()
|
/ohos5.0/drivers/peripheral/vibrator/hal/ |
H A D | BUILD.gn | 45 "-fno-strict-aliasing", 70 "-fno-strict-aliasing",
|
/ohos5.0/drivers/peripheral/input/test/benchmarktest/ |
H A D | BUILD.gn | 37 "-fno-strict-aliasing", 68 "-fno-strict-aliasing",
|
/ohos5.0/drivers/peripheral/light/hal/ |
H A D | BUILD.gn | 46 "-fno-strict-aliasing", 74 "-fno-strict-aliasing",
|
/ohos5.0/drivers/peripheral/light/test/unittest/hdi/ |
H A D | BUILD.gn | 30 "-fno-strict-aliasing", 59 "-fno-strict-aliasing",
|
/ohos5.0/drivers/peripheral/wlan/hostapd/client/ |
H A D | BUILD.gn | 36 "-fno-strict-aliasing", 73 "-fno-strict-aliasing",
|
/ohos5.0/drivers/peripheral/input/hal/ |
H A D | BUILD.gn | 51 "-fno-strict-aliasing", 86 "-fno-strict-aliasing",
|
/ohos5.0/drivers/peripheral/light/hdi_service/ |
H A D | BUILD.gn | 33 "-fno-strict-aliasing", 69 "-fno-strict-aliasing",
|
/ohos5.0/drivers/peripheral/motion/hdi_service/ |
H A D | BUILD.gn | 33 "-fno-strict-aliasing", 66 "-fno-strict-aliasing",
|
/ohos5.0/drivers/peripheral/power/test/unittest/ |
H A D | BUILD.gn | 37 "-fno-strict-aliasing", 79 "-fno-strict-aliasing",
|