Home
last modified time | relevance | path

Searched refs:other (Results 1 - 25 of 34) sorted by relevance

12

/developtools/hapsigner/hapsigntool_cpp/hap/entity/src/
H A Dsignature_algorithm_helper.cpp34 SignatureAlgorithmHelper::SignatureAlgorithmHelper(const SignatureAlgorithmHelper& other) : m_id(other.m_id), in SignatureAlgorithmHelper() argument
35 m_keyAlgorithm(other.m_keyAlgorithm), in SignatureAlgorithmHelper()
36 m_contentDigestAlgorithm(other.m_contentDigestAlgorithm), in SignatureAlgorithmHelper()
37 m_signatureAlgAndParams(other.m_signatureAlgAndParams.first, nullptr) in SignatureAlgorithmHelper()
48 SignatureAlgorithmHelper& SignatureAlgorithmHelper::operator=(const SignatureAlgorithmHelper& other) in operator =() argument
50 if (this != &other) { in operator =()
51 m_id = other.m_id; in operator =()
52 m_keyAlgorithm = other.m_keyAlgorithm; in operator =()
53 m_contentDigestAlgorithm = other in operator =()
[all...]
H A Dcontent_digest_algorithm.cpp34 ContentDigestAlgorithm::ContentDigestAlgorithm(const ContentDigestAlgorithm& other) in ContentDigestAlgorithm() argument
35 : m_digestAlgorithm(other.m_digestAlgorithm), in ContentDigestAlgorithm()
36 m_digestOutputByteSize(other.m_digestOutputByteSize) in ContentDigestAlgorithm()
40 ContentDigestAlgorithm& ContentDigestAlgorithm::operator=(const ContentDigestAlgorithm& other) in operator =() argument
42 if (this != &other) { in operator =()
43 m_digestAlgorithm = other.m_digestAlgorithm; in operator =()
44 m_digestOutputByteSize = other.m_digestOutputByteSize; in operator =()
/developtools/hapsigner/hapsigntool_cpp/common/src/
H A Ddigest_parameter.cpp34 DigestParameter::DigestParameter(const DigestParameter& other) in DigestParameter() argument
36 digestOutputSizeBytes = other.digestOutputSizeBytes; in DigestParameter()
37 md = other.md; in DigestParameter()
39 EVP_MD_CTX_copy(ctxPtr, other.ctxPtr); in DigestParameter()
42 DigestParameter& DigestParameter::operator = (const DigestParameter& other) in operator =() argument
48 digestOutputSizeBytes = other.digestOutputSizeBytes; in operator =()
49 md = other.md; in operator =()
51 EVP_MD_CTX_copy(ctxPtr, other.ctxPtr); in operator =()
H A Dbyte_buffer.cpp56 ByteBuffer::ByteBuffer(const ByteBuffer& other) : buffer(nullptr), position(0), limit(0), capacity(0) in ByteBuffer() argument
58 Init(other.GetCapacity()); in ByteBuffer()
60 if (memcpy_s(buffer.get(), capacity, other.GetBufferPtr(), other.GetCapacity()) != EOK) { in ByteBuffer()
64 position = other.GetPosition(); in ByteBuffer()
65 limit = other.GetLimit(); in ByteBuffer()
89 ByteBuffer& ByteBuffer::operator=(const ByteBuffer& other) in operator =() argument
91 if (&other == this) { in operator =()
96 Init(other.GetCapacity()); in operator =()
97 if (buffer != nullptr && other in operator =()
584 IsEqual(const ByteBuffer& other) IsEqual() argument
604 IsEqual(const std::string& other) IsEqual() argument
[all...]
/developtools/global_resource_tool/src/
H A Dresource_item.cpp28 ResourceItem::ResourceItem(const ResourceItem &other) in ResourceItem() argument
30 CopyFrom(other); in ResourceItem()
123 ResourceItem &ResourceItem::operator=(const ResourceItem &other) in operator =() argument
125 if (this == &other) { in operator =()
128 CopyFrom(other); in operator =()
142 void ResourceItem::CopyFrom(const ResourceItem &other) in CopyFrom() argument
144 name_ = other.name_; in CopyFrom()
145 keyparams_ = other.keyparams_; in CopyFrom()
146 type_ = other.type_; in CopyFrom()
147 dataLen_ = other in CopyFrom()
[all...]
H A Dresource_module.cpp78 const map<int64_t, vector<ResourceItem>> &other, bool tipError) in MergeResourceItem()
80 for (const auto &iter : other) { in MergeResourceItem()
108 void ResourceModule::Push(const map<int64_t, std::vector<ResourceItem>> &other) in Push() argument
110 for (const auto &iter : other) { in Push()
77 MergeResourceItem(map<int64_t, vector<ResourceItem>> &alls, const map<int64_t, vector<ResourceItem>> &other, bool tipError) MergeResourceItem() argument
/developtools/hapsigner/hapsigntool_cpp/codesigning/datastructure/src/
H A Dsign_info.cpp80 SignInfo::SignInfo(const SignInfo& other) in SignInfo() argument
82 this->saltSize = other.saltSize; in SignInfo()
83 this->sigSize = other.sigSize; in SignInfo()
84 this->flags = other.flags; in SignInfo()
85 this->dataSize = other.dataSize; in SignInfo()
86 this->salt = other.salt; in SignInfo()
87 this->extensionNum = other.extensionNum; in SignInfo()
88 this->extensionOffset = other.extensionOffset; in SignInfo()
89 this->signature = other.signature; in SignInfo()
90 this->zeroPadding = other in SignInfo()
97 operator =(const SignInfo& other) operator =() argument
[all...]
/developtools/smartperf_host/trace_streamer/src/base/
H A Dindex_map.cpp106 // other type consider it NULL in FilterId()
168 bool IndexMap::MergeIndexTypeId(IndexMap *other) in MergeIndexTypeId() argument
170 if (indexType_ != INDEX_TYPE_ID && other->indexType_ != INDEX_TYPE_ID) { in MergeIndexTypeId()
173 if ((other->start_ >= start_ && other->start_ <= end_) || (start_ >= other->start_ && start_ <= other->end_)) { in MergeIndexTypeId()
174 start_ = std::min(start_, other->start_); in MergeIndexTypeId()
175 end_ = std::max(end_, other->end_); in MergeIndexTypeId()
176 } else if (start_ > other in MergeIndexTypeId()
201 Merge(IndexMap *other) Merge() argument
[all...]
H A Dargs_set.h28 ArgsSet &operator=(const ArgsSet &other) in operator =() argument
30 this->valuesMap_ = other.valuesMap_; in operator =()
31 this->argSetId_ = other.argSetId_; in operator =()
32 this->sliceId_ = other.sliceId_; in operator =()
33 this->inserted_ = other.inserted_; in operator =()
/developtools/global_resource_tool/include/
H A Dresource_data.h196 bool operator == (const KeyParam &other) in operator ==()
198 return keyType == other.keyType && value == other.value; in operator ==()
315 bool operator == (const Mccmnc &other) in operator ==()
317 if (mcc.value != other.mcc.value) { in operator ==()
320 if (mnc.keyType != KeyType::OTHER && other.mnc.keyType != KeyType::OTHER && in operator ==()
321 mnc.value != other.mnc.value) { in operator ==()
332 bool operator == (const Locale &other) in operator ==()
334 if (language.value != other.language.value) { in operator ==()
337 if (script.keyType != KeyType::OTHER && other in operator ==()
[all...]
H A Dresource_item.h28 ResourceItem(const ResourceItem &other);
46 ResourceItem &operator=(const ResourceItem &other);
49 void CopyFrom(const ResourceItem &other);
H A Dresource_module.h34 const std::map<int64_t, std::vector<ResourceItem>> &other, bool tipError = false);
43 void Push(const std::map<int64_t, std::vector<ResourceItem>> &other);
/developtools/profiler/host/smartperf/client/client_command/include/
H A DFPS.h34 bool operator == (const FpsInfo &other) const in operator ==()
36 if (fps != other.fps) { in operator ==()
39 if (jitters.size() != other.jitters.size()) { in operator ==()
43 if (jitters[i] != other.jitters[i]) { in operator ==()
H A Dprofiler_fps.h36 bool operator == (const FpsInfoProfiler &other) const in operator ==()
38 if (fps != other.fps) { in operator ==()
41 if (jitters.size() != other.jitters.size()) { in operator ==()
45 if (jitters[i] != other.jitters[i]) { in operator ==()
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/entity/
H A DPair.java81 Pair other = (Pair) obj; in equals()
82 return compare(mFirst, other.mFirst) && compare(mSecond, other.mSecond); in equals()
/developtools/hapsigner/hapsigntool_cpp/common/include/
H A Ddigest_parameter.h27 DLL_EXPORT DigestParameter(const DigestParameter& other);
28 DLL_EXPORT DigestParameter& operator = (const DigestParameter& other);
H A Dbyte_buffer.h61 DLL_EXPORT ByteBuffer(const ByteBuffer& other);
63 DLL_EXPORT ByteBuffer& operator=(const ByteBuffer& other);
113 DLL_EXPORT bool IsEqual(const ByteBuffer& other);
114 DLL_EXPORT bool IsEqual(const std::string& other);
/developtools/hapsigner/hapsigntool_cpp/hap/entity/include/
H A Dcontent_digest_algorithm.h29 ContentDigestAlgorithm(const ContentDigestAlgorithm& other);
31 ContentDigestAlgorithm& operator=(const ContentDigestAlgorithm& other);
H A Dsignature_algorithm_helper.h39 SignatureAlgorithmHelper(const SignatureAlgorithmHelper& other);
43 SignatureAlgorithmHelper& operator=(const SignatureAlgorithmHelper& other);
/developtools/integration_verification/tools/deps_guard/elf_file_mgr/
H A Delf_file.py38 def __eq__(self, other):
39 if not isinstance(other, ElfFile):
42 return self["path"] == other["path"]
H A Delf_file_mgr.py37 def __eq__(self, other):
38 if not isinstance(other, ElfFileWithDepsInfo):
41 return self["id"] == other["id"]
66 def __eq__(self, other):
67 if not isinstance(other, Dependency):
70 return self["id"] == other["id"]
/developtools/hapsigner/hapsigntool_cpp/codesigning/datastructure/include/
H A Dsign_info.h50 SignInfo(const SignInfo& other);
51 SignInfo& operator=(const SignInfo& other);
/developtools/smartperf_host/trace_streamer/src/proto_reader/include/
H A Dproto_reader.h283 TypedProtoReader(TypedProtoReader &&other) noexcept : ProtoReaderBase(std::move(other)) in move()
285 if (dataAreas_ == other.defaultStorage_) { in move()
287 memcpy_s(defaultStorage_, sizeof(defaultStorage_), other.defaultStorage_, sizeof(defaultStorage_)); in move()
/developtools/hiperf/src/
H A Dsubcommand_stat.cpp432 bool other = FindPerCoreEventCount(summary, cpuCyclesCount, otherScale); in GetDetailComments() local
433 if (other || (IsMonitoredAtAllTime(otherScale) && IsMonitoredAtAllTime(scale))) { in GetDetailComments()
441 bool other = FindPerCoreEventCount(summary, branchInstructionsCount, otherScale); in GetDetailComments() local
442 if ((other || (IsMonitoredAtAllTime(otherScale) && IsMonitoredAtAllTime(scale))) && in GetDetailComments()
515 bool other = FindEventCount(countEvents, cpuSyclesName, it->second->id, cpuCyclesCount, in GetComments() local
517 if (other || (IsMonitoredAtAllTime(otherScale) && IsMonitoredAtAllTime(scale))) { in GetComments()
528 bool other = FindEventCount(countEvents, branchInsName, it->second->id, in GetComments() local
530 if ((other || (IsMonitoredAtAllTime(otherScale) && IsMonitoredAtAllTime(scale))) && in GetComments()
/developtools/integration_verification/tools/fotff/pkg/gitee_common/
H A Dsteps_gitee.go192 for _, other := range self.RelatedIssues {
193 if son, ok := all[other]; ok {
195 delete(all, other)

Completed in 10 milliseconds

12