Home
last modified time | relevance | path

Searched refs:getValue (Results 1 – 22 of 22) sorted by relevance

/developtools/packing_tool/adapter/ohos/
DCommandParser.java107 entry.getKey().setMode(entry.getValue()); in initCommandFuncs()
111 entry.getKey().setJsonPath(entry.getValue()); in initCommandFuncs()
115 entry.getKey().setProfilePath(entry.getValue()); in initCommandFuncs()
119 entry.getKey().setIndexPath(entry.getValue()); in initCommandFuncs()
123 entry.getKey().setJsPath(entry.getValue()); in initCommandFuncs()
127 entry.getKey().setEtsPath(entry.getValue()); in initCommandFuncs()
131 entry.getKey().setRpcidPath(entry.getValue()); in initCommandFuncs()
135 entry.getKey().setRpcid(entry.getValue()); in initCommandFuncs()
139 entry.getKey().setSoPath(entry.getValue()); in initCommandFuncs()
143 entry.getKey().setSoDir(entry.getValue()); in initCommandFuncs()
[all …]
DModuleAdaption.java115 … deviceConfig.distributedNotificationEnabled = entrty.getValue().distributedNotificationEnabled; in convertToDeviceConfig()
DCompressor.java2057 zipEntry.setCrc(crc.getValue()); in getStoredZipEntry()
2138 zipEntry.setCrc(crc.getValue()); in compressFile()
2320 entry.setCrc(crc.getValue()); in jsonSpecialProcess()
DModuleJsonUtil.java646 … mergeTwoPackInfoObjByPackagePair(finalPackObj, srcPackObj, packageName, entry.getValue()); in mergeTwoPackInfoByPackagePair()
DUncompress.java1075 zipEntry.setCrc(crc.getValue()); in compressFile()
/developtools/ace_js2bundle/ace-loader/plugin/templater/
Ddata.js42 getValue(next, start, v, res)
46 getValue(next, v.length, v, res)
50 function getValue(begin, end, v, res) { function
/developtools/smartperf_host/trace_streamer/src/table/ftrace/
Dsystem_event_filter_table.cpp156 auto getValue = [](const uint32_t& row) { return row; }; in FilterSorted() local
159 indexMap_->IntersectabcEqual(sysEventObj_.IdsData(), v, getValue); in FilterSorted()
164 indexMap_->IntersectGreaterEqual(sysEventObj_.IdsData(), v, getValue); in FilterSorted()
170 indexMap_->IntersectLessEqual(sysEventObj_.IdsData(), v, getValue); in FilterSorted()
Dcpu_measure_filter_table.cpp168 auto getValue = [](const uint32_t& row) { return row; }; in FilterSorted() local
171 indexMap_->IntersectabcEqual(cpuMeasureObj_.IdsData(), v, getValue); in FilterSorted()
176 indexMap_->IntersectGreaterEqual(cpuMeasureObj_.IdsData(), v, getValue); in FilterSorted()
182 indexMap_->IntersectLessEqual(cpuMeasureObj_.IdsData(), v, getValue); in FilterSorted()
/developtools/smartperf_host/trace_streamer/src/base/
Dindex_map.h153 void IntersectabcEqual(const std::deque<Row>& rows, Val v, GetV getValue) in IntersectabcEqual() argument
164 void IntersectGreaterEqual(const std::deque<Row>& rows, Val v, GetV getValue) in IntersectGreaterEqual() argument
167 … [&](const Row& row, const Val& v) { return v > getValue(row); }); in IntersectGreaterEqual()
174 void IntersectLessEqual(const std::deque<Row>& rows, Val v, GetV getValue) in IntersectLessEqual() argument
177 … [&](const Row& row, const Val& v) { return v > getValue(row); }); in IntersectLessEqual()
Dindex_map.cpp142 auto getValue = [](const uint64_t& row) { return row; }; in FilterTS() local
145 IntersectabcEqual(times, v, getValue); in FilterTS()
151 IntersectGreaterEqual(times, v, getValue); in FilterTS()
158 IntersectLessEqual(times, v, getValue); in FilterTS()
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/hap/entity/
DSigningBlock.java66 public byte[] getValue() { in getValue() method in SigningBlock
/developtools/hapsigner/hapsigntool/hap_sign_tool/src/main/java/com/ohos/hapsigntoolcmd/
DParams.java67 stringBuilder.append(item.getValue()); in toString()
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/codesigning/utils/
DHapUtils.java108 if (entry.getValue().isJsonObject()) { in checkCompressNativeLibs()
109 queue.offer(entry.getValue().getAsJsonObject()); in checkCompressNativeLibs()
/developtools/smartperf_host/trace_streamer/src/table/base/
Dtable_base.cpp258 auto getValue = [](const uint64_t& row) { return row; }; in FilterTS() local
261 indexMap_->IntersectabcEqual(times, v, getValue); in FilterTS()
266 indexMap_->IntersectGreaterEqual(times, v, getValue); in FilterTS()
272 indexMap_->IntersectLessEqual(times, v, getValue); in FilterTS()
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/hap/verify/
DVerifyHap.java196 writeOptionalBytesToFile(optionalBlock.getValue(), outputProfileFile); in outputOptionalBlocks()
199 writeOptionalBytesToFile(optionalBlock.getValue(), outputProofFile); in outputOptionalBlocks()
202 writeOptionalBytesToFile(optionalBlock.getValue(), outputPropertyFile); in outputOptionalBlocks()
323 .collect(Collectors.toMap(SigningBlock::getType, SigningBlock::getValue)); in checkCodeSign()
DVerifyElf.java207 profileByte = signBlock.get(SignatureBlockTypes.PROFILE_NOSIGNED_BLOCK).getValue(); in verifyElf()
214 profileByte = profileSign.getValue(); in verifyElf()
216 result = new HapVerify().verifyElfProfile(profileSign.getValue()); in verifyElf()
DHapVerify.java380 byte[] exceptDigest = entry.getValue(); in parserContentinfo()
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/data/
DRadarEntry.ets28 public getValue() : number {
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/hap/utils/
DHapUtils.java352 messageDigests[i].update(signingBlock.getValue()); in getContentDigestAlgorithmMap()
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/hap/sign/
DSignHap.java337 … optionalBlock.getValue(), 0, blockValues, currentOffsetInBlockValue, optionalBlock.getLength()); in generateHapSigningBlock()
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/hap/provider/
DSignProvider.java584 profile = optionalBlock.getValue(); in findProfileFromOptionalBlocks()
/developtools/hapsigner/hapsigntool/hap_sign_tool/src/test/java/com/ohos/hapsigntoolcmd/
DCmdUnitTest.java845 zipEntry.setCrc(crc32.getValue()); in fillZipEntryFile()