Skip to content

Instantly share code, notes, and snippets.

@omo
Created April 15, 2015 00:31
Show Gist options
  • Save omo/857f0f29d05cd76a5b7f to your computer and use it in GitHub Desktop.
Save omo/857f0f29d05cd76a5b7f to your computer and use it in GitHub Desktop.
IPC::Channel perf comparison
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" width="1200" height="770" onload="init(evt)" viewBox="0 0 1200 770" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs >
<linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
<stop stop-color="#eeeeee" offset="5%" />
<stop stop-color="#eeeeb0" offset="95%" />
</linearGradient>
</defs>
<style type="text/css">
.func_g:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
</style>
<script type="text/ecmascript">
<![CDATA[
var details, svg;
function init(evt) {
details = document.getElementById("details").firstChild;
svg = document.getElementsByTagName("svg")[0];
}
function s(info) { details.nodeValue = "Function: " + info; }
function c() { details.nodeValue = ' '; }
function find_child(parent, name, attr) {
var children = parent.childNodes;
for (var i=0; i<children.length;i++) {
if (children[i].tagName == name)
return (attr != undefined) ? children[i].attributes[attr].value : children[i];
}
return;
}
function orig_save(e, attr, val) {
if (e.attributes["_orig_"+attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("_orig_"+attr, val);
}
function orig_load(e, attr) {
if (e.attributes["_orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["_orig_"+attr].value;
e.removeAttribute("_orig_"+attr);
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes["width"].value) -3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)/,"");
t.attributes["x"].value = parseFloat(r.attributes["x"].value) +3;
// Smaller than this size won't fit anything
if (w < 2*12*0.59) {
t.textContent = "";
return;
}
t.textContent = txt;
// Fit in full text width
if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w)
return;
for (var x=txt.length-2; x>0; x--) {
if (t.getSubStringLength(0, x+2) <= w) {
t.textContent = txt.substring(0,x) + "..";
return;
}
}
t.textContent = "";
}
function zoom_reset(e) {
if (e.attributes != undefined) {
orig_load(e, "x");
orig_load(e, "width");
}
if (e.childNodes == undefined) return;
for(var i=0, c=e.childNodes; i<c.length; i++) {
zoom_reset(c[i]);
}
}
function zoom_child(e, x, ratio) {
if (e.attributes != undefined) {
if (e.attributes["x"] != undefined) {
orig_save(e, "x");
e.attributes["x"].value = (parseFloat(e.attributes["x"].value) - x - 10) * ratio + 10;
if(e.tagName == "text") e.attributes["x"].value = find_child(e.parentNode, "rect", "x") + 3;
}
if (e.attributes["width"] != undefined) {
orig_save(e, "width");
e.attributes["width"].value = parseFloat(e.attributes["width"].value) * ratio;
}
}
if (e.childNodes == undefined) return;
for(var i=0, c=e.childNodes; i<c.length; i++) {
zoom_child(c[i], x-10, ratio);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes["x"] != undefined) {
orig_save(e, "x");
e.attributes["x"].value = 10;
}
if (e.attributes["width"] != undefined) {
orig_save(e, "width");
e.attributes["width"].value = parseInt(svg.width.baseVal.value) - (10*2);
}
}
if (e.childNodes == undefined) return;
for(var i=0, c=e.childNodes; i<c.length; i++) {
zoom_parent(c[i]);
}
}
function zoom(node) {
var attr = find_child(node, "rect").attributes;
var width = parseFloat(attr["width"].value);
var xmin = parseFloat(attr["x"].value);
var xmax = parseFloat(xmin + width);
var ymin = parseFloat(attr["y"].value);
var ratio = (svg.width.baseVal.value - 2*10) / width;
// XXX: Workaround for JavaScript float issues (fix me)
var fudge = 0.0001;
var unzoombtn = document.getElementById("unzoom");
unzoombtn.style["opacity"] = "1.0";
var el = document.getElementsByTagName("g");
for(var i=0;i<el.length;i++){
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseFloat(a["x"].value);
var ew = parseFloat(a["width"].value);
// Is it an ancestor
if (0 == 0) {
var upstack = parseFloat(a["y"].value) > ymin;
} else {
var upstack = parseFloat(a["y"].value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.style["opacity"] = "0.5";
zoom_parent(e);
e.onclick = function(e){unzoom(); zoom(this);};
update_text(e);
}
// not in current path
else
e.style["display"] = "none";
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.style["display"] = "none";
}
else {
zoom_child(e, xmin, ratio);
e.onclick = function(e){zoom(this);};
update_text(e);
}
}
}
}
function unzoom() {
var unzoombtn = document.getElementById("unzoom");
unzoombtn.style["opacity"] = "0.0";
var el = document.getElementsByTagName("g");
for(i=0;i<el.length;i++) {
el[i].style["display"] = "block";
el[i].style["opacity"] = "1";
zoom_reset(el[i]);
update_text(el[i]);
}
}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="770.0" fill="url(#background)" />
<text text-anchor="middle" x="600.00" y="24" font-size="17" font-family="Verdana" fill="rgb(0,0,0)" >Flame Graph</text>
<text text-anchor="" x="10.00" y="753" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="details" > </text>
<text text-anchor="" x="10.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="unzoom" onclick="unzoom()" style="opacity:0.0;cursor:pointer" >Reset Zoom</text>
<g class="func_g" onmouseover="s('system_call_after_swapgs (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_after_swapgs (2 samples, 0.08%)</title><rect x="230.3" y="545" width="0.9" height="15.0" fill="rgb(230,59,7)" rx="2" ry="2" />
<text text-anchor="" x="233.28" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_unlink (5 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_unlink (5 samples, 0.19%)</title><rect x="531.0" y="385" width="2.2" height="15.0" fill="rgb(223,107,23)" rx="2" ry="2" />
<text text-anchor="" x="533.96" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('resched_task (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>resched_task (1 samples, 0.04%)</title><rect x="946.6" y="97" width="0.4" height="15.0" fill="rgb(214,192,53)" rx="2" ry="2" />
<text text-anchor="" x="949.55" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (2 samples, 0.08%)</title><rect x="326.6" y="337" width="0.9" height="15.0" fill="rgb(236,113,1)" rx="2" ry="2" />
<text text-anchor="" x="329.57" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::DoDelayedWork (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::DoDelayedWork (3 samples, 0.12%)</title><rect x="34.1" y="593" width="1.3" height="15.0" fill="rgb(229,18,41)" rx="2" ry="2" />
<text text-anchor="" x="37.07" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_dl_relocate_object (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_dl_relocate_object (1 samples, 0.04%)</title><rect x="1176.8" y="657" width="0.5" height="15.0" fill="rgb(218,38,9)" rx="2" ry="2" />
<text text-anchor="" x="1179.83" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('vm_mmap_pgoff (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>vm_mmap_pgoff (1 samples, 0.04%)</title><rect x="30.0" y="561" width="0.4" height="15.0" fill="rgb(233,91,47)" rx="2" ry="2" />
<text text-anchor="" x="32.98" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (1 samples, 0.04%)</title><rect x="914.8" y="145" width="0.4" height="15.0" fill="rgb(218,126,46)" rx="2" ry="2" />
<text text-anchor="" x="917.76" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('testing::Test::Run (1,253 samples, 48.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>testing::Test::Run (1,253 samples, 48.23%)</title><rect x="596.8" y="577" width="569.1" height="15.0" fill="rgb(243,92,45)" rx="2" ry="2" />
<text text-anchor="" x="599.82" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >testing::Test::Run</text>
</g>
<g class="func_g" onmouseover="s('apparmor_socket_sendmsg (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_sendmsg (1 samples, 0.04%)</title><rect x="317.0" y="369" width="0.5" height="15.0" fill="rgb(248,38,2)" rx="2" ry="2" />
<text text-anchor="" x="320.04" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_after_swapgs (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_after_swapgs (3 samples, 0.12%)</title><rect x="28.2" y="657" width="1.3" height="15.0" fill="rgb(235,64,52)" rx="2" ry="2" />
<text text-anchor="" x="31.17" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_scan_ready_list.isra.9 (41 samples, 1.58%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_scan_ready_list.isra.9 (41 samples, 1.58%)</title><rect x="710.4" y="417" width="18.6" height="15.0" fill="rgb(251,49,36)" rx="2" ry="2" />
<text text-anchor="" x="713.37" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (2 samples, 0.08%)</title><rect x="764.9" y="321" width="0.9" height="15.0" fill="rgb(241,125,47)" rx="2" ry="2" />
<text text-anchor="" x="767.87" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_ZN4base11MessageLoop13DoDelayedWorkEPNS_9TimeTicksE@plt (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4base11MessageLoop13DoDelayedWorkEPNS_9TimeTicksE@plt (1 samples, 0.04%)</title><rect x="599.1" y="513" width="0.4" height="15.0" fill="rgb(249,161,51)" rx="2" ry="2" />
<text text-anchor="" x="602.09" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::MessageAttachmentSet::CommitAll (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::MessageAttachmentSet::CommitAll (1 samples, 0.04%)</title><rect x="840.3" y="369" width="0.4" height="15.0" fill="rgb(248,31,13)" rx="2" ry="2" />
<text text-anchor="" x="843.27" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('event_active (10 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>event_active (10 samples, 0.38%)</title><rect x="591.4" y="561" width="4.5" height="15.0" fill="rgb(213,130,0)" rx="2" ry="2" />
<text text-anchor="" x="594.37" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_entry (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (2 samples, 0.08%)</title><rect x="674.0" y="449" width="0.9" height="15.0" fill="rgb(218,155,29)" rx="2" ry="2" />
<text text-anchor="" x="677.03" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::OnLibeventNotification (7 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::OnLibeventNotification (7 samples, 0.27%)</title><rect x="647.7" y="497" width="3.2" height="15.0" fill="rgb(230,49,28)" rx="2" ry="2" />
<text text-anchor="" x="650.69" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_setaffinity@@GLIBC_2.3.4 (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_setaffinity@@GLIBC_2.3.4 (4 samples, 0.15%)</title><rect x="30.4" y="609" width="1.9" height="15.0" fill="rgb(249,0,45)" rx="2" ry="2" />
<text text-anchor="" x="33.44" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::DoWork (18 samples, 0.69%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::DoWork (18 samples, 0.69%)</title><rect x="639.1" y="497" width="8.1" height="15.0" fill="rgb(213,128,53)" rx="2" ry="2" />
<text text-anchor="" x="642.06" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('auditsys (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>auditsys (4 samples, 0.15%)</title><rect x="1032.4" y="417" width="1.8" height="15.0" fill="rgb(208,147,24)" rx="2" ry="2" />
<text text-anchor="" x="1035.39" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_aio_write (169 samples, 6.51%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_aio_write (169 samples, 6.51%)</title><rect x="875.7" y="305" width="76.8" height="15.0" fill="rgb(215,29,9)" rx="2" ry="2" />
<text text-anchor="" x="878.70" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sock_aio..</text>
</g>
<g class="func_g" onmouseover="s('__perf_event_task_sched_in (7 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (7 samples, 0.27%)</title><rect x="196.7" y="417" width="3.2" height="15.0" fill="rgb(230,117,16)" rx="2" ry="2" />
<text text-anchor="" x="199.67" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rb_erase (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>rb_erase (4 samples, 0.15%)</title><rect x="773.5" y="337" width="1.8" height="15.0" fill="rgb(220,93,15)" rx="2" ry="2" />
<text text-anchor="" x="776.50" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.04%)</title><rect x="969.7" y="401" width="0.5" height="15.0" fill="rgb(218,198,47)" rx="2" ry="2" />
<text text-anchor="" x="972.72" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('memset (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>memset (3 samples, 0.12%)</title><rect x="417.4" y="481" width="1.4" height="15.0" fill="rgb(254,193,43)" rx="2" ry="2" />
<text text-anchor="" x="420.41" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apparmor_file_permission (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (2 samples, 0.08%)</title><rect x="1100.5" y="337" width="0.9" height="15.0" fill="rgb(220,103,7)" rx="2" ry="2" />
<text text-anchor="" x="1103.52" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_mmap_pgoff (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_mmap_pgoff (1 samples, 0.04%)</title><rect x="1176.4" y="625" width="0.4" height="15.0" fill="rgb(214,138,44)" rx="2" ry="2" />
<text text-anchor="" x="1179.37" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::Message::EnsureMessageAttachmentSet (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::Message::EnsureMessageAttachmentSet (2 samples, 0.08%)</title><rect x="294.3" y="465" width="0.9" height="15.0" fill="rgb(244,221,48)" rx="2" ry="2" />
<text text-anchor="" x="297.33" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('load_elf_binary (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>load_elf_binary (1 samples, 0.04%)</title><rect x="30.0" y="609" width="0.4" height="15.0" fill="rgb(237,177,33)" rx="2" ry="2" />
<text text-anchor="" x="32.98" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__perf_event_task_sched_out (25 samples, 0.96%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_out (25 samples, 0.96%)</title><rect x="200.3" y="417" width="11.4" height="15.0" fill="rgb(238,79,13)" rx="2" ry="2" />
<text text-anchor="" x="203.31" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (11 samples, 0.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (11 samples, 0.42%)</title><rect x="301.6" y="433" width="5.0" height="15.0" fill="rgb(206,174,39)" rx="2" ry="2" />
<text text-anchor="" x="304.59" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_cfs_shares (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (4 samples, 0.15%)</title><rect x="188.0" y="369" width="1.9" height="15.0" fill="rgb(215,64,4)" rx="2" ry="2" />
<text text-anchor="" x="191.04" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apparmor_socket_recvmsg (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_recvmsg (2 samples, 0.08%)</title><rect x="494.6" y="401" width="0.9" height="15.0" fill="rgb(237,112,10)" rx="2" ry="2" />
<text text-anchor="" x="497.63" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::Message::Message (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::Message::Message (1 samples, 0.04%)</title><rect x="266.6" y="497" width="0.5" height="15.0" fill="rgb(244,96,50)" rx="2" ry="2" />
<text text-anchor="" x="269.62" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_inodes (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_inodes (1 samples, 0.04%)</title><rect x="865.3" y="353" width="0.4" height="15.0" fill="rgb(220,132,1)" rx="2" ry="2" />
<text text-anchor="" x="868.25" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ksize (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>ksize (3 samples, 0.12%)</title><rect x="905.7" y="257" width="1.3" height="15.0" fill="rgb(245,15,33)" rx="2" ry="2" />
<text text-anchor="" x="908.67" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('std::string::_Rep::_S_create (10 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::string::_Rep::_S_create (10 samples, 0.38%)</title><rect x="1185.5" y="689" width="4.5" height="15.0" fill="rgb(248,229,10)" rx="2" ry="2" />
<text text-anchor="" x="1188.46" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_ZN4baseeqERKNS_16BasicStringPieceISsEES3_@plt (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4baseeqERKNS_16BasicStringPieceISsEES3_@plt (1 samples, 0.04%)</title><rect x="430.6" y="497" width="0.4" height="15.0" fill="rgb(213,105,15)" rx="2" ry="2" />
<text text-anchor="" x="433.59" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::TimeDelta::SaturatedAdd (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::TimeDelta::SaturatedAdd (2 samples, 0.08%)</title><rect x="1000.1" y="417" width="1.0" height="15.0" fill="rgb(208,123,50)" rx="2" ry="2" />
<text text-anchor="" x="1003.15" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fget_light (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>fget_light (1 samples, 0.04%)</title><rect x="696.3" y="449" width="0.4" height="15.0" fill="rgb(221,29,4)" rx="2" ry="2" />
<text text-anchor="" x="699.29" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('std::string::compare (6 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::string::compare (6 samples, 0.23%)</title><rect x="1004.7" y="417" width="2.7" height="15.0" fill="rgb(247,73,18)" rx="2" ry="2" />
<text text-anchor="" x="1007.69" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('wait_for_unix_gc (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>wait_for_unix_gc (1 samples, 0.04%)</title><rect x="382.0" y="353" width="0.4" height="15.0" fill="rgb(218,35,12)" rx="2" ry="2" />
<text text-anchor="" x="384.99" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator new (16 samples, 0.62%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (16 samples, 0.62%)</title><rect x="1135.0" y="465" width="7.3" height="15.0" fill="rgb(245,64,47)" rx="2" ry="2" />
<text text-anchor="" x="1138.04" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('memcpy_toiovec (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>memcpy_toiovec (2 samples, 0.08%)</title><rect x="530.1" y="369" width="0.9" height="15.0" fill="rgb(224,100,7)" rx="2" ry="2" />
<text text-anchor="" x="533.05" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irq (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irq (1 samples, 0.04%)</title><rect x="1172.3" y="625" width="0.4" height="15.0" fill="rgb(224,210,33)" rx="2" ry="2" />
<text text-anchor="" x="1175.29" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fget_light (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>fget_light (1 samples, 0.04%)</title><rect x="1046.9" y="401" width="0.5" height="15.0" fill="rgb(253,99,53)" rx="2" ry="2" />
<text text-anchor="" x="1049.93" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (7 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (7 samples, 0.27%)</title><rect x="861.6" y="337" width="3.2" height="15.0" fill="rgb(206,32,45)" rx="2" ry="2" />
<text text-anchor="" x="864.62" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dput (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>dput (2 samples, 0.08%)</title><rect x="305.7" y="401" width="0.9" height="15.0" fill="rgb(225,124,4)" rx="2" ry="2" />
<text text-anchor="" x="308.68" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_ZN3IPC12ChannelPosix25CloseClientFileDescriptorEv@plt (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZN3IPC12ChannelPosix25CloseClientFileDescriptorEv@plt (1 samples, 0.04%)</title><rect x="1022.4" y="433" width="0.5" height="15.0" fill="rgb(232,54,5)" rx="2" ry="2" />
<text text-anchor="" x="1025.40" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_min_vruntime (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_min_vruntime (2 samples, 0.08%)</title><rect x="192.1" y="369" width="0.9" height="15.0" fill="rgb(229,52,11)" rx="2" ry="2" />
<text text-anchor="" x="195.13" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator new (5 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (5 samples, 0.19%)</title><rect x="979.7" y="401" width="2.3" height="15.0" fill="rgb(225,151,20)" rx="2" ry="2" />
<text text-anchor="" x="982.71" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__write_nocancel (198 samples, 7.62%)')" onmouseout="c()" onclick="zoom(this)">
<title>__write_nocancel (198 samples, 7.62%)</title><rect x="297.1" y="465" width="89.9" height="15.0" fill="rgb(228,159,48)" rx="2" ry="2" />
<text text-anchor="" x="300.05" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__write_no..</text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (6 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (6 samples, 0.23%)</title><rect x="703.6" y="417" width="2.7" height="15.0" fill="rgb(250,130,27)" rx="2" ry="2" />
<text text-anchor="" x="706.56" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_disable (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_disable (1 samples, 0.04%)</title><rect x="211.2" y="401" width="0.5" height="15.0" fill="rgb(212,225,54)" rx="2" ry="2" />
<text text-anchor="" x="214.21" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('Pickle::Resize (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>Pickle::Resize (4 samples, 0.15%)</title><rect x="965.6" y="385" width="1.8" height="15.0" fill="rgb(239,135,11)" rx="2" ry="2" />
<text text-anchor="" x="968.63" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_write (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (4 samples, 0.15%)</title><rect x="858.4" y="369" width="1.9" height="15.0" fill="rgb(213,210,10)" rx="2" ry="2" />
<text text-anchor="" x="861.44" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::DoIdleWork (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::DoIdleWork (1 samples, 0.04%)</title><rect x="602.7" y="513" width="0.5" height="15.0" fill="rgb(221,37,31)" rx="2" ry="2" />
<text text-anchor="" x="605.73" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (2 samples, 0.08%)</title><rect x="1088.7" y="161" width="0.9" height="15.0" fill="rgb(214,83,19)" rx="2" ry="2" />
<text text-anchor="" x="1091.71" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::WeakReferenceOwner::GetRef (29 samples, 1.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReferenceOwner::GetRef (29 samples, 1.12%)</title><rect x="1115.5" y="465" width="13.2" height="15.0" fill="rgb(238,196,13)" rx="2" ry="2" />
<text text-anchor="" x="1118.51" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('std::string::assign (8 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::string::assign (8 samples, 0.31%)</title><rect x="986.5" y="401" width="3.7" height="15.0" fill="rgb(215,158,22)" rx="2" ry="2" />
<text text-anchor="" x="989.52" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_aio_read (84 samples, 3.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_aio_read (84 samples, 3.23%)</title><rect x="1059.2" y="353" width="38.1" height="15.0" fill="rgb(206,91,5)" rx="2" ry="2" />
<text text-anchor="" x="1062.19" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >soc..</text>
</g>
<g class="func_g" onmouseover="s('schedule_user (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_user (4 samples, 0.15%)</title><rect x="1177.3" y="657" width="1.8" height="15.0" fill="rgb(230,154,41)" rx="2" ry="2" />
<text text-anchor="" x="1180.28" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('non-virtual thunk to IPC::ChannelPosix::OnFileCanReadWithoutBlocking (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>non-virtual thunk to IPC::ChannelPosix::OnFileCanReadWithoutBlocking (4 samples, 0.15%)</title><rect x="1164.1" y="481" width="1.8" height="15.0" fill="rgb(205,120,40)" rx="2" ry="2" />
<text text-anchor="" x="1167.11" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_signal (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_signal (1 samples, 0.04%)</title><rect x="124.5" y="545" width="0.4" height="15.0" fill="rgb(253,5,39)" rx="2" ry="2" />
<text text-anchor="" x="127.46" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (2 samples, 0.08%)</title><rect x="522.8" y="241" width="0.9" height="15.0" fill="rgb(216,100,27)" rx="2" ry="2" />
<text text-anchor="" x="525.79" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('select_task_rq_fair (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>select_task_rq_fair (1 samples, 0.04%)</title><rect x="917.5" y="145" width="0.4" height="15.0" fill="rgb(242,205,17)" rx="2" ry="2" />
<text text-anchor="" x="920.48" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::ChannelPosix::Send (291 samples, 11.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelPosix::Send (291 samples, 11.20%)</title><rect x="826.2" y="401" width="132.2" height="15.0" fill="rgb(213,102,17)" rx="2" ry="2" />
<text text-anchor="" x="829.19" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IPC::ChannelPosi..</text>
</g>
<g class="func_g" onmouseover="s('native_read_tsc (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_read_tsc (2 samples, 0.08%)</title><rect x="754.4" y="257" width="0.9" height="15.0" fill="rgb(215,63,52)" rx="2" ry="2" />
<text text-anchor="" x="757.43" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_hrtimeout_range (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (1 samples, 0.04%)</title><rect x="229.8" y="513" width="0.5" height="15.0" fill="rgb(224,62,2)" rx="2" ry="2" />
<text text-anchor="" x="232.83" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('check_preempt_wakeup (5 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>check_preempt_wakeup (5 samples, 0.19%)</title><rect x="944.3" y="97" width="2.3" height="15.0" fill="rgb(231,150,11)" rx="2" ry="2" />
<text text-anchor="" x="947.28" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree (1 samples, 0.04%)</title><rect x="476.9" y="481" width="0.5" height="15.0" fill="rgb(244,126,22)" rx="2" ry="2" />
<text text-anchor="" x="479.91" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rw_verify_area (14 samples, 0.54%)')" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (14 samples, 0.54%)</title><rect x="533.7" y="449" width="6.3" height="15.0" fill="rgb(227,76,7)" rx="2" ry="2" />
<text text-anchor="" x="536.69" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock (1 samples, 0.04%)</title><rect x="196.7" y="401" width="0.4" height="15.0" fill="rgb(232,172,53)" rx="2" ry="2" />
<text text-anchor="" x="199.67" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__write_nocancel (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>__write_nocancel (4 samples, 0.15%)</title><rect x="13.6" y="625" width="1.9" height="15.0" fill="rgb(232,51,39)" rx="2" ry="2" />
<text text-anchor="" x="16.63" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('security_socket_recvmsg (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_recvmsg (1 samples, 0.04%)</title><rect x="1059.2" y="337" width="0.4" height="15.0" fill="rgb(223,130,40)" rx="2" ry="2" />
<text text-anchor="" x="1062.19" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tc_free (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>tc_free (2 samples, 0.08%)</title><rect x="287.1" y="433" width="0.9" height="15.0" fill="rgb(240,154,24)" rx="2" ry="2" />
<text text-anchor="" x="290.06" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::WillProcessIOEvent (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::WillProcessIOEvent (2 samples, 0.08%)</title><rect x="1113.7" y="465" width="0.9" height="15.0" fill="rgb(206,106,31)" rx="2" ry="2" />
<text text-anchor="" x="1116.70" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_event_comm (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_comm (4 samples, 0.15%)</title><rect x="10.0" y="561" width="1.8" height="15.0" fill="rgb(226,227,4)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_disable (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_disable (3 samples, 0.12%)</title><rect x="1173.2" y="577" width="1.4" height="15.0" fill="rgb(216,64,23)" rx="2" ry="2" />
<text text-anchor="" x="1176.19" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('stop_one_cpu (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>stop_one_cpu (4 samples, 0.15%)</title><rect x="30.4" y="529" width="1.9" height="15.0" fill="rgb(242,50,37)" rx="2" ry="2" />
<text text-anchor="" x="33.44" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_enable (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (4 samples, 0.15%)</title><rect x="30.4" y="417" width="1.9" height="15.0" fill="rgb(220,144,19)" rx="2" ry="2" />
<text text-anchor="" x="33.44" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_aio_read (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_aio_read (1 samples, 0.04%)</title><rect x="1102.3" y="369" width="0.5" height="15.0" fill="rgb(210,53,17)" rx="2" ry="2" />
<text text-anchor="" x="1105.34" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (16 samples, 0.62%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (16 samples, 0.62%)</title><rect x="112.6" y="513" width="7.3" height="15.0" fill="rgb(248,80,30)" rx="2" ry="2" />
<text text-anchor="" x="115.65" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (1 samples, 0.04%)</title><rect x="299.8" y="433" width="0.4" height="15.0" fill="rgb(239,228,24)" rx="2" ry="2" />
<text text-anchor="" x="302.78" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_sched_clock (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (1 samples, 0.04%)</title><rect x="194.4" y="353" width="0.5" height="15.0" fill="rgb(238,191,12)" rx="2" ry="2" />
<text text-anchor="" x="197.40" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_event_context_sched_in (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (4 samples, 0.15%)</title><rect x="1177.3" y="593" width="1.8" height="15.0" fill="rgb(240,53,9)" rx="2" ry="2" />
<text text-anchor="" x="1180.28" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::Message::TraceMessageEnd (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::Message::TraceMessageEnd (1 samples, 0.04%)</title><rect x="817.1" y="417" width="0.5" height="15.0" fill="rgb(218,100,1)" rx="2" ry="2" />
<text text-anchor="" x="820.11" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_scm_to_skb (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_scm_to_skb (2 samples, 0.08%)</title><rect x="950.6" y="273" width="0.9" height="15.0" fill="rgb(225,67,48)" rx="2" ry="2" />
<text text-anchor="" x="953.64" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('finish_task_switch (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 0.15%)</title><rect x="30.4" y="465" width="1.9" height="15.0" fill="rgb(238,11,42)" rx="2" ry="2" />
<text text-anchor="" x="33.44" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_enable_all (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.15%)</title><rect x="10.0" y="497" width="1.8" height="15.0" fill="rgb(205,18,32)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::ChannelPosix::ReadData (23 samples, 0.89%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelPosix::ReadData (23 samples, 0.89%)</title><rect x="796.7" y="433" width="10.4" height="15.0" fill="rgb(233,229,17)" rx="2" ry="2" />
<text text-anchor="" x="799.67" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rw_verify_area (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (1 samples, 0.04%)</title><rect x="957.0" y="321" width="0.5" height="15.0" fill="rgb(230,221,18)" rx="2" ry="2" />
<text text-anchor="" x="960.00" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::test::ChannelReflectorListener::OnMessageReceived (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::test::ChannelReflectorListener::OnMessageReceived (3 samples, 0.12%)</title><rect x="441.5" y="513" width="1.3" height="15.0" fill="rgb(249,132,17)" rx="2" ry="2" />
<text text-anchor="" x="444.49" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('vfs_write (197 samples, 7.58%)')" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (197 samples, 7.58%)</title><rect x="868.4" y="337" width="89.5" height="15.0" fill="rgb(219,159,21)" rx="2" ry="2" />
<text text-anchor="" x="871.43" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >vfs_write</text>
</g>
<g class="func_g" onmouseover="s('IPC::Message::Message (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::Message::Message (3 samples, 0.12%)</title><rect x="254.4" y="513" width="1.3" height="15.0" fill="rgb(232,14,2)" rx="2" ry="2" />
<text text-anchor="" x="257.36" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_sync_write (153 samples, 5.89%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_sync_write (153 samples, 5.89%)</title><rect x="313.4" y="401" width="69.5" height="15.0" fill="rgb(213,128,12)" rx="2" ry="2" />
<text text-anchor="" x="316.40" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >do_sync..</text>
</g>
<g class="func_g" onmouseover="s('native_read_tsc (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_read_tsc (2 samples, 0.08%)</title><rect x="372.0" y="113" width="0.9" height="15.0" fill="rgb(223,130,0)" rx="2" ry="2" />
<text text-anchor="" x="374.99" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__kmalloc_node_track_caller (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_node_track_caller (2 samples, 0.08%)</title><rect x="334.3" y="305" width="0.9" height="15.0" fill="rgb(230,84,26)" rx="2" ry="2" />
<text text-anchor="" x="337.30" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('PickleIterator::ReadUInt32 (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>PickleIterator::ReadUInt32 (1 samples, 0.04%)</title><rect x="996.1" y="417" width="0.4" height="15.0" fill="rgb(230,44,51)" rx="2" ry="2" />
<text text-anchor="" x="999.06" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_scan_ready_list.isra.9 (38 samples, 1.46%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_scan_ready_list.isra.9 (38 samples, 1.46%)</title><rect x="148.5" y="497" width="17.3" height="15.0" fill="rgb(235,0,43)" rx="2" ry="2" />
<text text-anchor="" x="151.53" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (1 samples, 0.04%)</title><rect x="691.3" y="449" width="0.4" height="15.0" fill="rgb(247,10,27)" rx="2" ry="2" />
<text text-anchor="" x="694.29" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::Release (8 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (8 samples, 0.31%)</title><rect x="1131.0" y="465" width="3.6" height="15.0" fill="rgb(241,173,14)" rx="2" ry="2" />
<text text-anchor="" x="1133.95" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__run_hrtimer (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__run_hrtimer (1 samples, 0.04%)</title><rect x="672.2" y="401" width="0.5" height="15.0" fill="rgb(226,131,28)" rx="2" ry="2" />
<text text-anchor="" x="675.22" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_curr (6 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (6 samples, 0.23%)</title><rect x="932.5" y="65" width="2.7" height="15.0" fill="rgb(243,63,52)" rx="2" ry="2" />
<text text-anchor="" x="935.47" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('security_socket_getpeersec_dgram (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_getpeersec_dgram (3 samples, 0.12%)</title><rect x="877.5" y="289" width="1.4" height="15.0" fill="rgb(225,34,8)" rx="2" ry="2" />
<text text-anchor="" x="880.51" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_wfree (15 samples, 0.58%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_wfree (15 samples, 0.58%)</title><rect x="519.2" y="321" width="6.8" height="15.0" fill="rgb(219,39,47)" rx="2" ry="2" />
<text text-anchor="" x="522.15" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (7 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (7 samples, 0.27%)</title><rect x="1019.2" y="433" width="3.2" height="15.0" fill="rgb(254,17,36)" rx="2" ry="2" />
<text text-anchor="" x="1022.22" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_rq_clock.part.63 (8 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_rq_clock.part.63 (8 samples, 0.31%)</title><rect x="369.3" y="177" width="3.6" height="15.0" fill="rgb(251,179,18)" rx="2" ry="2" />
<text text-anchor="" x="372.27" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('finish_task_switch (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 0.15%)</title><rect x="596.8" y="385" width="1.8" height="15.0" fill="rgb(238,103,51)" rx="2" ry="2" />
<text text-anchor="" x="599.82" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__errno_location@plt (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__errno_location@plt (1 samples, 0.04%)</title><rect x="1024.2" y="433" width="0.5" height="15.0" fill="rgb(209,92,41)" rx="2" ry="2" />
<text text-anchor="" x="1027.22" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::trace_event::TraceEventSyntheticDelayClock::~TraceEventSyntheticDelayClock (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::trace_event::TraceEventSyntheticDelayClock::~TraceEventSyntheticDelayClock (2 samples, 0.08%)</title><rect x="838.0" y="353" width="0.9" height="15.0" fill="rgb(249,162,29)" rx="2" ry="2" />
<text text-anchor="" x="841.00" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::test::PingPongTestClient::RunMain (1,247 samples, 48.00%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::test::PingPongTestClient::RunMain (1,247 samples, 48.00%)</title><rect x="30.4" y="641" width="566.4" height="15.0" fill="rgb(250,56,12)" rx="2" ry="2" />
<text text-anchor="" x="33.44" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IPC::test::PingPongTestClient::RunMain</text>
</g>
<g class="func_g" onmouseover="s('IPC::ChannelPosix::OnFileCanReadWithoutBlocking (695 samples, 26.75%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelPosix::OnFileCanReadWithoutBlocking (695 samples, 26.75%)</title><rect x="234.8" y="545" width="315.7" height="15.0" fill="rgb(227,193,42)" rx="2" ry="2" />
<text text-anchor="" x="237.83" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IPC::ChannelPosix::OnFileCanReadWithoutBlo..</text>
</g>
<g class="func_g" onmouseover="s('lru_add_drain (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>lru_add_drain (1 samples, 0.04%)</title><rect x="1176.4" y="529" width="0.4" height="15.0" fill="rgb(245,188,31)" rx="2" ry="2" />
<text text-anchor="" x="1179.37" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::AddRef (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (1 samples, 0.04%)</title><rect x="291.1" y="449" width="0.5" height="15.0" fill="rgb(210,20,2)" rx="2" ry="2" />
<text text-anchor="" x="294.15" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('realloc@plt (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>realloc@plt (2 samples, 0.08%)</title><rect x="964.3" y="369" width="0.9" height="15.0" fill="rgb(205,205,25)" rx="2" ry="2" />
<text text-anchor="" x="967.26" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_enable (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (4 samples, 0.15%)</title><rect x="596.8" y="337" width="1.8" height="15.0" fill="rgb(228,120,22)" rx="2" ry="2" />
<text text-anchor="" x="599.82" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::IncomingTaskQueue::ReloadWorkQueue (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::IncomingTaskQueue::ReloadWorkQueue (2 samples, 0.08%)</title><rect x="650.9" y="497" width="0.9" height="15.0" fill="rgb(215,9,51)" rx="2" ry="2" />
<text text-anchor="" x="653.87" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_sched_do_timer (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_do_timer (1 samples, 0.04%)</title><rect x="672.2" y="369" width="0.5" height="15.0" fill="rgb(230,190,23)" rx="2" ry="2" />
<text text-anchor="" x="675.22" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::ChannelReader::DispatchInputData (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::ChannelReader::DispatchInputData (4 samples, 0.15%)</title><rect x="11.8" y="673" width="1.8" height="15.0" fill="rgb(234,174,11)" rx="2" ry="2" />
<text text-anchor="" x="14.82" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_release_data (12 samples, 0.46%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_data (12 samples, 0.46%)</title><rect x="512.3" y="353" width="5.5" height="15.0" fill="rgb(246,97,44)" rx="2" ry="2" />
<text text-anchor="" x="515.34" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_ZNK4base8internal13WeakReference8is_validEv@plt (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK4base8internal13WeakReference8is_validEv@plt (1 samples, 0.04%)</title><rect x="97.7" y="561" width="0.4" height="15.0" fill="rgb(218,178,41)" rx="2" ry="2" />
<text text-anchor="" x="100.66" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('std::string::assign (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::string::assign (3 samples, 0.12%)</title><rect x="548.2" y="513" width="1.4" height="15.0" fill="rgb(235,77,36)" rx="2" ry="2" />
<text text-anchor="" x="551.22" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (2 samples, 0.08%)</title><rect x="698.1" y="433" width="0.9" height="15.0" fill="rgb(230,146,39)" rx="2" ry="2" />
<text text-anchor="" x="701.11" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__fsnotify_parent (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>__fsnotify_parent (2 samples, 0.08%)</title><rect x="311.1" y="401" width="0.9" height="15.0" fill="rgb(226,178,29)" rx="2" ry="2" />
<text text-anchor="" x="314.13" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree (12 samples, 0.46%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree (12 samples, 0.46%)</title><rect x="512.3" y="321" width="5.5" height="15.0" fill="rgb(207,64,52)" rx="2" ry="2" />
<text text-anchor="" x="515.34" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_cond_resched (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>_cond_resched (4 samples, 0.15%)</title><rect x="15.9" y="337" width="1.8" height="15.0" fill="rgb(243,3,46)" rx="2" ry="2" />
<text text-anchor="" x="18.90" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_enable_all (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.15%)</title><rect x="758.1" y="273" width="1.8" height="15.0" fill="rgb(236,212,1)" rx="2" ry="2" />
<text text-anchor="" x="761.06" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::DidProcessIOEvent (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::DidProcessIOEvent (1 samples, 0.04%)</title><rect x="1113.2" y="465" width="0.5" height="15.0" fill="rgb(215,79,31)" rx="2" ry="2" />
<text text-anchor="" x="1116.24" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('common_file_perm (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (1 samples, 0.04%)</title><rect x="957.0" y="273" width="0.5" height="15.0" fill="rgb(226,65,10)" rx="2" ry="2" />
<text text-anchor="" x="960.00" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tc_free (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>tc_free (1 samples, 0.04%)</title><rect x="838.9" y="353" width="0.5" height="15.0" fill="rgb(225,151,48)" rx="2" ry="2" />
<text text-anchor="" x="841.91" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::HasOneRef (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::HasOneRef (4 samples, 0.15%)</title><rect x="1129.1" y="465" width="1.9" height="15.0" fill="rgb(222,210,34)" rx="2" ry="2" />
<text text-anchor="" x="1132.14" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_ZdlPv@plt (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZdlPv@plt (1 samples, 0.04%)</title><rect x="290.7" y="449" width="0.4" height="15.0" fill="rgb(235,98,14)" rx="2" ry="2" />
<text text-anchor="" x="293.69" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.19%)</title><rect x="15.5" y="625" width="2.2" height="15.0" fill="rgb(232,72,48)" rx="2" ry="2" />
<text text-anchor="" x="18.45" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mmap64 (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>mmap64 (1 samples, 0.04%)</title><rect x="1176.4" y="673" width="0.4" height="15.0" fill="rgb(215,132,12)" rx="2" ry="2" />
<text text-anchor="" x="1179.37" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree (1 samples, 0.04%)</title><rect x="689.5" y="433" width="0.4" height="15.0" fill="rgb(243,198,0)" rx="2" ry="2" />
<text text-anchor="" x="692.48" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_disable_all (11 samples, 0.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_disable_all (11 samples, 0.42%)</title><rect x="204.4" y="353" width="5.0" height="15.0" fill="rgb(238,91,14)" rx="2" ry="2" />
<text text-anchor="" x="207.40" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::ChannelReader::ProcessIncomingMessages (681 samples, 26.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::ChannelReader::ProcessIncomingMessages (681 samples, 26.21%)</title><rect x="240.3" y="529" width="309.3" height="15.0" fill="rgb(207,226,10)" rx="2" ry="2" />
<text text-anchor="" x="243.28" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IPC::internal::ChannelReader::ProcessInco..</text>
</g>
<g class="func_g" onmouseover="s('IPC::Message::EnsureMessageAttachmentSet (7 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::Message::EnsureMessageAttachmentSet (7 samples, 0.27%)</title><rect x="832.1" y="369" width="3.2" height="15.0" fill="rgb(205,173,34)" rx="2" ry="2" />
<text text-anchor="" x="835.09" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_rq_clock.part.63 (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_rq_clock.part.63 (1 samples, 0.04%)</title><rect x="195.3" y="417" width="0.5" height="15.0" fill="rgb(215,16,29)" rx="2" ry="2" />
<text text-anchor="" x="198.31" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (3 samples, 0.12%)</title><rect x="524.1" y="273" width="1.4" height="15.0" fill="rgb(207,178,21)" rx="2" ry="2" />
<text text-anchor="" x="527.15" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_disable_all (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_disable_all (3 samples, 0.12%)</title><rect x="1173.2" y="545" width="1.4" height="15.0" fill="rgb(236,11,40)" rx="2" ry="2" />
<text text-anchor="" x="1176.19" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('set_next_entity (12 samples, 0.46%)')" onmouseout="c()" onclick="zoom(this)">
<title>set_next_entity (12 samples, 0.46%)</title><rect x="215.8" y="417" width="5.4" height="15.0" fill="rgb(206,28,39)" rx="2" ry="2" />
<text text-anchor="" x="218.75" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::MessageAttachmentSet::CommitAll (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::MessageAttachmentSet::CommitAll (2 samples, 0.08%)</title><rect x="288.9" y="449" width="0.9" height="15.0" fill="rgb(243,62,9)" rx="2" ry="2" />
<text text-anchor="" x="291.88" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unroll_tree_refs (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>unroll_tree_refs (2 samples, 0.08%)</title><rect x="866.2" y="353" width="0.9" height="15.0" fill="rgb(227,207,22)" rx="2" ry="2" />
<text text-anchor="" x="869.16" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (3 samples, 0.12%)</title><rect x="940.2" y="65" width="1.4" height="15.0" fill="rgb(249,162,20)" rx="2" ry="2" />
<text text-anchor="" x="943.19" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::WeakReference::~WeakReference (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReference::~WeakReference (2 samples, 0.08%)</title><rect x="1144.6" y="481" width="0.9" height="15.0" fill="rgb(236,10,21)" rx="2" ry="2" />
<text text-anchor="" x="1147.58" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free_hot_cold_page_list (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>free_hot_cold_page_list (1 samples, 0.04%)</title><rect x="1176.4" y="465" width="0.4" height="15.0" fill="rgb(223,198,42)" rx="2" ry="2" />
<text text-anchor="" x="1179.37" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_copy_datagram_from_iovec (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_from_iovec (3 samples, 0.12%)</title><rect x="324.8" y="353" width="1.3" height="15.0" fill="rgb(217,110,53)" rx="2" ry="2" />
<text text-anchor="" x="327.76" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ksize (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>ksize (4 samples, 0.15%)</title><rect x="903.4" y="241" width="1.8" height="15.0" fill="rgb(235,223,4)" rx="2" ry="2" />
<text text-anchor="" x="906.40" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::LockImpl::Lock (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::LockImpl::Lock (3 samples, 0.12%)</title><rect x="641.3" y="481" width="1.4" height="15.0" fill="rgb(239,74,10)" rx="2" ry="2" />
<text text-anchor="" x="644.33" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fsnotify (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>fsnotify (1 samples, 0.04%)</title><rect x="534.1" y="433" width="0.5" height="15.0" fill="rgb(221,6,41)" rx="2" ry="2" />
<text text-anchor="" x="537.14" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__memcpy_sse2_unaligned (12 samples, 0.46%)')" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_sse2_unaligned (12 samples, 0.46%)</title><rect x="408.3" y="481" width="5.5" height="15.0" fill="rgb(224,162,41)" rx="2" ry="2" />
<text text-anchor="" x="411.33" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree_skbmem (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree_skbmem (1 samples, 0.04%)</title><rect x="1091.0" y="305" width="0.4" height="15.0" fill="rgb(221,83,10)" rx="2" ry="2" />
<text text-anchor="" x="1093.99" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__kmalloc_reserve.isra.27 (6 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_reserve.isra.27 (6 samples, 0.23%)</title><rect x="333.4" y="321" width="2.7" height="15.0" fill="rgb(215,129,33)" rx="2" ry="2" />
<text text-anchor="" x="336.39" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__write_nocancel (232 samples, 8.93%)')" onmouseout="c()" onclick="zoom(this)">
<title>__write_nocancel (232 samples, 8.93%)</title><rect x="853.0" y="385" width="105.4" height="15.0" fill="rgb(252,10,46)" rx="2" ry="2" />
<text text-anchor="" x="855.99" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__write_noca..</text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (10 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (10 samples, 0.38%)</title><rect x="767.6" y="257" width="4.5" height="15.0" fill="rgb(218,11,12)" rx="2" ry="2" />
<text text-anchor="" x="770.60" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call (2 samples, 0.08%)</title><rect x="693.6" y="465" width="0.9" height="15.0" fill="rgb(214,76,27)" rx="2" ry="2" />
<text text-anchor="" x="696.56" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (10 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (10 samples, 0.38%)</title><rect x="713.5" y="401" width="4.6" height="15.0" fill="rgb(213,150,45)" rx="2" ry="2" />
<text text-anchor="" x="716.55" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__kmalloc_node_track_caller (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_node_track_caller (1 samples, 0.04%)</title><rect x="898.4" y="241" width="0.5" height="15.0" fill="rgb(225,0,2)" rx="2" ry="2" />
<text text-anchor="" x="901.41" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_audit (31 samples, 1.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_audit (31 samples, 1.19%)</title><rect x="677.7" y="465" width="14.0" height="15.0" fill="rgb(247,107,16)" rx="2" ry="2" />
<text text-anchor="" x="680.67" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (11 samples, 0.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (11 samples, 0.42%)</title><rect x="403.3" y="465" width="5.0" height="15.0" fill="rgb(242,155,15)" rx="2" ry="2" />
<text text-anchor="" x="406.33" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__clock_gettime (54 samples, 2.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>__clock_gettime (54 samples, 2.08%)</title><rect x="610.9" y="497" width="24.5" height="15.0" fill="rgb(210,75,27)" rx="2" ry="2" />
<text text-anchor="" x="613.90" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s('get_pageblock_flags_mask (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_pageblock_flags_mask (1 samples, 0.04%)</title><rect x="1176.4" y="433" width="0.4" height="15.0" fill="rgb(211,216,28)" rx="2" ry="2" />
<text text-anchor="" x="1179.37" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fget_light (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>fget_light (2 samples, 0.08%)</title><rect x="306.6" y="433" width="0.9" height="15.0" fill="rgb(209,181,37)" rx="2" ry="2" />
<text text-anchor="" x="309.59" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_ZN4base8internal8LockImpl4LockEv@plt (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4base8internal8LockImpl4LockEv@plt (1 samples, 0.04%)</title><rect x="247.1" y="497" width="0.4" height="15.0" fill="rgb(227,179,6)" rx="2" ry="2" />
<text text-anchor="" x="250.09" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_enable_all (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.15%)</title><rect x="596.8" y="305" width="1.8" height="15.0" fill="rgb(254,29,53)" rx="2" ry="2" />
<text text-anchor="" x="599.82" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (11 samples, 0.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (11 samples, 0.42%)</title><rect x="860.3" y="353" width="5.0" height="15.0" fill="rgb(212,178,6)" rx="2" ry="2" />
<text text-anchor="" x="863.25" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('open64 (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>open64 (4 samples, 0.15%)</title><rect x="1177.3" y="689" width="1.8" height="15.0" fill="rgb(233,173,32)" rx="2" ry="2" />
<text text-anchor="" x="1180.28" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_release_all (33 samples, 1.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_all (33 samples, 1.27%)</title><rect x="1075.5" y="289" width="15.0" height="15.0" fill="rgb(230,31,18)" rx="2" ry="2" />
<text text-anchor="" x="1078.54" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('aa_revalidate_sk (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>aa_revalidate_sk (4 samples, 0.15%)</title><rect x="878.9" y="273" width="1.8" height="15.0" fill="rgb(229,223,18)" rx="2" ry="2" />
<text text-anchor="" x="881.88" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__write_nocancel (9 samples, 0.35%)')" onmouseout="c()" onclick="zoom(this)">
<title>__write_nocancel (9 samples, 0.35%)</title><rect x="1172.3" y="689" width="4.1" height="15.0" fill="rgb(223,206,16)" rx="2" ry="2" />
<text text-anchor="" x="1175.29" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__libc_read (11 samples, 0.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_read (11 samples, 0.42%)</title><rect x="1024.7" y="433" width="5.0" height="15.0" fill="rgb(213,80,15)" rx="2" ry="2" />
<text text-anchor="" x="1027.67" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::Message::~Message (12 samples, 0.46%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::Message::~Message (12 samples, 0.46%)</title><rect x="283.4" y="449" width="5.5" height="15.0" fill="rgb(247,80,41)" rx="2" ry="2" />
<text text-anchor="" x="286.43" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('vfs_read (110 samples, 4.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (110 samples, 4.23%)</title><rect x="1052.8" y="385" width="50.0" height="15.0" fill="rgb(230,189,49)" rx="2" ry="2" />
<text text-anchor="" x="1055.83" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >vfs_r..</text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_rotate_start.isra.39 (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_rotate_start.isra.39 (2 samples, 0.08%)</title><rect x="760.3" y="305" width="0.9" height="15.0" fill="rgb(219,224,11)" rx="2" ry="2" />
<text text-anchor="" x="763.33" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.04%)</title><rect x="199.4" y="353" width="0.5" height="15.0" fill="rgb(218,155,13)" rx="2" ry="2" />
<text text-anchor="" x="202.40" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kmalloc_slab (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>kmalloc_slab (1 samples, 0.04%)</title><rect x="335.7" y="305" width="0.4" height="15.0" fill="rgb(218,87,33)" rx="2" ry="2" />
<text text-anchor="" x="338.66" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_common (85 samples, 3.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (85 samples, 3.27%)</title><rect x="910.7" y="193" width="38.6" height="15.0" fill="rgb(254,46,16)" rx="2" ry="2" />
<text text-anchor="" x="913.67" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__w..</text>
</g>
<g class="func_g" onmouseover="s('audit_filter_inodes (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_inodes (1 samples, 0.04%)</title><rect x="1038.8" y="385" width="0.4" height="15.0" fill="rgb(241,22,4)" rx="2" ry="2" />
<text text-anchor="" x="1041.75" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_unlink (5 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_unlink (5 samples, 0.19%)</title><rect x="1095.1" y="305" width="2.2" height="15.0" fill="rgb(246,72,3)" rx="2" ry="2" />
<text text-anchor="" x="1098.07" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree_skbmem (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree_skbmem (2 samples, 0.08%)</title><rect x="511.0" y="369" width="0.9" height="15.0" fill="rgb(253,11,18)" rx="2" ry="2" />
<text text-anchor="" x="513.98" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_scm_to_skb (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_scm_to_skb (1 samples, 0.04%)</title><rect x="381.5" y="353" width="0.5" height="15.0" fill="rgb(215,86,7)" rx="2" ry="2" />
<text text-anchor="" x="384.53" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_event_task_sched_out (25 samples, 0.96%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_task_sched_out (25 samples, 0.96%)</title><rect x="761.7" y="353" width="11.3" height="15.0" fill="rgb(208,202,44)" rx="2" ry="2" />
<text text-anchor="" x="764.69" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::Channel::CreateClient (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::Channel::CreateClient (1 samples, 0.04%)</title><rect x="32.3" y="609" width="0.4" height="15.0" fill="rgb(230,210,20)" rx="2" ry="2" />
<text text-anchor="" x="35.26" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_sync_key (87 samples, 3.35%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (87 samples, 3.35%)</title><rect x="342.0" y="337" width="39.5" height="15.0" fill="rgb(207,170,0)" rx="2" ry="2" />
<text text-anchor="" x="345.02" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__w..</text>
</g>
<g class="func_g" onmouseover="s('rb_erase (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>rb_erase (1 samples, 0.04%)</title><rect x="214.4" y="417" width="0.4" height="15.0" fill="rgb(240,143,28)" rx="2" ry="2" />
<text text-anchor="" x="217.39" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('Pickle::Pickle (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>Pickle::Pickle (3 samples, 0.12%)</title><rect x="991.5" y="417" width="1.4" height="15.0" fill="rgb(212,223,21)" rx="2" ry="2" />
<text text-anchor="" x="994.52" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_poll_callback (6 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (6 samples, 0.23%)</title><rect x="1087.8" y="177" width="2.7" height="15.0" fill="rgb(226,53,48)" rx="2" ry="2" />
<text text-anchor="" x="1090.81" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rb_insert_color (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>rb_insert_color (2 samples, 0.08%)</title><rect x="360.2" y="129" width="0.9" height="15.0" fill="rgb(250,4,41)" rx="2" ry="2" />
<text text-anchor="" x="363.18" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_hrtimeout_range_clock (123 samples, 4.73%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (123 samples, 4.73%)</title><rect x="730.4" y="401" width="55.8" height="15.0" fill="rgb(221,58,13)" rx="2" ry="2" />
<text text-anchor="" x="733.35" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sched..</text>
</g>
<g class="func_g" onmouseover="s('IPC::test::LockThreadAffinity::LockThreadAffinity (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::test::LockThreadAffinity::LockThreadAffinity (4 samples, 0.15%)</title><rect x="30.4" y="625" width="1.9" height="15.0" fill="rgb(239,73,52)" rx="2" ry="2" />
<text text-anchor="" x="33.44" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('enqueue_task_fair (39 samples, 1.50%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (39 samples, 1.50%)</title><rect x="919.8" y="97" width="17.7" height="15.0" fill="rgb(248,164,0)" rx="2" ry="2" />
<text text-anchor="" x="922.75" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock (6 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (6 samples, 0.23%)</title><rect x="1071.9" y="305" width="2.7" height="15.0" fill="rgb(208,114,19)" rx="2" ry="2" />
<text text-anchor="" x="1074.91" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('clock_gettime@plt (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>clock_gettime@plt (1 samples, 0.04%)</title><rect x="417.0" y="481" width="0.4" height="15.0" fill="rgb(217,20,5)" rx="2" ry="2" />
<text text-anchor="" x="419.96" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_release_data (12 samples, 0.46%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_data (12 samples, 0.46%)</title><rect x="1076.9" y="273" width="5.5" height="15.0" fill="rgb(237,121,20)" rx="2" ry="2" />
<text text-anchor="" x="1079.91" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock (2 samples, 0.08%)</title><rect x="1061.9" y="321" width="0.9" height="15.0" fill="rgb(229,228,36)" rx="2" ry="2" />
<text text-anchor="" x="1064.92" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::MessageAttachmentSet::~MessageAttachmentSet (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::MessageAttachmentSet::~MessageAttachmentSet (1 samples, 0.04%)</title><rect x="289.8" y="449" width="0.4" height="15.0" fill="rgb(245,126,21)" rx="2" ry="2" />
<text text-anchor="" x="292.78" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_after_swapgs (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_after_swapgs (2 samples, 0.08%)</title><rect x="1046.0" y="417" width="0.9" height="15.0" fill="rgb(235,120,25)" rx="2" ry="2" />
<text text-anchor="" x="1049.02" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('set_cpus_allowed_ptr (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>set_cpus_allowed_ptr (4 samples, 0.15%)</title><rect x="596.8" y="465" width="1.8" height="15.0" fill="rgb(242,107,28)" rx="2" ry="2" />
<text text-anchor="" x="599.82" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (4 samples, 0.15%)</title><rect x="13.6" y="657" width="1.9" height="15.0" fill="rgb(207,81,26)" rx="2" ry="2" />
<text text-anchor="" x="16.63" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_common (5 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (5 samples, 0.19%)</title><rect x="521.9" y="273" width="2.2" height="15.0" fill="rgb(220,177,10)" rx="2" ry="2" />
<text text-anchor="" x="524.88" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (4 samples, 0.15%)</title><rect x="15.9" y="321" width="1.8" height="15.0" fill="rgb(228,45,30)" rx="2" ry="2" />
<text text-anchor="" x="18.90" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('load_elf_binary (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>load_elf_binary (4 samples, 0.15%)</title><rect x="10.0" y="609" width="1.8" height="15.0" fill="rgb(219,56,38)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mutex_lock_interruptible (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>mutex_lock_interruptible (2 samples, 0.08%)</title><rect x="1091.4" y="305" width="0.9" height="15.0" fill="rgb(205,163,5)" rx="2" ry="2" />
<text text-anchor="" x="1094.44" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_check (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_check (4 samples, 0.15%)</title><rect x="122.6" y="545" width="1.9" height="15.0" fill="rgb(240,208,29)" rx="2" ry="2" />
<text text-anchor="" x="125.64" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (1 samples, 0.04%)</title><rect x="855.3" y="369" width="0.4" height="15.0" fill="rgb(241,40,40)" rx="2" ry="2" />
<text text-anchor="" x="858.26" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('void Pickle::WriteBytesStatic4ul (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>void Pickle::WriteBytesStatic4ul (1 samples, 0.04%)</title><rect x="1012.9" y="417" width="0.4" height="15.0" fill="rgb(254,165,14)" rx="2" ry="2" />
<text text-anchor="" x="1015.86" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__alloc_skb (20 samples, 0.77%)')" onmouseout="c()" onclick="zoom(this)">
<title>__alloc_skb (20 samples, 0.77%)</title><rect x="331.1" y="337" width="9.1" height="15.0" fill="rgb(254,167,54)" rx="2" ry="2" />
<text text-anchor="" x="334.12" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_epoll_wait (201 samples, 7.74%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (201 samples, 7.74%)</title><rect x="696.7" y="449" width="91.3" height="15.0" fill="rgb(207,188,43)" rx="2" ry="2" />
<text text-anchor="" x="699.74" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys_epoll_..</text>
</g>
<g class="func_g" onmouseover="s('mutex_unlock (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>mutex_unlock (2 samples, 0.08%)</title><rect x="1065.1" y="321" width="0.9" height="15.0" fill="rgb(240,18,43)" rx="2" ry="2" />
<text text-anchor="" x="1068.10" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_execve_common.isra.22 (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_execve_common.isra.22 (4 samples, 0.15%)</title><rect x="10.0" y="641" width="1.8" height="15.0" fill="rgb(244,88,36)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_mmap (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_mmap (1 samples, 0.04%)</title><rect x="1176.4" y="641" width="0.4" height="15.0" fill="rgb(243,179,20)" rx="2" ry="2" />
<text text-anchor="" x="1179.37" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('security_file_permission (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (1 samples, 0.04%)</title><rect x="957.5" y="321" width="0.4" height="15.0" fill="rgb(226,36,14)" rx="2" ry="2" />
<text text-anchor="" x="960.45" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::Channel::Create (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::Channel::Create (1 samples, 0.04%)</title><rect x="32.3" y="593" width="0.4" height="15.0" fill="rgb(232,179,48)" rx="2" ry="2" />
<text text-anchor="" x="35.26" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::ChannelPosix::ExtractFileDescriptorsFromMsghdr (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelPosix::ExtractFileDescriptorsFromMsghdr (1 samples, 0.04%)</title><rect x="799.4" y="417" width="0.4" height="15.0" fill="rgb(209,211,23)" rx="2" ry="2" />
<text text-anchor="" x="802.39" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_locked (86 samples, 3.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_locked (86 samples, 3.31%)</title><rect x="910.2" y="209" width="39.1" height="15.0" fill="rgb(205,200,29)" rx="2" ry="2" />
<text text-anchor="" x="913.22" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__w..</text>
</g>
<g class="func_g" onmouseover="s('std::string::_M_mutate (11 samples, 0.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::string::_M_mutate (11 samples, 0.42%)</title><rect x="1180.5" y="689" width="5.0" height="15.0" fill="rgb(238,173,34)" rx="2" ry="2" />
<text text-anchor="" x="1183.46" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_sync_key (94 samples, 3.62%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (94 samples, 3.62%)</title><rect x="907.9" y="257" width="42.7" height="15.0" fill="rgb(247,134,54)" rx="2" ry="2" />
<text text-anchor="" x="910.94" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__wa..</text>
</g>
<g class="func_g" onmouseover="s('enqueue_task_fair (38 samples, 1.46%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (38 samples, 1.46%)</title><rect x="352.0" y="177" width="17.3" height="15.0" fill="rgb(205,159,54)" rx="2" ry="2" />
<text text-anchor="" x="355.01" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('Pickle::Resize (8 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>Pickle::Resize (8 samples, 0.31%)</title><rect x="394.2" y="465" width="3.7" height="15.0" fill="rgb(213,85,47)" rx="2" ry="2" />
<text text-anchor="" x="397.25" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (8 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (8 samples, 0.31%)</title><rect x="972.0" y="385" width="3.6" height="15.0" fill="rgb(246,161,54)" rx="2" ry="2" />
<text text-anchor="" x="974.99" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_copy_from_user (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>_copy_from_user (2 samples, 0.08%)</title><rect x="324.8" y="337" width="0.9" height="15.0" fill="rgb(243,30,48)" rx="2" ry="2" />
<text text-anchor="" x="327.76" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('deactivate_task (37 samples, 1.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (37 samples, 1.42%)</title><rect x="738.5" y="353" width="16.8" height="15.0" fill="rgb(239,92,21)" rx="2" ry="2" />
<text text-anchor="" x="741.53" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_execve (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_execve (4 samples, 0.15%)</title><rect x="10.0" y="657" width="1.8" height="15.0" fill="rgb(230,57,17)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unroll_tree_refs (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>unroll_tree_refs (1 samples, 0.04%)</title><rect x="1041.9" y="385" width="0.5" height="15.0" fill="rgb(254,126,49)" rx="2" ry="2" />
<text text-anchor="" x="1044.93" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('Pickle::Pickle (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>Pickle::Pickle (3 samples, 0.12%)</title><rect x="423.3" y="497" width="1.4" height="15.0" fill="rgb(245,67,31)" rx="2" ry="2" />
<text text-anchor="" x="426.32" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_task_fair (32 samples, 1.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (32 samples, 1.23%)</title><rect x="179.0" y="401" width="14.5" height="15.0" fill="rgb(227,211,14)" rx="2" ry="2" />
<text text-anchor="" x="181.96" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (1 samples, 0.04%)</title><rect x="107.2" y="513" width="0.5" height="15.0" fill="rgb(253,57,14)" rx="2" ry="2" />
<text text-anchor="" x="110.20" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::DidProcessIOEvent (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::DidProcessIOEvent (3 samples, 0.12%)</title><rect x="231.2" y="561" width="1.4" height="15.0" fill="rgb(236,139,0)" rx="2" ry="2" />
<text text-anchor="" x="234.19" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__libc_read (11 samples, 0.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_read (11 samples, 0.42%)</title><rect x="455.6" y="513" width="5.0" height="15.0" fill="rgb(207,222,25)" rx="2" ry="2" />
<text text-anchor="" x="458.57" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock (1 samples, 0.04%)</title><rect x="342.9" y="241" width="0.5" height="15.0" fill="rgb(241,126,24)" rx="2" ry="2" />
<text text-anchor="" x="345.93" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.04%)</title><rect x="1095.5" y="289" width="0.5" height="15.0" fill="rgb(240,87,49)" rx="2" ry="2" />
<text text-anchor="" x="1098.53" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('non-virtual thunk to IPC::ChannelPosix::ReadData (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>non-virtual thunk to IPC::ChannelPosix::ReadData (2 samples, 0.08%)</title><rect x="549.6" y="529" width="0.9" height="15.0" fill="rgb(246,64,4)" rx="2" ry="2" />
<text text-anchor="" x="552.58" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__perf_event_task_sched_out (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_out (4 samples, 0.15%)</title><rect x="1172.7" y="609" width="1.9" height="15.0" fill="rgb(249,96,6)" rx="2" ry="2" />
<text text-anchor="" x="1175.74" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::ChannelPosix::ReadData (7 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelPosix::ReadData (7 samples, 0.27%)</title><rect x="237.1" y="529" width="3.2" height="15.0" fill="rgb(224,22,0)" rx="2" ry="2" />
<text text-anchor="" x="240.10" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_common (7 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (7 samples, 0.27%)</title><rect x="1087.4" y="193" width="3.1" height="15.0" fill="rgb(253,138,26)" rx="2" ry="2" />
<text text-anchor="" x="1090.35" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('epoll_dispatch (5 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>epoll_dispatch (5 samples, 0.19%)</title><rect x="651.8" y="497" width="2.2" height="15.0" fill="rgb(248,13,45)" rx="2" ry="2" />
<text text-anchor="" x="654.78" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_fair (22 samples, 0.85%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_fair (22 samples, 0.85%)</title><rect x="211.7" y="433" width="10.0" height="15.0" fill="rgb(215,130,0)" rx="2" ry="2" />
<text text-anchor="" x="214.66" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::Message::TraceMessageBegin (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::Message::TraceMessageBegin (1 samples, 0.04%)</title><rect x="295.2" y="465" width="0.5" height="15.0" fill="rgb(227,90,25)" rx="2" ry="2" />
<text text-anchor="" x="298.23" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('Pickle::FindNext (10 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>Pickle::FindNext (10 samples, 0.38%)</title><rect x="442.8" y="513" width="4.6" height="15.0" fill="rgb(254,87,2)" rx="2" ry="2" />
<text text-anchor="" x="445.85" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::HasOneRef (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::HasOneRef (1 samples, 0.04%)</title><rect x="570.5" y="545" width="0.4" height="15.0" fill="rgb(205,109,28)" rx="2" ry="2" />
<text text-anchor="" x="573.48" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_poll_callback (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (3 samples, 0.12%)</title><rect x="522.8" y="257" width="1.3" height="15.0" fill="rgb(225,135,1)" rx="2" ry="2" />
<text text-anchor="" x="525.79" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_stats_wait_end (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_stats_wait_end (2 samples, 0.08%)</title><rect x="779.4" y="337" width="0.9" height="15.0" fill="rgb(250,132,36)" rx="2" ry="2" />
<text text-anchor="" x="782.41" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_write (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (3 samples, 0.12%)</title><rect x="300.2" y="449" width="1.4" height="15.0" fill="rgb(222,96,54)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (1 samples, 0.04%)</title><rect x="523.7" y="241" width="0.4" height="15.0" fill="rgb(233,169,33)" rx="2" ry="2" />
<text text-anchor="" x="526.70" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.19%)</title><rect x="15.5" y="593" width="2.2" height="15.0" fill="rgb(205,214,25)" rx="2" ry="2" />
<text text-anchor="" x="18.45" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('enqueue_entity (27 samples, 1.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (27 samples, 1.04%)</title><rect x="922.9" y="81" width="12.3" height="15.0" fill="rgb(233,102,53)" rx="2" ry="2" />
<text text-anchor="" x="925.93" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('cpuacct_charge (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>cpuacct_charge (2 samples, 0.08%)</title><rect x="933.8" y="49" width="0.9" height="15.0" fill="rgb(229,186,28)" rx="2" ry="2" />
<text text-anchor="" x="936.83" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::ProcessNextDelayedNonNestableTask (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::ProcessNextDelayedNonNestableTask (2 samples, 0.08%)</title><rect x="638.2" y="481" width="0.9" height="15.0" fill="rgb(226,76,40)" rx="2" ry="2" />
<text text-anchor="" x="641.15" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_cfs_shares (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (4 samples, 0.15%)</title><rect x="362.0" y="145" width="1.8" height="15.0" fill="rgb(242,225,36)" rx="2" ry="2" />
<text text-anchor="" x="365.00" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_mmap_pgoff (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_mmap_pgoff (1 samples, 0.04%)</title><rect x="30.0" y="545" width="0.4" height="15.0" fill="rgb(243,133,2)" rx="2" ry="2" />
<text text-anchor="" x="32.98" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_alloc_send_pskb (27 samples, 1.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_alloc_send_pskb (27 samples, 1.04%)</title><rect x="894.8" y="273" width="12.2" height="15.0" fill="rgb(231,191,25)" rx="2" ry="2" />
<text text-anchor="" x="897.77" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (10 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (10 samples, 0.38%)</title><rect x="141.7" y="497" width="4.6" height="15.0" fill="rgb(219,229,31)" rx="2" ry="2" />
<text text-anchor="" x="144.72" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fsnotify (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>fsnotify (2 samples, 0.08%)</title><rect x="1101.4" y="337" width="0.9" height="15.0" fill="rgb(245,183,24)" rx="2" ry="2" />
<text text-anchor="" x="1104.43" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_sync_read (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_sync_read (1 samples, 0.04%)</title><rect x="1048.7" y="385" width="0.5" height="15.0" fill="rgb(228,15,4)" rx="2" ry="2" />
<text text-anchor="" x="1051.75" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('activate_task (48 samples, 1.85%)')" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (48 samples, 1.85%)</title><rect x="351.1" y="209" width="21.8" height="15.0" fill="rgb(214,168,13)" rx="2" ry="2" />
<text text-anchor="" x="354.10" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >a..</text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_fair (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_fair (1 samples, 0.04%)</title><rect x="227.1" y="449" width="0.5" height="15.0" fill="rgb(219,112,13)" rx="2" ry="2" />
<text text-anchor="" x="230.11" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (1 samples, 0.04%)</title><rect x="525.5" y="273" width="0.5" height="15.0" fill="rgb(245,166,15)" rx="2" ry="2" />
<text text-anchor="" x="528.51" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call (8 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call (8 samples, 0.31%)</title><rect x="124.9" y="545" width="3.6" height="15.0" fill="rgb(230,173,5)" rx="2" ry="2" />
<text text-anchor="" x="127.91" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_sched_setaffinity (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_sched_setaffinity (4 samples, 0.15%)</title><rect x="596.8" y="497" width="1.8" height="15.0" fill="rgb(245,224,35)" rx="2" ry="2" />
<text text-anchor="" x="599.82" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_sched_clock (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (2 samples, 0.08%)</title><rect x="939.3" y="65" width="0.9" height="15.0" fill="rgb(222,36,42)" rx="2" ry="2" />
<text text-anchor="" x="942.28" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (3 samples, 0.12%)</title><rect x="1096.0" y="289" width="1.3" height="15.0" fill="rgb(248,66,50)" rx="2" ry="2" />
<text text-anchor="" x="1098.98" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_sched_setaffinity (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_sched_setaffinity (4 samples, 0.15%)</title><rect x="30.4" y="577" width="1.9" height="15.0" fill="rgb(222,229,52)" rx="2" ry="2" />
<text text-anchor="" x="33.44" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('security_file_permission (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (1 samples, 0.04%)</title><rect x="540.0" y="449" width="0.5" height="15.0" fill="rgb(220,135,23)" rx="2" ry="2" />
<text text-anchor="" x="543.05" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::ChannelPosix::Send (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelPosix::Send (1 samples, 0.04%)</title><rect x="265.3" y="497" width="0.4" height="15.0" fill="rgb(230,210,1)" rx="2" ry="2" />
<text text-anchor="" x="268.26" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_rq_clock.part.63 (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_rq_clock.part.63 (2 samples, 0.08%)</title><rect x="754.4" y="321" width="0.9" height="15.0" fill="rgb(214,173,22)" rx="2" ry="2" />
<text text-anchor="" x="757.43" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule (129 samples, 4.97%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule (129 samples, 4.97%)</title><rect x="169.4" y="465" width="58.6" height="15.0" fill="rgb(234,28,4)" rx="2" ry="2" />
<text text-anchor="" x="172.42" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >schedule</text>
</g>
<g class="func_g" onmouseover="s('base::TimeTicks::NowFromSystemTraceTime (10 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::TimeTicks::NowFromSystemTraceTime (10 samples, 0.38%)</title><rect x="432.4" y="497" width="4.5" height="15.0" fill="rgb(247,229,11)" rx="2" ry="2" />
<text text-anchor="" x="435.40" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock_cpu (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (2 samples, 0.08%)</title><rect x="193.9" y="385" width="1.0" height="15.0" fill="rgb(215,69,47)" rx="2" ry="2" />
<text text-anchor="" x="196.95" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_disable (12 samples, 0.46%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_disable (12 samples, 0.46%)</title><rect x="204.4" y="385" width="5.4" height="15.0" fill="rgb(252,50,2)" rx="2" ry="2" />
<text text-anchor="" x="207.40" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (2 samples, 0.08%)</title><rect x="754.4" y="289" width="0.9" height="15.0" fill="rgb(214,17,38)" rx="2" ry="2" />
<text text-anchor="" x="757.43" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ttwu_do_wakeup (11 samples, 0.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_wakeup (11 samples, 0.42%)</title><rect x="942.5" y="129" width="5.0" height="15.0" fill="rgb(215,72,51)" rx="2" ry="2" />
<text text-anchor="" x="945.46" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::Message::~Message (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::Message::~Message (1 samples, 0.04%)</title><rect x="807.6" y="433" width="0.4" height="15.0" fill="rgb(228,40,25)" rx="2" ry="2" />
<text text-anchor="" x="810.57" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_epoll_wait (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (4 samples, 0.15%)</title><rect x="675.9" y="465" width="1.8" height="15.0" fill="rgb(239,95,17)" rx="2" ry="2" />
<text text-anchor="" x="678.85" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rw_verify_area (11 samples, 0.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (11 samples, 0.42%)</title><rect x="1097.3" y="369" width="5.0" height="15.0" fill="rgb(213,60,28)" rx="2" ry="2" />
<text text-anchor="" x="1100.34" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(':9850 (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>:9850 (4 samples, 0.15%)</title><rect x="10.0" y="705" width="1.8" height="15.0" fill="rgb(216,14,5)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_cfs_shares (8 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (8 samples, 0.31%)</title><rect x="928.8" y="65" width="3.7" height="15.0" fill="rgb(230,56,31)" rx="2" ry="2" />
<text text-anchor="" x="931.84" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::ChannelPosix::WillDispatchInputMessage (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelPosix::WillDispatchInputMessage (1 samples, 0.04%)</title><rect x="807.1" y="433" width="0.5" height="15.0" fill="rgb(206,85,42)" rx="2" ry="2" />
<text text-anchor="" x="810.11" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_write (198 samples, 7.62%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (198 samples, 7.62%)</title><rect x="868.0" y="353" width="89.9" height="15.0" fill="rgb(254,209,23)" rx="2" ry="2" />
<text text-anchor="" x="870.98" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys_write</text>
</g>
<g class="func_g" onmouseover="s('mutex_unlock (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>mutex_unlock (4 samples, 0.15%)</title><rect x="165.8" y="497" width="1.8" height="15.0" fill="rgb(239,16,44)" rx="2" ry="2" />
<text text-anchor="" x="168.79" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_audit (11 samples, 0.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_audit (11 samples, 0.42%)</title><rect x="301.6" y="449" width="5.0" height="15.0" fill="rgb(226,82,24)" rx="2" ry="2" />
<text text-anchor="" x="304.59" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::test::ChannelReflectorListener::OnMessageReceived (342 samples, 13.16%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::test::ChannelReflectorListener::OnMessageReceived (342 samples, 13.16%)</title><rect x="268.0" y="497" width="155.3" height="15.0" fill="rgb(215,21,7)" rx="2" ry="2" />
<text text-anchor="" x="270.98" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IPC::test::ChannelR..</text>
</g>
<g class="func_g" onmouseover="s('base::operator== (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::operator== (3 samples, 0.12%)</title><rect x="436.9" y="497" width="1.4" height="15.0" fill="rgb(212,169,46)" rx="2" ry="2" />
<text text-anchor="" x="439.94" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_common (84 samples, 3.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (84 samples, 3.23%)</title><rect x="342.0" y="273" width="38.2" height="15.0" fill="rgb(251,136,45)" rx="2" ry="2" />
<text text-anchor="" x="345.02" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__w..</text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock@plt (8 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock@plt (8 samples, 0.31%)</title><rect x="803.5" y="417" width="3.6" height="15.0" fill="rgb(249,105,41)" rx="2" ry="2" />
<text text-anchor="" x="806.48" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mutex_lock_interruptible (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>mutex_lock_interruptible (2 samples, 0.08%)</title><rect x="526.4" y="385" width="0.9" height="15.0" fill="rgb(232,192,51)" rx="2" ry="2" />
<text text-anchor="" x="529.42" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kretprobe_trampoline (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>kretprobe_trampoline (4 samples, 0.15%)</title><rect x="10.0" y="673" width="1.8" height="15.0" fill="rgb(254,53,8)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.19%)</title><rect x="15.5" y="465" width="2.2" height="15.0" fill="rgb(248,198,23)" rx="2" ry="2" />
<text text-anchor="" x="18.45" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.04%)</title><rect x="759.9" y="273" width="0.4" height="15.0" fill="rgb(225,98,9)" rx="2" ry="2" />
<text text-anchor="" x="762.88" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('set_next_entity (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>set_next_entity (3 samples, 0.12%)</title><rect x="783.5" y="353" width="1.4" height="15.0" fill="rgb(242,195,2)" rx="2" ry="2" />
<text text-anchor="" x="786.49" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator new (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (4 samples, 0.15%)</title><rect x="438.3" y="497" width="1.8" height="15.0" fill="rgb(252,155,14)" rx="2" ry="2" />
<text text-anchor="" x="441.31" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator new (9 samples, 0.35%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (9 samples, 0.35%)</title><rect x="1121.9" y="449" width="4.1" height="15.0" fill="rgb(205,64,31)" rx="2" ry="2" />
<text text-anchor="" x="1124.87" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_poll (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_poll (3 samples, 0.12%)</title><rect x="161.2" y="465" width="1.4" height="15.0" fill="rgb(210,183,12)" rx="2" ry="2" />
<text text-anchor="" x="164.25" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::WeakReference::~WeakReference (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReference::~WeakReference (2 samples, 0.08%)</title><rect x="1114.6" y="465" width="0.9" height="15.0" fill="rgb(210,153,43)" rx="2" ry="2" />
<text text-anchor="" x="1117.60" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('account_entity_enqueue (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_enqueue (1 samples, 0.04%)</title><rect x="927.0" y="65" width="0.5" height="15.0" fill="rgb(247,178,4)" rx="2" ry="2" />
<text text-anchor="" x="930.02" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('memset (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>memset (1 samples, 0.04%)</title><rect x="32.3" y="577" width="0.4" height="15.0" fill="rgb(233,112,33)" rx="2" ry="2" />
<text text-anchor="" x="35.26" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock_cpu (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (3 samples, 0.12%)</title><rect x="766.2" y="289" width="1.4" height="15.0" fill="rgb(214,182,3)" rx="2" ry="2" />
<text text-anchor="" x="769.24" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('non-virtual thunk to IPC::ChannelPosix::ReadData (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>non-virtual thunk to IPC::ChannelPosix::ReadData (1 samples, 0.04%)</title><rect x="1108.2" y="449" width="0.5" height="15.0" fill="rgb(231,190,23)" rx="2" ry="2" />
<text text-anchor="" x="1111.24" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_event_context_sched_in (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (4 samples, 0.15%)</title><rect x="10.0" y="545" width="1.8" height="15.0" fill="rgb(230,36,47)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::Run (1,231 samples, 47.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::Run (1,231 samples, 47.38%)</title><rect x="37.7" y="593" width="559.1" height="15.0" fill="rgb(229,9,2)" rx="2" ry="2" />
<text text-anchor="" x="40.71" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::MessagePumpLibevent::Run</text>
</g>
<g class="func_g" onmouseover="s('PickleIterator::ReadString (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>PickleIterator::ReadString (1 samples, 0.04%)</title><rect x="969.3" y="401" width="0.4" height="15.0" fill="rgb(234,34,45)" rx="2" ry="2" />
<text text-anchor="" x="972.26" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unroll_tree_refs (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>unroll_tree_refs (3 samples, 0.12%)</title><rect x="475.1" y="465" width="1.4" height="15.0" fill="rgb(237,97,45)" rx="2" ry="2" />
<text text-anchor="" x="478.10" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock_cpu (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (2 samples, 0.08%)</title><rect x="754.4" y="305" width="0.9" height="15.0" fill="rgb(242,198,54)" rx="2" ry="2" />
<text text-anchor="" x="757.43" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_entity (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (1 samples, 0.04%)</title><rect x="738.5" y="321" width="0.5" height="15.0" fill="rgb(246,86,41)" rx="2" ry="2" />
<text text-anchor="" x="741.53" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__calc_delta (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__calc_delta (1 samples, 0.04%)</title><rect x="932.0" y="33" width="0.5" height="15.0" fill="rgb(253,67,37)" rx="2" ry="2" />
<text text-anchor="" x="935.02" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_stats_wait_end (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_stats_wait_end (1 samples, 0.04%)</title><rect x="779.0" y="321" width="0.4" height="15.0" fill="rgb(218,133,39)" rx="2" ry="2" />
<text text-anchor="" x="781.95" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__fsnotify_parent (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>__fsnotify_parent (2 samples, 0.08%)</title><rect x="308.4" y="417" width="0.9" height="15.0" fill="rgb(240,33,7)" rx="2" ry="2" />
<text text-anchor="" x="311.41" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('cpuacct_charge (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>cpuacct_charge (1 samples, 0.04%)</title><rect x="927.5" y="65" width="0.4" height="15.0" fill="rgb(225,143,21)" rx="2" ry="2" />
<text text-anchor="" x="930.47" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::ChannelPosix::WillDispatchInputMessage (5 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelPosix::WillDispatchInputMessage (5 samples, 0.19%)</title><rect x="252.1" y="513" width="2.3" height="15.0" fill="rgb(218,205,21)" rx="2" ry="2" />
<text text-anchor="" x="255.09" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (1 samples, 0.04%)</title><rect x="532.8" y="369" width="0.4" height="15.0" fill="rgb(215,22,40)" rx="2" ry="2" />
<text text-anchor="" x="535.78" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_audit (23 samples, 0.89%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_audit (23 samples, 0.89%)</title><rect x="466.9" y="497" width="10.5" height="15.0" fill="rgb(225,119,4)" rx="2" ry="2" />
<text text-anchor="" x="469.92" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (4 samples, 0.15%)</title><rect x="30.4" y="481" width="1.9" height="15.0" fill="rgb(254,59,43)" rx="2" ry="2" />
<text text-anchor="" x="33.44" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_sync_key (7 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (7 samples, 0.27%)</title><rect x="1087.4" y="209" width="3.1" height="15.0" fill="rgb(219,172,52)" rx="2" ry="2" />
<text text-anchor="" x="1090.35" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_curr (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (2 samples, 0.08%)</title><rect x="945.6" y="81" width="1.0" height="15.0" fill="rgb(227,174,6)" rx="2" ry="2" />
<text text-anchor="" x="948.64" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__enqueue_entity (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__enqueue_entity (1 samples, 0.04%)</title><rect x="922.5" y="81" width="0.4" height="15.0" fill="rgb(224,40,49)" rx="2" ry="2" />
<text text-anchor="" x="925.48" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('vm_mmap (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>vm_mmap (1 samples, 0.04%)</title><rect x="30.0" y="577" width="0.4" height="15.0" fill="rgb(226,54,20)" rx="2" ry="2" />
<text text-anchor="" x="32.98" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_careful (8 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_careful (8 samples, 0.31%)</title><rect x="1172.3" y="673" width="3.6" height="15.0" fill="rgb(233,94,12)" rx="2" ry="2" />
<text text-anchor="" x="1175.29" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::AddRef (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (1 samples, 0.04%)</title><rect x="584.6" y="561" width="0.4" height="15.0" fill="rgb(250,204,28)" rx="2" ry="2" />
<text text-anchor="" x="587.56" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::ChannelPosix::Send (251 samples, 9.66%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelPosix::Send (251 samples, 9.66%)</title><rect x="273.4" y="481" width="114.0" height="15.0" fill="rgb(252,162,1)" rx="2" ry="2" />
<text text-anchor="" x="276.43" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IPC::ChannelPo..</text>
</g>
<g class="func_g" onmouseover="s('schedule_user (8 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_user (8 samples, 0.31%)</title><rect x="1172.3" y="657" width="3.6" height="15.0" fill="rgb(231,178,43)" rx="2" ry="2" />
<text text-anchor="" x="1175.29" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_enable_all (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.15%)</title><rect x="30.4" y="385" width="1.9" height="15.0" fill="rgb(215,131,7)" rx="2" ry="2" />
<text text-anchor="" x="33.44" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tcmalloc::FL_Push (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>tcmalloc::FL_Push (3 samples, 0.12%)</title><rect x="568.2" y="529" width="1.4" height="15.0" fill="rgb(247,222,20)" rx="2" ry="2" />
<text text-anchor="" x="571.21" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('Pickle::WriteString (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>Pickle::WriteString (1 samples, 0.04%)</title><rect x="992.9" y="417" width="0.4" height="15.0" fill="rgb(233,75,30)" rx="2" ry="2" />
<text text-anchor="" x="995.88" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('wait_for_completion (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>wait_for_completion (4 samples, 0.15%)</title><rect x="30.4" y="513" width="1.9" height="15.0" fill="rgb(252,104,16)" rx="2" ry="2" />
<text text-anchor="" x="33.44" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('enqueue_task (51 samples, 1.96%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task (51 samples, 1.96%)</title><rect x="918.4" y="113" width="23.2" height="15.0" fill="rgb(213,152,50)" rx="2" ry="2" />
<text text-anchor="" x="921.39" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >e..</text>
</g>
<g class="func_g" onmouseover="s('[unknown] (34 samples, 1.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (34 samples, 1.31%)</title><rect x="57.7" y="561" width="15.4" height="15.0" fill="rgb(233,212,21)" rx="2" ry="2" />
<text text-anchor="" x="60.69" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::ChannelReader::ProcessIncomingMessages (6 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::ChannelReader::ProcessIncomingMessages (6 samples, 0.23%)</title><rect x="1109.6" y="465" width="2.7" height="15.0" fill="rgb(253,60,24)" rx="2" ry="2" />
<text text-anchor="" x="1112.61" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_disable (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_disable (1 samples, 0.04%)</title><rect x="210.3" y="385" width="0.5" height="15.0" fill="rgb(231,194,51)" rx="2" ry="2" />
<text text-anchor="" x="213.30" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_poll (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (2 samples, 0.08%)</title><rect x="695.4" y="449" width="0.9" height="15.0" fill="rgb(243,203,34)" rx="2" ry="2" />
<text text-anchor="" x="698.38" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_task_fair (33 samples, 1.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (33 samples, 1.27%)</title><rect x="739.0" y="321" width="15.0" height="15.0" fill="rgb(226,79,12)" rx="2" ry="2" />
<text text-anchor="" x="741.98" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock@plt (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock@plt (3 samples, 0.12%)</title><rect x="250.7" y="497" width="1.4" height="15.0" fill="rgb(208,223,42)" rx="2" ry="2" />
<text text-anchor="" x="253.72" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (25 samples, 0.96%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (25 samples, 0.96%)</title><rect x="109.9" y="529" width="11.4" height="15.0" fill="rgb(252,107,27)" rx="2" ry="2" />
<text text-anchor="" x="112.92" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_enable (7 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (7 samples, 0.27%)</title><rect x="757.2" y="305" width="3.1" height="15.0" fill="rgb(247,191,50)" rx="2" ry="2" />
<text text-anchor="" x="760.15" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('set_next_entity (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>set_next_entity (1 samples, 0.04%)</title><rect x="225.3" y="433" width="0.4" height="15.0" fill="rgb(235,158,24)" rx="2" ry="2" />
<text text-anchor="" x="228.29" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('setup_new_exec (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>setup_new_exec (4 samples, 0.15%)</title><rect x="10.0" y="593" width="1.8" height="15.0" fill="rgb(213,106,26)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_inodes (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_inodes (1 samples, 0.04%)</title><rect x="682.2" y="433" width="0.5" height="15.0" fill="rgb(210,223,20)" rx="2" ry="2" />
<text text-anchor="" x="685.21" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ttwu_stat (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_stat (2 samples, 0.08%)</title><rect x="947.9" y="161" width="0.9" height="15.0" fill="rgb(226,177,27)" rx="2" ry="2" />
<text text-anchor="" x="950.91" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_min_vruntime (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_min_vruntime (1 samples, 0.04%)</title><rect x="191.7" y="353" width="0.4" height="15.0" fill="rgb(250,116,47)" rx="2" ry="2" />
<text text-anchor="" x="194.68" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock_cpu (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (1 samples, 0.04%)</title><rect x="754.0" y="321" width="0.4" height="15.0" fill="rgb(217,124,3)" rx="2" ry="2" />
<text text-anchor="" x="756.97" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('cpuacct_charge (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>cpuacct_charge (1 samples, 0.04%)</title><rect x="191.2" y="353" width="0.5" height="15.0" fill="rgb(248,167,16)" rx="2" ry="2" />
<text text-anchor="" x="194.22" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::ChannelPosix::Send (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelPosix::Send (1 samples, 0.04%)</title><rect x="815.7" y="417" width="0.5" height="15.0" fill="rgb(208,26,42)" rx="2" ry="2" />
<text text-anchor="" x="818.74" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::ChannelReader::ProcessIncomingMessages (6 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::ChannelReader::ProcessIncomingMessages (6 samples, 0.23%)</title><rect x="550.5" y="545" width="2.7" height="15.0" fill="rgb(216,42,33)" rx="2" ry="2" />
<text text-anchor="" x="553.49" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__kmalloc_reserve.isra.27 (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_reserve.isra.27 (1 samples, 0.04%)</title><rect x="905.2" y="257" width="0.5" height="15.0" fill="rgb(213,98,0)" rx="2" ry="2" />
<text text-anchor="" x="908.22" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::DoIdleWork (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::DoIdleWork (3 samples, 0.12%)</title><rect x="637.7" y="497" width="1.4" height="15.0" fill="rgb(207,93,46)" rx="2" ry="2" />
<text text-anchor="" x="640.70" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_audit (15 samples, 0.58%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_audit (15 samples, 0.58%)</title><rect x="860.3" y="369" width="6.8" height="15.0" fill="rgb(248,50,12)" rx="2" ry="2" />
<text text-anchor="" x="863.25" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('task_numa_work (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>task_numa_work (1 samples, 0.04%)</title><rect x="286.6" y="369" width="0.5" height="15.0" fill="rgb(208,21,53)" rx="2" ry="2" />
<text text-anchor="" x="289.61" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_inodes (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_inodes (1 samples, 0.04%)</title><rect x="112.2" y="513" width="0.4" height="15.0" fill="rgb(225,18,42)" rx="2" ry="2" />
<text text-anchor="" x="115.19" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_sync_key (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (1 samples, 0.04%)</title><rect x="520.1" y="305" width="0.4" height="15.0" fill="rgb(205,31,52)" rx="2" ry="2" />
<text text-anchor="" x="523.06" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('hrtick_update (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>hrtick_update (1 samples, 0.04%)</title><rect x="937.5" y="97" width="0.4" height="15.0" fill="rgb(206,109,52)" rx="2" ry="2" />
<text text-anchor="" x="940.47" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_after_swapgs (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_after_swapgs (2 samples, 0.08%)</title><rect x="694.5" y="465" width="0.9" height="15.0" fill="rgb(243,74,17)" rx="2" ry="2" />
<text text-anchor="" x="697.47" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('local_clock (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>local_clock (1 samples, 0.04%)</title><rect x="210.8" y="401" width="0.4" height="15.0" fill="rgb(245,103,40)" rx="2" ry="2" />
<text text-anchor="" x="213.75" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_release_all (32 samples, 1.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_all (32 samples, 1.23%)</title><rect x="511.9" y="369" width="14.5" height="15.0" fill="rgb(238,185,45)" rx="2" ry="2" />
<text text-anchor="" x="514.89" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_def_readable (89 samples, 3.43%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_def_readable (89 samples, 3.43%)</title><rect x="341.1" y="353" width="40.4" height="15.0" fill="rgb(215,115,18)" rx="2" ry="2" />
<text text-anchor="" x="344.11" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >soc..</text>
</g>
<g class="func_g" onmouseover="s('IPC::Message::Message (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::Message::Message (1 samples, 0.04%)</title><rect x="816.7" y="417" width="0.4" height="15.0" fill="rgb(253,158,28)" rx="2" ry="2" />
<text text-anchor="" x="819.65" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('Pickle::WriteString (5 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>Pickle::WriteString (5 samples, 0.19%)</title><rect x="400.6" y="481" width="2.3" height="15.0" fill="rgb(230,62,10)" rx="2" ry="2" />
<text text-anchor="" x="403.61" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (3 samples, 0.12%)</title><rect x="371.5" y="145" width="1.4" height="15.0" fill="rgb(226,22,13)" rx="2" ry="2" />
<text text-anchor="" x="374.54" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock_cpu (6 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (6 samples, 0.23%)</title><rect x="370.2" y="161" width="2.7" height="15.0" fill="rgb(246,32,28)" rx="2" ry="2" />
<text text-anchor="" x="373.18" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('epoll_dispatch (20 samples, 0.77%)')" onmouseout="c()" onclick="zoom(this)">
<title>epoll_dispatch (20 samples, 0.77%)</title><rect x="1149.6" y="481" width="9.1" height="15.0" fill="rgb(242,194,21)" rx="2" ry="2" />
<text text-anchor="" x="1152.58" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__srcu_read_lock (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>__srcu_read_lock (3 samples, 0.12%)</title><rect x="952.9" y="305" width="1.4" height="15.0" fill="rgb(241,23,6)" rx="2" ry="2" />
<text text-anchor="" x="955.91" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apparmor_file_permission (6 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (6 samples, 0.23%)</title><rect x="536.4" y="417" width="2.7" height="15.0" fill="rgb(208,211,54)" rx="2" ry="2" />
<text text-anchor="" x="539.41" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('memcpy_fromiovecend (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>memcpy_fromiovecend (3 samples, 0.12%)</title><rect x="889.3" y="257" width="1.4" height="15.0" fill="rgb(214,107,54)" rx="2" ry="2" />
<text text-anchor="" x="892.32" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('PickleIterator::ReadUInt32 (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>PickleIterator::ReadUInt32 (3 samples, 0.12%)</title><rect x="428.8" y="497" width="1.3" height="15.0" fill="rgb(230,85,4)" rx="2" ry="2" />
<text text-anchor="" x="431.77" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_enable_all (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.15%)</title><rect x="1177.3" y="545" width="1.8" height="15.0" fill="rgb(224,197,14)" rx="2" ry="2" />
<text text-anchor="" x="1180.28" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('enqueue_entity (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (1 samples, 0.04%)</title><rect x="351.6" y="177" width="0.4" height="15.0" fill="rgb(222,212,15)" rx="2" ry="2" />
<text text-anchor="" x="354.56" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_dl_map_object (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_dl_map_object (1 samples, 0.04%)</title><rect x="1176.4" y="689" width="0.4" height="15.0" fill="rgb(246,101,17)" rx="2" ry="2" />
<text text-anchor="" x="1179.37" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::MessageAttachmentSet::MessageAttachmentSet (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::MessageAttachmentSet::MessageAttachmentSet (2 samples, 0.08%)</title><rect x="840.7" y="369" width="0.9" height="15.0" fill="rgb(240,69,9)" rx="2" ry="2" />
<text text-anchor="" x="843.72" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::Run (1,231 samples, 47.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::Run (1,231 samples, 47.38%)</title><rect x="606.8" y="513" width="559.1" height="15.0" fill="rgb(231,11,17)" rx="2" ry="2" />
<text text-anchor="" x="609.81" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::MessagePumpLibevent::Run</text>
</g>
<g class="func_g" onmouseover="s('wait_for_completion (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>wait_for_completion (4 samples, 0.15%)</title><rect x="596.8" y="433" width="1.8" height="15.0" fill="rgb(242,134,21)" rx="2" ry="2" />
<text text-anchor="" x="599.82" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (41 samples, 1.58%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (41 samples, 1.58%)</title><rect x="11.8" y="689" width="18.6" height="15.0" fill="rgb(206,108,42)" rx="2" ry="2" />
<text text-anchor="" x="14.82" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::OnLibeventNotification (761 samples, 29.29%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::OnLibeventNotification (761 samples, 29.29%)</title><rect x="232.6" y="561" width="345.6" height="15.0" fill="rgb(231,66,16)" rx="2" ry="2" />
<text text-anchor="" x="235.56" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::MessagePumpLibevent::OnLibeventNotificat..</text>
</g>
<g class="func_g" onmouseover="s('security_socket_getpeersec_dgram (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_getpeersec_dgram (1 samples, 0.04%)</title><rect x="317.5" y="369" width="0.4" height="15.0" fill="rgb(240,140,32)" rx="2" ry="2" />
<text text-anchor="" x="320.49" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_ZdlPv@plt (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZdlPv@plt (3 samples, 0.12%)</title><rect x="998.8" y="417" width="1.3" height="15.0" fill="rgb(227,145,40)" rx="2" ry="2" />
<text text-anchor="" x="1001.78" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::Message::TraceMessageEnd (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::Message::TraceMessageEnd (1 samples, 0.04%)</title><rect x="255.7" y="513" width="0.5" height="15.0" fill="rgb(245,86,47)" rx="2" ry="2" />
<text text-anchor="" x="258.72" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_min_vruntime (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_min_vruntime (4 samples, 0.15%)</title><rect x="363.8" y="129" width="1.8" height="15.0" fill="rgb(208,41,36)" rx="2" ry="2" />
<text text-anchor="" x="366.82" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_ZN4base11MessageLoop10DoIdleWorkEv@plt (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4base11MessageLoop10DoIdleWorkEv@plt (1 samples, 0.04%)</title><rect x="598.6" y="513" width="0.5" height="15.0" fill="rgb(229,11,2)" rx="2" ry="2" />
<text text-anchor="" x="601.64" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_curr (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (4 samples, 0.15%)</title><rect x="363.8" y="145" width="1.8" height="15.0" fill="rgb(238,148,23)" rx="2" ry="2" />
<text text-anchor="" x="366.82" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_enable (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.15%)</title><rect x="15.9" y="241" width="1.8" height="15.0" fill="rgb(254,65,20)" rx="2" ry="2" />
<text text-anchor="" x="18.90" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('clear_buddies (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>clear_buddies (1 samples, 0.04%)</title><rect x="213.9" y="417" width="0.5" height="15.0" fill="rgb(237,167,26)" rx="2" ry="2" />
<text text-anchor="" x="216.93" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('set_cpus_allowed_ptr (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>set_cpus_allowed_ptr (4 samples, 0.15%)</title><rect x="30.4" y="545" width="1.9" height="15.0" fill="rgb(210,135,45)" rx="2" ry="2" />
<text text-anchor="" x="33.44" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('put_prev_task_fair (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>put_prev_task_fair (1 samples, 0.04%)</title><rect x="1175.0" y="625" width="0.5" height="15.0" fill="rgb(230,75,21)" rx="2" ry="2" />
<text text-anchor="" x="1178.01" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_poll (202 samples, 7.78%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (202 samples, 7.78%)</title><rect x="136.3" y="513" width="91.7" height="15.0" fill="rgb(234,37,41)" rx="2" ry="2" />
<text text-anchor="" x="139.27" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ep_poll</text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::Run (1,249 samples, 48.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::Run (1,249 samples, 48.08%)</title><rect x="598.6" y="545" width="567.3" height="15.0" fill="rgb(206,15,32)" rx="2" ry="2" />
<text text-anchor="" x="601.64" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::MessageLoop::Run</text>
</g>
<g class="func_g" onmouseover="s('ret_from_sys_call (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_sys_call (4 samples, 0.15%)</title><rect x="856.6" y="369" width="1.8" height="15.0" fill="rgb(241,199,47)" rx="2" ry="2" />
<text text-anchor="" x="859.62" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_enable (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (4 samples, 0.15%)</title><rect x="10.0" y="529" width="1.8" height="15.0" fill="rgb(247,41,26)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (200 samples, 7.70%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (200 samples, 7.70%)</title><rect x="867.5" y="369" width="90.9" height="15.0" fill="rgb(215,114,20)" rx="2" ry="2" />
<text text-anchor="" x="870.52" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >system_cal..</text>
</g>
<g class="func_g" onmouseover="s('skb_free_head (12 samples, 0.46%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_free_head (12 samples, 0.46%)</title><rect x="512.3" y="337" width="5.5" height="15.0" fill="rgb(222,56,9)" rx="2" ry="2" />
<text text-anchor="" x="515.34" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.04%)</title><rect x="911.1" y="161" width="0.5" height="15.0" fill="rgb(236,80,3)" rx="2" ry="2" />
<text text-anchor="" x="914.12" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_execve_common.isra.22 (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_execve_common.isra.22 (1 samples, 0.04%)</title><rect x="30.0" y="641" width="0.4" height="15.0" fill="rgb(239,53,38)" rx="2" ry="2" />
<text text-anchor="" x="32.98" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::DidProcessIOEvent (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::DidProcessIOEvent (2 samples, 0.08%)</title><rect x="788.0" y="481" width="0.9" height="15.0" fill="rgb(224,135,47)" rx="2" ry="2" />
<text text-anchor="" x="791.04" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ttwu_stat (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_stat (1 samples, 0.04%)</title><rect x="377.4" y="225" width="0.5" height="15.0" fill="rgb(249,2,13)" rx="2" ry="2" />
<text text-anchor="" x="380.44" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (4 samples, 0.15%)</title><rect x="544.1" y="513" width="1.9" height="15.0" fill="rgb(241,195,43)" rx="2" ry="2" />
<text text-anchor="" x="547.13" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::TimeTicks::NowFromSystemTraceTime (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::TimeTicks::NowFromSystemTraceTime (3 samples, 0.12%)</title><rect x="977.0" y="401" width="1.3" height="15.0" fill="rgb(214,216,11)" rx="2" ry="2" />
<text text-anchor="" x="979.98" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (4 samples, 0.15%)</title><rect x="596.8" y="289" width="1.8" height="15.0" fill="rgb(228,121,45)" rx="2" ry="2" />
<text text-anchor="" x="599.82" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('try_to_wake_up (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (2 samples, 0.08%)</title><rect x="379.3" y="257" width="0.9" height="15.0" fill="rgb(219,203,52)" rx="2" ry="2" />
<text text-anchor="" x="382.26" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mmap_region (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>mmap_region (1 samples, 0.04%)</title><rect x="30.0" y="529" width="0.4" height="15.0" fill="rgb(206,121,18)" rx="2" ry="2" />
<text text-anchor="" x="32.98" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('cpuacct_charge (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>cpuacct_charge (3 samples, 0.12%)</title><rect x="751.2" y="273" width="1.4" height="15.0" fill="rgb(217,174,46)" rx="2" ry="2" />
<text text-anchor="" x="754.25" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__enqueue_entity (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__enqueue_entity (1 samples, 0.04%)</title><rect x="926.6" y="65" width="0.4" height="15.0" fill="rgb(240,213,38)" rx="2" ry="2" />
<text text-anchor="" x="929.57" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('put_prev_task_fair (6 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>put_prev_task_fair (6 samples, 0.23%)</title><rect x="780.3" y="353" width="2.7" height="15.0" fill="rgb(249,183,36)" rx="2" ry="2" />
<text text-anchor="" x="783.32" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (1 samples, 0.04%)</title><rect x="476.5" y="481" width="0.4" height="15.0" fill="rgb(205,187,0)" rx="2" ry="2" />
<text text-anchor="" x="479.46" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('PickleIterator::ReadStringPiece (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>PickleIterator::ReadStringPiece (3 samples, 0.12%)</title><rect x="427.4" y="497" width="1.4" height="15.0" fill="rgb(213,220,49)" rx="2" ry="2" />
<text text-anchor="" x="430.41" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_destruct_scm (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_destruct_scm (1 samples, 0.04%)</title><rect x="526.0" y="353" width="0.4" height="15.0" fill="rgb(228,87,33)" rx="2" ry="2" />
<text text-anchor="" x="528.97" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::LockImpl::Lock (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::LockImpl::Lock (1 samples, 0.04%)</title><rect x="799.8" y="417" width="0.5" height="15.0" fill="rgb(212,105,5)" rx="2" ry="2" />
<text text-anchor="" x="802.85" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fget_light (5 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>fget_light (5 samples, 0.19%)</title><rect x="482.8" y="465" width="2.3" height="15.0" fill="rgb(222,161,37)" rx="2" ry="2" />
<text text-anchor="" x="485.82" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_event_mmap (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_mmap (1 samples, 0.04%)</title><rect x="30.0" y="513" width="0.4" height="15.0" fill="rgb(228,226,49)" rx="2" ry="2" />
<text text-anchor="" x="32.98" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fsnotify (6 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>fsnotify (6 samples, 0.23%)</title><rect x="382.9" y="401" width="2.7" height="15.0" fill="rgb(222,156,51)" rx="2" ry="2" />
<text text-anchor="" x="385.89" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('enqueue_entity (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (1 samples, 0.04%)</title><rect x="919.3" y="97" width="0.5" height="15.0" fill="rgb(223,180,9)" rx="2" ry="2" />
<text text-anchor="" x="922.30" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_alloc_send_pskb (30 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_alloc_send_pskb (30 samples, 1.15%)</title><rect x="327.5" y="353" width="13.6" height="15.0" fill="rgb(225,1,24)" rx="2" ry="2" />
<text text-anchor="" x="330.48" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('check_preempt_wakeup (5 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>check_preempt_wakeup (5 samples, 0.19%)</title><rect x="374.3" y="177" width="2.2" height="15.0" fill="rgb(242,207,27)" rx="2" ry="2" />
<text text-anchor="" x="377.26" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pm_relax (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pm_relax (2 samples, 0.08%)</title><rect x="150.8" y="481" width="0.9" height="15.0" fill="rgb(213,212,53)" rx="2" ry="2" />
<text text-anchor="" x="153.80" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tcmalloc::FL_Push (6 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>tcmalloc::FL_Push (6 samples, 0.23%)</title><rect x="1126.0" y="449" width="2.7" height="15.0" fill="rgb(224,3,40)" rx="2" ry="2" />
<text text-anchor="" x="1128.96" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_ZN14PickleIterator9ReadInt64EPl@plt (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZN14PickleIterator9ReadInt64EPl@plt (2 samples, 0.08%)</title><rect x="997.0" y="417" width="0.9" height="15.0" fill="rgb(240,147,38)" rx="2" ry="2" />
<text text-anchor="" x="999.97" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_mmap_pgoff (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_mmap_pgoff (1 samples, 0.04%)</title><rect x="1176.4" y="593" width="0.4" height="15.0" fill="rgb(236,130,54)" rx="2" ry="2" />
<text text-anchor="" x="1179.37" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::AddRef (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (2 samples, 0.08%)</title><rect x="569.6" y="545" width="0.9" height="15.0" fill="rgb(238,38,5)" rx="2" ry="2" />
<text text-anchor="" x="572.57" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_alloc_send_pskb (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_alloc_send_pskb (1 samples, 0.04%)</title><rect x="318.9" y="369" width="0.4" height="15.0" fill="rgb(254,19,0)" rx="2" ry="2" />
<text text-anchor="" x="321.85" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock_cpu (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (1 samples, 0.04%)</title><rect x="209.8" y="385" width="0.5" height="15.0" fill="rgb(235,120,35)" rx="2" ry="2" />
<text text-anchor="" x="212.85" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_stream_recvmsg (66 samples, 2.54%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_recvmsg (66 samples, 2.54%)</title><rect x="1067.4" y="321" width="29.9" height="15.0" fill="rgb(214,2,22)" rx="2" ry="2" />
<text text-anchor="" x="1070.37" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >un..</text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (2 samples, 0.08%)</title><rect x="1042.4" y="401" width="0.9" height="15.0" fill="rgb(208,102,28)" rx="2" ry="2" />
<text text-anchor="" x="1045.39" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::ChannelReader::DispatchInputData (404 samples, 15.55%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::ChannelReader::DispatchInputData (404 samples, 15.55%)</title><rect x="258.0" y="513" width="183.5" height="15.0" fill="rgb(209,42,45)" rx="2" ry="2" />
<text text-anchor="" x="260.99" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IPC::internal::ChannelR..</text>
</g>
<g class="func_g" onmouseover="s('update_cfs_rq_blocked_load (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_rq_blocked_load (1 samples, 0.04%)</title><rect x="193.0" y="385" width="0.5" height="15.0" fill="rgb(207,218,3)" rx="2" ry="2" />
<text text-anchor="" x="196.04" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('Pickle::Resize (11 samples, 0.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>Pickle::Resize (11 samples, 0.42%)</title><rect x="959.3" y="369" width="5.0" height="15.0" fill="rgb(205,14,23)" rx="2" ry="2" />
<text text-anchor="" x="962.27" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rb_insert_color (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>rb_insert_color (1 samples, 0.04%)</title><rect x="1175.0" y="609" width="0.5" height="15.0" fill="rgb(239,127,39)" rx="2" ry="2" />
<text text-anchor="" x="1178.01" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rb_next (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>rb_next (1 samples, 0.04%)</title><rect x="218.5" y="401" width="0.4" height="15.0" fill="rgb(246,160,25)" rx="2" ry="2" />
<text text-anchor="" x="221.48" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::test::PerformanceChannelListener::OnMessageReceived (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::test::PerformanceChannelListener::OnMessageReceived (4 samples, 0.15%)</title><rect x="1013.8" y="433" width="1.8" height="15.0" fill="rgb(238,15,28)" rx="2" ry="2" />
<text text-anchor="" x="1016.77" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kmem_cache_alloc_node (7 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_alloc_node (7 samples, 0.27%)</title><rect x="336.1" y="321" width="3.2" height="15.0" fill="rgb(223,79,52)" rx="2" ry="2" />
<text text-anchor="" x="339.11" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__get_user_8 (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__get_user_8 (1 samples, 0.04%)</title><rect x="15.5" y="385" width="0.4" height="15.0" fill="rgb(210,140,42)" rx="2" ry="2" />
<text text-anchor="" x="18.45" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('lru_add_drain_cpu (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>lru_add_drain_cpu (1 samples, 0.04%)</title><rect x="1176.4" y="513" width="0.4" height="15.0" fill="rgb(207,228,36)" rx="2" ry="2" />
<text text-anchor="" x="1179.37" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (1 samples, 0.04%)</title><rect x="323.8" y="353" width="0.5" height="15.0" fill="rgb(230,175,9)" rx="2" ry="2" />
<text text-anchor="" x="326.85" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('select_task_rq_fair (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>select_task_rq_fair (2 samples, 0.08%)</title><rect x="343.4" y="241" width="0.9" height="15.0" fill="rgb(235,169,33)" rx="2" ry="2" />
<text text-anchor="" x="346.38" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (2 samples, 0.08%)</title><rect x="531.9" y="369" width="0.9" height="15.0" fill="rgb(229,121,42)" rx="2" ry="2" />
<text text-anchor="" x="534.87" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('memcpy_fromiovecend (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>memcpy_fromiovecend (1 samples, 0.04%)</title><rect x="887.1" y="273" width="0.4" height="15.0" fill="rgb(241,193,4)" rx="2" ry="2" />
<text text-anchor="" x="890.05" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_hrtimeout_range (124 samples, 4.77%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (124 samples, 4.77%)</title><rect x="729.9" y="417" width="56.3" height="15.0" fill="rgb(252,180,41)" rx="2" ry="2" />
<text text-anchor="" x="732.90" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sched..</text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (1 samples, 0.04%)</title><rect x="491.0" y="401" width="0.4" height="15.0" fill="rgb(228,84,8)" rx="2" ry="2" />
<text text-anchor="" x="493.99" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_ZNK4base8internal13WeakReference8is_validEv@plt (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK4base8internal13WeakReference8is_validEv@plt (4 samples, 0.15%)</title><rect x="664.9" y="481" width="1.9" height="15.0" fill="rgb(219,25,23)" rx="2" ry="2" />
<text text-anchor="" x="667.95" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__srcu_read_unlock (6 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>__srcu_read_unlock (6 samples, 0.23%)</title><rect x="954.3" y="305" width="2.7" height="15.0" fill="rgb(254,212,6)" rx="2" ry="2" />
<text text-anchor="" x="957.27" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ttwu_do_activate.constprop.74 (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.74 (1 samples, 0.04%)</title><rect x="377.9" y="241" width="0.5" height="15.0" fill="rgb(236,101,47)" rx="2" ry="2" />
<text text-anchor="" x="380.90" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ksize (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>ksize (1 samples, 0.04%)</title><rect x="340.7" y="337" width="0.4" height="15.0" fill="rgb(227,206,27)" rx="2" ry="2" />
<text text-anchor="" x="343.65" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.04%)</title><rect x="672.2" y="305" width="0.5" height="15.0" fill="rgb(211,87,26)" rx="2" ry="2" />
<text text-anchor="" x="675.22" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_free_head (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_free_head (1 samples, 0.04%)</title><rect x="511.9" y="353" width="0.4" height="15.0" fill="rgb(205,69,46)" rx="2" ry="2" />
<text text-anchor="" x="514.89" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unroll_tree_refs (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>unroll_tree_refs (3 samples, 0.12%)</title><rect x="119.9" y="513" width="1.4" height="15.0" fill="rgb(242,30,51)" rx="2" ry="2" />
<text text-anchor="" x="122.92" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_notify_resume (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_notify_resume (1 samples, 0.04%)</title><rect x="286.6" y="401" width="0.5" height="15.0" fill="rgb(224,12,54)" rx="2" ry="2" />
<text text-anchor="" x="289.61" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::ChannelPosix::ProcessOutgoingMessages (42 samples, 1.62%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelPosix::ProcessOutgoingMessages (42 samples, 1.62%)</title><rect x="275.3" y="465" width="19.0" height="15.0" fill="rgb(213,119,0)" rx="2" ry="2" />
<text text-anchor="" x="278.25" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mmap_region (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>mmap_region (1 samples, 0.04%)</title><rect x="1176.4" y="577" width="0.4" height="15.0" fill="rgb(232,154,34)" rx="2" ry="2" />
<text text-anchor="" x="1179.37" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ret_from_sys_call (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_sys_call (1 samples, 0.04%)</title><rect x="107.7" y="545" width="0.4" height="15.0" fill="rgb(208,87,33)" rx="2" ry="2" />
<text text-anchor="" x="110.65" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::LockImpl::Lock (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::LockImpl::Lock (2 samples, 0.08%)</title><rect x="247.5" y="497" width="1.0" height="15.0" fill="rgb(231,21,11)" rx="2" ry="2" />
<text text-anchor="" x="250.54" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_def_readable (96 samples, 3.70%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_def_readable (96 samples, 3.70%)</title><rect x="907.0" y="273" width="43.6" height="15.0" fill="rgb(218,180,39)" rx="2" ry="2" />
<text text-anchor="" x="910.04" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sock..</text>
</g>
<g class="func_g" onmouseover="s('epoll_wait (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>epoll_wait (3 samples, 0.12%)</title><rect x="1158.7" y="481" width="1.3" height="15.0" fill="rgb(227,6,18)" rx="2" ry="2" />
<text text-anchor="" x="1161.66" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::TimeTicks::NowFromSystemTraceTime (6 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::TimeTicks::NowFromSystemTraceTime (6 samples, 0.23%)</title><rect x="1001.1" y="417" width="2.7" height="15.0" fill="rgb(209,212,51)" rx="2" ry="2" />
<text text-anchor="" x="1004.05" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (2 samples, 0.08%)</title><rect x="855.7" y="337" width="0.9" height="15.0" fill="rgb(209,58,0)" rx="2" ry="2" />
<text text-anchor="" x="858.71" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (1 samples, 0.04%)</title><rect x="464.2" y="481" width="0.4" height="15.0" fill="rgb(212,193,52)" rx="2" ry="2" />
<text text-anchor="" x="467.20" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__enqueue_entity (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>__enqueue_entity (2 samples, 0.08%)</title><rect x="360.2" y="145" width="0.9" height="15.0" fill="rgb(224,202,34)" rx="2" ry="2" />
<text text-anchor="" x="363.18" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (1 samples, 0.04%)</title><rect x="917.0" y="145" width="0.5" height="15.0" fill="rgb(233,170,35)" rx="2" ry="2" />
<text text-anchor="" x="920.03" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mutex_lock (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>mutex_lock (3 samples, 0.12%)</title><rect x="162.6" y="481" width="1.4" height="15.0" fill="rgb(211,170,27)" rx="2" ry="2" />
<text text-anchor="" x="165.61" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::WillProcessIOEvent (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::WillProcessIOEvent (1 samples, 0.04%)</title><rect x="554.6" y="545" width="0.4" height="15.0" fill="rgb(240,9,34)" rx="2" ry="2" />
<text text-anchor="" x="557.58" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_min_vruntime (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_min_vruntime (2 samples, 0.08%)</title><rect x="752.6" y="273" width="0.9" height="15.0" fill="rgb(250,67,7)" rx="2" ry="2" />
<text text-anchor="" x="755.61" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('deactivate_task (39 samples, 1.50%)')" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (39 samples, 1.50%)</title><rect x="178.1" y="433" width="17.7" height="15.0" fill="rgb(227,43,25)" rx="2" ry="2" />
<text text-anchor="" x="181.05" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::ChannelPosix::Send (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelPosix::Send (4 samples, 0.15%)</title><rect x="11.8" y="641" width="1.8" height="15.0" fill="rgb(230,68,7)" rx="2" ry="2" />
<text text-anchor="" x="14.82" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_sync_read (89 samples, 3.43%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_sync_read (89 samples, 3.43%)</title><rect x="1056.9" y="369" width="40.4" height="15.0" fill="rgb(243,143,3)" rx="2" ry="2" />
<text text-anchor="" x="1059.92" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >do_..</text>
</g>
<g class="func_g" onmouseover="s('__memcpy_sse2_unaligned (10 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_sse2_unaligned (10 samples, 0.38%)</title><rect x="18.2" y="657" width="4.5" height="15.0" fill="rgb(210,96,24)" rx="2" ry="2" />
<text text-anchor="" x="21.18" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('enqueue_task (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task (1 samples, 0.04%)</title><rect x="942.0" y="129" width="0.5" height="15.0" fill="rgb(220,96,37)" rx="2" ry="2" />
<text text-anchor="" x="945.01" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_min_vruntime (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_min_vruntime (1 samples, 0.04%)</title><rect x="934.7" y="49" width="0.5" height="15.0" fill="rgb(226,51,9)" rx="2" ry="2" />
<text text-anchor="" x="937.74" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_copy_datagram_iovec (8 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_iovec (8 samples, 0.31%)</title><rect x="527.3" y="385" width="3.7" height="15.0" fill="rgb(231,14,14)" rx="2" ry="2" />
<text text-anchor="" x="530.33" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (4 samples, 0.15%)</title><rect x="10.0" y="689" width="1.8" height="15.0" fill="rgb(234,229,12)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('clear_buddies (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>clear_buddies (1 samples, 0.04%)</title><rect x="186.7" y="369" width="0.4" height="15.0" fill="rgb(228,84,18)" rx="2" ry="2" />
<text text-anchor="" x="189.68" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_read (131 samples, 5.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (131 samples, 5.04%)</title><rect x="481.5" y="481" width="59.5" height="15.0" fill="rgb(222,126,45)" rx="2" ry="2" />
<text text-anchor="" x="484.45" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys_read</text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (4 samples, 0.15%)</title><rect x="596.8" y="513" width="1.8" height="15.0" fill="rgb(214,59,39)" rx="2" ry="2" />
<text text-anchor="" x="599.82" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('local_clock (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>local_clock (4 samples, 0.15%)</title><rect x="202.6" y="385" width="1.8" height="15.0" fill="rgb(229,106,9)" rx="2" ry="2" />
<text text-anchor="" x="205.58" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('Pickle::Pickle (9 samples, 0.35%)')" onmouseout="c()" onclick="zoom(this)">
<title>Pickle::Pickle (9 samples, 0.35%)</title><rect x="390.2" y="465" width="4.0" height="15.0" fill="rgb(245,214,1)" rx="2" ry="2" />
<text text-anchor="" x="393.16" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('enqueue_task (48 samples, 1.85%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task (48 samples, 1.85%)</title><rect x="351.1" y="193" width="21.8" height="15.0" fill="rgb(246,188,53)" rx="2" ry="2" />
<text text-anchor="" x="354.10" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >e..</text>
</g>
<g class="func_g" onmouseover="s('ctx_sched_out (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>ctx_sched_out (3 samples, 0.12%)</title><rect x="1173.2" y="593" width="1.4" height="15.0" fill="rgb(239,176,17)" rx="2" ry="2" />
<text text-anchor="" x="1176.19" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_enable (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.15%)</title><rect x="10.0" y="513" width="1.8" height="15.0" fill="rgb(252,95,18)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__perf_event_task_sched_out (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_out (2 samples, 0.08%)</title><rect x="735.8" y="353" width="0.9" height="15.0" fill="rgb(219,40,39)" rx="2" ry="2" />
<text text-anchor="" x="738.80" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('place_entity (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>place_entity (1 samples, 0.04%)</title><rect x="365.6" y="161" width="0.5" height="15.0" fill="rgb(220,30,28)" rx="2" ry="2" />
<text text-anchor="" x="368.64" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('retint_signal (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>retint_signal (1 samples, 0.04%)</title><rect x="286.6" y="417" width="0.5" height="15.0" fill="rgb(247,95,45)" rx="2" ry="2" />
<text text-anchor="" x="289.61" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_read_tsc (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_read_tsc (3 samples, 0.12%)</title><rect x="940.2" y="33" width="1.4" height="15.0" fill="rgb(245,103,12)" rx="2" ry="2" />
<text text-anchor="" x="943.19" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_event_context_sched_in (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (4 samples, 0.15%)</title><rect x="596.8" y="353" width="1.8" height="15.0" fill="rgb(223,135,21)" rx="2" ry="2" />
<text text-anchor="" x="599.82" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('path_put (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>path_put (2 samples, 0.08%)</title><rect x="689.9" y="433" width="0.9" height="15.0" fill="rgb(233,131,22)" rx="2" ry="2" />
<text text-anchor="" x="692.93" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unroll_tree_refs (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>unroll_tree_refs (1 samples, 0.04%)</title><rect x="690.8" y="433" width="0.5" height="15.0" fill="rgb(223,224,19)" rx="2" ry="2" />
<text text-anchor="" x="693.84" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unmap_region (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>unmap_region (1 samples, 0.04%)</title><rect x="1176.4" y="545" width="0.4" height="15.0" fill="rgb(219,124,52)" rx="2" ry="2" />
<text text-anchor="" x="1179.37" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_copy_datagram_from_iovec (7 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_from_iovec (7 samples, 0.27%)</title><rect x="887.5" y="273" width="3.2" height="15.0" fill="rgb(234,165,19)" rx="2" ry="2" />
<text text-anchor="" x="890.51" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (4 samples, 0.15%)</title><rect x="15.9" y="209" width="1.8" height="15.0" fill="rgb(242,225,47)" rx="2" ry="2" />
<text text-anchor="" x="18.90" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (123 samples, 4.73%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (123 samples, 4.73%)</title><rect x="169.9" y="449" width="55.8" height="15.0" fill="rgb(247,85,18)" rx="2" ry="2" />
<text text-anchor="" x="172.88" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__sch..</text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (4 samples, 0.15%)</title><rect x="915.2" y="145" width="1.8" height="15.0" fill="rgb(227,90,6)" rx="2" ry="2" />
<text text-anchor="" x="918.21" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('clear_buddies (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>clear_buddies (1 samples, 0.04%)</title><rect x="183.0" y="385" width="0.5" height="15.0" fill="rgb(209,60,25)" rx="2" ry="2" />
<text text-anchor="" x="186.05" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rcu_note_context_switch (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>rcu_note_context_switch (1 samples, 0.04%)</title><rect x="224.8" y="433" width="0.5" height="15.0" fill="rgb(216,167,44)" rx="2" ry="2" />
<text text-anchor="" x="227.83" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::Release (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (4 samples, 0.15%)</title><rect x="843.9" y="369" width="1.8" height="15.0" fill="rgb(237,63,26)" rx="2" ry="2" />
<text text-anchor="" x="846.90" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('Pickle::~Pickle (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>Pickle::~Pickle (3 samples, 0.12%)</title><rect x="842.1" y="369" width="1.3" height="15.0" fill="rgb(241,171,21)" rx="2" ry="2" />
<text text-anchor="" x="845.09" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree (11 samples, 0.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree (11 samples, 0.42%)</title><rect x="1077.4" y="241" width="5.0" height="15.0" fill="rgb(227,188,18)" rx="2" ry="2" />
<text text-anchor="" x="1080.36" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__fsnotify_parent (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>__fsnotify_parent (2 samples, 0.08%)</title><rect x="1099.6" y="337" width="0.9" height="15.0" fill="rgb(219,210,3)" rx="2" ry="2" />
<text text-anchor="" x="1102.62" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_wfree (16 samples, 0.62%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_wfree (16 samples, 0.62%)</title><rect x="1083.3" y="241" width="7.2" height="15.0" fill="rgb(254,33,13)" rx="2" ry="2" />
<text text-anchor="" x="1086.26" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('place_entity (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>place_entity (1 samples, 0.04%)</title><rect x="935.2" y="81" width="0.5" height="15.0" fill="rgb(248,158,6)" rx="2" ry="2" />
<text text-anchor="" x="938.20" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_enable (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (4 samples, 0.15%)</title><rect x="15.9" y="257" width="1.8" height="15.0" fill="rgb(252,49,10)" rx="2" ry="2" />
<text text-anchor="" x="18.90" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (7 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (7 samples, 0.27%)</title><rect x="800.3" y="417" width="3.2" height="15.0" fill="rgb(253,61,14)" rx="2" ry="2" />
<text text-anchor="" x="803.30" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_audit (28 samples, 1.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_audit (28 samples, 1.08%)</title><rect x="109.9" y="545" width="12.7" height="15.0" fill="rgb(231,145,52)" rx="2" ry="2" />
<text text-anchor="" x="112.92" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_poll (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_poll (4 samples, 0.15%)</title><rect x="164.0" y="481" width="1.8" height="15.0" fill="rgb(246,219,24)" rx="2" ry="2" />
<text text-anchor="" x="166.97" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_enable (6 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (6 samples, 0.23%)</title><rect x="197.1" y="385" width="2.8" height="15.0" fill="rgb(207,33,44)" rx="2" ry="2" />
<text text-anchor="" x="200.13" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__fsnotify_parent (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>__fsnotify_parent (3 samples, 0.12%)</title><rect x="870.7" y="321" width="1.4" height="15.0" fill="rgb(231,171,20)" rx="2" ry="2" />
<text text-anchor="" x="873.70" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_cfs_shares (7 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (7 samples, 0.27%)</title><rect x="366.1" y="161" width="3.2" height="15.0" fill="rgb(238,21,48)" rx="2" ry="2" />
<text text-anchor="" x="369.09" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('copy_user_generic_string (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_string (4 samples, 0.15%)</title><rect x="528.2" y="369" width="1.9" height="15.0" fill="rgb(223,78,13)" rx="2" ry="2" />
<text text-anchor="" x="531.24" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (177 samples, 6.81%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (177 samples, 6.81%)</title><rect x="306.6" y="449" width="80.4" height="15.0" fill="rgb(221,157,8)" rx="2" ry="2" />
<text text-anchor="" x="309.59" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >system_ca..</text>
</g>
<g class="func_g" onmouseover="s('base::TimeDelta::SaturatedAdd (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::TimeDelta::SaturatedAdd (3 samples, 0.12%)</title><rect x="431.0" y="497" width="1.4" height="15.0" fill="rgb(230,170,12)" rx="2" ry="2" />
<text text-anchor="" x="434.04" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (1 samples, 0.04%)</title><rect x="1176.4" y="657" width="0.4" height="15.0" fill="rgb(216,207,45)" rx="2" ry="2" />
<text text-anchor="" x="1179.37" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ret_from_sys_call (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_sys_call (2 samples, 0.08%)</title><rect x="674.9" y="465" width="1.0" height="15.0" fill="rgb(209,160,25)" rx="2" ry="2" />
<text text-anchor="" x="677.94" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_aio_read.part.8 (83 samples, 3.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_aio_read.part.8 (83 samples, 3.19%)</title><rect x="1059.6" y="337" width="37.7" height="15.0" fill="rgb(253,120,34)" rx="2" ry="2" />
<text text-anchor="" x="1062.65" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >soc..</text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.19%)</title><rect x="15.5" y="561" width="2.2" height="15.0" fill="rgb(210,3,11)" rx="2" ry="2" />
<text text-anchor="" x="18.45" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('release_pages (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>release_pages (1 samples, 0.04%)</title><rect x="1176.4" y="481" width="0.4" height="15.0" fill="rgb(237,178,45)" rx="2" ry="2" />
<text text-anchor="" x="1179.37" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator new (6 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (6 samples, 0.23%)</title><rect x="418.8" y="481" width="2.7" height="15.0" fill="rgb(225,50,39)" rx="2" ry="2" />
<text text-anchor="" x="421.78" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('security_socket_recvmsg (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_recvmsg (1 samples, 0.04%)</title><rect x="489.2" y="417" width="0.4" height="15.0" fill="rgb(231,157,22)" rx="2" ry="2" />
<text text-anchor="" x="492.18" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_entry (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (1 samples, 0.04%)</title><rect x="299.3" y="433" width="0.5" height="15.0" fill="rgb(233,169,44)" rx="2" ry="2" />
<text text-anchor="" x="302.32" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_aio_write (146 samples, 5.62%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_aio_write (146 samples, 5.62%)</title><rect x="316.1" y="385" width="66.3" height="15.0" fill="rgb(220,135,27)" rx="2" ry="2" />
<text text-anchor="" x="319.13" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sock_ai..</text>
</g>
<g class="func_g" onmouseover="s('IPC::ChannelPosix::ProcessOutgoingMessages (46 samples, 1.77%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelPosix::ProcessOutgoingMessages (46 samples, 1.77%)</title><rect x="828.5" y="385" width="20.9" height="15.0" fill="rgb(241,166,0)" rx="2" ry="2" />
<text text-anchor="" x="831.46" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tc_realloc (7 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>tc_realloc (7 samples, 0.27%)</title><rect x="391.1" y="433" width="3.1" height="15.0" fill="rgb(224,213,54)" rx="2" ry="2" />
<text text-anchor="" x="394.07" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::Message::Message (20 samples, 0.77%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::Message::Message (20 samples, 0.77%)</title><rect x="958.4" y="401" width="9.0" height="15.0" fill="rgb(252,128,41)" rx="2" ry="2" />
<text text-anchor="" x="961.36" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_event_context_sched_in (9 samples, 0.35%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (9 samples, 0.35%)</title><rect x="757.2" y="321" width="4.0" height="15.0" fill="rgb(240,133,22)" rx="2" ry="2" />
<text text-anchor="" x="760.15" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('vfs_read (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (2 samples, 0.08%)</title><rect x="541.0" y="481" width="0.9" height="15.0" fill="rgb(218,48,21)" rx="2" ry="2" />
<text text-anchor="" x="543.95" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_event_task_sched_out (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_task_sched_out (4 samples, 0.15%)</title><rect x="1172.7" y="625" width="1.9" height="15.0" fill="rgb(247,3,14)" rx="2" ry="2" />
<text text-anchor="" x="1175.74" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::AddRef (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (1 samples, 0.04%)</title><rect x="843.4" y="369" width="0.5" height="15.0" fill="rgb(249,48,47)" rx="2" ry="2" />
<text text-anchor="" x="846.45" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_curr (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (2 samples, 0.08%)</title><rect x="223.9" y="417" width="0.9" height="15.0" fill="rgb(211,117,5)" rx="2" ry="2" />
<text text-anchor="" x="226.93" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (5 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (5 samples, 0.19%)</title><rect x="248.5" y="497" width="2.2" height="15.0" fill="rgb(206,130,4)" rx="2" ry="2" />
<text text-anchor="" x="251.45" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rb_next (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>rb_next (1 samples, 0.04%)</title><rect x="775.3" y="337" width="0.5" height="15.0" fill="rgb(232,200,50)" rx="2" ry="2" />
<text text-anchor="" x="778.32" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apic_timer_interrupt (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.04%)</title><rect x="672.2" y="465" width="0.5" height="15.0" fill="rgb(247,179,0)" rx="2" ry="2" />
<text text-anchor="" x="675.22" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_poll_callback (85 samples, 3.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (85 samples, 3.27%)</title><rect x="342.0" y="305" width="38.6" height="15.0" fill="rgb(225,141,4)" rx="2" ry="2" />
<text text-anchor="" x="345.02" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ep_..</text>
</g>
<g class="func_g" onmouseover="s('base::TimeTicks::NowFromSystemTraceTime (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::TimeTicks::NowFromSystemTraceTime (3 samples, 0.12%)</title><rect x="413.8" y="481" width="1.3" height="15.0" fill="rgb(217,121,37)" rx="2" ry="2" />
<text text-anchor="" x="416.78" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree (1 samples, 0.04%)</title><rect x="305.2" y="417" width="0.5" height="15.0" fill="rgb(242,183,5)" rx="2" ry="2" />
<text text-anchor="" x="308.23" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_copy_from_user (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_copy_from_user (1 samples, 0.04%)</title><rect x="887.5" y="257" width="0.5" height="15.0" fill="rgb(226,35,39)" rx="2" ry="2" />
<text text-anchor="" x="890.51" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_event_context_sched_in (6 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (6 samples, 0.23%)</title><rect x="197.1" y="401" width="2.8" height="15.0" fill="rgb(222,52,9)" rx="2" ry="2" />
<text text-anchor="" x="200.13" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_task_fair (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (1 samples, 0.04%)</title><rect x="194.9" y="417" width="0.4" height="15.0" fill="rgb(235,140,41)" rx="2" ry="2" />
<text text-anchor="" x="197.86" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('restore_args (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>restore_args (1 samples, 0.04%)</title><rect x="32.3" y="561" width="0.4" height="15.0" fill="rgb(239,89,46)" rx="2" ry="2" />
<text text-anchor="" x="35.26" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::WeakPtrBase::WeakPtrBase (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakPtrBase::WeakPtrBase (2 samples, 0.08%)</title><rect x="1142.8" y="481" width="0.9" height="15.0" fill="rgb(222,85,45)" rx="2" ry="2" />
<text text-anchor="" x="1145.76" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_sync_read (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_sync_read (2 samples, 0.08%)</title><rect x="481.9" y="465" width="0.9" height="15.0" fill="rgb(231,12,47)" rx="2" ry="2" />
<text text-anchor="" x="484.91" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('copy_user_generic_string (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_string (3 samples, 0.12%)</title><rect x="888.0" y="257" width="1.3" height="15.0" fill="rgb(234,114,27)" rx="2" ry="2" />
<text text-anchor="" x="890.96" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__fsnotify_parent (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__fsnotify_parent (1 samples, 0.04%)</title><rect x="1056.5" y="369" width="0.4" height="15.0" fill="rgb(237,159,48)" rx="2" ry="2" />
<text text-anchor="" x="1059.47" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('clock_gettime@plt (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>clock_gettime@plt (1 samples, 0.04%)</title><rect x="978.3" y="401" width="0.5" height="15.0" fill="rgb(233,48,19)" rx="2" ry="2" />
<text text-anchor="" x="981.34" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('try_to_wake_up (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (1 samples, 0.04%)</title><rect x="948.8" y="177" width="0.5" height="15.0" fill="rgb(216,55,18)" rx="2" ry="2" />
<text text-anchor="" x="951.82" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('default_wake_function (80 samples, 3.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (80 samples, 3.08%)</title><rect x="342.9" y="257" width="36.4" height="15.0" fill="rgb(227,104,21)" rx="2" ry="2" />
<text text-anchor="" x="345.93" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >def..</text>
</g>
<g class="func_g" onmouseover="s('enqueue_entity (19 samples, 0.73%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (19 samples, 0.73%)</title><rect x="357.0" y="161" width="8.6" height="15.0" fill="rgb(228,138,20)" rx="2" ry="2" />
<text text-anchor="" x="360.01" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('path_put (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>path_put (1 samples, 0.04%)</title><rect x="122.2" y="529" width="0.4" height="15.0" fill="rgb(210,22,49)" rx="2" ry="2" />
<text text-anchor="" x="125.19" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__kmalloc_reserve.isra.27 (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_reserve.isra.27 (4 samples, 0.15%)</title><rect x="898.9" y="241" width="1.8" height="15.0" fill="rgb(222,16,51)" rx="2" ry="2" />
<text text-anchor="" x="901.86" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rcu_note_context_switch (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>rcu_note_context_switch (1 samples, 0.04%)</title><rect x="1175.5" y="625" width="0.4" height="15.0" fill="rgb(222,20,22)" rx="2" ry="2" />
<text text-anchor="" x="1178.47" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (3 samples, 0.12%)</title><rect x="891.6" y="257" width="1.4" height="15.0" fill="rgb(254,178,7)" rx="2" ry="2" />
<text text-anchor="" x="894.59" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_release_head_state (18 samples, 0.69%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_head_state (18 samples, 0.69%)</title><rect x="517.8" y="353" width="8.2" height="15.0" fill="rgb(216,50,22)" rx="2" ry="2" />
<text text-anchor="" x="520.79" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_cond_resched (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>_cond_resched (4 samples, 0.15%)</title><rect x="596.8" y="417" width="1.8" height="15.0" fill="rgb(207,42,3)" rx="2" ry="2" />
<text text-anchor="" x="599.82" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('strlen (12 samples, 0.46%)')" onmouseout="c()" onclick="zoom(this)">
<title>strlen (12 samples, 0.46%)</title><rect x="1007.4" y="417" width="5.5" height="15.0" fill="rgb(252,60,25)" rx="2" ry="2" />
<text text-anchor="" x="1010.41" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('testing::TestInfo::Run (1,253 samples, 48.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>testing::TestInfo::Run (1,253 samples, 48.23%)</title><rect x="596.8" y="593" width="569.1" height="15.0" fill="rgb(239,148,31)" rx="2" ry="2" />
<text text-anchor="" x="599.82" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >testing::TestInfo::Run</text>
</g>
<g class="func_g" onmouseover="s('__srcu_read_unlock (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>__srcu_read_unlock (2 samples, 0.08%)</title><rect x="384.7" y="385" width="0.9" height="15.0" fill="rgb(237,45,11)" rx="2" ry="2" />
<text text-anchor="" x="387.71" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::ChannelPosix::CloseClientFileDescriptor (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelPosix::CloseClientFileDescriptor (4 samples, 0.15%)</title><rect x="241.2" y="513" width="1.8" height="15.0" fill="rgb(239,22,52)" rx="2" ry="2" />
<text text-anchor="" x="244.19" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fsnotify (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>fsnotify (1 samples, 0.04%)</title><rect x="539.6" y="417" width="0.4" height="15.0" fill="rgb(210,66,3)" rx="2" ry="2" />
<text text-anchor="" x="542.59" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call (2 samples, 0.08%)</title><rect x="13.6" y="609" width="0.9" height="15.0" fill="rgb(247,97,46)" rx="2" ry="2" />
<text text-anchor="" x="16.63" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::test::ChannelReflectorListener::OnMessageReceived (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::test::ChannelReflectorListener::OnMessageReceived (4 samples, 0.15%)</title><rect x="11.8" y="657" width="1.8" height="15.0" fill="rgb(229,22,13)" rx="2" ry="2" />
<text text-anchor="" x="14.82" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__epoll_wait_nocancel (291 samples, 11.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>__epoll_wait_nocancel (291 samples, 11.20%)</title><rect x="98.1" y="561" width="132.2" height="15.0" fill="rgb(252,73,27)" rx="2" ry="2" />
<text text-anchor="" x="101.11" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__epoll_wait_noc..</text>
</g>
<g class="func_g" onmouseover="s('__read_nocancel (9 samples, 0.35%)')" onmouseout="c()" onclick="zoom(this)">
<title>__read_nocancel (9 samples, 0.35%)</title><rect x="25.4" y="673" width="4.1" height="15.0" fill="rgb(212,195,23)" rx="2" ry="2" />
<text text-anchor="" x="28.44" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('account_entity_enqueue (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_enqueue (1 samples, 0.04%)</title><rect x="931.6" y="49" width="0.4" height="15.0" fill="rgb(206,10,6)" rx="2" ry="2" />
<text text-anchor="" x="934.56" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('set_task_comm (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>set_task_comm (4 samples, 0.15%)</title><rect x="10.0" y="577" width="1.8" height="15.0" fill="rgb(251,44,45)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_stats_wait_end (5 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_stats_wait_end (5 samples, 0.19%)</title><rect x="218.9" y="401" width="2.3" height="15.0" fill="rgb(205,10,10)" rx="2" ry="2" />
<text text-anchor="" x="221.93" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_sync_write (176 samples, 6.77%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_sync_write (176 samples, 6.77%)</title><rect x="872.5" y="321" width="80.0" height="15.0" fill="rgb(208,6,33)" rx="2" ry="2" />
<text text-anchor="" x="875.52" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >do_sync_w..</text>
</g>
<g class="func_g" onmouseover="s('ksize (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>ksize (2 samples, 0.08%)</title><rect x="339.3" y="321" width="0.9" height="15.0" fill="rgb(231,147,35)" rx="2" ry="2" />
<text text-anchor="" x="342.29" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.19%)</title><rect x="15.5" y="513" width="2.2" height="15.0" fill="rgb(230,208,6)" rx="2" ry="2" />
<text text-anchor="" x="18.45" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mutex_lock_interruptible (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>mutex_lock_interruptible (1 samples, 0.04%)</title><rect x="1064.6" y="321" width="0.5" height="15.0" fill="rgb(219,160,23)" rx="2" ry="2" />
<text text-anchor="" x="1067.64" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_poll (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_poll (1 samples, 0.04%)</title><rect x="728.5" y="401" width="0.5" height="15.0" fill="rgb(237,140,39)" rx="2" ry="2" />
<text text-anchor="" x="731.54" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('memcpy_fromiovecend (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>memcpy_fromiovecend (1 samples, 0.04%)</title><rect x="325.7" y="337" width="0.4" height="15.0" fill="rgb(206,190,50)" rx="2" ry="2" />
<text text-anchor="" x="328.67" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('testing::TestCase::Run (1,253 samples, 48.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>testing::TestCase::Run (1,253 samples, 48.23%)</title><rect x="596.8" y="609" width="569.1" height="15.0" fill="rgb(240,192,41)" rx="2" ry="2" />
<text text-anchor="" x="599.82" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >testing::TestCase::Run</text>
</g>
<g class="func_g" onmouseover="s('path_put (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>path_put (2 samples, 0.08%)</title><rect x="474.2" y="465" width="0.9" height="15.0" fill="rgb(241,143,53)" rx="2" ry="2" />
<text text-anchor="" x="477.19" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::DoDelayedWork (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::DoDelayedWork (4 samples, 0.15%)</title><rect x="73.1" y="577" width="1.8" height="15.0" fill="rgb(232,197,3)" rx="2" ry="2" />
<text text-anchor="" x="76.13" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_read (122 samples, 4.70%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (122 samples, 4.70%)</title><rect x="1047.4" y="401" width="55.4" height="15.0" fill="rgb(211,39,4)" rx="2" ry="2" />
<text text-anchor="" x="1050.38" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys_r..</text>
</g>
<g class="func_g" onmouseover="s('schedule_hrtimeout_range (133 samples, 5.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (133 samples, 5.12%)</title><rect x="167.6" y="497" width="60.4" height="15.0" fill="rgb(244,154,44)" rx="2" ry="2" />
<text text-anchor="" x="170.61" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >schedu..</text>
</g>
<g class="func_g" onmouseover="s('_ZN4base11MessageLoop6DoWorkEv@plt (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4base11MessageLoop6DoWorkEv@plt (2 samples, 0.08%)</title><rect x="599.5" y="513" width="1.0" height="15.0" fill="rgb(218,117,38)" rx="2" ry="2" />
<text text-anchor="" x="602.55" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('Pickle::~Pickle (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>Pickle::~Pickle (1 samples, 0.04%)</title><rect x="290.2" y="449" width="0.5" height="15.0" fill="rgb(235,69,21)" rx="2" ry="2" />
<text text-anchor="" x="293.24" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_common (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (2 samples, 0.08%)</title><rect x="909.3" y="209" width="0.9" height="15.0" fill="rgb(236,85,47)" rx="2" ry="2" />
<text text-anchor="" x="912.31" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_curr (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (1 samples, 0.04%)</title><rect x="937.0" y="81" width="0.5" height="15.0" fill="rgb(252,115,6)" rx="2" ry="2" />
<text text-anchor="" x="940.01" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::Message::~Message (11 samples, 0.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::Message::~Message (11 samples, 0.42%)</title><rect x="835.3" y="369" width="5.0" height="15.0" fill="rgb(237,190,50)" rx="2" ry="2" />
<text text-anchor="" x="838.27" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.04%)</title><rect x="729.9" y="401" width="0.5" height="15.0" fill="rgb(217,214,13)" rx="2" ry="2" />
<text text-anchor="" x="732.90" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_common (91 samples, 3.50%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (91 samples, 3.50%)</title><rect x="908.4" y="241" width="41.3" height="15.0" fill="rgb(222,58,34)" rx="2" ry="2" />
<text text-anchor="" x="911.40" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__w..</text>
</g>
<g class="func_g" onmouseover="s('skb_release_head_state (18 samples, 0.69%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_head_state (18 samples, 0.69%)</title><rect x="1082.4" y="273" width="8.1" height="15.0" fill="rgb(211,17,10)" rx="2" ry="2" />
<text text-anchor="" x="1085.36" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (4 samples, 0.15%)</title><rect x="893.0" y="257" width="1.8" height="15.0" fill="rgb(222,17,4)" rx="2" ry="2" />
<text text-anchor="" x="895.96" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_write_space (12 samples, 0.46%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_write_space (12 samples, 0.46%)</title><rect x="520.5" y="305" width="5.5" height="15.0" fill="rgb(232,164,28)" rx="2" ry="2" />
<text text-anchor="" x="523.52" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (4 samples, 0.15%)</title><rect x="1177.3" y="641" width="1.8" height="15.0" fill="rgb(239,170,13)" rx="2" ry="2" />
<text text-anchor="" x="1180.28" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_careful (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_careful (4 samples, 0.15%)</title><rect x="1177.3" y="673" width="1.8" height="15.0" fill="rgb(245,92,38)" rx="2" ry="2" />
<text text-anchor="" x="1180.28" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('search_binary_handler (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>search_binary_handler (1 samples, 0.04%)</title><rect x="30.0" y="625" width="0.4" height="15.0" fill="rgb(206,226,44)" rx="2" ry="2" />
<text text-anchor="" x="32.98" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_curr (5 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (5 samples, 0.19%)</title><rect x="189.9" y="369" width="2.2" height="15.0" fill="rgb(245,223,39)" rx="2" ry="2" />
<text text-anchor="" x="192.86" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ttwu_do_activate.constprop.74 (58 samples, 2.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.74 (58 samples, 2.23%)</title><rect x="351.1" y="225" width="26.3" height="15.0" fill="rgb(252,57,17)" rx="2" ry="2" />
<text text-anchor="" x="354.10" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >t..</text>
</g>
<g class="func_g" onmouseover="s('do_munmap (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_munmap (1 samples, 0.04%)</title><rect x="1176.4" y="561" width="0.4" height="15.0" fill="rgb(235,15,24)" rx="2" ry="2" />
<text text-anchor="" x="1179.37" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (1 samples, 0.04%)</title><rect x="949.3" y="209" width="0.4" height="15.0" fill="rgb(248,217,14)" rx="2" ry="2" />
<text text-anchor="" x="952.28" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::ProcessNextDelayedNonNestableTask (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::ProcessNextDelayedNonNestableTask (1 samples, 0.04%)</title><rect x="647.2" y="497" width="0.5" height="15.0" fill="rgb(248,190,45)" rx="2" ry="2" />
<text text-anchor="" x="650.24" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ttwu_stat (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_stat (2 samples, 0.08%)</title><rect x="378.4" y="241" width="0.9" height="15.0" fill="rgb(226,50,11)" rx="2" ry="2" />
<text text-anchor="" x="381.35" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_curr (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (1 samples, 0.04%)</title><rect x="947.0" y="97" width="0.5" height="15.0" fill="rgb(227,161,23)" rx="2" ry="2" />
<text text-anchor="" x="950.01" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__perf_event_task_sched_out (24 samples, 0.92%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_out (24 samples, 0.92%)</title><rect x="762.1" y="337" width="10.9" height="15.0" fill="rgb(241,147,9)" rx="2" ry="2" />
<text text-anchor="" x="765.15" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('d_path (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>d_path (1 samples, 0.04%)</title><rect x="30.0" y="497" width="0.4" height="15.0" fill="rgb(244,224,18)" rx="2" ry="2" />
<text text-anchor="" x="32.98" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_poll (192 samples, 7.39%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (192 samples, 7.39%)</title><rect x="699.0" y="433" width="87.2" height="15.0" fill="rgb(254,53,32)" rx="2" ry="2" />
<text text-anchor="" x="702.01" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ep_poll</text>
</g>
<g class="func_g" onmouseover="s('base::internal::LockImpl::Unlock (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::LockImpl::Unlock (1 samples, 0.04%)</title><rect x="541.9" y="513" width="0.4" height="15.0" fill="rgb(215,45,30)" rx="2" ry="2" />
<text text-anchor="" x="544.86" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('security_socket_recvmsg (7 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_recvmsg (7 samples, 0.27%)</title><rect x="496.9" y="401" width="3.2" height="15.0" fill="rgb(222,149,14)" rx="2" ry="2" />
<text text-anchor="" x="499.90" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('security_socket_sendmsg (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_sendmsg (1 samples, 0.04%)</title><rect x="315.7" y="385" width="0.4" height="15.0" fill="rgb(242,175,21)" rx="2" ry="2" />
<text text-anchor="" x="318.67" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator new (5 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (5 samples, 0.19%)</title><rect x="833.0" y="353" width="2.3" height="15.0" fill="rgb(208,32,2)" rx="2" ry="2" />
<text text-anchor="" x="836.00" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('PickleIterator::PickleIterator (6 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>PickleIterator::PickleIterator (6 samples, 0.23%)</title><rect x="424.7" y="497" width="2.7" height="15.0" fill="rgb(213,223,39)" rx="2" ry="2" />
<text text-anchor="" x="427.68" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (8 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (8 samples, 0.31%)</title><rect x="1103.7" y="433" width="3.6" height="15.0" fill="rgb(213,224,17)" rx="2" ry="2" />
<text text-anchor="" x="1106.70" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pagevec_lru_move_fn (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>pagevec_lru_move_fn (1 samples, 0.04%)</title><rect x="1176.4" y="497" width="0.4" height="15.0" fill="rgb(254,54,0)" rx="2" ry="2" />
<text text-anchor="" x="1179.37" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.19%)</title><rect x="15.5" y="657" width="2.2" height="15.0" fill="rgb(223,119,14)" rx="2" ry="2" />
<text text-anchor="" x="18.45" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_event_task_sched_out (26 samples, 1.00%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_task_sched_out (26 samples, 1.00%)</title><rect x="199.9" y="433" width="11.8" height="15.0" fill="rgb(213,138,33)" rx="2" ry="2" />
<text text-anchor="" x="202.85" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('PickleIterator::ReadString (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>PickleIterator::ReadString (1 samples, 0.04%)</title><rect x="995.6" y="417" width="0.5" height="15.0" fill="rgb(233,86,46)" rx="2" ry="2" />
<text text-anchor="" x="998.60" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('auditsys (5 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>auditsys (5 samples, 0.19%)</title><rect x="672.7" y="465" width="2.2" height="15.0" fill="rgb(209,20,40)" rx="2" ry="2" />
<text text-anchor="" x="675.67" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (22 samples, 0.85%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (22 samples, 0.85%)</title><rect x="15.5" y="673" width="9.9" height="15.0" fill="rgb(220,101,34)" rx="2" ry="2" />
<text text-anchor="" x="18.45" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_setaffinity (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_setaffinity (4 samples, 0.15%)</title><rect x="596.8" y="481" width="1.8" height="15.0" fill="rgb(240,67,40)" rx="2" ry="2" />
<text text-anchor="" x="599.82" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_free_head (12 samples, 0.46%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_free_head (12 samples, 0.46%)</title><rect x="1076.9" y="257" width="5.5" height="15.0" fill="rgb(246,10,31)" rx="2" ry="2" />
<text text-anchor="" x="1079.91" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rb_erase (6 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>rb_erase (6 samples, 0.23%)</title><rect x="215.8" y="401" width="2.7" height="15.0" fill="rgb(221,218,13)" rx="2" ry="2" />
<text text-anchor="" x="218.75" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('aa_revalidate_sk (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>aa_revalidate_sk (2 samples, 0.08%)</title><rect x="317.9" y="353" width="1.0" height="15.0" fill="rgb(222,105,35)" rx="2" ry="2" />
<text text-anchor="" x="320.94" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('aa_file_perm (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>aa_file_perm (2 samples, 0.08%)</title><rect x="538.2" y="385" width="0.9" height="15.0" fill="rgb(248,111,16)" rx="2" ry="2" />
<text text-anchor="" x="541.23" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock_cpu (6 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (6 samples, 0.23%)</title><rect x="938.8" y="81" width="2.8" height="15.0" fill="rgb(246,213,28)" rx="2" ry="2" />
<text text-anchor="" x="941.83" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_hrtimeout_range_clock (133 samples, 5.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (133 samples, 5.12%)</title><rect x="167.6" y="481" width="60.4" height="15.0" fill="rgb(218,103,5)" rx="2" ry="2" />
<text text-anchor="" x="170.61" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >schedu..</text>
</g>
<g class="func_g" onmouseover="s('void Pickle::WriteBytesStatic8ul (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>void Pickle::WriteBytesStatic8ul (1 samples, 0.04%)</title><rect x="1013.3" y="417" width="0.5" height="15.0" fill="rgb(245,8,29)" rx="2" ry="2" />
<text text-anchor="" x="1016.32" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (10 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (10 samples, 0.38%)</title><rect x="151.7" y="481" width="4.6" height="15.0" fill="rgb(211,175,14)" rx="2" ry="2" />
<text text-anchor="" x="154.71" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kmem_cache_free (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_free (1 samples, 0.04%)</title><rect x="1075.1" y="273" width="0.4" height="15.0" fill="rgb(216,141,9)" rx="2" ry="2" />
<text text-anchor="" x="1078.09" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('account_entity_dequeue (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_dequeue (2 samples, 0.08%)</title><rect x="362.9" y="129" width="0.9" height="15.0" fill="rgb(234,58,15)" rx="2" ry="2" />
<text text-anchor="" x="365.91" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_after_swapgs (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_after_swapgs (1 samples, 0.04%)</title><rect x="480.5" y="497" width="0.5" height="15.0" fill="rgb(220,214,17)" rx="2" ry="2" />
<text text-anchor="" x="483.55" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::IncomingTaskQueue::ReloadWorkQueue (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::IncomingTaskQueue::ReloadWorkQueue (2 samples, 0.08%)</title><rect x="640.4" y="481" width="0.9" height="15.0" fill="rgb(247,42,19)" rx="2" ry="2" />
<text text-anchor="" x="643.42" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('aa_revalidate_sk (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>aa_revalidate_sk (3 samples, 0.12%)</title><rect x="1066.0" y="305" width="1.4" height="15.0" fill="rgb(248,32,36)" rx="2" ry="2" />
<text text-anchor="" x="1069.00" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kmem_cache_free (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_free (2 samples, 0.08%)</title><rect x="511.0" y="353" width="0.9" height="15.0" fill="rgb(246,108,35)" rx="2" ry="2" />
<text text-anchor="" x="513.98" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_stream_sendmsg (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_sendmsg (1 samples, 0.04%)</title><rect x="382.4" y="385" width="0.5" height="15.0" fill="rgb(221,36,33)" rx="2" ry="2" />
<text text-anchor="" x="385.44" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_read (5 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (5 samples, 0.19%)</title><rect x="1034.2" y="417" width="2.3" height="15.0" fill="rgb(226,77,13)" rx="2" ry="2" />
<text text-anchor="" x="1037.21" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('security_socket_sendmsg (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_sendmsg (2 samples, 0.08%)</title><rect x="317.9" y="369" width="1.0" height="15.0" fill="rgb(217,213,25)" rx="2" ry="2" />
<text text-anchor="" x="320.94" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apparmor_file_permission (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (1 samples, 0.04%)</title><rect x="957.0" y="289" width="0.5" height="15.0" fill="rgb(209,217,37)" rx="2" ry="2" />
<text text-anchor="" x="960.00" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_send_events_proc (13 samples, 0.50%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_send_events_proc (13 samples, 0.50%)</title><rect x="156.7" y="481" width="5.9" height="15.0" fill="rgb(213,11,5)" rx="2" ry="2" />
<text text-anchor="" x="159.71" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (1 samples, 0.04%)</title><rect x="121.7" y="529" width="0.5" height="15.0" fill="rgb(233,53,49)" rx="2" ry="2" />
<text text-anchor="" x="124.73" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_ZN4base9TimeTicks3NowEv@plt (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4base9TimeTicks3NowEv@plt (1 samples, 0.04%)</title><rect x="430.1" y="497" width="0.5" height="15.0" fill="rgb(248,166,28)" rx="2" ry="2" />
<text text-anchor="" x="433.13" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__perf_event_task_sched_in (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (4 samples, 0.15%)</title><rect x="15.9" y="289" width="1.8" height="15.0" fill="rgb(214,204,6)" rx="2" ry="2" />
<text text-anchor="" x="18.90" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('account_entity_dequeue (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_dequeue (2 samples, 0.08%)</title><rect x="743.1" y="305" width="0.9" height="15.0" fill="rgb(245,166,24)" rx="2" ry="2" />
<text text-anchor="" x="746.07" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_enable_all (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.15%)</title><rect x="15.9" y="225" width="1.8" height="15.0" fill="rgb(236,136,43)" rx="2" ry="2" />
<text text-anchor="" x="18.90" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('void Pickle::WriteBytesStatic4ul (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>void Pickle::WriteBytesStatic4ul (3 samples, 0.12%)</title><rect x="440.1" y="497" width="1.4" height="15.0" fill="rgb(239,2,27)" rx="2" ry="2" />
<text text-anchor="" x="443.12" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::test::LockThreadAffinity::LockThreadAffinity (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::test::LockThreadAffinity::LockThreadAffinity (4 samples, 0.15%)</title><rect x="596.8" y="545" width="1.8" height="15.0" fill="rgb(215,72,49)" rx="2" ry="2" />
<text text-anchor="" x="599.82" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_entry (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (2 samples, 0.08%)</title><rect x="855.7" y="353" width="0.9" height="15.0" fill="rgb(221,210,49)" rx="2" ry="2" />
<text text-anchor="" x="858.71" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__errno_location (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>__errno_location (2 samples, 0.08%)</title><rect x="454.7" y="513" width="0.9" height="15.0" fill="rgb(236,0,1)" rx="2" ry="2" />
<text text-anchor="" x="457.66" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::DoWork (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::DoWork (3 samples, 0.12%)</title><rect x="36.3" y="593" width="1.4" height="15.0" fill="rgb(207,79,34)" rx="2" ry="2" />
<text text-anchor="" x="39.34" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('try_to_wake_up (80 samples, 3.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (80 samples, 3.08%)</title><rect x="911.6" y="161" width="36.3" height="15.0" fill="rgb(214,127,12)" rx="2" ry="2" />
<text text-anchor="" x="914.58" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >try..</text>
</g>
<g class="func_g" onmouseover="s('__perf_event_task_sched_in (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (4 samples, 0.15%)</title><rect x="596.8" y="369" width="1.8" height="15.0" fill="rgb(212,61,23)" rx="2" ry="2" />
<text text-anchor="" x="599.82" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::WeakReferenceOwner::GetRef (12 samples, 0.46%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReferenceOwner::GetRef (12 samples, 0.46%)</title><rect x="579.1" y="561" width="5.5" height="15.0" fill="rgb(244,36,20)" rx="2" ry="2" />
<text text-anchor="" x="582.11" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_sync_read (99 samples, 3.81%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_sync_read (99 samples, 3.81%)</title><rect x="488.3" y="449" width="44.9" height="15.0" fill="rgb(221,193,36)" rx="2" ry="2" />
<text text-anchor="" x="491.27" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >do_s..</text>
</g>
<g class="func_g" onmouseover="s('__read_nocancel (161 samples, 6.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>__read_nocancel (161 samples, 6.20%)</title><rect x="1029.7" y="433" width="73.1" height="15.0" fill="rgb(205,150,32)" rx="2" ry="2" />
<text text-anchor="" x="1032.67" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__read_n..</text>
</g>
<g class="func_g" onmouseover="s('try_to_wake_up (73 samples, 2.81%)')" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (73 samples, 2.81%)</title><rect x="344.7" y="241" width="33.2" height="15.0" fill="rgb(236,195,42)" rx="2" ry="2" />
<text text-anchor="" x="347.74" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >tr..</text>
</g>
<g class="func_g" onmouseover="s('__memcpy_sse2_unaligned (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_sse2_unaligned (3 samples, 0.12%)</title><rect x="975.6" y="401" width="1.4" height="15.0" fill="rgb(239,38,20)" rx="2" ry="2" />
<text text-anchor="" x="978.62" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('clear_buddies (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>clear_buddies (1 samples, 0.04%)</title><rect x="738.1" y="353" width="0.4" height="15.0" fill="rgb(213,134,49)" rx="2" ry="2" />
<text text-anchor="" x="741.08" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::RunLoop::Run (1,249 samples, 48.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::RunLoop::Run (1,249 samples, 48.08%)</title><rect x="598.6" y="529" width="567.3" height="15.0" fill="rgb(234,178,42)" rx="2" ry="2" />
<text text-anchor="" x="601.64" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::RunLoop::Run</text>
</g>
<g class="func_g" onmouseover="s('stop_one_cpu (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>stop_one_cpu (4 samples, 0.15%)</title><rect x="596.8" y="449" width="1.8" height="15.0" fill="rgb(238,110,6)" rx="2" ry="2" />
<text text-anchor="" x="599.82" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree (1 samples, 0.04%)</title><rect x="865.7" y="353" width="0.5" height="15.0" fill="rgb(250,148,42)" rx="2" ry="2" />
<text text-anchor="" x="868.70" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__write_nocancel (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>__write_nocancel (4 samples, 0.15%)</title><rect x="11.8" y="625" width="1.8" height="15.0" fill="rgb(235,160,2)" rx="2" ry="2" />
<text text-anchor="" x="14.82" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tcmalloc::FL_Push (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>tcmalloc::FL_Push (1 samples, 0.04%)</title><rect x="293.9" y="449" width="0.4" height="15.0" fill="rgb(207,205,31)" rx="2" ry="2" />
<text text-anchor="" x="296.87" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__errno_location (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>__errno_location (3 samples, 0.12%)</title><rect x="1022.9" y="433" width="1.3" height="15.0" fill="rgb(218,78,32)" rx="2" ry="2" />
<text text-anchor="" x="1025.86" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator delete (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator delete (1 samples, 0.04%)</title><rect x="559.6" y="529" width="0.4" height="15.0" fill="rgb(237,138,48)" rx="2" ry="2" />
<text text-anchor="" x="562.58" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('default_wake_function (83 samples, 3.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (83 samples, 3.19%)</title><rect x="911.1" y="177" width="37.7" height="15.0" fill="rgb(237,11,36)" rx="2" ry="2" />
<text text-anchor="" x="914.12" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >def..</text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::DoWork (8 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::DoWork (8 samples, 0.31%)</title><rect x="603.2" y="513" width="3.6" height="15.0" fill="rgb(212,145,15)" rx="2" ry="2" />
<text text-anchor="" x="606.18" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apparmor_socket_recvmsg (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_recvmsg (4 samples, 0.15%)</title><rect x="1062.8" y="321" width="1.8" height="15.0" fill="rgb(250,26,40)" rx="2" ry="2" />
<text text-anchor="" x="1065.83" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('current_kernel_time (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>current_kernel_time (1 samples, 0.04%)</title><rect x="463.7" y="465" width="0.5" height="15.0" fill="rgb(225,36,29)" rx="2" ry="2" />
<text text-anchor="" x="466.74" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('check_preempt_curr (6 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>check_preempt_curr (6 samples, 0.23%)</title><rect x="373.8" y="193" width="2.7" height="15.0" fill="rgb(206,181,24)" rx="2" ry="2" />
<text text-anchor="" x="376.81" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_cfs_rq_blocked_load (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_rq_blocked_load (2 samples, 0.08%)</title><rect x="187.1" y="369" width="0.9" height="15.0" fill="rgb(247,140,23)" rx="2" ry="2" />
<text text-anchor="" x="190.14" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_cfs_shares (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (4 samples, 0.15%)</title><rect x="748.5" y="289" width="1.8" height="15.0" fill="rgb(225,198,25)" rx="2" ry="2" />
<text text-anchor="" x="751.52" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_entry (7 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (7 samples, 0.27%)</title><rect x="104.5" y="529" width="3.2" height="15.0" fill="rgb(241,13,19)" rx="2" ry="2" />
<text text-anchor="" x="107.47" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_rq_clock.part.63 (8 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_rq_clock.part.63 (8 samples, 0.31%)</title><rect x="937.9" y="97" width="3.7" height="15.0" fill="rgb(206,174,34)" rx="2" ry="2" />
<text text-anchor="" x="940.92" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_sched_clock (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (1 samples, 0.04%)</title><rect x="203.9" y="337" width="0.5" height="15.0" fill="rgb(244,127,25)" rx="2" ry="2" />
<text text-anchor="" x="206.94" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('set_next_entity (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>set_next_entity (1 samples, 0.04%)</title><rect x="1174.6" y="609" width="0.4" height="15.0" fill="rgb(231,28,37)" rx="2" ry="2" />
<text text-anchor="" x="1177.56" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('change_prot_numa (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>change_prot_numa (1 samples, 0.04%)</title><rect x="286.6" y="353" width="0.5" height="15.0" fill="rgb(246,156,32)" rx="2" ry="2" />
<text text-anchor="" x="289.61" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (4 samples, 0.15%)</title><rect x="1177.3" y="529" width="1.8" height="15.0" fill="rgb(215,46,52)" rx="2" ry="2" />
<text text-anchor="" x="1180.28" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('finish_task_switch (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 0.15%)</title><rect x="15.9" y="305" width="1.8" height="15.0" fill="rgb(251,57,28)" rx="2" ry="2" />
<text text-anchor="" x="18.90" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('memset (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>memset (2 samples, 0.08%)</title><rect x="978.8" y="401" width="0.9" height="15.0" fill="rgb(214,21,41)" rx="2" ry="2" />
<text text-anchor="" x="981.80" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('Pickle::Pickle (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>Pickle::Pickle (4 samples, 0.15%)</title><rect x="398.8" y="481" width="1.8" height="15.0" fill="rgb(217,147,11)" rx="2" ry="2" />
<text text-anchor="" x="401.79" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_timer (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_timer (1 samples, 0.04%)</title><rect x="672.2" y="337" width="0.5" height="15.0" fill="rgb(249,111,36)" rx="2" ry="2" />
<text text-anchor="" x="675.22" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator new (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (3 samples, 0.12%)</title><rect x="1179.1" y="689" width="1.4" height="15.0" fill="rgb(248,66,36)" rx="2" ry="2" />
<text text-anchor="" x="1182.10" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('std::string::_M_replace_safe (10 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::string::_M_replace_safe (10 samples, 0.38%)</title><rect x="982.0" y="401" width="4.5" height="15.0" fill="rgb(239,2,41)" rx="2" ry="2" />
<text text-anchor="" x="984.98" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator delete (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator delete (4 samples, 0.15%)</title><rect x="572.7" y="545" width="1.9" height="15.0" fill="rgb(225,28,12)" rx="2" ry="2" />
<text text-anchor="" x="575.75" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::test::PerformanceChannelListener::OnMessageReceived (381 samples, 14.67%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::test::PerformanceChannelListener::OnMessageReceived (381 samples, 14.67%)</title><rect x="818.5" y="417" width="173.0" height="15.0" fill="rgb(222,187,37)" rx="2" ry="2" />
<text text-anchor="" x="821.47" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IPC::test::Performance..</text>
</g>
<g class="func_g" onmouseover="s('sock_poll (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_poll (4 samples, 0.15%)</title><rect x="725.4" y="385" width="1.8" height="15.0" fill="rgb(237,195,37)" rx="2" ry="2" />
<text text-anchor="" x="728.36" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.04%)</title><rect x="380.2" y="289" width="0.4" height="15.0" fill="rgb(248,62,6)" rx="2" ry="2" />
<text text-anchor="" x="383.17" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (4 samples, 0.15%)</title><rect x="30.4" y="593" width="1.9" height="15.0" fill="rgb(219,222,2)" rx="2" ry="2" />
<text text-anchor="" x="33.44" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__libc_write (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_write (1 samples, 0.04%)</title><rect x="852.5" y="385" width="0.5" height="15.0" fill="rgb(248,109,5)" rx="2" ry="2" />
<text text-anchor="" x="855.53" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_curr (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (1 samples, 0.04%)</title><rect x="782.6" y="337" width="0.4" height="15.0" fill="rgb(236,154,32)" rx="2" ry="2" />
<text text-anchor="" x="785.59" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::WeakReferenceOwner::GetRef (32 samples, 1.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReferenceOwner::GetRef (32 samples, 1.23%)</title><rect x="555.0" y="545" width="14.6" height="15.0" fill="rgb(224,184,39)" rx="2" ry="2" />
<text text-anchor="" x="558.03" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('security_file_permission (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (1 samples, 0.04%)</title><rect x="957.0" y="305" width="0.5" height="15.0" fill="rgb(245,62,37)" rx="2" ry="2" />
<text text-anchor="" x="960.00" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_free_head (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_free_head (3 samples, 0.12%)</title><rect x="1075.5" y="273" width="1.4" height="15.0" fill="rgb(210,188,50)" rx="2" ry="2" />
<text text-anchor="" x="1078.54" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('auditsys (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>auditsys (2 samples, 0.08%)</title><rect x="299.3" y="449" width="0.9" height="15.0" fill="rgb(226,194,4)" rx="2" ry="2" />
<text text-anchor="" x="302.32" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('non-virtual thunk to IPC::ChannelPosix::OnFileCanReadWithoutBlocking (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>non-virtual thunk to IPC::ChannelPosix::OnFileCanReadWithoutBlocking (2 samples, 0.08%)</title><rect x="595.9" y="561" width="0.9" height="15.0" fill="rgb(243,103,28)" rx="2" ry="2" />
<text text-anchor="" x="598.91" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free_hot_cold_page (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>free_hot_cold_page (1 samples, 0.04%)</title><rect x="1176.4" y="449" width="0.4" height="15.0" fill="rgb(240,181,32)" rx="2" ry="2" />
<text text-anchor="" x="1179.37" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('account_entity_dequeue (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_dequeue (1 samples, 0.04%)</title><rect x="931.1" y="49" width="0.5" height="15.0" fill="rgb(226,134,45)" rx="2" ry="2" />
<text text-anchor="" x="934.11" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_stats_wait_end (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_stats_wait_end (1 samples, 0.04%)</title><rect x="221.2" y="417" width="0.5" height="15.0" fill="rgb(244,42,1)" rx="2" ry="2" />
<text text-anchor="" x="224.20" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('auditsys (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>auditsys (2 samples, 0.08%)</title><rect x="855.7" y="369" width="0.9" height="15.0" fill="rgb(230,176,34)" rx="2" ry="2" />
<text text-anchor="" x="858.71" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__perf_event_task_sched_in (12 samples, 0.46%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (12 samples, 0.46%)</title><rect x="756.2" y="337" width="5.5" height="15.0" fill="rgb(213,118,37)" rx="2" ry="2" />
<text text-anchor="" x="759.24" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('security_socket_sendmsg (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_sendmsg (4 samples, 0.15%)</title><rect x="878.9" y="289" width="1.8" height="15.0" fill="rgb(232,226,29)" rx="2" ry="2" />
<text text-anchor="" x="881.88" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('non-virtual thunk to IPC::ChannelPosix::DidEmptyInputBuffers (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>non-virtual thunk to IPC::ChannelPosix::DidEmptyInputBuffers (4 samples, 0.15%)</title><rect x="542.3" y="513" width="1.8" height="15.0" fill="rgb(205,172,35)" rx="2" ry="2" />
<text text-anchor="" x="545.32" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('Pickle::WriteString (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>Pickle::WriteString (4 samples, 0.15%)</title><rect x="967.4" y="401" width="1.9" height="15.0" fill="rgb(230,187,2)" rx="2" ry="2" />
<text text-anchor="" x="970.44" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_sync_key (9 samples, 0.35%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (9 samples, 0.35%)</title><rect x="521.9" y="289" width="4.1" height="15.0" fill="rgb(243,187,26)" rx="2" ry="2" />
<text text-anchor="" x="524.88" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator delete (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator delete (1 samples, 0.04%)</title><rect x="387.0" y="465" width="0.4" height="15.0" fill="rgb(252,83,20)" rx="2" ry="2" />
<text text-anchor="" x="389.98" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_epoll_wait (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (4 samples, 0.15%)</title><rect x="108.1" y="545" width="1.8" height="15.0" fill="rgb(205,58,48)" rx="2" ry="2" />
<text text-anchor="" x="111.11" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_wall_time (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_wall_time (1 samples, 0.04%)</title><rect x="672.2" y="321" width="0.5" height="15.0" fill="rgb(250,182,45)" rx="2" ry="2" />
<text text-anchor="" x="675.22" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tc_free (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>tc_free (1 samples, 0.04%)</title><rect x="293.4" y="449" width="0.5" height="15.0" fill="rgb(238,166,26)" rx="2" ry="2" />
<text text-anchor="" x="296.42" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (3 samples, 0.12%)</title><rect x="643.1" y="481" width="1.4" height="15.0" fill="rgb(246,171,32)" rx="2" ry="2" />
<text text-anchor="" x="646.15" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('finish_task_switch (9 samples, 0.35%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (9 samples, 0.35%)</title><rect x="195.8" y="433" width="4.1" height="15.0" fill="rgb(233,83,12)" rx="2" ry="2" />
<text text-anchor="" x="198.77" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_disable (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_disable (3 samples, 0.12%)</title><rect x="1173.2" y="561" width="1.4" height="15.0" fill="rgb(250,186,52)" rx="2" ry="2" />
<text text-anchor="" x="1176.19" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fget_light (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>fget_light (4 samples, 0.15%)</title><rect x="228.0" y="513" width="1.8" height="15.0" fill="rgb(205,158,20)" rx="2" ry="2" />
<text text-anchor="" x="231.01" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_dl_fixup (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_dl_fixup (1 samples, 0.04%)</title><rect x="29.5" y="673" width="0.5" height="15.0" fill="rgb(237,81,22)" rx="2" ry="2" />
<text text-anchor="" x="32.53" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__alloc_skb (17 samples, 0.65%)')" onmouseout="c()" onclick="zoom(this)">
<title>__alloc_skb (17 samples, 0.65%)</title><rect x="897.5" y="257" width="7.7" height="15.0" fill="rgb(246,113,54)" rx="2" ry="2" />
<text text-anchor="" x="900.50" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('Pickle::~Pickle (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>Pickle::~Pickle (1 samples, 0.04%)</title><rect x="447.4" y="513" width="0.4" height="15.0" fill="rgb(225,106,38)" rx="2" ry="2" />
<text text-anchor="" x="450.39" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_enable (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.15%)</title><rect x="1177.3" y="561" width="1.8" height="15.0" fill="rgb(244,178,52)" rx="2" ry="2" />
<text text-anchor="" x="1180.28" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_ZN4base11MessageLoop13DoDelayedWorkEPNS_9TimeTicksE@plt (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4base11MessageLoop13DoDelayedWorkEPNS_9TimeTicksE@plt (1 samples, 0.04%)</title><rect x="32.7" y="593" width="0.5" height="15.0" fill="rgb(226,133,20)" rx="2" ry="2" />
<text text-anchor="" x="35.71" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_signal (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_signal (2 samples, 0.08%)</title><rect x="692.7" y="465" width="0.9" height="15.0" fill="rgb(249,20,36)" rx="2" ry="2" />
<text text-anchor="" x="695.66" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (5 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (5 samples, 0.19%)</title><rect x="348.8" y="225" width="2.3" height="15.0" fill="rgb(239,176,48)" rx="2" ry="2" />
<text text-anchor="" x="351.83" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_ZN4base6subtle24RefCountedThreadSafeBaseD2Ev@plt (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4base6subtle24RefCountedThreadSafeBaseD2Ev@plt (1 samples, 0.04%)</title><rect x="286.6" y="433" width="0.5" height="15.0" fill="rgb(217,37,27)" rx="2" ry="2" />
<text text-anchor="" x="289.61" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::TestSuite::Run (2,500 samples, 96.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::TestSuite::Run (2,500 samples, 96.23%)</title><rect x="30.4" y="657" width="1135.5" height="15.0" fill="rgb(223,47,3)" rx="2" ry="2" />
<text text-anchor="" x="33.44" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::TestSuite::Run</text>
</g>
<g class="func_g" onmouseover="s('ctx_sched_out (19 samples, 0.73%)')" onmouseout="c()" onclick="zoom(this)">
<title>ctx_sched_out (19 samples, 0.73%)</title><rect x="202.1" y="401" width="8.7" height="15.0" fill="rgb(244,173,21)" rx="2" ry="2" />
<text text-anchor="" x="205.12" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free@plt (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>free@plt (2 samples, 0.08%)</title><rect x="845.7" y="369" width="0.9" height="15.0" fill="rgb(237,37,47)" rx="2" ry="2" />
<text text-anchor="" x="848.72" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('check_preempt_curr (10 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>check_preempt_curr (10 samples, 0.38%)</title><rect x="942.9" y="113" width="4.6" height="15.0" fill="rgb(246,155,20)" rx="2" ry="2" />
<text text-anchor="" x="945.92" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('std::string::_M_mutate (6 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::string::_M_mutate (6 samples, 0.23%)</title><rect x="22.7" y="657" width="2.7" height="15.0" fill="rgb(227,26,28)" rx="2" ry="2" />
<text text-anchor="" x="25.72" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::Message::~Message (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::Message::~Message (4 samples, 0.15%)</title><rect x="256.2" y="513" width="1.8" height="15.0" fill="rgb(209,135,48)" rx="2" ry="2" />
<text text-anchor="" x="259.17" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::Message::~Message (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::Message::~Message (2 samples, 0.08%)</title><rect x="267.1" y="497" width="0.9" height="15.0" fill="rgb(213,109,5)" rx="2" ry="2" />
<text text-anchor="" x="270.07" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_after_swapgs (6 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_after_swapgs (6 samples, 0.23%)</title><rect x="128.5" y="545" width="2.8" height="15.0" fill="rgb(208,201,14)" rx="2" ry="2" />
<text text-anchor="" x="131.55" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_rq_clock.part.63 (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_rq_clock.part.63 (3 samples, 0.12%)</title><rect x="193.5" y="401" width="1.4" height="15.0" fill="rgb(208,195,5)" rx="2" ry="2" />
<text text-anchor="" x="196.49" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_write (175 samples, 6.74%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (175 samples, 6.74%)</title><rect x="307.5" y="433" width="79.5" height="15.0" fill="rgb(254,173,19)" rx="2" ry="2" />
<text text-anchor="" x="310.50" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys_write</text>
</g>
<g class="func_g" onmouseover="s('change_protection (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>change_protection (1 samples, 0.04%)</title><rect x="286.6" y="337" width="0.5" height="15.0" fill="rgb(207,12,19)" rx="2" ry="2" />
<text text-anchor="" x="289.61" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__clock_gettime (12 samples, 0.46%)')" onmouseout="c()" onclick="zoom(this)">
<title>__clock_gettime (12 samples, 0.46%)</title><rect x="970.2" y="401" width="5.4" height="15.0" fill="rgb(253,130,20)" rx="2" ry="2" />
<text text-anchor="" x="973.17" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irq (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irq (3 samples, 0.12%)</title><rect x="736.7" y="353" width="1.4" height="15.0" fill="rgb(253,143,22)" rx="2" ry="2" />
<text text-anchor="" x="739.71" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (134 samples, 5.16%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (134 samples, 5.16%)</title><rect x="481.0" y="497" width="60.9" height="15.0" fill="rgb(247,120,22)" rx="2" ry="2" />
<text text-anchor="" x="484.00" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >system..</text>
</g>
<g class="func_g" onmouseover="s('fsnotify (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>fsnotify (1 samples, 0.04%)</title><rect x="533.2" y="449" width="0.5" height="15.0" fill="rgb(222,185,6)" rx="2" ry="2" />
<text text-anchor="" x="536.23" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.04%)</title><rect x="326.1" y="337" width="0.5" height="15.0" fill="rgb(210,100,21)" rx="2" ry="2" />
<text text-anchor="" x="329.12" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rcu_note_context_switch (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>rcu_note_context_switch (1 samples, 0.04%)</title><rect x="783.0" y="353" width="0.5" height="15.0" fill="rgb(230,89,44)" rx="2" ry="2" />
<text text-anchor="" x="786.04" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (9 samples, 0.35%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (9 samples, 0.35%)</title><rect x="75.9" y="561" width="4.0" height="15.0" fill="rgb(238,105,27)" rx="2" ry="2" />
<text text-anchor="" x="78.86" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('common_file_perm (6 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (6 samples, 0.23%)</title><rect x="536.4" y="401" width="2.7" height="15.0" fill="rgb(250,120,1)" rx="2" ry="2" />
<text text-anchor="" x="539.41" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (4 samples, 0.15%)</title><rect x="609.1" y="497" width="1.8" height="15.0" fill="rgb(222,150,8)" rx="2" ry="2" />
<text text-anchor="" x="612.08" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_execve_common.isra.22 (5 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_execve_common.isra.22 (5 samples, 0.19%)</title><rect x="15.5" y="401" width="2.2" height="15.0" fill="rgb(215,134,49)" rx="2" ry="2" />
<text text-anchor="" x="18.45" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_curr (7 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (7 samples, 0.27%)</title><rect x="750.3" y="289" width="3.2" height="15.0" fill="rgb(212,97,23)" rx="2" ry="2" />
<text text-anchor="" x="753.34" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rb_next (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>rb_next (2 samples, 0.08%)</title><rect x="214.8" y="417" width="1.0" height="15.0" fill="rgb(224,115,8)" rx="2" ry="2" />
<text text-anchor="" x="217.84" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('path_put (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>path_put (2 samples, 0.08%)</title><rect x="305.7" y="417" width="0.9" height="15.0" fill="rgb(206,26,49)" rx="2" ry="2" />
<text text-anchor="" x="308.68" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::RunLoop::Run (1,242 samples, 47.81%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::RunLoop::Run (1,242 samples, 47.81%)</title><rect x="32.7" y="609" width="564.1" height="15.0" fill="rgb(208,179,16)" rx="2" ry="2" />
<text text-anchor="" x="35.71" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::RunLoop::Run</text>
</g>
<g class="func_g" onmouseover="s('sock_aio_read.part.8 (96 samples, 3.70%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_aio_read.part.8 (96 samples, 3.70%)</title><rect x="489.6" y="417" width="43.6" height="15.0" fill="rgb(249,228,28)" rx="2" ry="2" />
<text text-anchor="" x="492.63" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sock..</text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::OnLibeventNotification (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::OnLibeventNotification (1 samples, 0.04%)</title><rect x="84.0" y="577" width="0.5" height="15.0" fill="rgb(212,144,37)" rx="2" ry="2" />
<text text-anchor="" x="87.03" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::OnLibeventNotification (778 samples, 29.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::OnLibeventNotification (778 samples, 29.95%)</title><rect x="788.9" y="481" width="353.4" height="15.0" fill="rgb(253,107,44)" rx="2" ry="2" />
<text text-anchor="" x="791.95" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::MessagePumpLibevent::OnLibeventNotification</text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.19%)</title><rect x="15.5" y="545" width="2.2" height="15.0" fill="rgb(210,9,18)" rx="2" ry="2" />
<text text-anchor="" x="18.45" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (218 samples, 8.39%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (218 samples, 8.39%)</title><rect x="131.3" y="545" width="99.0" height="15.0" fill="rgb(213,20,2)" rx="2" ry="2" />
<text text-anchor="" x="134.27" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >system_call..</text>
</g>
<g class="func_g" onmouseover="s('dequeue_entity (21 samples, 0.81%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (21 samples, 0.81%)</title><rect x="744.0" y="305" width="9.5" height="15.0" fill="rgb(206,94,40)" rx="2" ry="2" />
<text text-anchor="" x="746.98" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mutex_unlock (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>mutex_unlock (3 samples, 0.12%)</title><rect x="495.5" y="401" width="1.4" height="15.0" fill="rgb(230,211,5)" rx="2" ry="2" />
<text text-anchor="" x="498.54" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::AddRef (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (3 samples, 0.12%)</title><rect x="1148.2" y="481" width="1.4" height="15.0" fill="rgb(235,177,28)" rx="2" ry="2" />
<text text-anchor="" x="1151.21" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.04%)</title><rect x="135.8" y="513" width="0.5" height="15.0" fill="rgb(248,191,8)" rx="2" ry="2" />
<text text-anchor="" x="138.81" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('search_binary_handler (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>search_binary_handler (4 samples, 0.15%)</title><rect x="10.0" y="625" width="1.8" height="15.0" fill="rgb(206,67,39)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('copy_user_generic_string (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_string (4 samples, 0.15%)</title><rect x="1093.3" y="289" width="1.8" height="15.0" fill="rgb(211,228,1)" rx="2" ry="2" />
<text text-anchor="" x="1096.26" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('event_active (9 samples, 0.35%)')" onmouseout="c()" onclick="zoom(this)">
<title>event_active (9 samples, 0.35%)</title><rect x="1160.0" y="481" width="4.1" height="15.0" fill="rgb(241,113,52)" rx="2" ry="2" />
<text text-anchor="" x="1163.02" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('finish_task_switch (14 samples, 0.54%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (14 samples, 0.54%)</title><rect x="755.3" y="353" width="6.4" height="15.0" fill="rgb(218,175,26)" rx="2" ry="2" />
<text text-anchor="" x="758.33" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::DoIdleWork (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::DoIdleWork (2 samples, 0.08%)</title><rect x="35.4" y="593" width="0.9" height="15.0" fill="rgb(230,205,41)" rx="2" ry="2" />
<text text-anchor="" x="38.43" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_poll (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_poll (3 samples, 0.12%)</title><rect x="161.2" y="449" width="1.4" height="15.0" fill="rgb(205,120,24)" rx="2" ry="2" />
<text text-anchor="" x="164.25" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (4 samples, 0.15%)</title><rect x="10.0" y="481" width="1.8" height="15.0" fill="rgb(231,14,26)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_poll (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_poll (2 samples, 0.08%)</title><rect x="726.3" y="369" width="0.9" height="15.0" fill="rgb(235,98,51)" rx="2" ry="2" />
<text text-anchor="" x="729.27" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::test::PingPongTestClient::CreateChannel (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::test::PingPongTestClient::CreateChannel (1 samples, 0.04%)</title><rect x="32.3" y="625" width="0.4" height="15.0" fill="rgb(222,78,19)" rx="2" ry="2" />
<text text-anchor="" x="35.26" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_send_events_proc (16 samples, 0.62%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_send_events_proc (16 samples, 0.62%)</title><rect x="720.4" y="401" width="7.2" height="15.0" fill="rgb(208,134,44)" rx="2" ry="2" />
<text text-anchor="" x="723.36" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tcmalloc::FL_Push (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>tcmalloc::FL_Push (2 samples, 0.08%)</title><rect x="839.4" y="353" width="0.9" height="15.0" fill="rgb(239,21,10)" rx="2" ry="2" />
<text text-anchor="" x="842.36" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (10 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (10 samples, 0.38%)</title><rect x="41.3" y="577" width="4.6" height="15.0" fill="rgb(207,94,8)" rx="2" ry="2" />
<text text-anchor="" x="44.34" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.19%)</title><rect x="15.5" y="577" width="2.2" height="15.0" fill="rgb(241,159,47)" rx="2" ry="2" />
<text text-anchor="" x="18.45" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_check (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_check (3 samples, 0.12%)</title><rect x="1043.3" y="417" width="1.4" height="15.0" fill="rgb(228,65,30)" rx="2" ry="2" />
<text text-anchor="" x="1046.29" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('stop_one_cpu (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>stop_one_cpu (4 samples, 0.15%)</title><rect x="15.9" y="369" width="1.8" height="15.0" fill="rgb(243,177,20)" rx="2" ry="2" />
<text text-anchor="" x="18.90" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_ZNSs9_M_mutateEmmm@plt (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZNSs9_M_mutateEmmm@plt (1 samples, 0.04%)</title><rect x="17.7" y="657" width="0.5" height="15.0" fill="rgb(237,25,45)" rx="2" ry="2" />
<text text-anchor="" x="20.72" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_aio_read (97 samples, 3.73%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_aio_read (97 samples, 3.73%)</title><rect x="489.2" y="433" width="44.0" height="15.0" fill="rgb(227,33,4)" rx="2" ry="2" />
<text text-anchor="" x="492.18" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sock..</text>
</g>
<g class="func_g" onmouseover="s('sock_wfree (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_wfree (1 samples, 0.04%)</title><rect x="517.8" y="337" width="0.4" height="15.0" fill="rgb(210,212,20)" rx="2" ry="2" />
<text text-anchor="" x="520.79" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('check_preempt_wakeup (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>check_preempt_wakeup (2 samples, 0.08%)</title><rect x="376.5" y="193" width="0.9" height="15.0" fill="rgb(253,173,30)" rx="2" ry="2" />
<text text-anchor="" x="379.54" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_locked (84 samples, 3.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_locked (84 samples, 3.23%)</title><rect x="342.0" y="289" width="38.2" height="15.0" fill="rgb(227,10,43)" rx="2" ry="2" />
<text text-anchor="" x="345.02" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__w..</text>
</g>
<g class="func_g" onmouseover="s('IPC::ChannelPosix::OnFileCanReadWithoutBlocking (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelPosix::OnFileCanReadWithoutBlocking (4 samples, 0.15%)</title><rect x="662.7" y="481" width="1.8" height="15.0" fill="rgb(233,129,23)" rx="2" ry="2" />
<text text-anchor="" x="665.68" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_stream_sendmsg (157 samples, 6.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_sendmsg (157 samples, 6.04%)</title><rect x="880.7" y="289" width="71.3" height="15.0" fill="rgb(212,98,0)" rx="2" ry="2" />
<text text-anchor="" x="883.69" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >unix_str..</text>
</g>
<g class="func_g" onmouseover="s('IPC::ChannelPosix::CloseClientFileDescriptor (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelPosix::CloseClientFileDescriptor (3 samples, 0.12%)</title><rect x="795.3" y="433" width="1.4" height="15.0" fill="rgb(216,185,3)" rx="2" ry="2" />
<text text-anchor="" x="798.30" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__perf_event_task_sched_in (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (4 samples, 0.15%)</title><rect x="1177.3" y="609" width="1.8" height="15.0" fill="rgb(226,16,37)" rx="2" ry="2" />
<text text-anchor="" x="1180.28" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rb_insert_color (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>rb_insert_color (1 samples, 0.04%)</title><rect x="926.6" y="49" width="0.4" height="15.0" fill="rgb(227,88,22)" rx="2" ry="2" />
<text text-anchor="" x="929.57" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_cfs_rq_blocked_load (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_rq_blocked_load (2 samples, 0.08%)</title><rect x="927.9" y="65" width="0.9" height="15.0" fill="rgb(222,11,50)" rx="2" ry="2" />
<text text-anchor="" x="930.93" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fget_light (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>fget_light (4 samples, 0.15%)</title><rect x="786.2" y="433" width="1.8" height="15.0" fill="rgb(222,198,0)" rx="2" ry="2" />
<text text-anchor="" x="789.22" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_dl_lookup_symbol_x (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_dl_lookup_symbol_x (1 samples, 0.04%)</title><rect x="1176.8" y="641" width="0.5" height="15.0" fill="rgb(248,147,44)" rx="2" ry="2" />
<text text-anchor="" x="1179.83" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__libc_start_main (2,500 samples, 96.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_start_main (2,500 samples, 96.23%)</title><rect x="30.4" y="689" width="1135.5" height="15.0" fill="rgb(214,166,50)" rx="2" ry="2" />
<text text-anchor="" x="33.44" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__libc_start_main</text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_enable (7 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (7 samples, 0.27%)</title><rect x="757.2" y="289" width="3.1" height="15.0" fill="rgb(225,109,16)" rx="2" ry="2" />
<text text-anchor="" x="760.15" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_event_task_sched_out (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_task_sched_out (3 samples, 0.12%)</title><rect x="225.7" y="449" width="1.4" height="15.0" fill="rgb(206,213,40)" rx="2" ry="2" />
<text text-anchor="" x="228.74" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::DidProcessIOEvent (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::DidProcessIOEvent (3 samples, 0.12%)</title><rect x="553.2" y="545" width="1.4" height="15.0" fill="rgb(246,155,33)" rx="2" ry="2" />
<text text-anchor="" x="556.22" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::WillProcessIOEvent (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::WillProcessIOEvent (1 samples, 0.04%)</title><rect x="1142.3" y="481" width="0.5" height="15.0" fill="rgb(207,141,38)" rx="2" ry="2" />
<text text-anchor="" x="1145.31" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_event_context_sched_in (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (4 samples, 0.15%)</title><rect x="30.4" y="433" width="1.9" height="15.0" fill="rgb(211,164,6)" rx="2" ry="2" />
<text text-anchor="" x="33.44" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::ChannelPosix::WillDispatchInputMessage (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelPosix::WillDispatchInputMessage (1 samples, 0.04%)</title><rect x="816.2" y="417" width="0.5" height="15.0" fill="rgb(222,224,44)" rx="2" ry="2" />
<text text-anchor="" x="819.20" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ttwu_do_wakeup (9 samples, 0.35%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_wakeup (9 samples, 0.35%)</title><rect x="373.4" y="209" width="4.0" height="15.0" fill="rgb(210,154,10)" rx="2" ry="2" />
<text text-anchor="" x="376.36" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__libc_write (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_write (1 samples, 0.04%)</title><rect x="296.6" y="465" width="0.5" height="15.0" fill="rgb(220,207,29)" rx="2" ry="2" />
<text text-anchor="" x="299.60" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__clock_gettime (60 samples, 2.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>__clock_gettime (60 samples, 2.31%)</title><rect x="45.9" y="577" width="27.2" height="15.0" fill="rgb(242,203,4)" rx="2" ry="2" />
<text text-anchor="" x="48.88" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s('__kmalloc_node_track_caller (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_node_track_caller (2 samples, 0.08%)</title><rect x="899.3" y="225" width="0.9" height="15.0" fill="rgb(226,117,31)" rx="2" ry="2" />
<text text-anchor="" x="902.31" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fget_light (8 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>fget_light (8 samples, 0.31%)</title><rect x="1049.2" y="385" width="3.6" height="15.0" fill="rgb(224,13,2)" rx="2" ry="2" />
<text text-anchor="" x="1052.20" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('std::string::_M_replace_safe (5 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::string::_M_replace_safe (5 samples, 0.19%)</title><rect x="546.0" y="513" width="2.2" height="15.0" fill="rgb(217,110,34)" rx="2" ry="2" />
<text text-anchor="" x="548.95" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__srcu_read_lock (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__srcu_read_lock (1 samples, 0.04%)</title><rect x="872.1" y="321" width="0.4" height="15.0" fill="rgb(249,105,35)" rx="2" ry="2" />
<text text-anchor="" x="875.06" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('current_kernel_time (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>current_kernel_time (2 samples, 0.08%)</title><rect x="1033.3" y="385" width="0.9" height="15.0" fill="rgb(230,216,48)" rx="2" ry="2" />
<text text-anchor="" x="1036.30" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_cond_resched (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>_cond_resched (4 samples, 0.15%)</title><rect x="30.4" y="497" width="1.9" height="15.0" fill="rgb(216,102,20)" rx="2" ry="2" />
<text text-anchor="" x="33.44" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::ChannelPosix::ProcessOutgoingMessages (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelPosix::ProcessOutgoingMessages (2 samples, 0.08%)</title><rect x="1108.7" y="465" width="0.9" height="15.0" fill="rgb(237,179,10)" rx="2" ry="2" />
<text text-anchor="" x="1111.70" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_enable (6 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (6 samples, 0.23%)</title><rect x="197.1" y="369" width="2.8" height="15.0" fill="rgb(221,50,40)" rx="2" ry="2" />
<text text-anchor="" x="200.13" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('PickleIterator::PickleIterator (5 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>PickleIterator::PickleIterator (5 samples, 0.19%)</title><rect x="993.3" y="417" width="2.3" height="15.0" fill="rgb(214,64,21)" rx="2" ry="2" />
<text text-anchor="" x="996.33" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('non-virtual thunk to IPC::ChannelPosix::DidEmptyInputBuffers (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>non-virtual thunk to IPC::ChannelPosix::DidEmptyInputBuffers (2 samples, 0.08%)</title><rect x="1102.8" y="433" width="0.9" height="15.0" fill="rgb(213,2,20)" rx="2" ry="2" />
<text text-anchor="" x="1105.79" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::DoDelayedWork (5 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::DoDelayedWork (5 samples, 0.19%)</title><rect x="635.4" y="497" width="2.3" height="15.0" fill="rgb(239,221,28)" rx="2" ry="2" />
<text text-anchor="" x="638.43" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (2 samples, 0.08%)</title><rect x="949.7" y="241" width="0.9" height="15.0" fill="rgb(207,52,13)" rx="2" ry="2" />
<text text-anchor="" x="952.73" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::MessageAttachmentSet::~MessageAttachmentSet (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::MessageAttachmentSet::~MessageAttachmentSet (1 samples, 0.04%)</title><rect x="841.6" y="369" width="0.5" height="15.0" fill="rgb(218,123,21)" rx="2" ry="2" />
<text text-anchor="" x="844.63" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::Release (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (4 samples, 0.15%)</title><rect x="570.9" y="545" width="1.8" height="15.0" fill="rgb(209,150,28)" rx="2" ry="2" />
<text text-anchor="" x="573.93" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('std::string::_Rep::_M_destroy (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::string::_Rep::_M_destroy (1 samples, 0.04%)</title><rect x="1004.2" y="417" width="0.5" height="15.0" fill="rgb(251,195,14)" rx="2" ry="2" />
<text text-anchor="" x="1007.23" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('task_waking_fair (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>task_waking_fair (1 samples, 0.04%)</title><rect x="917.9" y="145" width="0.5" height="15.0" fill="rgb(214,49,19)" rx="2" ry="2" />
<text text-anchor="" x="920.94" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (5 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (5 samples, 0.19%)</title><rect x="718.1" y="401" width="2.3" height="15.0" fill="rgb(225,118,2)" rx="2" ry="2" />
<text text-anchor="" x="721.09" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('change_protection_range (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>change_protection_range (1 samples, 0.04%)</title><rect x="286.6" y="321" width="0.5" height="15.0" fill="rgb(205,128,54)" rx="2" ry="2" />
<text text-anchor="" x="289.61" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ttwu_do_activate.constprop.74 (64 samples, 2.46%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.74 (64 samples, 2.46%)</title><rect x="918.4" y="145" width="29.1" height="15.0" fill="rgb(215,178,47)" rx="2" ry="2" />
<text text-anchor="" x="921.39" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >tt..</text>
</g>
<g class="func_g" onmouseover="s('account_entity_dequeue (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_dequeue (2 samples, 0.08%)</title><rect x="185.8" y="369" width="0.9" height="15.0" fill="rgb(241,133,41)" rx="2" ry="2" />
<text text-anchor="" x="188.77" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_fair (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_fair (1 samples, 0.04%)</title><rect x="1174.6" y="625" width="0.4" height="15.0" fill="rgb(215,145,47)" rx="2" ry="2" />
<text text-anchor="" x="1177.56" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (1 samples, 0.04%)</title><rect x="194.4" y="369" width="0.5" height="15.0" fill="rgb(228,105,30)" rx="2" ry="2" />
<text text-anchor="" x="197.40" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call (6 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call (6 samples, 0.23%)</title><rect x="25.4" y="657" width="2.8" height="15.0" fill="rgb(218,27,9)" rx="2" ry="2" />
<text text-anchor="" x="28.44" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_check (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_check (2 samples, 0.08%)</title><rect x="691.7" y="465" width="1.0" height="15.0" fill="rgb(250,112,24)" rx="2" ry="2" />
<text text-anchor="" x="694.75" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__memcmp_sse4_1 (14 samples, 0.54%)')" onmouseout="c()" onclick="zoom(this)">
<title>__memcmp_sse4_1 (14 samples, 0.54%)</title><rect x="1165.9" y="689" width="6.4" height="15.0" fill="rgb(209,47,18)" rx="2" ry="2" />
<text text-anchor="" x="1168.93" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::Run (1,242 samples, 47.81%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::Run (1,242 samples, 47.81%)</title><rect x="32.7" y="625" width="564.1" height="15.0" fill="rgb(252,93,1)" rx="2" ry="2" />
<text text-anchor="" x="35.71" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::MessageLoop::Run</text>
</g>
<g class="func_g" onmouseover="s('IPC::MessageAttachmentSet::~MessageAttachmentSet (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::MessageAttachmentSet::~MessageAttachmentSet (4 samples, 0.15%)</title><rect x="836.2" y="353" width="1.8" height="15.0" fill="rgb(235,197,21)" rx="2" ry="2" />
<text text-anchor="" x="839.18" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('local_clock (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>local_clock (3 samples, 0.12%)</title><rect x="766.2" y="305" width="1.4" height="15.0" fill="rgb(219,53,13)" rx="2" ry="2" />
<text text-anchor="" x="769.24" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock (1 samples, 0.04%)</title><rect x="756.7" y="321" width="0.5" height="15.0" fill="rgb(217,128,40)" rx="2" ry="2" />
<text text-anchor="" x="759.70" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__epoll_wait_nocancel (267 samples, 10.28%)')" onmouseout="c()" onclick="zoom(this)">
<title>__epoll_wait_nocancel (267 samples, 10.28%)</title><rect x="666.8" y="481" width="121.2" height="15.0" fill="rgb(254,28,15)" rx="2" ry="2" />
<text text-anchor="" x="669.77" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__epoll_wait_no..</text>
</g>
<g class="func_g" onmouseover="s('finish_task_switch (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 0.15%)</title><rect x="1177.3" y="625" width="1.8" height="15.0" fill="rgb(241,187,23)" rx="2" ry="2" />
<text text-anchor="" x="1180.28" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator delete (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator delete (2 samples, 0.08%)</title><rect x="846.6" y="369" width="0.9" height="15.0" fill="rgb(233,24,50)" rx="2" ry="2" />
<text text-anchor="" x="849.63" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apparmor_file_permission (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (1 samples, 0.04%)</title><rect x="386.5" y="369" width="0.5" height="15.0" fill="rgb(218,1,51)" rx="2" ry="2" />
<text text-anchor="" x="389.53" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('activate_task (51 samples, 1.96%)')" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (51 samples, 1.96%)</title><rect x="918.4" y="129" width="23.2" height="15.0" fill="rgb(212,122,44)" rx="2" ry="2" />
<text text-anchor="" x="921.39" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >a..</text>
</g>
<g class="func_g" onmouseover="s('_ZN3IPC7Message26EnsureMessageAttachmentSetEv@plt (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZN3IPC7Message26EnsureMessageAttachmentSetEv@plt (1 samples, 0.04%)</title><rect x="852.1" y="385" width="0.4" height="15.0" fill="rgb(246,42,35)" rx="2" ry="2" />
<text text-anchor="" x="855.08" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_enable_all (5 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (5 samples, 0.19%)</title><rect x="197.1" y="353" width="2.3" height="15.0" fill="rgb(215,2,2)" rx="2" ry="2" />
<text text-anchor="" x="200.13" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::trace_event::TraceLog::GetInstance (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::trace_event::TraceLog::GetInstance (4 samples, 0.15%)</title><rect x="415.1" y="481" width="1.9" height="15.0" fill="rgb(241,51,29)" rx="2" ry="2" />
<text text-anchor="" x="418.14" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apparmor_socket_getpeersec_dgram (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_getpeersec_dgram (1 samples, 0.04%)</title><rect x="324.3" y="353" width="0.5" height="15.0" fill="rgb(222,19,5)" rx="2" ry="2" />
<text text-anchor="" x="327.30" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('void Pickle::WriteBytesStatic4ul (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>void Pickle::WriteBytesStatic4ul (4 samples, 0.15%)</title><rect x="421.5" y="481" width="1.8" height="15.0" fill="rgb(241,24,52)" rx="2" ry="2" />
<text text-anchor="" x="424.50" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('account_entity_dequeue (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_dequeue (3 samples, 0.12%)</title><rect x="746.7" y="289" width="1.4" height="15.0" fill="rgb(221,147,27)" rx="2" ry="2" />
<text text-anchor="" x="749.71" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_curr (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (1 samples, 0.04%)</title><rect x="932.0" y="49" width="0.5" height="15.0" fill="rgb(221,157,37)" rx="2" ry="2" />
<text text-anchor="" x="935.02" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('Pickle::Pickle (14 samples, 0.54%)')" onmouseout="c()" onclick="zoom(this)">
<title>Pickle::Pickle (14 samples, 0.54%)</title><rect x="959.3" y="385" width="6.3" height="15.0" fill="rgb(216,139,13)" rx="2" ry="2" />
<text text-anchor="" x="962.27" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__fsnotify_parent (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__fsnotify_parent (1 samples, 0.04%)</title><rect x="487.8" y="449" width="0.5" height="15.0" fill="rgb(227,95,30)" rx="2" ry="2" />
<text text-anchor="" x="490.81" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::ChannelPosix::OnFileCanReadWithoutBlocking (697 samples, 26.83%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelPosix::OnFileCanReadWithoutBlocking (697 samples, 26.83%)</title><rect x="792.1" y="465" width="316.6" height="15.0" fill="rgb(228,73,32)" rx="2" ry="2" />
<text text-anchor="" x="795.12" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IPC::ChannelPosix::OnFileCanReadWithoutBlo..</text>
</g>
<g class="func_g" onmouseover="s('ttwu_do_wakeup (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_wakeup (1 samples, 0.04%)</title><rect x="947.5" y="145" width="0.4" height="15.0" fill="rgb(224,225,45)" rx="2" ry="2" />
<text text-anchor="" x="950.46" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mutex_lock (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>mutex_lock (2 samples, 0.08%)</title><rect x="727.6" y="401" width="0.9" height="15.0" fill="rgb(234,136,15)" rx="2" ry="2" />
<text text-anchor="" x="730.63" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__read_nocancel (179 samples, 6.89%)')" onmouseout="c()" onclick="zoom(this)">
<title>__read_nocancel (179 samples, 6.89%)</title><rect x="460.6" y="513" width="81.3" height="15.0" fill="rgb(206,195,16)" rx="2" ry="2" />
<text text-anchor="" x="463.56" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__read_no..</text>
</g>
<g class="func_g" onmouseover="s('sched_clock (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (1 samples, 0.04%)</title><rect x="203.9" y="353" width="0.5" height="15.0" fill="rgb(227,2,7)" rx="2" ry="2" />
<text text-anchor="" x="206.94" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_signal (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_signal (1 samples, 0.04%)</title><rect x="1044.7" y="417" width="0.4" height="15.0" fill="rgb(221,7,50)" rx="2" ry="2" />
<text text-anchor="" x="1047.66" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_disable (11 samples, 0.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_disable (11 samples, 0.42%)</title><rect x="767.6" y="289" width="5.0" height="15.0" fill="rgb(225,166,20)" rx="2" ry="2" />
<text text-anchor="" x="770.60" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (204 samples, 7.85%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (204 samples, 7.85%)</title><rect x="695.4" y="465" width="92.6" height="15.0" fill="rgb(224,95,29)" rx="2" ry="2" />
<text text-anchor="" x="698.38" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >system_call..</text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_fair (16 samples, 0.62%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_fair (16 samples, 0.62%)</title><rect x="773.0" y="353" width="7.3" height="15.0" fill="rgb(219,129,35)" rx="2" ry="2" />
<text text-anchor="" x="776.05" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('testing::UnitTest::Run (1,253 samples, 48.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>testing::UnitTest::Run (1,253 samples, 48.23%)</title><rect x="596.8" y="641" width="569.1" height="15.0" fill="rgb(219,58,9)" rx="2" ry="2" />
<text text-anchor="" x="599.82" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >testing::UnitTest::Run</text>
</g>
<g class="func_g" onmouseover="s('skb_copy_datagram_iovec (6 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_iovec (6 samples, 0.23%)</title><rect x="1092.3" y="305" width="2.8" height="15.0" fill="rgb(233,120,5)" rx="2" ry="2" />
<text text-anchor="" x="1095.35" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('event_base_loop (1,127 samples, 43.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>event_base_loop (1,127 samples, 43.38%)</title><rect x="654.0" y="497" width="511.9" height="15.0" fill="rgb(231,209,28)" rx="2" ry="2" />
<text text-anchor="" x="657.05" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >event_base_loop</text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (15 samples, 0.58%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (15 samples, 0.58%)</title><rect x="682.7" y="433" width="6.8" height="15.0" fill="rgb(225,26,47)" rx="2" ry="2" />
<text text-anchor="" x="685.66" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (9 samples, 0.35%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (9 samples, 0.35%)</title><rect x="706.3" y="417" width="4.1" height="15.0" fill="rgb(250,12,48)" rx="2" ry="2" />
<text text-anchor="" x="709.28" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::Message::EnsureMessageAttachmentSet (6 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::Message::EnsureMessageAttachmentSet (6 samples, 0.23%)</title><rect x="280.7" y="449" width="2.7" height="15.0" fill="rgb(246,19,16)" rx="2" ry="2" />
<text text-anchor="" x="283.70" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock_cpu (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (3 samples, 0.12%)</title><rect x="203.0" y="369" width="1.4" height="15.0" fill="rgb(205,150,0)" rx="2" ry="2" />
<text text-anchor="" x="206.03" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator new (8 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (8 samples, 0.31%)</title><rect x="574.6" y="545" width="3.6" height="15.0" fill="rgb(223,73,47)" rx="2" ry="2" />
<text text-anchor="" x="577.57" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.19%)</title><rect x="15.5" y="449" width="2.2" height="15.0" fill="rgb(236,53,46)" rx="2" ry="2" />
<text text-anchor="" x="18.45" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_read (5 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (5 samples, 0.19%)</title><rect x="464.6" y="497" width="2.3" height="15.0" fill="rgb(249,28,29)" rx="2" ry="2" />
<text text-anchor="" x="467.65" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::ChannelPosix::ExtractFileDescriptorsFromMsghdr (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelPosix::ExtractFileDescriptorsFromMsghdr (2 samples, 0.08%)</title><rect x="246.2" y="497" width="0.9" height="15.0" fill="rgb(218,203,40)" rx="2" ry="2" />
<text text-anchor="" x="249.18" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('security_file_permission (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (1 samples, 0.04%)</title><rect x="386.5" y="385" width="0.5" height="15.0" fill="rgb(206,217,12)" rx="2" ry="2" />
<text text-anchor="" x="389.53" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::LockImpl::Unlock (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::LockImpl::Unlock (1 samples, 0.04%)</title><rect x="642.7" y="481" width="0.4" height="15.0" fill="rgb(232,89,27)" rx="2" ry="2" />
<text text-anchor="" x="645.69" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('task_waking_fair (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>task_waking_fair (1 samples, 0.04%)</title><rect x="344.3" y="241" width="0.4" height="15.0" fill="rgb(206,148,39)" rx="2" ry="2" />
<text text-anchor="" x="347.29" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.19%)</title><rect x="15.5" y="529" width="2.2" height="15.0" fill="rgb(222,78,21)" rx="2" ry="2" />
<text text-anchor="" x="18.45" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::ChannelPosix::WillDispatchInputMessage (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelPosix::WillDispatchInputMessage (2 samples, 0.08%)</title><rect x="265.7" y="497" width="0.9" height="15.0" fill="rgb(218,122,29)" rx="2" ry="2" />
<text text-anchor="" x="268.71" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('void Pickle::WriteBytesStatic8ul (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>void Pickle::WriteBytesStatic8ul (3 samples, 0.12%)</title><rect x="990.2" y="401" width="1.3" height="15.0" fill="rgb(245,181,0)" rx="2" ry="2" />
<text text-anchor="" x="993.15" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_epoll_wait (214 samples, 8.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (214 samples, 8.24%)</title><rect x="133.1" y="529" width="97.2" height="15.0" fill="rgb(222,90,31)" rx="2" ry="2" />
<text text-anchor="" x="136.09" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys_epoll_w..</text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irq (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irq (3 samples, 0.12%)</title><rect x="176.7" y="433" width="1.4" height="15.0" fill="rgb(219,7,43)" rx="2" ry="2" />
<text text-anchor="" x="179.69" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.04%)</title><rect x="772.1" y="273" width="0.5" height="15.0" fill="rgb(243,211,48)" rx="2" ry="2" />
<text text-anchor="" x="775.14" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::ChannelPosix::OnFileCanReadWithoutBlocking (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelPosix::OnFileCanReadWithoutBlocking (4 samples, 0.15%)</title><rect x="95.8" y="561" width="1.9" height="15.0" fill="rgb(232,175,32)" rx="2" ry="2" />
<text text-anchor="" x="98.84" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::ChannelReader::ProcessIncomingMessages (693 samples, 26.67%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::ChannelReader::ProcessIncomingMessages (693 samples, 26.67%)</title><rect x="793.5" y="449" width="314.7" height="15.0" fill="rgb(231,164,42)" rx="2" ry="2" />
<text text-anchor="" x="796.49" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IPC::internal::ChannelReader::ProcessIncom..</text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (1 samples, 0.04%)</title><rect x="348.4" y="225" width="0.4" height="15.0" fill="rgb(248,109,33)" rx="2" ry="2" />
<text text-anchor="" x="351.38" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unroll_tree_refs (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>unroll_tree_refs (1 samples, 0.04%)</title><rect x="864.8" y="337" width="0.5" height="15.0" fill="rgb(210,113,40)" rx="2" ry="2" />
<text text-anchor="" x="867.80" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('check_preempt_curr (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>check_preempt_curr (1 samples, 0.04%)</title><rect x="941.6" y="129" width="0.4" height="15.0" fill="rgb(232,50,48)" rx="2" ry="2" />
<text text-anchor="" x="944.56" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_queue_tail (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_queue_tail (3 samples, 0.12%)</title><rect x="326.1" y="353" width="1.4" height="15.0" fill="rgb(224,177,15)" rx="2" ry="2" />
<text text-anchor="" x="329.12" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_enable (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (4 samples, 0.15%)</title><rect x="1177.3" y="577" width="1.8" height="15.0" fill="rgb(224,2,4)" rx="2" ry="2" />
<text text-anchor="" x="1180.28" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.19%)</title><rect x="15.5" y="641" width="2.2" height="15.0" fill="rgb(248,224,8)" rx="2" ry="2" />
<text text-anchor="" x="18.45" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_do_update_jiffies64 (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_do_update_jiffies64 (1 samples, 0.04%)</title><rect x="672.2" y="353" width="0.5" height="15.0" fill="rgb(215,80,9)" rx="2" ry="2" />
<text text-anchor="" x="675.22" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rw_verify_area (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (3 samples, 0.12%)</title><rect x="385.6" y="401" width="1.4" height="15.0" fill="rgb(230,104,44)" rx="2" ry="2" />
<text text-anchor="" x="388.62" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dl_main (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>dl_main (1 samples, 0.04%)</title><rect x="1176.8" y="673" width="0.5" height="15.0" fill="rgb(251,109,24)" rx="2" ry="2" />
<text text-anchor="" x="1179.83" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_stream_sendmsg (139 samples, 5.35%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_sendmsg (139 samples, 5.35%)</title><rect x="319.3" y="369" width="63.1" height="15.0" fill="rgb(249,40,44)" rx="2" ry="2" />
<text text-anchor="" x="322.31" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >unix_s..</text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.19%)</title><rect x="15.5" y="497" width="2.2" height="15.0" fill="rgb(222,12,44)" rx="2" ry="2" />
<text text-anchor="" x="18.45" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_execve (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_execve (1 samples, 0.04%)</title><rect x="30.0" y="657" width="0.4" height="15.0" fill="rgb(243,94,8)" rx="2" ry="2" />
<text text-anchor="" x="32.98" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_dl_sysdep_start (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_dl_sysdep_start (1 samples, 0.04%)</title><rect x="1176.8" y="689" width="0.5" height="15.0" fill="rgb(251,85,33)" rx="2" ry="2" />
<text text-anchor="" x="1179.83" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('deactivate_task (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (1 samples, 0.04%)</title><rect x="785.3" y="369" width="0.5" height="15.0" fill="rgb(232,51,51)" rx="2" ry="2" />
<text text-anchor="" x="788.31" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_poll_callback (91 samples, 3.50%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (91 samples, 3.50%)</title><rect x="908.4" y="225" width="41.3" height="15.0" fill="rgb(244,149,45)" rx="2" ry="2" />
<text text-anchor="" x="911.40" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ep_..</text>
</g>
<g class="func_g" onmouseover="s('rb_erase (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>rb_erase (1 samples, 0.04%)</title><rect x="1174.6" y="593" width="0.4" height="15.0" fill="rgb(237,211,8)" rx="2" ry="2" />
<text text-anchor="" x="1177.56" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_ZN4base19MessagePumpLibevent17DidProcessIOEventEv@plt (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4base19MessagePumpLibevent17DidProcessIOEventEv@plt (1 samples, 0.04%)</title><rect x="664.5" y="481" width="0.4" height="15.0" fill="rgb(227,144,15)" rx="2" ry="2" />
<text text-anchor="" x="667.50" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (1 samples, 0.04%)</title><rect x="1032.8" y="385" width="0.5" height="15.0" fill="rgb(217,224,10)" rx="2" ry="2" />
<text text-anchor="" x="1035.85" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_sched_clock (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (2 samples, 0.08%)</title><rect x="754.4" y="273" width="0.9" height="15.0" fill="rgb(249,122,39)" rx="2" ry="2" />
<text text-anchor="" x="757.43" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_after_swapgs (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_after_swapgs (2 samples, 0.08%)</title><rect x="14.5" y="609" width="1.0" height="15.0" fill="rgb(221,213,39)" rx="2" ry="2" />
<text text-anchor="" x="17.54" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_check (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_check (3 samples, 0.12%)</title><rect x="477.4" y="497" width="1.3" height="15.0" fill="rgb(245,5,40)" rx="2" ry="2" />
<text text-anchor="" x="480.37" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_entry (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (4 samples, 0.15%)</title><rect x="1032.4" y="401" width="1.8" height="15.0" fill="rgb(235,205,9)" rx="2" ry="2" />
<text text-anchor="" x="1035.39" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_entry (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (3 samples, 0.12%)</title><rect x="462.8" y="481" width="1.4" height="15.0" fill="rgb(232,121,33)" rx="2" ry="2" />
<text text-anchor="" x="465.83" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_cfs_shares (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (3 samples, 0.12%)</title><rect x="935.7" y="81" width="1.3" height="15.0" fill="rgb(225,221,2)" rx="2" ry="2" />
<text text-anchor="" x="938.65" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('epoll_wait (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>epoll_wait (3 samples, 0.12%)</title><rect x="590.0" y="561" width="1.4" height="15.0" fill="rgb(212,138,44)" rx="2" ry="2" />
<text text-anchor="" x="593.01" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator new (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (4 samples, 0.15%)</title><rect x="281.6" y="433" width="1.8" height="15.0" fill="rgb(240,13,51)" rx="2" ry="2" />
<text text-anchor="" x="284.61" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (4 samples, 0.15%)</title><rect x="758.1" y="257" width="1.8" height="15.0" fill="rgb(247,14,8)" rx="2" ry="2" />
<text text-anchor="" x="761.06" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mutex_unlock (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>mutex_unlock (2 samples, 0.08%)</title><rect x="729.0" y="417" width="0.9" height="15.0" fill="rgb(252,202,42)" rx="2" ry="2" />
<text text-anchor="" x="731.99" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (15 samples, 0.58%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (15 samples, 0.58%)</title><rect x="447.8" y="513" width="6.9" height="15.0" fill="rgb(224,149,16)" rx="2" ry="2" />
<text text-anchor="" x="450.84" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_fair (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_fair (1 samples, 0.04%)</title><rect x="785.8" y="369" width="0.4" height="15.0" fill="rgb(216,190,31)" rx="2" ry="2" />
<text text-anchor="" x="788.77" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('auditsys (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>auditsys (4 samples, 0.15%)</title><rect x="462.8" y="497" width="1.8" height="15.0" fill="rgb(251,177,6)" rx="2" ry="2" />
<text text-anchor="" x="465.83" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_check (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_check (1 samples, 0.04%)</title><rect x="1175.9" y="673" width="0.5" height="15.0" fill="rgb(227,146,51)" rx="2" ry="2" />
<text text-anchor="" x="1178.92" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator new (18 samples, 0.69%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (18 samples, 0.69%)</title><rect x="560.0" y="529" width="8.2" height="15.0" fill="rgb(225,75,43)" rx="2" ry="2" />
<text text-anchor="" x="563.03" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('vfs_read (123 samples, 4.73%)')" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (123 samples, 4.73%)</title><rect x="485.1" y="465" width="55.9" height="15.0" fill="rgb(214,40,27)" rx="2" ry="2" />
<text text-anchor="" x="488.09" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >vfs_r..</text>
</g>
<g class="func_g" onmouseover="s('Pickle::FindNext (8 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>Pickle::FindNext (8 samples, 0.31%)</title><rect x="1015.6" y="433" width="3.6" height="15.0" fill="rgb(243,37,15)" rx="2" ry="2" />
<text text-anchor="" x="1018.59" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call (3 samples, 0.12%)</title><rect x="479.2" y="497" width="1.3" height="15.0" fill="rgb(211,109,54)" rx="2" ry="2" />
<text text-anchor="" x="482.18" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::test::IPCChannelPerfTestBase::RunTestChannelPingPong (1,253 samples, 48.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::test::IPCChannelPerfTestBase::RunTestChannelPingPong (1,253 samples, 48.23%)</title><rect x="596.8" y="561" width="569.1" height="15.0" fill="rgb(230,176,34)" rx="2" ry="2" />
<text text-anchor="" x="599.82" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IPC::test::IPCChannelPerfTestBase::RunTestChannelPingPong</text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_disable (12 samples, 0.46%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_disable (12 samples, 0.46%)</title><rect x="204.4" y="369" width="5.4" height="15.0" fill="rgb(232,207,25)" rx="2" ry="2" />
<text text-anchor="" x="207.40" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (21 samples, 0.81%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (21 samples, 0.81%)</title><rect x="466.9" y="481" width="9.6" height="15.0" fill="rgb(209,96,4)" rx="2" ry="2" />
<text text-anchor="" x="469.92" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('security_socket_sendmsg (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_sendmsg (1 samples, 0.04%)</title><rect x="875.2" y="305" width="0.5" height="15.0" fill="rgb(241,45,21)" rx="2" ry="2" />
<text text-anchor="" x="878.24" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_cfs_shares (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (1 samples, 0.04%)</title><rect x="753.5" y="305" width="0.5" height="15.0" fill="rgb(239,198,37)" rx="2" ry="2" />
<text text-anchor="" x="756.52" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_ZN4base11trace_event8TraceLog11GetInstanceEv@plt (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4base11trace_event8TraceLog11GetInstanceEv@plt (1 samples, 0.04%)</title><rect x="402.9" y="481" width="0.4" height="15.0" fill="rgb(219,3,5)" rx="2" ry="2" />
<text text-anchor="" x="405.88" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::MessageAttachmentSet::~MessageAttachmentSet (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::MessageAttachmentSet::~MessageAttachmentSet (2 samples, 0.08%)</title><rect x="285.7" y="433" width="0.9" height="15.0" fill="rgb(241,9,29)" rx="2" ry="2" />
<text text-anchor="" x="288.70" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('aa_revalidate_sk (7 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>aa_revalidate_sk (7 samples, 0.27%)</title><rect x="496.9" y="385" width="3.2" height="15.0" fill="rgb(223,13,33)" rx="2" ry="2" />
<text text-anchor="" x="499.90" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tcmalloc::FL_Push (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>tcmalloc::FL_Push (2 samples, 0.08%)</title><rect x="288.0" y="433" width="0.9" height="15.0" fill="rgb(234,78,6)" rx="2" ry="2" />
<text text-anchor="" x="290.97" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__kmalloc_reserve.isra.27 (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_reserve.isra.27 (1 samples, 0.04%)</title><rect x="340.2" y="337" width="0.5" height="15.0" fill="rgb(240,80,25)" rx="2" ry="2" />
<text text-anchor="" x="343.20" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('common_file_perm (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (2 samples, 0.08%)</title><rect x="1100.5" y="321" width="0.9" height="15.0" fill="rgb(236,193,5)" rx="2" ry="2" />
<text text-anchor="" x="1103.52" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tc_free (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>tc_free (3 samples, 0.12%)</title><rect x="848.0" y="369" width="1.4" height="15.0" fill="rgb(220,153,28)" rx="2" ry="2" />
<text text-anchor="" x="850.99" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock@plt (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock@plt (2 samples, 0.08%)</title><rect x="644.5" y="481" width="0.9" height="15.0" fill="rgb(214,111,48)" rx="2" ry="2" />
<text text-anchor="" x="647.51" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('check_preempt_curr (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>check_preempt_curr (1 samples, 0.04%)</title><rect x="372.9" y="209" width="0.5" height="15.0" fill="rgb(217,33,0)" rx="2" ry="2" />
<text text-anchor="" x="375.90" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (1 samples, 0.04%)</title><rect x="877.1" y="289" width="0.4" height="15.0" fill="rgb(205,38,10)" rx="2" ry="2" />
<text text-anchor="" x="880.06" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('security_socket_recvmsg (3 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_recvmsg (3 samples, 0.12%)</title><rect x="1066.0" y="321" width="1.4" height="15.0" fill="rgb(219,209,25)" rx="2" ry="2" />
<text text-anchor="" x="1069.00" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kmem_cache_alloc_node (6 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_alloc_node (6 samples, 0.23%)</title><rect x="900.7" y="241" width="2.7" height="15.0" fill="rgb(220,226,26)" rx="2" ry="2" />
<text text-anchor="" x="903.68" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_poll (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_poll (1 samples, 0.04%)</title><rect x="727.2" y="385" width="0.4" height="15.0" fill="rgb(218,91,25)" rx="2" ry="2" />
<text text-anchor="" x="730.17" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('wait_for_unix_gc (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>wait_for_unix_gc (1 samples, 0.04%)</title><rect x="951.5" y="273" width="0.5" height="15.0" fill="rgb(209,81,10)" rx="2" ry="2" />
<text text-anchor="" x="954.55" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('vm_mmap_pgoff (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>vm_mmap_pgoff (1 samples, 0.04%)</title><rect x="1176.4" y="609" width="0.4" height="15.0" fill="rgb(215,53,31)" rx="2" ry="2" />
<text text-anchor="" x="1179.37" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__alloc_skb (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__alloc_skb (1 samples, 0.04%)</title><rect x="323.4" y="353" width="0.4" height="15.0" fill="rgb(224,210,34)" rx="2" ry="2" />
<text text-anchor="" x="326.39" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_disable_all (10 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_disable_all (10 samples, 0.38%)</title><rect x="767.6" y="273" width="4.5" height="15.0" fill="rgb(229,220,0)" rx="2" ry="2" />
<text text-anchor="" x="770.60" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (2 samples, 0.08%)</title><rect x="380.6" y="321" width="0.9" height="15.0" fill="rgb(238,167,37)" rx="2" ry="2" />
<text text-anchor="" x="383.62" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('all (2,598 samples, 100%)')" onmouseout="c()" onclick="zoom(this)">
<title>all (2,598 samples, 100%)</title><rect x="10.0" y="721" width="1180.0" height="15.0" fill="rgb(232,135,7)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__kmalloc_node_track_caller (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_node_track_caller (1 samples, 0.04%)</title><rect x="332.9" y="321" width="0.5" height="15.0" fill="rgb(229,105,4)" rx="2" ry="2" />
<text text-anchor="" x="335.93" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ipc_perftests (2,594 samples, 99.85%)')" onmouseout="c()" onclick="zoom(this)">
<title>ipc_perftests (2,594 samples, 99.85%)</title><rect x="11.8" y="705" width="1178.2" height="15.0" fill="rgb(220,83,21)" rx="2" ry="2" />
<text text-anchor="" x="14.82" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ipc_perftests</text>
</g>
<g class="func_g" onmouseover="s('operator new (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (1 samples, 0.04%)</title><rect x="847.5" y="369" width="0.5" height="15.0" fill="rgb(223,171,22)" rx="2" ry="2" />
<text text-anchor="" x="850.54" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (1 samples, 0.04%)</title><rect x="1061.5" y="321" width="0.4" height="15.0" fill="rgb(236,46,50)" rx="2" ry="2" />
<text text-anchor="" x="1064.46" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('security_file_permission (9 samples, 0.35%)')" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (9 samples, 0.35%)</title><rect x="1098.3" y="353" width="4.0" height="15.0" fill="rgb(213,163,43)" rx="2" ry="2" />
<text text-anchor="" x="1101.25" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('std::string::assign (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::string::assign (2 samples, 0.08%)</title><rect x="1107.3" y="433" width="0.9" height="15.0" fill="rgb(216,31,34)" rx="2" ry="2" />
<text text-anchor="" x="1110.34" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (4 samples, 0.15%)</title><rect x="13.6" y="641" width="1.9" height="15.0" fill="rgb(249,221,26)" rx="2" ry="2" />
<text text-anchor="" x="16.63" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__read_nocancel (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>__read_nocancel (2 samples, 0.08%)</title><rect x="230.3" y="561" width="0.9" height="15.0" fill="rgb(229,166,6)" rx="2" ry="2" />
<text text-anchor="" x="233.28" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_enable (4 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.15%)</title><rect x="30.4" y="401" width="1.9" height="15.0" fill="rgb(209,164,3)" rx="2" ry="2" />
<text text-anchor="" x="33.44" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('hrtimer_interrupt (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (1 samples, 0.04%)</title><rect x="672.2" y="417" width="0.5" height="15.0" fill="rgb(249,3,48)" rx="2" ry="2" />
<text text-anchor="" x="675.22" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rcu_note_context_switch (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>rcu_note_context_switch (1 samples, 0.04%)</title><rect x="227.6" y="449" width="0.4" height="15.0" fill="rgb(252,223,27)" rx="2" ry="2" />
<text text-anchor="" x="230.56" y="459.5" fon
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment