Home
last modified time | relevance | path

Searched refs:output_str (Results 1 – 4 of 4) sorted by relevance

/linux/tools/perf/scripts/python/
H A Dflamegraph.py195 output_str = "".join([
201 output_str = MINIMAL_HTML
205 download_md5sum = hashlib.md5(output_str.encode("utf-8")).hexdigest()
216 output_str = output_str.replace("/** @options_json **/", options_json)
217 output_str = output_str.replace("/** @flamegraph_json **/", stacks_json)
221 output_str = stacks_json
226 out.write(output_str)
231 out.write(output_str)
H A Dintel-pt-events.py115 output_str = glb_output.getvalue()[glb_output_pos:]
116 n = len(output_str)
121 glb_stash_dict[glb_cpu].append(output_str)
/linux/tools/hv/
H A Dhv_kvp_daemon.c1332 char addr[INET6_ADDRSTRLEN], *output_str; in process_dns_gateway_nm() local
1343 output_str = (char *)calloc(OUTSTR_BUF_SIZE, sizeof(char)); in process_dns_gateway_nm()
1344 if (!output_str) in process_dns_gateway_nm()
1363 if ((OUTSTR_BUF_SIZE - strlen(output_str)) > in process_dns_gateway_nm()
1365 strncat(output_str, addr, in process_dns_gateway_nm()
1367 strlen(output_str) - 1); in process_dns_gateway_nm()
1368 strncat(output_str, ",", in process_dns_gateway_nm()
1370 strlen(output_str) - 1); in process_dns_gateway_nm()
1377 if (strlen(output_str)) { in process_dns_gateway_nm()
1382 output_str[strlen(output_str) - 1] = '\0'; in process_dns_gateway_nm()
[all …]
/linux/tools/perf/
H A Dbuiltin-c2c.c3126 const char *output_str, *sort_str = NULL; in perf_c2c__report() local
3292 output_str = "cl_idx," in perf_c2c__report()
3307 output_str = "cl_idx," in perf_c2c__report()
3331 c2c_hists__reinit(&c2c.hists, output_str, sort_str, perf_session__env(session)); in perf_c2c__report()