Home
last modified time | relevance | path

Searched refs:token (Results 1 – 23 of 23) sorted by relevance

/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/entity/
DUserEntity.ets17 public token: String;
19 public refresh_token: String; //刷新token
21 public token_type: String; //token类型
23 …constructor(token?: String, expires_in?: String, refresh_token?: String, expires_at?: String, toke…
24 this.token = token
/developtools/hdc/hdc_rust/src/cffi/
Dmount.cpp28 char *token = nullptr; in FindMountDeviceByPath() local
39 token = strtok(buf, delims); in FindMountDeviceByPath()
41 while (token) { in FindMountDeviceByPath()
46 res = sscanf_s(token, "%255s %255s %*s %*s %d %d\n", dev, strlen(dev), in FindMountDeviceByPath()
54 token = strtok(nullptr, delims); in FindMountDeviceByPath()
/developtools/profiler/hiebpf/src/
Dutilities.cpp46 std::string token = source.substr(0, pos); in StringSplit() local
47 if (!token.empty()) { in StringSplit()
48 result.push_back(token); in StringSplit()
/developtools/smartperf_host/ide/src/trace/database/data-trafic/
DEnergySysEventReceiver.ts173 hiSysEnergy.token[index] = beanData.token;
187 beanData.token = it.eventValue['MESSAGE'].split('=')[1];
189 tokedIds.push(beanData.token);
199 beanData.token = it.eventValue['MESSAGE'].split('=')[1];
290 token: hiSysEnergy.token.buffer,
303 hiSysEnergy.token.buffer,
315 token: Float64Array; property in HiSysEnergy
323 this.token = new Float64Array(transfer ? res.length : data.params.sharedArrayBuffers.token);
DEnergySysEventSender.ts33 token: new SharedArrayBuffer(Float64Array.BYTES_PER_ELEMENT * MAX_COUNT),
152 let token = new Float64Array(res.token);
160 token: token[index],
/developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/common/
Dob_config_resolver.ts281 private getTokenType(token: string): OptionType {
282 switch (token) {
332 const token = tokens[i]; constant
333 tokenType = this.getTokenType(token);
387 dtsFilePaths.push(token);
391 configs.reservedGlobalNames.push(token);
395 configs.reservedPropertyNames.push(token);
399 configs.reservedFileNames.push(token);
403 configs.keepComments.push(token);
407 configs.options.printNameCache = token;
[all …]
/developtools/hdc/src/common/
Dauth.h34 int AuthSign(void *rsa, const unsigned char *token, size_t tokenSize, void *sig);
38 bool AuthVerify(uint8_t *token, uint8_t *sig, int siglen);
Dauth.cpp29 bool AuthVerify(uint8_t *token, uint8_t *sig, int siglen) in AuthVerify() argument
44 int AuthSign(void *rsa, const unsigned char *token, size_t tokenSize, void *sig)
292 int AuthSign(void *rsa, const unsigned char *token, size_t tokenSize, void *sig) in AuthSign() argument
295 if (!RSA_sign(NID_sha256, token, tokenSize, (unsigned char *)sig, &len, (RSA *)rsa)) { in AuthSign()
406 bool AuthVerify(uint8_t *token, uint8_t *sig, int siglen) in AuthVerify() argument
418 childRet = RSA_verify(NID_sha256, reinterpret_cast<const unsigned char *>(token), in AuthVerify()
/developtools/hdc/hdc_rust/src/daemon/
Dauth.rs140 async fn make_sign_message(session_id: u32, token: String, channel_id: u32) -> TaskMessage { in make_sign_message()
145 buf: token, in make_sign_message()
218 let token = plain.clone(); in handshake_task() localVariable
248 make_sign_message(session_id, token, channel_id).await, in handshake_task()
270 make_sign_message(session_id, token, channel_id).await, in handshake_task()
279 make_sign_message(session_id, token, channel_id).await, in handshake_task()
492 let token = random_vec.join(""); in generate_token() localVariable
493 Ok(token) in generate_token()
498 Ok(token) => { in generate_token_wait()
499 break token; in generate_token_wait()
/developtools/hdc/src/daemon/
Ddaemon_unity.cpp96 char *token = nullptr; in FindMountDeviceByPath() local
107 token = strtok(buf, delims); in FindMountDeviceByPath()
109 while (token) { in FindMountDeviceByPath()
114 res = sscanf_s(token, "%255s %255s %*s %*s %d %d\n", dev, BUF_SIZE_SMALL - 1, in FindMountDeviceByPath()
122 token = strtok(nullptr, delims); in FindMountDeviceByPath()
/developtools/hdc/src/host/
Dhost_updater.cpp60 char *token = strtok_s(buffer.data(), delimit, &nextToken); in Split() local
61 while (token != nullptr) { in Split()
62 if (std::find(filter.cbegin(), filter.cend(), token) == filter.cend()) { in Split()
63 result.push_back(token); in Split()
65 token = strtok_s(nullptr, delimit, &nextToken); in Split()
Dhost_uart.cpp728 std::string token = source.substr(0, pos); in EnumSerialPort() local
729 if (!token.empty()) { in EnumSerialPort()
730 result.push_back(token); in EnumSerialPort()
/developtools/hdc/hdc_rust/src/host/
Dserver.rs49 for token in output_str.split_whitespace() { in get_process_pids()
51 pids.push(u32::from_str(token).unwrap()); in get_process_pids()
54 if token.contains("exe") { in get_process_pids()
/developtools/hiperf/interfaces/kits/js/napi/
Dhiperf_client_napi.cpp41 std::string token = source.substr(0, pos); in StringSplit() local
42 if (!token.empty()) { in StringSplit()
43 result.push_back(token); in StringSplit()
62 std::string token = source.substr(0, pos); in StringSplitToInt() local
63 if (!token.empty()) { in StringSplitToInt()
64 result.push_back(std::stoi(token)); in StringSplitToInt()
/developtools/syscap_codec/src/
Dcreate_pcid.c635 char *token = NULL; in AddPriSyscapToJsonObj() local
652 token = strtok(priSyscapString, ","); in AddPriSyscapToJsonObj()
653 while (token != NULL) { in AddPriSyscapToJsonObj()
654 if (!cJSON_AddItemToArray(sysCapArray, cJSON_CreateString(token))) { in AddPriSyscapToJsonObj()
659 token = strtok(NULL, ","); in AddPriSyscapToJsonObj()
/developtools/integration_verification/DeployDevice/src/aw/Download/
DDownload.py511 token = getToken("hwstaff_harmonyos_ci", dname, pw)
517 token = getToken("hwstaff_harmonyos_ci", dname, pw)
520 "X-Language": "zh-cn", "X-Auth-Token": token}
DDownloadold.py497 token = getToken("hwstaff_harmonyos_ci", dname, pw)
499 …d), "content-type": "application/json;charset=UTF-8", "X-Language": "zh-cn", "X-Auth-Token": token}
/developtools/profiler/device/plugins/native_daemon/src/
Dutilities.cpp69 std::string token = source.substr(0, pos); in StringSplit() local
70 if (!token.empty()) { in StringSplit()
71 result.push_back(token); in StringSplit()
/developtools/hiperf/src/
Dutilities.cpp123 std::string token = source.substr(0, pos); in StringSplit() local
124 if (!token.empty()) { in StringSplit()
125 result.push_back(token); in StringSplit()
/developtools/smartperf_host/ide/src/trace/database/ui-worker/
DProcedureWorkerEnergySystem.ts223 token: number | undefined;
/developtools/ace_ets2bundle/compiler/src/
Dvalidate_ui_syntax.ts552 … node.heritageClauses[0].token && node.heritageClauses[0].token === ts.SyntaxKind.ExtendsKeyword &&
/developtools/profiler/device/plugins/memory_plugin/test/utresources/proc/1/
Dsmaps19391 f1a5b000-f1a64000 r--p 00000000 fd:04 1596 /system/lib/hidl.token@1.0…
19414 f1a64000-f1a71000 r-xp 00008000 fd:04 1596 /system/lib/hidl.token@1.0…
19437 f1a71000-f1a73000 r--p 00014000 fd:04 1596 /system/lib/hidl.token@1.0…
19460 f1a73000-f1a74000 rw-p 00015000 fd:04 1596 /system/lib/hidl.token@1.0…
29046 f44d3000-f44d4000 r--p 00000000 fd:04 1595 /system/lib/hidl.token@1.0…
29069 f44d4000-f44d6000 r-xp 00000000 fd:04 1595 /system/lib/hidl.token@1.0…
29092 f44d6000-f44d7000 r--p 00001000 fd:04 1595 /system/lib/hidl.token@1.0…
29115 f44d7000-f44d8000 rw-p 00001000 fd:04 1595 /system/lib/hidl.token@1.0…
43239 …665f000 r--p 00000000 fd:04 1592 /system/lib/hidl.memory.token@1.0.so
43262 …6669000 r-xp 00008000 fd:04 1592 /system/lib/hidl.memory.token@1.0.so
[all …]
/developtools/profiler/hiebpf/include/
Dvmlinux.h12196 struct in6_addr token; member
19585 void *token; member
19595 void *token; member
35720 int token; member
48845 int token; member
50313 } token; member
58496 u64 token; member
68484 __le16 token; member
68779 bool token; member
111186 const char *token; member
[all …]