Home
last modified time | relevance | path

Searched refs:version (Results 1 – 25 of 157) sorted by relevance

1234567

/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/codesigning/datastructure/
DFsVerityInfoSegment.java59 private byte version; field in FsVerityInfoSegment
71 public FsVerityInfoSegment(byte version, byte hashAlgorithm, byte log2BlockSize) { in FsVerityInfoSegment() argument
72 this(MAGIC, version, hashAlgorithm, log2BlockSize, new byte[RESERVED_BYTE_ARRAY_LENGTH]); in FsVerityInfoSegment()
84 …public FsVerityInfoSegment(int magic, byte version, byte hashAlgorithm, byte log2BlockSize, byte[]… in FsVerityInfoSegment() argument
86 this.version = version; in FsVerityInfoSegment()
104 bf.put(version); in toByteArray()
153 this.magic, this.version, this.hashAlgorithm, this.log2BlockSize); in toString()
DCodeSignBlockHeader.java67 private int version; field in CodeSignBlockHeader
84 this.version = builder.version; in CodeSignBlockHeader()
119 bf.putInt(version); in toByteArray()
182 this.version, this.blockSize, this.segmentNum, this.flags); in toString()
191 private int version = CODE_SIGNING_VERSION; field in CodeSignBlockHeader.Builder
206 public Builder setVersion(int version) { in setVersion() argument
207 this.version = version; in setVersion()
/developtools/profiler/device/plugins/ftrace_plugin/tools/
Drefresh_device_kernel_code.py38 version = args.version
40 version_path = "device_kernel_version/{}".format(version)
50 os.getcwd(), version
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/zip/
DZipEntryHeader.java57 private short version; field in ZipEntryHeader
182 bf.putShort(version); in toBytes()
210 return version; in getVersion()
213 public void setVersion(short version) { in setVersion() argument
214 this.version = version; in setVersion()
DCentralDirectory.java64 private short version; field in CentralDirectory
214 UnsignedDecimalUtil.setUnsignedShort(bf, version); in toBytes()
251 return version; in getVersion()
254 public void setVersion(short version) { in setVersion() argument
255 this.version = version; in setVersion()
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/utils/
DHapUtils.java513 int version = hapSigningBlockHeader.getInt(); in findHapSigningBlock() local
515 hapSignBlockMagicLo, hapSignBlockMagicHi, version, centralDirectoryStartOffset); in findHapSigningBlock()
518 … LOGGER.info("Find Hap Signing Block success, version: {}, block count: {}", version, blockCount); in findHapSigningBlock()
519 return new HapSignBlockInfo(hapSigningBlockOffset, version, hapSigningBlockByteBuffer); in findHapSigningBlock()
523 …long hapSignBlockMagicHi, int version, long centralDirectoryStartOffset) throws SignatureNotFoundE… in verifySignBlock() argument
524 if (!isVersionAndMagicNumValid(version, hapSignBlockMagicLo, hapSignBlockMagicHi)) { in verifySignBlock()
539 …private static boolean isVersionAndMagicNumValid(int version, long hapSignBlockMagicLo, long hapSi… in isVersionAndMagicNumValid() argument
540 if (version < HAP_SIGN_SCHEME_V3_BLOCK_VERSION) { in isVersionAndMagicNumValid()
551 private final int version; field in HapUtils.HapSignBlockInfo
554 public HapSignBlockInfo(long offset, int version, ByteBuffer content) { in HapSignBlockInfo() argument
[all …]
/developtools/smartperf_host/ide/test/hdc/message/
DSessionHandShake.test.ts71 expect(sessionHandShake.version).toBe('');
75 sessionHandShake.version = true;
76 expect(sessionHandShake.version).toBeTruthy();
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/codesigning/fsverity/
DFsVerityDescriptor.java93 private byte version; field in FsVerityDescriptor
116 this.version = builder.version; in FsVerityDescriptor()
256 private byte version = VERSION; field in FsVerityDescriptor.Builder
278 public Builder setVersion(byte version) { in setVersion() argument
279 this.version = version; in setVersion()
/developtools/packing_tool/
Dbuild.py60 version = subprocess.check_output(['javac', '-version'], stderr=subprocess.STDOUT)
61 version = version.decode('utf-8')
62 array = re.findall(r'\d+', version)
/developtools/hdc/src/daemon/
Ddaemon.cpp290 string version = Base::GetVersion() + HDC_MSG_HASH; in DaemonSessionHandshake() local
292 WRITE_LOG(LOG_FATAL, "receive hs version = %s", handshake.version.c_str()); in DaemonSessionHandshake()
294 if (!handshake.version.empty() && handshake.version != version) { in DaemonSessionHandshake()
296 handshake.version.c_str(), version.c_str()); in DaemonSessionHandshake()
306 if (handshake.version.empty()) { in DaemonSessionHandshake()
307 handshake.version = Base::GetVersion(); in DaemonSessionHandshake()
308 WRITE_LOG(LOG_FATAL, "set version if check mode = %s", handshake.version.c_str()); in DaemonSessionHandshake()
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/
Dbuild.gradle21 version '1.0-SNAPSHOT'
31 implementation group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.18.0'
32 implementation group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.18.0'
/developtools/packing_tool/adapter/ohos/
DHapVerifyInfo.java40 private Version version = new Version(); field in HapVerifyInfo
171 return version; in getVersion()
177 public void setVersion(Version version) { in setVersion() argument
178 this.version = version; in setVersion()
/developtools/smartperf_host/ide/src/hdc/message/
DSessionHandShake.ts82 get version(): string { method in SessionHandShake
86 set version(value: string) { method in SessionHandShake
/developtools/profiler/host/smartperf/ide/src/hdc/message/
DSessionHandShake.ts82 get version(): string { method in SessionHandShake
86 set version(value: string) { method in SessionHandShake
/developtools/ace_ets2bundle/compiler/src/fast_build/common/
Drollup-plugin-watch-change.ts56 …files[path.resolve(id)] ? files[path.resolve(id)].version++ : files[path.resolve(id)] = {version: …
/developtools/smartperf_host/ide/server/
DsmarperfServer.py32 version = 'v1.0.0' variable
74 global version
202 self.send_header("data-version", version)
252 global version
254 version = read_text('version.txt')
Dmain.go54 func cors(fs http.Handler, version string) http.HandlerFunc {
66 w.Header().Set("data-version", version)
118 version := ""
121 version = ""
123 version = string(readVersion)
135 mux.Handle("/application/", http.StripPrefix("/application/", cors(fs, version)))
/developtools/ace_js2bundle/ace-loader/
Dwebpack.lite.config.js127 const version = parseInt(manifest.minPlatformVersion);
128 if (version == 5) {
131 if (version <= 4) {
134 process.env.PLATFORM_VERSION_VERSION = version;
/developtools/hdc/
DREADME.md44 …latform; Note: Only the windows/linux version tools can be compiled in the ubuntu environment, and…
61version is recommended to be 64-bit above ubuntu 16.04, and other similar versions are also availa…
/developtools/profiler/device/plugins/api/src/
Dbuffer_writer.cpp29 std::string version, in BufferWriter() argument
34 : pluginName_(name), pluginVersion_(version) in BufferWriter()
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/hap/entity/
DSignContentInfo.java81 private char[] version = "1000".toCharArray(); field in SignContentInfo
118 index = ByteArrayUtils.insertCharToByteArray(ret, index, version); in getByteContent()
/developtools/profiler/host/smartperf/ide/server/
Dmain.go54 func cors(fs http.Handler, version string) http.HandlerFunc {
66 w.Header().Set("data-version", version)
118 version := ""
121 version = ""
123 version = string(readVersion)
135 mux.Handle("/application/", http.StripPrefix("/application/", cors(fs, version)))
/developtools/smartperf_host/trace_streamer/sdk/demo_sdk/trace_data/
Dtrace_stdtype.cpp101 void MetaData::SetParserToolVersion(const std::string& version) in SetParserToolVersion() argument
103 values_[METADATA_ITEM_PARSERTOOL_VERSION] = version; in SetParserToolVersion()
/developtools/hapsigner/hapsigntool/hap_sign_tool/
Dbuild.gradle32 implementation group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.18.0'
33 implementation group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.18.0'
/developtools/integration_verification/tools/rom_ram_analyzer/standard/
DREADME.md43 -v, -version show program\'s version number and exit
133 -v, -version show program\'s version number and exit

1234567