/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/codesigning/datastructure/ |
D | FsVerityInfoSegment.java | 59 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()
|
D | CodeSignBlockHeader.java | 67 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/ |
D | refresh_device_kernel_code.py | 38 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/ |
D | ZipEntryHeader.java | 57 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()
|
D | CentralDirectory.java | 64 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/hap/utils/ |
D | HapUtils.java | 517 int version = hapSigningBlockHeader.getInt(); in findHapSigningBlock() local 519 hapSignBlockMagicLo, hapSignBlockMagicHi, version, centralDirectoryStartOffset); in findHapSigningBlock() 522 … LOGGER.info("Find Hap Signing Block success, version: {}, block count: {}", version, blockCount); in findHapSigningBlock() 523 return new HapSignBlockInfo(hapSigningBlockOffset, version, hapSigningBlockByteBuffer); in findHapSigningBlock() 527 …long hapSignBlockMagicHi, int version, long centralDirectoryStartOffset) throws SignatureNotFoundE… in verifySignBlock() argument 528 if (!isVersionAndMagicNumValid(version, hapSignBlockMagicLo, hapSignBlockMagicHi)) { in verifySignBlock() 543 …private static boolean isVersionAndMagicNumValid(int version, long hapSignBlockMagicLo, long hapSi… in isVersionAndMagicNumValid() argument 544 if (version < HAP_SIGN_SCHEME_V3_BLOCK_VERSION) { in isVersionAndMagicNumValid() 555 private final int version; field in HapUtils.HapSignBlockInfo 558 public HapSignBlockInfo(long offset, int version, ByteBuffer content) { in HapSignBlockInfo() argument [all …]
|
/developtools/smartperf_host/ide/test/hdc/message/ |
D | SessionHandShake.test.ts | 70 expect(sessionHandShake.version).toBe(''); 74 sessionHandShake.version = true; 75 expect(sessionHandShake.version).toBeTruthy();
|
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/codesigning/fsverity/ |
D | FsVerityDescriptor.java | 93 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/hdc/scripts/ |
D | hdc_normal_test.py | 87 version = "Ver: 2.0.0a" 88 assert check_hdc_cmd("-v", version) 89 assert check_hdc_cmd("version", version) 90 assert check_hdc_cmd("checkserver", version)
|
/developtools/packing_tool/ |
D | build.py | 62 version = subprocess.check_output(['javac', '-version'], stderr=subprocess.STDOUT) 63 version = version.decode('utf-8') 64 array = re.findall(r'\d+', version)
|
/developtools/hdc/src/daemon/ |
D | daemon.cpp | 290 string version = Base::GetVersion() + HDC_MSG_HASH; in DaemonSessionHandshake() local 292 WRITE_LOG(LOG_DEBUG, "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/packing_tool/adapter/ohos/ |
D | HapVerifyInfo.java | 40 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/ |
D | SessionHandShake.ts | 82 get version(): string { method in SessionHandShake 86 set version(value: string) { method in SessionHandShake
|
/developtools/ace_ets2bundle/compiler/test/ark_compiler_ut/mock/rollup_mock/ |
D | project_config.ts | 130 public setCompilerVersion(version: number) { 131 this.compileSdkVersion = version; 132 this.compatibleSdkVersion = version;
|
/developtools/smartperf_host/trace_streamer/src/base/ |
D | htrace_file_header.h | 40 uint32_t version = TRACE_VERSION; member 81 uint8_t* version; // "1.01" member
|
/developtools/smartperf_host/ide/server/ |
D | smarperfServer.py | 32 version = 'v1.0.0' variable 74 global version 202 self.send_header("data-version", version) 254 global version 256 version = read_text('version.txt')
|
/developtools/hdc/hdc_rust/src/cffi/ |
D | serial_struct.h | 33 string version; member 43 oss << " version:" << version; in ToDebugString() 97 const char* version; member 227 Field<fieldSix, &BaseStruct::SessionHandShake::version>("version"));
|
/developtools/ace_js2bundle/ace-loader/ |
D | webpack.lite.config.js | 127 const version = parseInt(manifest.minPlatformVersion); 128 if (version == 5) { 131 if (version <= 4) { 134 process.env.PLATFORM_VERSION_VERSION = version;
|
/developtools/hdc/ |
D | README.md | 44 …latform; Note: Only the windows/linux version tools can be compiled in the ubuntu environment, and… 61 …version is recommended to be 64-bit above ubuntu 16.04, and other similar versions are also availa…
|
/developtools/hdc/hdc_rust/src/serializer/ |
D | serialize.rs | 97 let version = CString::new(self.version.as_str()).unwrap(); in serialize() localVariable 104 version: version.as_ptr(), in serialize() 117 version: std::ptr::null(), in parse() 136 self.version = ptr_to_string(pack.version); in parse()
|
/developtools/smartperf_host/ide/src/doc/md/ |
D | quickstart_parsing_ability.md | 31 edge浏览器: edge://version/ 32 chrome浏览器: chrome://version/
|
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/hap/entity/ |
D | SignContentInfo.java | 81 private char[] version = "1000".toCharArray(); field in SignContentInfo 118 index = ByteArrayUtils.insertCharToByteArray(ret, index, version); in getByteContent()
|
/developtools/smartperf_host/trace_streamer/sdk/demo_sdk/trace_data/ |
D | trace_stdtype.cpp | 101 void MetaData::SetParserToolVersion(const std::string& version) in SetParserToolVersion() argument 103 values_[METADATA_ITEM_PARSERTOOL_VERSION] = version; in SetParserToolVersion()
|
/developtools/integration_verification/tools/rom_ram_analyzer/standard/ |
D | README.md | 43 -v, -version show program\'s version number and exit 133 -v, -version show program\'s version number and exit
|
/developtools/smartperf_host/ |
D | README.md | 62 - C++ version: 11 or later 63 - Node.js version: 16.15.1 or later 64 - npm version: 8.13.2 or later 65 - TypeScript version: 4.2.3 or later 66 - Go version: 1.13.8 or later 68 To set up the Smartperf_Host website, you need to compile the WASM version of Trace Streamer for th…
|