| /developtools/hiperf/demo/cpp/ |
| D | hiperf_malloc_demo.cpp | 32 void *temp = nullptr; in main() local 35 temp = malloc(bufSize); in main() 38 if (temp != nullptr) { in main() 39 free(temp); in main() 40 temp = nullptr; in main() 44 if (temp != nullptr) { in main() 45 free(temp); in main() 46 temp = nullptr; in main()
|
| /developtools/ace_ets2bundle/compiler/src/ |
| D | process_component_build.ts | 595 let temp: any = node.expression; 596 while (temp) { 597 if (ts.isCallExpression(temp) && temp.expression && 598 ts.isPropertyAccessExpression(temp.expression)) { 601 if (ts.isEtsComponentExpression(temp)) { 602 etsComponentNode = temp; 605 temp = temp.expression; 1551 let temp: any = node.expression; 1552 while (temp && !ts.isIdentifier(temp) && temp.expression) { 1553 temp = temp.expression; [all …]
|
| /developtools/profiler/hiebpf/src/ |
| D | ringbuffer.cpp | 39 uint16_t *temp = new(std::nothrow) uint16_t[bufSize_]; local 40 buffer_ = reinterpret_cast<char *>(temp); 46 uint32_t *temp = new(std::nothrow) uint32_t[bufSize_]; local 47 buffer_ = reinterpret_cast<char *>(temp); 53 uint64_t *temp = new(std::nothrow) uint64_t[bufSize_]; local 54 buffer_ = reinterpret_cast<char *>(temp); 264 uint16_t *temp = new(std::nothrow) uint16_t[bufSize]; in Allocate() local 265 newBuffer = reinterpret_cast<char *>(temp); in Allocate() 270 uint32_t *temp = new(std::nothrow) uint32_t[bufSize]; in Allocate() local 271 newBuffer = reinterpret_cast<char *>(temp); in Allocate() [all …]
|
| /developtools/profiler/host/smartperf/client/client_command/ |
| D | Temperature.cpp | 31 std::string temp; in ItemData() local 33 SPUtils::LoadFile(dirTemp, temp); in ItemData() 36 result[type] = temp; in ItemData()
|
| D | README_zh.md | 68 -t get soc-temp gpu-temp ..
|
| /developtools/syscap_codec/napi/ |
| D | napi_query_syscap.cpp | 66 char *temp = nullptr; in GetSystemCapability() local 120 temp = *osCapArray; in GetSystemCapability() 123 retError = sprintf_s(allSyscapBuffer, sumLen, "%s,%s", temp, osCapArray[i]); in GetSystemCapability() 130 temp = allSyscapBuffer; in GetSystemCapability() 133 retError = sprintf_s(allSyscapBuffer, sumLen, "%s,%s", temp, *(priCapArray + i)); in GetSystemCapability() 140 temp = allSyscapBuffer; in GetSystemCapability()
|
| /developtools/profiler/device/plugins/native_daemon/test/unittest/common/native/ |
| D | hashlist_test.cpp | 65 std::size_t temp {125}; variable 66 EXPECT_EQ(hashList.count(temp), 0u); 121 auto temp = last; variable 122 temp--; 123 EXPECT_EQ(*temp, count); 176 auto temp = first; variable 177 --temp; 178 EXPECT_EQ(*temp, count);
|
| /developtools/hiperf/test/unittest/common/native/ |
| D | hashlist_test.cpp | 65 std::size_t temp {125}; variable 66 EXPECT_EQ(hashList.count(temp), 0u); 121 auto temp = last; variable 122 temp--; 123 EXPECT_EQ(*temp, count); 176 auto temp = first; variable 177 --temp; 178 EXPECT_EQ(*temp, count);
|
| /developtools/profiler/device/cmds/src/ |
| D | command_line.cpp | 131 for (std::string temp : p->paramFilter_) { in PrintHelp() local 134 printf(" %-16s", temp.c_str()); in PrintHelp() 136 printf(" %-2s", temp.c_str()); in PrintHelp()
|
| /developtools/profiler/device/plugins/native_daemon/src/ |
| D | stack_data_repeater.cpp | 76 auto temp = mallocMap_.find(rawData->stackConext->addr); in PutRawStack() local 79 if (temp != mallocMap_.end()) { in PutRawStack() 80 temp->second->reportFlag = false; // will be ignore later in PutRawStack()
|
| /developtools/global_resource_tool/src/ |
| D | file_entry.cpp | 66 string temp(filePath + "\\*.*"); in GetChilds() local 67 HANDLE handle = FindFirstFile(AdaptLongPath(temp).c_str(), &findData); in GetChilds() 192 char temp[MAX_PATH]; in RealPath() local 193 if (!PathCombine(temp, current, buffer)) { in RealPath() 196 if (!Exist(string(temp))) { in RealPath() 199 return string(temp); in RealPath()
|
| /developtools/ace_js2bundle/ace-loader/plugin/templater/ |
| D | index.js | 268 const temp=compileResult.jsonTemplate 277 temp.children=temp.children||[] 278 temp.children.push(compileResult.jsonTemplate) 294 compileResult.jsonTemplate=temp
|
| /developtools/smartperf_host/trace_streamer/src/proto_reader/include/ |
| D | proto_reader_help.h | 129 uint64_t temp = 0; in VarIntDecode() local 133 temp |= static_cast<uint64_t>(currentByte & varIntValueMask) << shift; in VarIntDecode() 135 *varIntValue = temp; in VarIntDecode()
|
| /developtools/profiler/host/smartperf/trace_streamer/src/proto_reader/include/ |
| D | proto_reader_help.h | 129 uint64_t temp = 0; in VarIntDecode() local 133 temp |= static_cast<uint64_t>(currentByte & varIntValueMask) << shift; in VarIntDecode() 135 *varIntValue = temp; in VarIntDecode()
|
| /developtools/integration_verification/cases/smoke/basic/screenshot32/acls_check/ |
| D | acl_check.py | 31 temp = whitelist[k] 33 if acl not in temp:
|
| /developtools/syscap_codec/src/ |
| D | syscap_tool.c | 300 char *temp = sysCapBegin + i * SINGLE_FEAT_LEN; in ParseRpcidToJson() local 301 if (strlen(temp) >= SINGLE_FEAT_LEN || strlen(temp) == 0) { in ParseRpcidToJson() 302 PRINT_ERR("Get SysCap failed, string length(%u) error.\n", (uint32_t)strlen(temp)); in ParseRpcidToJson() 308 ret = strncat_s(buffer, sizeof(buffer), temp, SINGLE_FEAT_LEN); in ParseRpcidToJson() 612 char *temp = strtok_r(input, ",", &tok); in GetPriSyscapData() local 613 while (temp) { in GetPriSyscapData() 615 temp, SINGLE_SYSCAP_LEN - 1); in GetPriSyscapData() 621 temp = strtok_r(NULL, ",", &tok); in GetPriSyscapData()
|
| /developtools/syscap_codec/interfaces/inner_api/ |
| D | syscap_interface.c | 345 char *temp = sysCapBegin + i * SINGLE_FEAT_LEN; in ParseRpcidToJson() local 346 if (strlen(temp) >= SINGLE_FEAT_LEN) { in ParseRpcidToJson() 353 ret = strncat_s(buffer, sizeof(buffer), temp, SINGLE_FEAT_LEN); in ParseRpcidToJson() 625 char *temp = (char *)malloc(sizeof(char) * SINGLE_SYSCAP_LEN); in ComparePcidString() local 626 if (temp == NULL) { in ComparePcidString() 631 ret = strcpy_s(temp, sizeof(char) * SINGLE_SYSCAP_LEN, in ComparePcidString() 638 result->syscap[ossyscapFlag + prisyscapFlag] = temp; in ComparePcidString()
|
| /developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/utils/ |
| D | FileUtils.java | 202 int temp; in writeFileToDos() local 204 while ((temp = fileStream.read(buf)) > 0) { in writeFileToDos() 205 dos.write(buf, 0, temp); in writeFileToDos()
|
| /developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/utils/ |
| D | SystemUtils.ets | 64 let temp = final[j + 1]; 66 final[j] = temp;
|
| /developtools/hiperf/include/ |
| D | hashlist.hpp | 130 Iterator temp {itr}; in operator =() local 131 swap(temp); in operator =() 139 Iterator temp {std::move(itr)}; in operator =() local 140 swap(temp); in operator =() 330 ReverseIterator temp {itr}; in operator =() local 331 swap(temp); in operator =() 339 ReverseIterator temp {std::move(itr)}; in operator =() local 340 swap(temp); in operator =()
|
| /developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/profiler/base/ |
| D | BaseProfilerUtils.ets | 121 var temp = str.charCodeAt(i).toString(16); 122 if (temp == 'a') {
|
| /developtools/smartperf_host/trace_streamer/src/proto_reader/ |
| D | proto_reader.cpp | 172 auto temp = currentReadAddr_; in FindDataArea() local 180 currentReadAddr_ = temp; in FindDataArea()
|
| /developtools/profiler/host/smartperf/trace_streamer/src/proto_reader/ |
| D | proto_reader.cpp | 172 auto temp = currentReadAddr_; in FindDataArea() local 180 currentReadAddr_ = temp; in FindDataArea()
|
| /developtools/smartperf_host/ide/src/trace/database/logic-worker/ |
| D | ProcedureLogicWorkerNativeNemory.ts | 565 let temp = this.NATIVE_MEMORY_DATA.filter((ne) => ne.eventType === 0 || ne.eventType === 2); variable 566 nmFilterLen = temp.length; 568 temp.map((ne, index) => putArr(ne, nmFilterLevel, index === nmFilterLen - 1)); 569 temp.length = 0; 571 let temp = this.NATIVE_MEMORY_DATA.filter((ne) => ne.eventType === 1 || ne.eventType === 3); variable 572 nmFilterLen = temp.length; 574 temp.map((ne, index) => putArr(ne, nmFilterLevel, index === nmFilterLen - 1)); 575 temp.length = 0;
|
| /developtools/profiler/host/smartperf/ide/src/trace/database/logic-worker/ |
| D | ProcedureLogicWorkerNativeNemory.ts | 446 let temp = this.NATIVE_MEMORY_DATA.filter((ne) => ne.eventType === 0 || ne.eventType === 2); variable 447 filterLen = temp.length; 449 temp.map((ne, index) => putArr(ne, filterLevel, index === filterLen - 1)); 450 temp.length = 0; 452 let temp = this.NATIVE_MEMORY_DATA.filter((ne) => ne.eventType === 1 || ne.eventType === 3); variable 453 filterLen = temp.length; 455 temp.map((ne, index) => putArr(ne, filterLevel, index === filterLen - 1)); 456 temp.length = 0;
|