Home
last modified time | relevance | path

Searched refs:componentId (Results 1 – 13 of 13) sorted by relevance

/developtools/smartperf_host/ide/src/trace/database/sql/
DSdk.sql.ts20 export const querySdkCount = (sql: string, componentId: number, args?: any): Promise<Array<any>> =>
21 query('querySdkCount', sql, args, 'exec-sdk-' + componentId);
26 componentId: number
28 query('querySdkCounterData', sql, { $counter_id: counter_id }, 'exec-sdk-' + componentId);
36 componentId: number
47 'exec-sdk-' + componentId
54 componentId: number
63 'exec-sdk-' + componentId
72 componentId: number
83 'exec-sdk-' + componentId
[all …]
/developtools/smartperf_host/ide/src/trace/component/chart/
DSpSdkChart.ts188 for (let componentId of tableKeys) {
189 let table = tablesMap.get(componentId);
191 let nodeRow = this.initNodeRow(componentId, table[0].name);
195 let result = await querySdkCount(sqlMap.countSql, componentId);
197 await this.initCounter(nodeRow, i, result[i], sqlMap, componentId);
202 … let result = await querySdkCount(sqlMap.countSql, componentId, {$suffix: `%${ suffixList[i]}`});
206 await this.initSlice(groupNodeRow, i, result[i], sqlMap, componentId);
210 let result = await querySdkCount(sqlMap.countOtherSql, componentId);
214 await this.initSlice(groupNodeRow, i, result[i], sqlMap, componentId);
218 let result = await querySdkCount(sqlMap.countSql, componentId, {});
[all …]
/developtools/smartperf_host/trace_streamer/src/rpc/
Dwasm_func.cpp41 using SendDataCallBack = void (*)(const char* data, int32_t len, int32_t componentId);
166 void ThirdPary_SendDataCallback(const char* pluginData, int32_t len, int32_t componentId) in ThirdPary_SendDataCallback() argument
169 g_sendData(pluginData, len, componentId); in ThirdPary_SendDataCallback()
192 int32_t componentId; in TraceStreamer_Plugin_Out_Filter() local
195 componentId = itor->first; in TraceStreamer_Plugin_Out_Filter()
196 return TraceStreamer_Plugin_Out_SendData(pluginData, len, componentId); in TraceStreamer_Plugin_Out_Filter()
203 int32_t TraceStreamer_Plugin_Out_SendData(const char* pluginData, int32_t len, int32_t componentId) in TraceStreamer_Plugin_Out_SendData() argument
205 ThirdPary_SendDataCallback(pluginData, len, componentId); in TraceStreamer_Plugin_Out_SendData()
Dwasm_func.h45 int32_t TraceStreamer_Plugin_Out_SendData(const char* pluginData, int32_t len, int32_t componentId);
Drpc_server.cpp450 int32_t componentId = std::stoi(comPonentStr.at(m)); in TraceStreamer_Init_ThirdParty_Config() local
452 … TS_LOGI("comPonentStr[m] = %d, comPonentStr[m + 1] = %s", componentId, componentName.c_str()); in TraceStreamer_Init_ThirdParty_Config()
453 …g_thirdPartyConfig.insert((std::map<int32_t, std::string>::value_type(componentId, componentName))… in TraceStreamer_Init_ThirdParty_Config()
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/sdk/
DTabPaneSdkCounter.ts108 let componentId: number = -1;
112 componentId = Number(values[1]);
115 let sqlObj = this.sqlMap.get(componentId);
117 … getTabSdkCounterLeftData(sql, sdkVal.leftNs + startTime, counters, componentId).then((res) => {
120 …getTabSdkCounterData(sql, startTime, leftTime, sdkVal.rightNs, counters, componentId).then((counte…
DTabPaneSdkSlice.ts62 let componentId: number = -1;
67 componentId = Number(values[1]);
71 let sql = this.sqlMap.get(componentId);
75 …TabSdkSliceData(sql, startTime, sdkSliceVal.leftNs, sdkSliceVal.rightNs, slices, componentId).then(
/developtools/smartperf_host/trace_streamer/sdk/demo_sdk/sdk/
Dwasm_func.cpp124 EMSCRIPTEN_KEEPALIVE int32_t ParserData(int32_t len, int32_t componentId) in ParserData() argument
126 g_demoWasmTraceStreamer.demoTs_->sdkDataParser_->ParserData(g_reqBuf, len, componentId); in ParserData()
Dsdk_data_parser.cpp65 int32_t SDKDataParser::ParserData(const uint8_t* data, int32_t len, int32_t componentId) in ParserData() argument
67 if (componentId == DATA_TYPE_CLOCK) { in ParserData()
Dsdk_data_parser.h49 int32_t ParserData(const uint8_t* data, int32_t len, int32_t componentId);
/developtools/smartperf_host/trace_streamer/sdk/demo_sdk/doc/
DTraceStreamerSDK.md291 `componentId: 第三方wasm插件ID`
296 EMSCRIPTEN_KEEPALIVE int ParserData(int len, int componentId)
/developtools/smartperf_host/ide/src/trace/component/setting/
DSpSdkConfig.ts97 componentId: config.componentId,
/developtools/smartperf_host/ide/src/trace/database/
DTraceWorker.ts287 return item.componentId + ';' + item.pluginName;
303 return wasmConfig.componentId == componentID;
308 if (!model && config.componentId === componentID) {