Home
last modified time | relevance | path

Searched refs:info (Results 1 – 25 of 281) sorted by relevance

12345678910>>...12

/developtools/profiler/host/smartperf/doc/
Ddes_stat.md83 数据状态级别总共有4种,分别是:info, warn, error,fatal。由于数据的重要性不同,不同事件的同一种状态可能对应不同的级别。
84 例如binder_transaction_received的 not_supported状态的数据为info级别,而binder_transaction_alloc_buf的not_supporte…
89 | binder_transaction | received | info |
91 | binder_transaction | not_match | info |
92 | binder_transaction | not_supported | info |
94 | binder_transaction_received | received | info |
96 | binder_transaction_received | not_match | info |
97 | binder_transaction_received | not_supported | info |
99 | binder_transaction_alloc_buf | received | info |
101 | binder_transaction_alloc_buf | not_match | info |
[all …]
/developtools/integration_verification/tools/deps_guard/elf_file_mgr/module_info/
Dcompile_info_loader.py34 info = {}
35 info["name"] = item["dest"][0]
36 if info["name"].startswith("updater/"):
38 info["name"] = item["dest"][1]
43 info["labelPath"] = item["label"]
45 info["labelPath"] = ""
46 if info["labelPath"].find("(") > 0:
47 info["labelPath"] = info["labelPath"][:info["labelPath"].find("(")]
49 info["subsystem"] = item["subsystem_name"]
51 if info["labelPath"].startswith("//build/common"):
[all …]
/developtools/profiler/device/services/shared_memory/src/
Dshare_memory_block.cpp120 header_->info.readOffset_ = 0; in CreateBlock()
121 header_->info.writeOffset_ = 0; in CreateBlock()
122 header_->info.memorySize_ = size - sizeof(BlockHeader); in CreateBlock()
123 header_->info.bytesCount_ = 0; in CreateBlock()
124 header_->info.chunkCount_ = 0; in CreateBlock()
130 pthread_mutex_init(&header_->info.mutex_, &muAttr); in CreateBlock()
174 uint32_t wp = header_->info.writeOffset_; in GetCurrentFreeMemory()
175 if (wp + realSize > header_->info.memorySize_) { // 后面部分放不下,从头开始放 in GetCurrentFreeMemory()
176 if (header_->info.readOffset_ == 0) { in GetCurrentFreeMemory()
182 if (wp < header_->info.readOffset_ && header_->info.readOffset_ < wp + realSize) { // in GetCurrentFreeMemory()
[all …]
/developtools/profiler/device/plugins/hilog_plugin/test/unittest/
Dhilog_plugin_unittest.cpp62 HilogInfo info; in WriteFunc() local
63 if (info.ParseFromArray(data, size) <= 0) { in WriteFunc()
66 g_proto.push_back(info); in WriteFunc()
352 HilogLine info; variable
356 plugin.ParseLogLineInfo(data, 0, &info);
357 EXPECT_EQ(info.mutable_detail()->tv_sec(), (uint64_t)0);
358 EXPECT_EQ(info.mutable_detail()->tv_nsec(), (uint64_t)0);
359 EXPECT_EQ(info.mutable_detail()->pid(), (uint32_t)0);
360 EXPECT_EQ(info.mutable_detail()->tid(), (uint32_t)0);
361 EXPECT_EQ(info.mutable_detail()->level(), (uint32_t)0);
[all …]
/developtools/profiler/hidebug/test/unittest/js/
DExampleJsunit.test.js27 console.info('HidebugJsTest beforeAll called')
34 console.info('HidebugJsTest afterAll called')
41 console.info('HidebugJsTest beforeEach called')
48 console.info('HidebugJsTest afterEach called')
67 … console.info("---------------------------HidebugJsTest_001----------------------------------");
97 … console.info("---------------------------HidebugJsTest_002----------------------------------");
127 … console.info("---------------------------HidebugJsTest_003----------------------------------");
135 console.info(error.code);
136 console.info(error.message);
148 … console.info("---------------------------HidebugJsTest_004----------------------------------");
[all …]
/developtools/hiperf/interfaces/kits/js/napi/
Dhiperf_client_napi.cpp75 static std::string GetJsStringFromOption(const napi_env &env, const napi_callback_info &info) in GetJsStringFromOption() argument
79 NAPI_CALL_BASE(env, napi_get_cb_info(env, info, &argc, args, nullptr, nullptr), ""); in GetJsStringFromOption()
93 static bool GetBoolFromOption(const napi_env &env, const napi_callback_info &info) in GetBoolFromOption() argument
97 NAPI_CALL_BASE(env, napi_get_cb_info(env, info, &argc, args, nullptr, nullptr), false); in GetBoolFromOption()
110 static uint32_t GetUintFromOption(const napi_env &env, const napi_callback_info &info) in GetUintFromOption() argument
114 NAPI_CALL_BASE(env, napi_get_cb_info(env, info, &argc, args, nullptr, nullptr), 0); in GetUintFromOption()
127 static napi_value ResetOption(napi_env env, napi_callback_info info) in ResetOption() argument
138 static napi_value SetOutputFilename(napi_env env, napi_callback_info info) in SetOutputFilename() argument
142 const std::string option = GetJsStringFromOption(env, info); in SetOutputFilename()
150 static napi_value GetOutputFileName(napi_env env, napi_callback_info info) in GetOutputFileName() argument
[all …]
/developtools/integration_verification/DeployDevice/src/func/liteOsUpgrade/
DliteOsUpgrade_RK3568_app.py100 logger.info(logFilePath)
103 logger.info(report_path)
105 logger.info(scriptpath)
107 logger.info(local_image_path)
109 logger.info(loader_tool_path)
115 logger.info(f)
120 logger.info("3568 board is connected.")
126 logger.info(h)
135 logger.info(j)
145 logger.info(k)
[all …]
DliteOsUpgrade_L3_app.py63 logger.info(status)
64 logger.info(type(status))
65 logger.info(f'升级状态:{str(status)}')
107 logger.info("download hash string:%s, hash value:%s" % (save_file_str, save_file_name))
153 logger.info("Get lock. Start to ")
163 logger.info(f'modify path:{source_path}')
201 logger.info('path is errror.check the link_path is right,please')
202 logger.info(str(e))
236 logger.info('enter fastboot status'.center(50,'*'))
255 … logger.info('adb -s %s reboot fastboot retcode: %s'% (self.params_dict.get('sn'),str(retcode)))
[all …]
DliteOsUpgrade_L1_shequ_dv_app.py104 logger.info("download hash string:%s, hash value:%s" % (save_file_str, save_file_name))
117 logger.info("current box ip is: %s" % box_ip)
119 logger.info("start to send file")
128 logger.info("push file to tftpserver by other process.")
131 …logger.info("%s exists. Other process has push package and failed. It will push by self" % push_fa…
135 logger.info("wait for other process send succ")
144 logger.info("ip: %s, source_path: %s" % (tftp_ip, local_file_path))
154 logger.info("server base dir is : %s " % server_base_dir)
159 logger.info("mkdir in tftpserver: %s " % server_des_path)
162 logger.info("mkdir in tftpserver: %s " % server_img_path)
[all …]
DliteOsUpgrade_L2_app.py109 logger.info("download hash value:%s" % (save_file_name))
147 logger.info("Get lock. Start to ")
227 logger.info("hiburn tool path is: %s" % hiburntoolpath)
234 logger.info("copy %s to %s" % (toolpath, hiburntoolpath))
239 logger.info("unzip to %s succ" % (hiburntoolpath))
248 logger.info("replace line: %s " % line)
280 logger.info(f'scriptfile:{scriptfile}')
287 logger.info("cmd is: %s" % cmd)
289 logger.info("usb upgrade result: %s " % ret)
290 logger.info("print console: %s " % outpri)
[all …]
DliteOsUpgrade_linux_app.py110 logger.info("download hash value:%s" % (save_file_name))
147 logger.info("Get lock. Start to ")
221 logger.info("hiburn tool path is: %s" % hiburntoolpath)
228 logger.info("copy %s to %s" % (toolpath, hiburntoolpath))
233 logger.info("unzip to %s succ" % (hiburntoolpath))
242 logger.info("replace line: %s " % line)
265 logger.info(f'scriptfile:{scriptfile}')
268 logger.info("before excute hiburn,current path is: %s" % current_path)
270 logger.info("excute hiburn path is: %s" % os.getcwd())
281 logger.info("cmd is: %s" % cmd)
[all …]
DliteOsUpgrade_L1_shequ_app copy.py107 logger.info("download hash value:%s" % (save_file_name))
144 logger.info("Get lock. Start to ")
218 logger.info("hiburn tool path is: %s" % hiburntoolpath)
225 logger.info("copy %s to %s" % (toolpath, hiburntoolpath))
230 logger.info("unzip to %s succ" % (hiburntoolpath))
239 logger.info("replace line: %s " % line)
266 logger.info(f'scriptfile:{scriptfile}')
269 logger.info("before excute hiburn,current path is: %s" % current_path)
271 logger.info("excute hiburn path is: %s" % os.getcwd())
280 logger.info("cmd is: %s" % cmd)
[all …]
DliteOsUpgrade_L1_shequ_app.py108 logger.info("download hash value:%s" % (save_file_name))
145 logger.info("Get lock. Start to ")
219 logger.info("hiburn tool path is: %s" % hiburntoolpath)
226 logger.info("copy %s to %s" % (toolpath, hiburntoolpath))
231 logger.info("unzip to %s succ" % (hiburntoolpath))
240 logger.info("replace line: %s " % line)
267 logger.info(f'scriptfile:{scriptfile}')
270 logger.info("before excute hiburn,current path is: %s" % current_path)
272 logger.info("excute hiburn path is: %s" % os.getcwd())
281 logger.info("cmd is: %s" % cmd)
[all …]
DliteOsUpgrade_L2_app - 副本.py103 logger.info("download hash value:%s" % (save_file_name))
141 logger.info("Get lock. Start to ")
216 logger.info("hiburn tool path is: %s" % hiburntoolpath)
223 logger.info("copy %s to %s" % (toolpath, hiburntoolpath))
228 logger.info("unzip to %s succ" % (hiburntoolpath))
237 logger.info("replace line: %s " % line)
258 logger.info(f'scriptfile:{scriptfile}')
261 logger.info("before excute hiburn,current path is: %s" % current_path)
263 logger.info("excute hiburn path is: %s" % os.getcwd())
272 logger.info("cmd is: %s" % cmd)
[all …]
/developtools/ace_js2bundle/ace-loader/sample/ServiceAbility/
Dservice.js18 console.info('ServiceAbility onStart');
21 console.info('ServiceAbility onStop');
24 console.info('ServiceAbility onConnect');
27 console.info('ServiceAbility onReconnect');
30 console.info('ServiceAbility onDisconnect');
33 console.info('ServiceAbility onCommand');
36 console.info('ServiceAbility onRemoteRequest');
/developtools/profiler/device/plugins/ftrace_plugin/src/
Dkernel_symbols_parser.cpp76 KernelSymbol info; in Parse() local
86 if (ss >> addrStr >> info.type >> info.name) { in Parse()
87 info.addr = strtoull(addrStr.c_str(), nullptr, ADDR_VALUE_BASE); in Parse()
89 if (info.addr == 0) { in Parse()
92 if (StringUtils::EndsWith(info.name, ".cfi")) { in Parse()
93 info.name = info.name.substr(0, info.name.size() - (sizeof(".cfi") - 1)); in Parse()
95 if (IsValidTextSymbol(info)) { in Parse()
99 kernelSymbols_[count] = info; in Parse()
/developtools/integration_verification/DeployDevice/src/aw/Download/
DDownload.py61 logger.info(torrent_exist_url)
73 logger.info("The torrent of %s created seccessfully" % source_path)
77 … logger.info("The torrent of %s is creating , please wait for a moment" % source_path)
79 logger.info(ret)
81 logger.info("The torrent of %s created failed" % source_path)
90 logger.info("The torrent of %s downloaded successed" % source_path)
96 logger.info("The torrent of %s downloaded failed" % source_path)
129 logger.info("wait other process download")
134 logger.info("%s exists. Package has been download successfully" \
158 logger.info("%s has been download by other process." % download_dir)
[all …]
DDownloadold.py61 logger.info(torrent_exist_url)
73 logger.info("The torrent of %s created seccessfully" % source_path)
77 … logger.info("The torrent of %s is creating , please wait for a moment" % source_path)
79 logger.info(ret)
81 logger.info("The torrent of %s created failed" % source_path)
90 logger.info("The torrent of %s downloaded successed" % source_path)
96 logger.info("The torrent of %s downloaded failed" % source_path)
128 logger.info("wait other process download")
133 logger.info("%s exists. Package has been download successfully" \
156 logger.info("%s has been download by other process." % download_dir)
[all …]
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/profiler/item/
DNetWork.ts36 connection.getNetCapabilities(netHandle).then(function (info) {
37 if(info != undefined){
62 connection.getNetCapabilities(netHandle).then(function (info) {
63 SPLogger.DEBUG(NetWork.name,"networkInfo up:" + info["linkUpBandwidthKbps"] )
64 SPLogger.DEBUG(NetWork.name,"networkInfo down:" + info["linkDownBandwidthKbps"])
65 that.catchNetDown = info["linkDownBandwidthKbps"].toString()
66 that.catchNetUp = info["linkUpBandwidthKbps"].toString()
/developtools/integration_verification/DeployDevice/src/aw/Telnet/
DTelnetClient.py24 logger.info("init telnet %s:%s" % (telip, telport))
31 logger.info("telnet login")
33 logger.info("cmd result: %s" % rets)
35 logger.info("Noneed login")
49 logger.info(send_cmd)
59 logger.info("send enter to board")
66 logger.info("retry send Enter")
76 logger.info("result: %s" % rets)
89 logger.info("result: %s" % rets)
101 logger.info("cmd is: %s" % sendcmd)
[all …]
/developtools/smartperf_host/ide/src/trace/component/
DSpInfoAndStas.ts20 import { info } from '../../log/Log.js';
41 info(`InfoAndStatsData query time is: ${durTime}ms`);
47 info('metaData(metric) size is: ', this.metaData.length);
60 info('infoData(metric) size is: ', this.infoData.length);
105 let info = await querySelectTraceStats();
106 if (info) {
107 for (let index = 0; index < info.length; index++) {
109 eventName: info[index].event_name,
110 statType: info[index].stat_type,
111 count: info[index].count,
/developtools/profiler/device/plugins/api/test/unittest/
Dbuffer_write_test.cpp64 header_->info.readOffset_ = 0; in InitShareMemory1()
65 header_->info.writeOffset_ = 0; in InitShareMemory1()
66 header_->info.memorySize_ = SMB1_SIZE - sizeof(ShareMemoryBlock::BlockHeader); in InitShareMemory1()
67 header_->info.bytesCount_ = 0; in InitShareMemory1()
68 header_->info.chunkCount_ = 0; in InitShareMemory1()
101 header_->info.readOffset_ = 0; in InitShareMemory2()
102 header_->info.writeOffset_ = 0; in InitShareMemory2()
103 header_->info.memorySize_ = SMB2_SIZE - sizeof(ShareMemoryBlock::BlockHeader); in InitShareMemory2()
104 header_->info.bytesCount_ = 0; in InitShareMemory2()
105 header_->info.chunkCount_ = 0; in InitShareMemory2()
[all …]
/developtools/profiler/host/smartperf/ide/src/trace/component/chart/
DSpChartManager.ts27 import { info } from '../../../log/Log.js';
97 info('timerShaftEL Data initialized');
100 info('cpu Data initialized');
106 info('ProcessThreadState Data initialized');
109 info('Cpu Rate Data initialized');
116 info('Cpu Freq Data initialized');
120 info('FPS Data initialized');
123 info('Native Memory Data initialized');
126 info('js Memory Data initialized');
131 info('Perf Files Data initialized');
[all …]
/developtools/profiler/host/smartperf/ide/src/trace/component/
DSpInfoAndStas.ts20 import { info } from '../../log/Log.js';
53 info('InfoAndStatsData query time is: ' + durTime + 'ms');
65 info('metaData(metric) size is: ', this.metaData.length);
76 info('infoData(metric) size is: ', this.infoData.length);
126 let info = await querySelectTraceStats();
127 if (info) {
128 for (let index = 0; index < info.length; index++) {
130 event_name: info[index].event_name,
131 stat_type: info[index].stat_type,
132 count: info[index].count,
/developtools/profiler/device/plugins/hiebpf_plugin/tools/src/
Debpf_converter.cpp239 SymbolInfo info = {}; in SymbolInfoParsing() local
240 CHK(Read(reinterpret_cast<void*>(&info), EVENT_SYM_FIXED_SIZE)); in SymbolInfoParsing()
242 info.strTab = new char[info.strTabLen + 1]; in SymbolInfoParsing()
243 if (memset_s(info.strTab, info.strTabLen + 1, 0, info.strTabLen + 1) != EOK) { in SymbolInfoParsing()
247 if (info.strTabLen > 0) { in SymbolInfoParsing()
252 CHK(Read(reinterpret_cast<void*>(info.strTab), info.strTabLen)); in SymbolInfoParsing()
254 info.symTab = new char[info.symTabLen + 1]; in SymbolInfoParsing()
255 if (memset_s(info.symTab, info.symTabLen + 1, 0, info.symTabLen + 1) != EOK) { in SymbolInfoParsing()
259 if (info.symTabLen > 0) { in SymbolInfoParsing()
264 CHK(Read(reinterpret_cast<void*>(info.symTab), info.symTabLen)); in SymbolInfoParsing()
[all …]

12345678910>>...12