Home
last modified time | relevance | path

Searched refs:target (Results 1 - 25 of 39) sorted by relevance

12

/developtools/profiler/device/plugins/memory_plugin/test/unittest/
H A Dsmaps_stats_unittest.cpp252 MemUsageInfo target = {0}; in HWTEST_F() local
254 ASSERT_TRUE(plugin.GetMemUsageField(line, target)); in HWTEST_F()
256 EXPECT_EQ(expect.vss, target.vss); in HWTEST_F()
257 EXPECT_EQ(expect.rss, target.rss); in HWTEST_F()
258 EXPECT_EQ(expect.pss, target.pss); in HWTEST_F()
259 EXPECT_EQ(expect.uss, target.uss); in HWTEST_F()
260 EXPECT_EQ(expect.swap, target.swap); in HWTEST_F()
261 EXPECT_EQ(expect.swapPss, target.swapPss); in HWTEST_F()
262 EXPECT_EQ(expect.privateClean, target.privateClean); in HWTEST_F()
263 EXPECT_EQ(expect.privateDirty, target in HWTEST_F()
278 MemUsageInfo target = {0}; HWTEST_F() local
305 MemUsageInfo target = {0}; HWTEST_F() local
334 MemUsageInfo target = {0}; HWTEST_F() local
361 MemUsageInfo target = {0}; HWTEST_F() local
387 MemUsageInfo target = {0}; HWTEST_F() local
413 MemUsageInfo target = {0}; HWTEST_F() local
439 MemUsageInfo target = {0}; HWTEST_F() local
466 MemUsageInfo target = {0}; HWTEST_F() local
493 MemUsageInfo target = {0}; HWTEST_F() local
519 MemUsageInfo target = {0}; HWTEST_F() local
545 MemUsageInfo target = {0}; HWTEST_F() local
571 MemUsageInfo target = {0}; HWTEST_F() local
[all...]
/developtools/integration_verification/tools/rom_ram_analyzer/lite_small/pkgs/
H A Dgn_common_tool.py37 def is_gn_variable(cls, target: str, quote_processed: bool = False):
39 判断target是否是gn中的变量:
46 :param target: 要进行判断的字符串对象
48 :return: target是否为gn中的变量
50 target = target.strip()
52 return target.startswith("$")
53 if target.startswith('"') and target.endswith('"'):
54 target
[all...]
/developtools/integration_verification/tools/rom_ram_analyzer/standard/pkgs/
H A Dgn_common_tool.py33 def is_gn_variable(cls, target: str, has_quote: bool = True):
35 判断target是否是gn中的变量:
42 target = target.strip()
44 return target.startswith("$")
45 if target.startswith('"') and target.endswith('"'):
46 target = target.strip('"')
47 if target
[all...]
/developtools/profiler/host/smartperf/client/client_command/
H A Dparse_radar.cpp34 std::string target = "\"E2E_LATENCY\":"; in ParseRadarStart() local
35 time = std::stod(ExtractString(string, target)); in ParseRadarStart()
41 std::string target = "\"RESPONSE_LATENCY\":"; in ParseRadarStartResponse() local
42 time = std::stod(ExtractString(string, target)); in ParseRadarStartResponse()
75 double ParseRadar::ParseRadarDelayTime(const std::string &string, const std::string &target, const int &delayTime) const in ParseRadarDelayTime() argument
91 if (key == target) { in ParseRadarDelayTime()
149 std::string ParseRadar::ExtractString(const std::string &str, const std::string &target) const in ExtractString()
152 size_t pos = str.find(target); in ExtractString()
154 pos += target.length(); in ExtractString()
/developtools/profiler/device/plugins/hilog_plugin/test/unittest/
H A Dhilog_plugin_unittest.cpp315 uint32_t target = 27953; in HWTEST_F() local
321 EXPECT_EQ(info.mutable_detail()->pid(), target); in HWTEST_F()
341 uint32_t target[] = {27953, 31750}; in HWTEST_F() local
347 EXPECT_EQ(info.mutable_detail()->pid(), target[0]); in HWTEST_F()
348 EXPECT_EQ(info.mutable_detail()->tid(), target[1]); in HWTEST_F()
367 uint32_t target[] = {27953, 31750}; in HWTEST_F() local
373 EXPECT_EQ(info.mutable_detail()->pid(), target[0]); in HWTEST_F()
374 EXPECT_EQ(info.mutable_detail()->tid(), target[1]); in HWTEST_F()
393 uint32_t target[] = {27953, 31750}; in HWTEST_F() local
399 EXPECT_EQ(info.mutable_detail()->pid(), target[ in HWTEST_F()
419 uint32_t target[] = {27953, 31750}; HWTEST_F() local
445 uint32_t target[] = {27953, 31750}; HWTEST_F() local
471 uint32_t target[] = {27953, 31750}; HWTEST_F() local
497 uint32_t target[] = {27953, 31750}; HWTEST_F() local
523 uint32_t target[] = {27953, 31750}; HWTEST_F() local
550 uint32_t target[] = {27953, 31750}; HWTEST_F() local
[all...]
/developtools/profiler/device/plugins/ftrace_plugin/test/unittest/
H A Dstring_utils_test.cpp124 std::string target = RandomString(RandomInt(1, STR_MAX_SIZE)); in HWTEST_F() local
125 bool isPrefix = (str.substr(0, target.size()) == target); in HWTEST_F()
126 EXPECT_EQ(StringUtils::StartsWith(str, target), isPrefix); in HWTEST_F()
138 std::string target = "de"; in HWTEST_F() local
139 EXPECT_TRUE(StringUtils::Contains(str, target)); in HWTEST_F()
155 std::string target = "de"; in HWTEST_F() local
156 EXPECT_FALSE(StringUtils::Contains(str, target + ".")); in HWTEST_F()
176 std::string target = RandomString(RandomInt(1, static_cast<int>(str.size()))); in HWTEST_F() local
177 bool isContains = (str.find(target) ! in HWTEST_F()
[all...]
/developtools/integration_verification/tools/deps_guard/elf_file_mgr/
H A Delf_walker.py59 target = os.readlink(_asset_file)
60 self._links[_asset_file] = target
79 for src, target in elfFiles.get_link_file_map().items():
80 print('{} -> {}'.format(str, target))
H A Delf_file_mgr.py257 for src, target in self._link_file_map.items():
262 tmp_name = os.path.join(tmp_name, target)
/developtools/profiler/host/smartperf/client/client_command/test/unittest/
H A Dparse_radar_test.cpp39 std::string target = "\"ANIMATION_LATENCY\":"; in HWTEST_F() local
48 std::string result = parseRadar.ExtractString(animationCompleteTime, target); in HWTEST_F()
64 std::string target = "\"RESPONSE_LATENCY\""; in HWTEST_F() local
66 double result = parseRadar.ParseRadarDelayTime(responseTime, target, delayTime); in HWTEST_F()
/developtools/ace_js2bundle/ace-loader/plugin/templater/
H A Dlite_component_map.js369 let target = object[key];
370 if (target != null && !nativekeys.includes(key)) {
377 target = isType.isObject(target) ? target : {};
378 object[key] = merge(target, value, nativekeys);
H A Drich_component_map.js238 target: {},
1190 target: {},
1329 target: {
/developtools/profiler/device/plugins/ftrace_plugin/tools/device_kernel_version/default/event_formatters/
H A Dftrace_cpuhp_event_formatter.cpp38 len = snprintf_s(buffer, BUFFER_SIZE, BUFFER_SIZE - 1, "cpuhp_enter: cpu: %04u target: %3d step: %3d (%s)",
39 msg.cpu(), msg.target(), msg.idx(), functionStr.c_str());
41 len = snprintf_s(buffer, BUFFER_SIZE, BUFFER_SIZE - 1, "cpuhp_enter: cpu: %04u target: %3d step: %3d (%p)",
42 msg.cpu(), msg.target(), msg.idx(), msg.fun());
79 "cpuhp_multi_enter: cpu: %04u target: %3d step: %3d (%s)", msg.cpu(), msg.target(), msg.idx(),
83 "cpuhp_multi_enter: cpu: %04u target: %3d step: %3d (%p)", msg.cpu(), msg.target(), msg.idx(),
/developtools/profiler/host/smartperf/client/client_command/include/
H A Dparse_radar.h28 double ParseRadarDelayTime(const std::string &string, const std::string &target, const int &delayTime) const;
31 std::string ExtractString(const std::string &str, const std::string &target) const;
/developtools/ace_js2bundle/ace-loader/src/lite/
H A Dlite-transform-style.js102 const target = [];
108 target.push({ condition, ...style });
111 return target;
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/hap/utils/
H A DHapUtils.java366 * Slice buffer to target size.
369 * @param targetSize target buffer's size
370 * @return target buffer of target size
382 ByteBuffer target = source.slice(); in sliceBuffer()
383 target.order(source.order()); in sliceBuffer()
384 return target; in sliceBuffer()
403 ByteBuffer target = source.slice(); in sliceBuffer()
404 target.order(source.order()); in sliceBuffer()
405 return target; in sliceBuffer()
[all...]
/developtools/hdc/scripts/
H A Dhdc_test.py77 'boot': ["target boot"],
86 "list targets", "list targets -v", "target mount"
158 if cmd == 'target boot':
402 send_one = threading.Thread(target=file_send, args=(os.path.abspath(send_file), send_file_one, i))
403 send_two = threading.Thread(target=file_send,
405 recv_one = threading.Thread(target=file_recv, args=(recv_file, os.path.abspath(recv_file_one), i))
406 recv_two = threading.Thread(target=file_recv,
452 thread_start = threading.Thread(target=remote_server_start(server_head))
460 threading.Thread(target=run_split_commands(get_basic_commands(), head)).start()
/developtools/profiler/device/plugins/ftrace_plugin/src/
H A Dstring_utils.cpp42 bool StringUtils::Contains(const std::string& str, const std::string& target) in Contains() argument
44 return str.find(target) != std::string::npos; in Contains()
/developtools/smartperf_host/trace_streamer/src/base/
H A Dcodec_cov.cpp45 constexpr int32_t target = 2; in IsUTF8() local
53 if ((num = PreNum(data[i])) <= target) { in IsUTF8()
/developtools/smartperf_host/ide/
H A Dwebpack.config.js50 const target = `${targetPath}/${file}`;
52 fs.copyFile(source, target, (err) => {
/developtools/profiler/device/plugins/ftrace_plugin/include/
H A Dstring_utils.h25 static bool Contains(const std::string& str, const std::string& target);
/developtools/integration_verification/tools/rom_ram_analyzer/standard/
H A Drom_analyzer.py148 根据system_module_info.json生成target字典
189 for target in dest:
191 product_info_dict[target] = {
197 tmp = target.split('/')[-1]
202 product_info_dict[target] = pre_info
/developtools/hiperf/script/
H A Dmake_diff.py77 parser.add_argument('-t', '--target', default='perf.data',
78 type=file_check, help=""" The path of target profiling
87 target data offline unwind stack""")
90 get_used_binaries(args.base,args.target, args.report_html,
/developtools/integration_verification/DeployDevice/src/util/
H A Dtime_info.py97 thd = KThread(target=_new_func, args=(), kwargs=new_kwargs)
/developtools/integration_verification/cases/daily/mini_system/
H A DL0_mini_system_test.py100 read_com_thread = threading.Thread(target=ReadFromComPort,
/developtools/integration_verification/tools/fotff/pkg/dayu200/
H A Ddayu200.go45 // compileCMD is copied from ci project and trim useless build-target 'make_test' to enhance build efficiency.
46 compileCMD = `echo 'start' && export NO_DEVTOOL=1 && export CCACHE_LOG_SUFFIX="dayu200-arm32" && export CCACHE_NOHASHDIR="true" && export CCACHE_SLOPPINESS="include_file_ctime" && ./build.sh --product-name rk3568 --ccache --build-target make_all --gn-args enable_notice_collection=false`

Completed in 12 milliseconds

12