Home
last modified time | relevance | path

Searched refs:startIndex (Results 1 – 10 of 10) sorted by relevance

/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/zip/
DRandomAccessFileZipDataInput.java33 private final long startIndex; field in RandomAccessFileZipDataInput
39 this.startIndex = 0; in RandomAccessFileZipDataInput()
52 this.startIndex = offset; in RandomAccessFileZipDataInput()
75 long offsetInFile = startIndex + offset; in copyTo()
101 long offsetInFile = startIndex + offset; in copyTo()
138 return new RandomAccessFileZipDataInput(file, offset + startIndex, size); in slice()
/developtools/profiler/hiebpf/src/
Delf_file.cpp214 std::string ElfFile::GetSectionName(const uint32_t startIndex) in GetSectionName() argument
216 if (startIndex >= secNamesStr_.size()) { in GetSectionName()
217 HHLOGF(true, "out_of_range %s ,endIndex %d ", secNamesStr_.c_str(), startIndex); in GetSectionName()
220 size_t endIndex {startIndex}; in GetSectionName()
226 return secNamesStr_.substr(startIndex, endIndex - startIndex); in GetSectionName()
/developtools/smartperf_host/trace_streamer/src/filter/
Dapp_start_filter.h72 bool UpdateAPPStartupData(uint32_t row, const std::string& nameString, uint32_t startIndex);
Dapp_start_filter.cpp127 …artupFilter::UpdateAPPStartupData(uint32_t row, const std::string& nameString, uint32_t startIndex) in UpdateAPPStartupData() argument
153 …std::make_pair(startIndex, std::make_unique<APPStartupData>(callId, INVALID_UINT32, INVALID_UINT32… in UpdateAPPStartupData()
/developtools/smartperf_host/ide/src/trace/database/
DTraceWorker.ts586 startIndex: number;
645 fileInfo.startIndex,
735 let startIndex = searchDataInfo[0].index; variable
741 [timStamp, fileType, 0, startIndex],
892 startIndex: number,
900 let queryStartIndex = startIndex;
901 let queryEndIndex = startIndex;
/developtools/profiler/hiebpf/include/
Delf_file.h154 std::string GetSectionName(const uint32_t startIndex);
/developtools/smartperf_host/ide/src/trace/component/
DSpSystemTrace.init.ts50 const startIndex = CpuStruct.selectCpuStruct!.displayProcess?.indexOf('['); constant
57 …ectCpuStruct!.process = CpuStruct.selectCpuStruct!.displayProcess?.substring(0, startIndex).trim();
67 …ectCpuStruct!.process = CpuStruct.selectCpuStruct!.displayProcess?.substring(0, startIndex).trim();
DSpRecordTrace.ts1159 startIndex: 0,
1169 message.startIndex = chunkIndex;
1210 startIndex: number,
/developtools/smartperf_host/ide/src/trace/
DSpApplication.ts93 startIndex: number;
365 let message = { fileType: '', startIndex: 0, endIndex: 0, size: 0 };
395 message.startIndex = index;
/developtools/packing_tool/adapter/ohos/
DCompressor.java2416 int startIndex = lineStr.lastIndexOf(SEMICOLON, endIndex - 1) + 1; in getNameFromString() local
2417 String formName = lineStr.substring(startIndex, endIndex); in getNameFromString()
2447 int startIndex = lineStr.lastIndexOf(SEMICOLON, endIndex - 1) + 1; in getModuleNameFromString() local
2448 String moduleName = lineStr.substring(startIndex, endIndex); in getModuleNameFromString()