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
<?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="962" onload="init(evt)" viewBox="0 0 1200 962" 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="962.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="945" 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('mojo::system::MessageInTransit::MessageInTransit (6 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::MessageInTransit (6 samples, 0.17%)</title><rect x="825.3" y="497" width="2.0" height="15.0" fill="rgb(243,57,44)" rx="2" ry="2" />
<text text-anchor="" x="828.33" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('vfs_write (13 samples, 0.37%)')" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (13 samples, 0.37%)</title><rect x="557.0" y="289" width="4.3" height="15.0" fill="rgb(242,152,26)" rx="2" ry="2" />
<text text-anchor="" x="560.00" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::OnReadMessageForClient (51 samples, 1.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::OnReadMessageForClient (51 samples, 1.44%)</title><rect x="498.7" y="657" width="17.0" height="15.0" fill="rgb(236,116,49)" rx="2" ry="2" />
<text text-anchor="" x="501.67" y="667.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (4 samples, 0.11%)</title><rect x="37.0" y="561" width="1.3" height="15.0" fill="rgb(229,192,42)" rx="2" ry="2" />
<text text-anchor="" x="40.00" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_locked (117 samples, 3.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_locked (117 samples, 3.31%)</title><rect x="902.0" y="241" width="39.0" height="15.0" fill="rgb(251,194,23)" rx="2" ry="2" />
<text text-anchor="" x="905.00" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__w..</text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (8 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (8 samples, 0.23%)</title><rect x="115.7" y="673" width="2.6" height="15.0" fill="rgb(216,222,43)" rx="2" ry="2" />
<text text-anchor="" x="118.67" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (3 samples, 0.08%)</title><rect x="452.7" y="593" width="1.0" height="15.0" fill="rgb(223,23,33)" rx="2" ry="2" />
<text text-anchor="" x="455.67" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_aio_write (165 samples, 4.66%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_aio_write (165 samples, 4.66%)</title><rect x="263.7" y="337" width="55.0" height="15.0" fill="rgb(207,155,16)" rx="2" ry="2" />
<text text-anchor="" x="266.67" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sock_..</text>
</g>
<g class="func_g" onmouseover="s('skb_unlink (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_unlink (3 samples, 0.08%)</title><rect x="1121.7" y="593" width="1.0" height="15.0" fill="rgb(235,116,34)" rx="2" ry="2" />
<text text-anchor="" x="1124.67" y="603.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (1 samples, 0.03%)</title><rect x="755.7" y="577" width="0.3" height="15.0" fill="rgb(220,34,5)" rx="2" ry="2" />
<text text-anchor="" x="758.67" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ktime_get (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>ktime_get (1 samples, 0.03%)</title><rect x="141.3" y="529" width="0.4" height="15.0" fill="rgb(216,92,54)" rx="2" ry="2" />
<text text-anchor="" x="144.33" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (22 samples, 0.62%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (22 samples, 0.62%)</title><rect x="681.0" y="753" width="7.3" height="15.0" fill="rgb(246,102,8)" rx="2" ry="2" />
<text text-anchor="" x="684.00" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_int_free (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (1 samples, 0.03%)</title><rect x="1150.7" y="609" width="0.3" height="15.0" fill="rgb(240,27,33)" rx="2" ry="2" />
<text text-anchor="" x="1153.67" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_cond_resched (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_cond_resched (1 samples, 0.03%)</title><rect x="896.0" y="257" width="0.3" height="15.0" fill="rgb(225,206,17)" rx="2" ry="2" />
<text text-anchor="" x="899.00" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('void std::vectormojo::system::RawChannel::WriteBuffer::Buffer, std::allocatormojo::system::RawChannel::WriteBuffer::Buffer ::_M_emplace_back_auxmojo::system::RawChannel::WriteBuffer::Buffer const&amp; (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>void std::vectormojo::system::RawChannel::WriteBuffer::Buffer, std::allocatormojo::system::RawChannel::WriteBuffer::Buffer ::_M_emplace_back_auxmojo::system::RawChannel::WriteBuffer::Buffer const&amp; (1 samples, 0.03%)</title><rect x="955.7" y="417" width="0.3" height="15.0" fill="rgb(219,102,15)" rx="2" ry="2" />
<text text-anchor="" x="958.67" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__libc_disable_asynccancel (9 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_disable_asynccancel (9 samples, 0.25%)</title><rect x="187.0" y="753" width="3.0" height="15.0" fill="rgb(237,22,2)" rx="2" ry="2" />
<text text-anchor="" x="190.00" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator new (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (2 samples, 0.06%)</title><rect x="1062.0" y="721" width="0.7" height="15.0" fill="rgb(239,26,13)" rx="2" ry="2" />
<text text-anchor="" x="1065.00" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ttwu_stat (7 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_stat (7 samples, 0.20%)</title><rect x="937.3" y="177" width="2.4" height="15.0" fill="rgb(209,169,16)" rx="2" ry="2" />
<text text-anchor="" x="940.33" y="187.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 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (1 samples, 0.03%)</title><rect x="28.7" y="785" width="0.3" height="15.0" fill="rgb(226,94,49)" rx="2" ry="2" />
<text text-anchor="" x="31.67" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_fair (12 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_fair (12 samples, 0.34%)</title><rect x="764.0" y="625" width="4.0" height="15.0" fill="rgb(234,88,33)" rx="2" ry="2" />
<text text-anchor="" x="767.00" y="635.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (4 samples, 0.11%)</title><rect x="754.3" y="561" width="1.4" height="15.0" fill="rgb(224,206,44)" rx="2" ry="2" />
<text text-anchor="" x="757.33" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::embedder::AsyncWait (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::embedder::AsyncWait (3 samples, 0.08%)</title><rect x="397.3" y="673" width="1.0" height="15.0" fill="rgb(231,210,9)" rx="2" ry="2" />
<text text-anchor="" x="400.33" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pm_relax (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pm_relax (5 samples, 0.14%)</title><rect x="114.0" y="673" width="1.7" height="15.0" fill="rgb(209,100,48)" rx="2" ry="2" />
<text text-anchor="" x="117.00" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipeDispatcher::WriteMessageImplNoLock (318 samples, 8.98%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipeDispatcher::WriteMessageImplNoLock (318 samples, 8.98%)</title><rect x="235.0" y="529" width="106.0" height="15.0" fill="rgb(215,0,24)" rx="2" ry="2" />
<text text-anchor="" x="238.00" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::system..</text>
</g>
<g class="func_g" onmouseover="s('operator new (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (3 samples, 0.08%)</title><rect x="330.0" y="401" width="1.0" height="15.0" fill="rgb(238,199,32)" rx="2" ry="2" />
<text text-anchor="" x="333.00" y="411.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 0.11%)</title><rect x="547.3" y="577" width="1.4" height="15.0" fill="rgb(209,117,10)" rx="2" ry="2" />
<text text-anchor="" x="550.33" y="587.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_sched_setaffinity (4 samples, 0.11%)</title><rect x="37.0" y="769" width="1.3" height="15.0" fill="rgb(221,119,26)" rx="2" ry="2" />
<text text-anchor="" x="40.00" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_mid_memalign (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>_mid_memalign (2 samples, 0.06%)</title><rect x="520.3" y="657" width="0.7" height="15.0" fill="rgb(230,80,53)" rx="2" ry="2" />
<text text-anchor="" x="523.33" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('main (1,611 samples, 45.51%)')" onmouseout="c()" onclick="zoom(this)">
<title>main (1,611 samples, 45.51%)</title><rect x="37.0" y="865" width="537.0" height="15.0" fill="rgb(212,69,36)" rx="2" ry="2" />
<text text-anchor="" x="40.00" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >main</text>
</g>
<g class="func_g" onmouseover="s('copy_user_generic_string (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_string (3 samples, 0.08%)</title><rect x="273.0" y="289" width="1.0" height="15.0" fill="rgb(250,179,12)" rx="2" ry="2" />
<text text-anchor="" x="276.00" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_enable_all (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (2 samples, 0.06%)</title><rect x="159.7" y="545" width="0.6" height="15.0" fill="rgb(209,10,54)" rx="2" ry="2" />
<text text-anchor="" x="162.67" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::AddRef (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (5 samples, 0.14%)</title><rect x="1052.7" y="721" width="1.6" height="15.0" fill="rgb(230,179,20)" rx="2" ry="2" />
<text text-anchor="" x="1055.67" y="731.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.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_min_vruntime (2 samples, 0.06%)</title><rect x="929.0" y="81" width="0.7" height="15.0" fill="rgb(235,128,0)" rx="2" ry="2" />
<text text-anchor="" x="932.00" y="91.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (3 samples, 0.08%)</title><rect x="154.3" y="577" width="1.0" height="15.0" fill="rgb(250,222,45)" rx="2" ry="2" />
<text text-anchor="" x="157.33" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (3 samples, 0.08%)</title><rect x="569.3" y="625" width="1.0" height="15.0" fill="rgb(235,78,42)" rx="2" ry="2" />
<text text-anchor="" x="572.33" y="635.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.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::DoIdleWork (2 samples, 0.06%)</title><rect x="688.7" y="769" width="0.6" height="15.0" fill="rgb(235,72,15)" rx="2" ry="2" />
<text text-anchor="" x="691.67" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (6 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (6 samples, 0.17%)</title><rect x="970.7" y="513" width="2.0" height="15.0" fill="rgb(242,206,18)" rx="2" ry="2" />
<text text-anchor="" x="973.67" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ttwu_do_wakeup (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_wakeup (5 samples, 0.14%)</title><rect x="313.0" y="161" width="1.7" height="15.0" fill="rgb(253,186,51)" rx="2" ry="2" />
<text text-anchor="" x="316.00" y="171.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>Pickle::~Pickle (3 samples, 0.08%)</title><rect x="343.0" y="593" width="1.0" height="15.0" fill="rgb(249,131,48)" rx="2" ry="2" />
<text text-anchor="" x="346.00" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('security_file_permission (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (4 samples, 0.11%)</title><rect x="948.0" y="337" width="1.3" height="15.0" fill="rgb(216,32,45)" rx="2" ry="2" />
<text text-anchor="" x="951.00" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('non-virtual thunk to mojo::system:: (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>non-virtual thunk to mojo::system:: (1 samples, 0.03%)</title><rect x="573.3" y="673" width="0.4" height="15.0" fill="rgb(207,30,1)" rx="2" ry="2" />
<text text-anchor="" x="576.33" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipeDispatcher::WriteMessageImplNoLock (24 samples, 0.68%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipeDispatcher::WriteMessageImplNoLock (24 samples, 0.68%)</title><rect x="555.3" y="449" width="8.0" height="15.0" fill="rgb(213,36,37)" rx="2" ry="2" />
<text text-anchor="" x="558.33" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('auditsys (8 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>auditsys (8 samples, 0.23%)</title><rect x="847.0" y="401" width="2.7" height="15.0" fill="rgb(216,143,32)" rx="2" ry="2" />
<text text-anchor="" x="850.00" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('void Pickle::WriteBytesStatic8ul (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>void Pickle::WriteBytesStatic8ul (2 samples, 0.06%)</title><rect x="996.7" y="609" width="0.6" height="15.0" fill="rgb(209,105,16)" rx="2" ry="2" />
<text text-anchor="" x="999.67" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ProxyMessagePipeEndpoint::EnqueueMessage (425 samples, 12.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ProxyMessagePipeEndpoint::EnqueueMessage (425 samples, 12.01%)</title><rect x="827.3" y="497" width="141.7" height="15.0" fill="rgb(211,8,14)" rx="2" ry="2" />
<text text-anchor="" x="830.33" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::system::Prox..</text>
</g>
<g class="func_g" onmouseover="s('aa_file_perm (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>aa_file_perm (4 samples, 0.11%)</title><rect x="323.0" y="289" width="1.3" height="15.0" fill="rgb(245,69,15)" rx="2" ry="2" />
<text text-anchor="" x="326.00" y="299.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.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::DoIdleWork (2 samples, 0.06%)</title><rect x="60.3" y="769" width="0.7" height="15.0" fill="rgb(209,84,1)" rx="2" ry="2" />
<text text-anchor="" x="63.33" y="779.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_comm (4 samples, 0.11%)</title><rect x="10.0" y="753" width="1.3" height="15.0" fill="rgb(252,222,36)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="763.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_dequeue (1 samples, 0.03%)</title><rect x="308.0" y="81" width="0.3" height="15.0" fill="rgb(238,179,54)" rx="2" ry="2" />
<text text-anchor="" x="311.00" y="91.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.03%)</title><rect x="275.3" y="289" width="0.4" height="15.0" fill="rgb(232,142,28)" rx="2" ry="2" />
<text text-anchor="" x="278.33" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_read_tsc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_read_tsc (1 samples, 0.03%)</title><rect x="761.3" y="513" width="0.4" height="15.0" fill="rgb(214,158,50)" rx="2" ry="2" />
<text text-anchor="" x="764.33" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::AwakableList::AwakeForStateChange (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::AwakableList::AwakeForStateChange (2 samples, 0.06%)</title><rect x="571.7" y="529" width="0.6" height="15.0" fill="rgb(228,90,28)" rx="2" ry="2" />
<text text-anchor="" x="574.67" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('malloc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>malloc (1 samples, 0.03%)</title><rect x="955.3" y="401" width="0.4" height="15.0" fill="rgb(221,180,6)" rx="2" ry="2" />
<text text-anchor="" x="958.33" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::Run (75 samples, 2.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::Run (75 samples, 2.12%)</title><rect x="548.7" y="705" width="25.0" height="15.0" fill="rgb(210,180,20)" rx="2" ry="2" />
<text text-anchor="" x="551.67" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >b..</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::HandleTable::GetDispatcher (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::HandleTable::GetDispatcher (1 samples, 0.03%)</title><rect x="568.0" y="545" width="0.3" height="15.0" fill="rgb(243,113,16)" rx="2" ry="2" />
<text text-anchor="" x="571.00" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::ChannelMojo::ReadFromMessageAttachmentSet (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelMojo::ReadFromMessageAttachmentSet (3 samples, 0.08%)</title><rect x="813.0" y="577" width="1.0" height="15.0" fill="rgb(213,62,8)" rx="2" ry="2" />
<text text-anchor="" x="816.00" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('event_base_loop (1,482 samples, 41.86%)')" onmouseout="c()" onclick="zoom(this)">
<title>event_base_loop (1,482 samples, 41.86%)</title><rect x="696.0" y="769" width="494.0" height="15.0" fill="rgb(228,133,47)" rx="2" ry="2" />
<text text-anchor="" x="699.00" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >event_base_loop</text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::Release (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (3 samples, 0.08%)</title><rect x="1138.7" y="689" width="1.0" height="15.0" fill="rgb(217,184,34)" rx="2" ry="2" />
<text text-anchor="" x="1141.67" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('default_wake_function (6 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (6 samples, 0.17%)</title><rect x="559.0" y="129" width="2.0" height="15.0" fill="rgb(238,42,31)" rx="2" ry="2" />
<text text-anchor="" x="562.00" y="139.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.51%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::DoWork (18 samples, 0.51%)</title><rect x="61.0" y="769" width="6.0" height="15.0" fill="rgb(250,49,37)" rx="2" ry="2" />
<text text-anchor="" x="64.00" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::AwakableList::AwakeForStateChange (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::AwakableList::AwakeForStateChange (1 samples, 0.03%)</title><rect x="1025.0" y="545" width="0.3" height="15.0" fill="rgb(227,211,22)" rx="2" ry="2" />
<text text-anchor="" x="1028.00" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_mid_memalign (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_mid_memalign (1 samples, 0.03%)</title><rect x="243.0" y="481" width="0.3" height="15.0" fill="rgb(235,169,5)" rx="2" ry="2" />
<text text-anchor="" x="246.00" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('hrtimer_interrupt (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (2 samples, 0.06%)</title><rect x="141.0" y="577" width="0.7" height="15.0" fill="rgb(233,208,10)" rx="2" ry="2" />
<text text-anchor="" x="144.00" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_stream_sendmsg (9 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_sendmsg (9 samples, 0.25%)</title><rect x="558.0" y="241" width="3.0" height="15.0" fill="rgb(225,66,27)" rx="2" ry="2" />
<text text-anchor="" x="561.00" y="251.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.03%)</title><rect x="780.7" y="753" width="0.3" height="15.0" fill="rgb(244,37,53)" rx="2" ry="2" />
<text text-anchor="" x="783.67" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::OnReadMessage (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::OnReadMessage (1 samples, 0.03%)</title><rect x="515.7" y="657" width="0.3" height="15.0" fill="rgb(240,194,36)" rx="2" ry="2" />
<text text-anchor="" x="518.67" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (2 samples, 0.06%)</title><rect x="550.0" y="641" width="0.7" height="15.0" fill="rgb(206,137,49)" rx="2" ry="2" />
<text text-anchor="" x="553.00" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_after_swapgs (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_after_swapgs (5 samples, 0.14%)</title><rect x="715.7" y="737" width="1.6" height="15.0" fill="rgb(227,220,17)" rx="2" ry="2" />
<text text-anchor="" x="718.67" y="747.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (1 samples, 0.03%)</title><rect x="167.7" y="577" width="0.3" height="15.0" fill="rgb(251,208,26)" rx="2" ry="2" />
<text text-anchor="" x="170.67" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::Message::Message (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::Message::Message (3 samples, 0.08%)</title><rect x="563.7" y="529" width="1.0" height="15.0" fill="rgb(208,32,43)" rx="2" ry="2" />
<text text-anchor="" x="566.67" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::WriteMessage (22 samples, 0.62%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::WriteMessage (22 samples, 0.62%)</title><rect x="555.3" y="385" width="7.4" height="15.0" fill="rgb(246,211,29)" rx="2" ry="2" />
<text text-anchor="" x="558.33" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('auditsys (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>auditsys (3 samples, 0.08%)</title><rect x="250.3" y="401" width="1.0" height="15.0" fill="rgb(210,38,40)" rx="2" ry="2" />
<text text-anchor="" x="253.33" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('Pickle::Pickle (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>Pickle::Pickle (5 samples, 0.14%)</title><rect x="980.7" y="593" width="1.6" height="15.0" fill="rgb(230,190,35)" rx="2" ry="2" />
<text text-anchor="" x="983.67" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('malloc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>malloc (1 samples, 0.03%)</title><rect x="821.3" y="513" width="0.4" height="15.0" fill="rgb(232,43,52)" rx="2" ry="2" />
<text text-anchor="" x="824.33" 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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.11%)</title><rect x="11.7" y="529" width="1.3" height="15.0" fill="rgb(241,34,28)" rx="2" ry="2" />
<text text-anchor="" x="14.67" y="539.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.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (2 samples, 0.06%)</title><rect x="1114.3" y="449" width="0.7" height="15.0" fill="rgb(224,32,7)" rx="2" ry="2" />
<text text-anchor="" x="1117.33" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_int_free (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (1 samples, 0.03%)</title><rect x="553.3" y="657" width="0.4" height="15.0" fill="rgb(237,154,29)" rx="2" ry="2" />
<text text-anchor="" x="556.33" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (171 samples, 4.83%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (171 samples, 4.83%)</title><rect x="428.0" y="721" width="57.0" height="15.0" fill="rgb(254,55,45)" rx="2" ry="2" />
<text text-anchor="" x="431.00" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::..</text>
</g>
<g class="func_g" onmouseover="s('current_kernel_time (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>current_kernel_time (2 samples, 0.06%)</title><rect x="705.7" y="705" width="0.6" height="15.0" fill="rgb(238,126,48)" rx="2" ry="2" />
<text text-anchor="" x="708.67" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_recvmsg_handler (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg_handler (2 samples, 0.06%)</title><rect x="449.0" y="561" width="0.7" height="15.0" fill="rgb(242,130,32)" rx="2" ry="2" />
<text text-anchor="" x="452.00" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_audit (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_audit (2 samples, 0.06%)</title><rect x="550.0" y="657" width="0.7" height="15.0" fill="rgb(251,192,49)" rx="2" ry="2" />
<text text-anchor="" x="553.00" y="667.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_reserve.isra.27 (1 samples, 0.03%)</title><rect x="289.3" y="289" width="0.4" height="15.0" fill="rgb(221,215,25)" rx="2" ry="2" />
<text text-anchor="" x="292.33" y="299.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_execve (4 samples, 0.11%)</title><rect x="10.0" y="849" width="1.3" height="15.0" fill="rgb(216,172,45)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ObserverListBasemojo::common::MessagePumpMojo::Observer::Iterator::~Iterator (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>ObserverListBasemojo::common::MessagePumpMojo::Observer::Iterator::~Iterator (5 samples, 0.14%)</title><rect x="402.0" y="721" width="1.7" height="15.0" fill="rgb(208,220,5)" rx="2" ry="2" />
<text text-anchor="" x="405.00" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('shift_arg_pages (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>shift_arg_pages (1 samples, 0.03%)</title><rect x="22.3" y="769" width="0.4" height="15.0" fill="rgb(234,191,28)" rx="2" ry="2" />
<text text-anchor="" x="25.33" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Core::ReadMessage (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Core::ReadMessage (3 samples, 0.08%)</title><rect x="1043.3" y="641" width="1.0" height="15.0" fill="rgb(213,172,53)" rx="2" ry="2" />
<text text-anchor="" x="1046.33" y="651.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>unroll_tree_refs (1 samples, 0.03%)</title><rect x="556.7" y="289" width="0.3" height="15.0" fill="rgb(254,75,14)" rx="2" ry="2" />
<text text-anchor="" x="559.67" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::MessagePipeReader::OnMessageReceived (629 samples, 17.77%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::MessagePipeReader::OnMessageReceived (629 samples, 17.77%)</title><rect x="803.3" y="657" width="209.7" height="15.0" fill="rgb(252,146,23)" rx="2" ry="2" />
<text text-anchor="" x="806.33" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IPC::internal::MessagePipeR..</text>
</g>
<g class="func_g" onmouseover="s('aa_revalidate_sk (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>aa_revalidate_sk (1 samples, 0.03%)</title><rect x="569.3" y="513" width="0.4" height="15.0" fill="rgb(238,0,54)" rx="2" ry="2" />
<text text-anchor="" x="572.33" y="523.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (1 samples, 0.03%)</title><rect x="156.3" y="577" width="0.4" height="15.0" fill="rgb(232,145,19)" rx="2" ry="2" />
<text text-anchor="" x="159.33" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::WeakReference::is_valid (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReference::is_valid (4 samples, 0.11%)</title><rect x="403.7" y="721" width="1.3" height="15.0" fill="rgb(205,165,4)" rx="2" ry="2" />
<text text-anchor="" x="406.67" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::test::ChannelReflectorListener::OnMessageReceived (395 samples, 11.16%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::test::ChannelReflectorListener::OnMessageReceived (395 samples, 11.16%)</title><rect x="225.0" y="625" width="131.7" height="15.0" fill="rgb(207,66,41)" rx="2" ry="2" />
<text text-anchor="" x="228.00" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IPC::test::Chann..</text>
</g>
<g class="func_g" onmouseover="s('epoll_dispatch (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>epoll_dispatch (1 samples, 0.03%)</title><rect x="572.7" y="673" width="0.3" height="15.0" fill="rgb(206,69,39)" rx="2" ry="2" />
<text text-anchor="" x="575.67" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (3 samples, 0.08%)</title><rect x="336.7" y="465" width="1.0" height="15.0" fill="rgb(249,197,23)" rx="2" ry="2" />
<text text-anchor="" x="339.67" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::Run (1,559 samples, 44.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::Run (1,559 samples, 44.04%)</title><rect x="670.3" y="785" width="519.7" height="15.0" fill="rgb(219,12,40)" rx="2" ry="2" />
<text text-anchor="" x="673.33" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::MessagePumpLibevent::Run</text>
</g>
<g class="func_g" onmouseover="s('update_curr (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (1 samples, 0.03%)</title><rect x="560.7" y="49" width="0.3" height="15.0" fill="rgb(222,62,7)" rx="2" ry="2" />
<text text-anchor="" x="563.67" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (22 samples, 0.62%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (22 samples, 0.62%)</title><rect x="707.0" y="721" width="7.3" height="15.0" fill="rgb(241,105,38)" rx="2" ry="2" />
<text text-anchor="" x="710.00" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('testing::Test::Run (1,560 samples, 44.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>testing::Test::Run (1,560 samples, 44.07%)</title><rect x="670.0" y="849" width="520.0" height="15.0" fill="rgb(249,177,21)" rx="2" ry="2" />
<text text-anchor="" x="673.00" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >testing::Test::Run</text>
</g>
<g class="func_g" onmouseover="s('place_entity (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>place_entity (3 samples, 0.08%)</title><rect x="922.3" y="97" width="1.0" height="15.0" fill="rgb(230,9,51)" rx="2" ry="2" />
<text text-anchor="" x="925.33" y="107.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.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_min_vruntime (2 samples, 0.06%)</title><rect x="755.0" y="545" width="0.7" height="15.0" fill="rgb(208,74,7)" rx="2" ry="2" />
<text text-anchor="" x="758.00" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('enqueue_task_fair (63 samples, 1.78%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (63 samples, 1.78%)</title><rect x="910.0" y="129" width="21.0" height="15.0" fill="rgb(206,138,42)" rx="2" ry="2" />
<text text-anchor="" x="913.00" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('auditsys (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>auditsys (4 samples, 0.11%)</title><rect x="1079.3" y="689" width="1.4" height="15.0" fill="rgb(216,138,36)" rx="2" ry="2" />
<text text-anchor="" x="1082.33" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_cfs_shares (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (2 samples, 0.06%)</title><rect x="155.7" y="593" width="0.6" height="15.0" fill="rgb(247,197,52)" rx="2" ry="2" />
<text text-anchor="" x="158.67" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (8 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (8 samples, 0.23%)</title><rect x="22.7" y="849" width="2.6" height="15.0" fill="rgb(207,124,16)" rx="2" ry="2" />
<text text-anchor="" x="25.67" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_recvmsg (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_recvmsg (3 samples, 0.08%)</title><rect x="569.3" y="593" width="1.0" height="15.0" fill="rgb(245,61,44)" rx="2" ry="2" />
<text text-anchor="" x="572.33" y="603.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (1 samples, 0.03%)</title><rect x="311.3" y="113" width="0.4" height="15.0" fill="rgb(208,67,13)" rx="2" ry="2" />
<text text-anchor="" x="314.33" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::OnReadCompleted (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::OnReadCompleted (1 samples, 0.03%)</title><rect x="426.3" y="737" width="0.4" height="15.0" fill="rgb(220,179,48)" rx="2" ry="2" />
<text text-anchor="" x="429.33" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_free_head (9 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_free_head (9 samples, 0.25%)</title><rect x="1105.0" y="545" width="3.0" height="15.0" fill="rgb(227,229,51)" rx="2" ry="2" />
<text text-anchor="" x="1108.00" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_send_events_proc (18 samples, 0.51%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_send_events_proc (18 samples, 0.51%)</title><rect x="733.7" y="673" width="6.0" height="15.0" fill="rgb(209,190,8)" rx="2" ry="2" />
<text text-anchor="" x="736.67" y="683.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_disable (1 samples, 0.03%)</title><rect x="552.0" y="497" width="0.3" height="15.0" fill="rgb(252,69,42)" rx="2" ry="2" />
<text text-anchor="" x="555.00" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_sync_write (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_sync_write (1 samples, 0.03%)</title><rect x="258.7" y="369" width="0.3" height="15.0" fill="rgb(241,167,54)" rx="2" ry="2" />
<text text-anchor="" x="261.67" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('activate_task (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (3 samples, 0.08%)</title><rect x="559.0" y="81" width="1.0" height="15.0" fill="rgb(254,44,6)" rx="2" ry="2" />
<text text-anchor="" x="562.00" y="91.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (1 samples, 0.03%)</title><rect x="460.3" y="465" width="0.4" height="15.0" fill="rgb(253,183,9)" rx="2" ry="2" />
<text text-anchor="" x="463.33" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (18 samples, 0.51%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (18 samples, 0.51%)</title><rect x="252.3" y="385" width="6.0" height="15.0" fill="rgb(231,31,31)" rx="2" ry="2" />
<text text-anchor="" x="255.33" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_cfs_shares (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (2 samples, 0.06%)</title><rect x="307.7" y="97" width="0.6" height="15.0" fill="rgb(227,105,33)" rx="2" ry="2" />
<text text-anchor="" x="310.67" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('finish_task_switch (10 samples, 0.28%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (10 samples, 0.28%)</title><rect x="157.7" y="625" width="3.3" height="15.0" fill="rgb(227,132,52)" rx="2" ry="2" />
<text text-anchor="" x="160.67" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::CallbackBase::~CallbackBase (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::CallbackBase::~CallbackBase (1 samples, 0.03%)</title><rect x="1045.7" y="673" width="0.3" height="15.0" fill="rgb(230,227,13)" rx="2" ry="2" />
<text text-anchor="" x="1048.67" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__libc_enable_asynccancel (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_enable_asynccancel (5 samples, 0.14%)</title><rect x="190.0" y="753" width="1.7" height="15.0" fill="rgb(248,65,10)" rx="2" ry="2" />
<text text-anchor="" x="193.00" y="763.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.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>fget_light (5 samples, 0.14%)</title><rect x="860.7" y="369" width="1.6" height="15.0" fill="rgb(230,127,25)" rx="2" ry="2" />
<text text-anchor="" x="863.67" 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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZNSs9_M_mutateEmmm@plt (1 samples, 0.03%)</title><rect x="17.3" y="849" width="0.4" height="15.0" fill="rgb(239,184,24)" rx="2" ry="2" />
<text text-anchor="" x="20.33" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('smp_apic_timer_interrupt (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (2 samples, 0.06%)</title><rect x="141.0" y="609" width="0.7" height="15.0" fill="rgb(252,223,2)" rx="2" ry="2" />
<text text-anchor="" x="144.00" y="619.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::Message::~Message (1 samples, 0.03%)</title><rect x="811.7" y="593" width="0.3" height="15.0" fill="rgb(206,16,5)" rx="2" ry="2" />
<text text-anchor="" x="814.67" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('epoll_dispatch (12 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>epoll_dispatch (12 samples, 0.34%)</title><rect x="536.3" y="753" width="4.0" height="15.0" fill="rgb(221,187,47)" rx="2" ry="2" />
<text text-anchor="" x="539.33" y="763.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 (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::string::_Rep::_M_destroy (2 samples, 0.06%)</title><rect x="1000.3" y="625" width="0.7" height="15.0" fill="rgb(248,210,35)" rx="2" ry="2" />
<text text-anchor="" x="1003.33" y="635.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.11%)</title><rect x="10.0" y="689" width="1.3" height="15.0" fill="rgb(238,167,46)" 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('mojo::system::Channel::OnReadMessage (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::OnReadMessage (4 samples, 0.11%)</title><rect x="485.0" y="721" width="1.3" height="15.0" fill="rgb(235,92,42)" rx="2" ry="2" />
<text text-anchor="" x="488.00" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_page_fault (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_page_fault (1 samples, 0.03%)</title><rect x="11.3" y="593" width="0.4" height="15.0" fill="rgb(220,95,12)" rx="2" ry="2" />
<text text-anchor="" x="14.33" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_getspecific (9 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_getspecific (9 samples, 0.25%)</title><rect x="1162.0" y="577" width="3.0" height="15.0" fill="rgb(230,221,23)" rx="2" ry="2" />
<text text-anchor="" x="1165.00" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::ReadMessage (10 samples, 0.28%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::ReadMessage (10 samples, 0.28%)</title><rect x="1023.3" y="561" width="3.4" height="15.0" fill="rgb(254,32,26)" rx="2" ry="2" />
<text text-anchor="" x="1026.33" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ProxyMessagePipeEndpoint::EnqueueMessage (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ProxyMessagePipeEndpoint::EnqueueMessage (1 samples, 0.03%)</title><rect x="969.0" y="513" width="0.3" height="15.0" fill="rgb(209,228,4)" rx="2" ry="2" />
<text text-anchor="" x="972.00" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (2 samples, 0.06%)</title><rect x="1032.7" y="609" width="0.6" height="15.0" fill="rgb(251,132,27)" rx="2" ry="2" />
<text text-anchor="" x="1035.67" y="619.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (1 samples, 0.03%)</title><rect x="32.3" y="721" width="0.4" height="15.0" fill="rgb(248,186,41)" rx="2" ry="2" />
<text text-anchor="" x="35.33" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('default_wake_function (56 samples, 1.58%)')" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (56 samples, 1.58%)</title><rect x="297.7" y="209" width="18.6" height="15.0" fill="rgb(247,94,37)" rx="2" ry="2" />
<text text-anchor="" x="300.67" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_poll (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_poll (5 samples, 0.14%)</title><rect x="124.7" y="657" width="1.6" height="15.0" fill="rgb(229,108,5)" rx="2" ry="2" />
<text text-anchor="" x="127.67" 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 (73 samples, 2.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (73 samples, 2.06%)</title><rect x="293.3" y="273" width="24.4" height="15.0" fill="rgb(232,162,54)" rx="2" ry="2" />
<text text-anchor="" x="296.33" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s('rb_erase (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>rb_erase (3 samples, 0.08%)</title><rect x="170.7" y="609" width="1.0" height="15.0" fill="rgb(217,23,27)" rx="2" ry="2" />
<text text-anchor="" x="173.67" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (223 samples, 6.30%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (223 samples, 6.30%)</title><rect x="250.3" y="417" width="74.4" height="15.0" fill="rgb(225,18,19)" rx="2" ry="2" />
<text text-anchor="" x="253.33" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s('mojo::embedder::PlatformChannelWrite (6 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::embedder::PlatformChannelWrite (6 samples, 0.17%)</title><rect x="952.0" y="417" width="2.0" height="15.0" fill="rgb(219,60,24)" rx="2" ry="2" />
<text text-anchor="" x="955.00" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::WriteMessage (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::WriteMessage (3 samples, 0.08%)</title><rect x="820.0" y="529" width="1.0" height="15.0" fill="rgb(237,95,26)" rx="2" ry="2" />
<text text-anchor="" x="823.00" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('try_to_wake_up (54 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (54 samples, 1.53%)</title><rect x="298.0" y="193" width="18.0" height="15.0" fill="rgb(235,125,21)" rx="2" ry="2" />
<text text-anchor="" x="301.00" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('common_file_perm (7 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (7 samples, 0.20%)</title><rect x="322.0" y="305" width="2.3" height="15.0" fill="rgb(205,88,2)" rx="2" ry="2" />
<text text-anchor="" x="325.00" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_recvmsg (85 samples, 2.40%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (85 samples, 2.40%)</title><rect x="441.0" y="625" width="28.3" height="15.0" fill="rgb(239,101,36)" rx="2" ry="2" />
<text text-anchor="" x="444.00" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >so..</text>
</g>
<g class="func_g" onmouseover="s('skb_release_all (20 samples, 0.56%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_all (20 samples, 0.56%)</title><rect x="455.0" y="577" width="6.7" height="15.0" fill="rgb(211,56,31)" rx="2" ry="2" />
<text text-anchor="" x="458.00" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_rotate_start.isra.39 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_rotate_start.isra.39 (1 samples, 0.03%)</title><rect x="28.7" y="769" width="0.3" height="15.0" fill="rgb(206,41,11)" rx="2" ry="2" />
<text text-anchor="" x="31.67" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('consume_skb (47 samples, 1.33%)')" onmouseout="c()" onclick="zoom(this)">
<title>consume_skb (47 samples, 1.33%)</title><rect x="1103.3" y="593" width="15.7" height="15.0" fill="rgb(223,144,38)" rx="2" ry="2" />
<text text-anchor="" x="1106.33" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_read_tsc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_read_tsc (1 samples, 0.03%)</title><rect x="141.3" y="497" width="0.4" height="15.0" fill="rgb(216,185,12)" rx="2" ry="2" />
<text text-anchor="" x="144.33" 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@plt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock@plt (1 samples, 0.03%)</title><rect x="335.7" y="449" width="0.3" height="15.0" fill="rgb(220,91,45)" rx="2" ry="2" />
<text text-anchor="" x="338.67" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_aio_write (222 samples, 6.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_aio_write (222 samples, 6.27%)</title><rect x="869.7" y="337" width="74.0" height="15.0" fill="rgb(215,109,32)" rx="2" ry="2" />
<text text-anchor="" x="872.67" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sock_aio..</text>
</g>
<g class="func_g" onmouseover="s('__run_hrtimer (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__run_hrtimer (1 samples, 0.03%)</title><rect x="141.0" y="561" width="0.3" height="15.0" fill="rgb(249,143,5)" rx="2" ry="2" />
<text text-anchor="" x="144.00" y="571.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_poll (4 samples, 0.11%)</title><rect x="738.3" y="657" width="1.4" height="15.0" fill="rgb(222,155,28)" rx="2" ry="2" />
<text text-anchor="" x="741.33" 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 (15 samples, 0.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_task_sched_out (15 samples, 0.42%)</title><rect x="29.0" y="817" width="5.0" height="15.0" fill="rgb(220,92,46)" rx="2" ry="2" />
<text text-anchor="" x="32.00" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('try_to_wake_up (108 samples, 3.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (108 samples, 3.05%)</title><rect x="903.7" y="193" width="36.0" height="15.0" fill="rgb(251,56,19)" rx="2" ry="2" />
<text text-anchor="" x="906.67" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >try..</text>
</g>
<g class="func_g" onmouseover="s('ctx_sched_out (6 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>ctx_sched_out (6 samples, 0.17%)</title><rect x="31.7" y="785" width="2.0" height="15.0" fill="rgb(247,133,31)" rx="2" ry="2" />
<text text-anchor="" x="34.67" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_stream_sendmsg (158 samples, 4.46%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_sendmsg (158 samples, 4.46%)</title><rect x="266.0" y="321" width="52.7" height="15.0" fill="rgb(236,53,31)" rx="2" ry="2" />
<text text-anchor="" x="269.00" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >unix_..</text>
</g>
<g class="func_g" onmouseover="s('base::internal::IncomingTaskQueue::ReloadWorkQueue (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::IncomingTaskQueue::ReloadWorkQueue (2 samples, 0.06%)</title><rect x="68.3" y="769" width="0.7" height="15.0" fill="rgb(240,162,43)" rx="2" ry="2" />
<text text-anchor="" x="71.33" y="779.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.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (8 samples, 0.23%)</title><rect x="923.7" y="97" width="2.6" height="15.0" fill="rgb(230,200,17)" rx="2" ry="2" />
<text text-anchor="" x="926.67" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::SparseHistogram::GetCountAndBucketData (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::SparseHistogram::GetCountAndBucketData (1 samples, 0.03%)</title><rect x="1158.7" y="561" width="0.3" height="15.0" fill="rgb(251,59,17)" rx="2" ry="2" />
<text text-anchor="" x="1161.67" 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_irqsave (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (2 samples, 0.06%)</title><rect x="1116.0" y="481" width="0.7" height="15.0" fill="rgb(215,169,9)" rx="2" ry="2" />
<text text-anchor="" x="1119.00" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator new (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (2 samples, 0.06%)</title><rect x="399.7" y="673" width="0.6" height="15.0" fill="rgb(224,171,53)" rx="2" ry="2" />
<text text-anchor="" x="402.67" y="683.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (1 samples, 0.03%)</title><rect x="768.7" y="641" width="0.3" height="15.0" fill="rgb(209,69,48)" rx="2" ry="2" />
<text text-anchor="" x="771.67" y="651.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 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_task_sched_out (1 samples, 0.03%)</title><rect x="552.0" y="545" width="0.3" height="15.0" fill="rgb(218,9,10)" rx="2" ry="2" />
<text text-anchor="" x="555.00" y="555.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 (15 samples, 0.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_out (15 samples, 0.42%)</title><rect x="759.0" y="609" width="5.0" height="15.0" fill="rgb(206,123,14)" rx="2" ry="2" />
<text text-anchor="" x="762.00" y="619.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_inodes (1 samples, 0.03%)</title><rect x="98.0" y="721" width="0.3" height="15.0" fill="rgb(220,116,47)" rx="2" ry="2" />
<text text-anchor="" x="101.00" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_disable (7 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_disable (7 samples, 0.20%)</title><rect x="761.7" y="577" width="2.3" height="15.0" fill="rgb(253,117,18)" rx="2" ry="2" />
<text text-anchor="" x="764.67" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::AddRef (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (4 samples, 0.11%)</title><rect x="203.3" y="657" width="1.4" height="15.0" fill="rgb(222,70,13)" rx="2" ry="2" />
<text text-anchor="" x="206.33" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Core::ReadMessage (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Core::ReadMessage (3 samples, 0.08%)</title><rect x="567.0" y="545" width="1.0" height="15.0" fill="rgb(208,192,37)" rx="2" ry="2" />
<text text-anchor="" x="570.00" y="555.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (4 samples, 0.11%)</title><rect x="547.3" y="529" width="1.4" height="15.0" fill="rgb(233,106,33)" rx="2" ry="2" />
<text text-anchor="" x="550.33" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('memcpy_toiovec (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>memcpy_toiovec (1 samples, 0.03%)</title><rect x="1119.0" y="593" width="0.3" height="15.0" fill="rgb(207,80,25)" rx="2" ry="2" />
<text text-anchor="" x="1122.00" y="603.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.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (7 samples, 0.20%)</title><rect x="847.0" y="385" width="2.3" height="15.0" fill="rgb(245,227,31)" rx="2" ry="2" />
<text text-anchor="" x="850.00" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::WriteMessage (396 samples, 11.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::WriteMessage (396 samples, 11.19%)</title><rect x="832.7" y="465" width="132.0" height="15.0" fill="rgb(244,194,33)" rx="2" ry="2" />
<text text-anchor="" x="835.67" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::system::Ch..</text>
</g>
<g class="func_g" onmouseover="s('__libc_write (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_write (5 samples, 0.14%)</title><rect x="324.7" y="417" width="1.6" height="15.0" fill="rgb(245,60,40)" rx="2" ry="2" />
<text text-anchor="" x="327.67" 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 (10 samples, 0.28%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (10 samples, 0.28%)</title><rect x="1037.0" y="625" width="3.3" height="15.0" fill="rgb(228,177,43)" rx="2" ry="2" />
<text text-anchor="" x="1040.00" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::ChannelMojo::WriteToMessageAttachmentSet (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelMojo::WriteToMessageAttachmentSet (1 samples, 0.03%)</title><rect x="802.7" y="657" width="0.3" height="15.0" fill="rgb(227,134,42)" rx="2" ry="2" />
<text text-anchor="" x="805.67" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('std::string::compare (7 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::string::compare (7 samples, 0.20%)</title><rect x="1001.0" y="625" width="2.3" height="15.0" fill="rgb(231,41,8)" rx="2" ry="2" />
<text text-anchor="" x="1004.00" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::Run (1,527 samples, 43.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::Run (1,527 samples, 43.14%)</title><rect x="38.3" y="817" width="509.0" height="15.0" fill="rgb(212,65,24)" rx="2" ry="2" />
<text text-anchor="" x="41.33" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::MessageLoop::Run</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::AddAwakable (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::AddAwakable (2 samples, 0.06%)</title><rect x="554.0" y="545" width="0.7" height="15.0" fill="rgb(235,118,53)" rx="2" ry="2" />
<text text-anchor="" x="557.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::WillProcessIOEvent (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::WillProcessIOEvent (1 samples, 0.03%)</title><rect x="568.7" y="657" width="0.3" height="15.0" fill="rgb(232,143,36)" rx="2" ry="2" />
<text text-anchor="" x="571.67" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (10 samples, 0.28%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (10 samples, 0.28%)</title><rect x="63.0" y="753" width="3.3" height="15.0" fill="rgb(254,213,0)" rx="2" ry="2" />
<text text-anchor="" x="66.00" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_audit (9 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_audit (9 samples, 0.25%)</title><rect x="1081.3" y="689" width="3.0" height="15.0" fill="rgb(216,171,3)" rx="2" ry="2" />
<text text-anchor="" x="1084.33" y="699.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 (7 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (7 samples, 0.20%)</title><rect x="158.7" y="609" width="2.3" height="15.0" fill="rgb(235,182,24)" rx="2" ry="2" />
<text text-anchor="" x="161.67" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__alloc_skb (29 samples, 0.82%)')" onmouseout="c()" onclick="zoom(this)">
<title>__alloc_skb (29 samples, 0.82%)</title><rect x="279.7" y="289" width="9.6" height="15.0" fill="rgb(220,36,46)" rx="2" ry="2" />
<text text-anchor="" x="282.67" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipeDispatcher::ReadMessageImplNoLock (28 samples, 0.79%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipeDispatcher::ReadMessageImplNoLock (28 samples, 0.79%)</title><rect x="1021.0" y="593" width="9.3" height="15.0" fill="rgb(243,124,51)" rx="2" ry="2" />
<text text-anchor="" x="1024.00" y="603.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (4 samples, 0.11%)</title><rect x="10.0" y="721" width="1.3" height="15.0" fill="rgb(243,83,48)" 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('std::__detail::_List_node_base::_M_unhook (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_List_node_base::_M_unhook (3 samples, 0.08%)</title><rect x="1165.3" y="609" width="1.0" height="15.0" fill="rgb(247,85,5)" rx="2" ry="2" />
<text text-anchor="" x="1168.33" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::HandleTable::GetDispatcher (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::HandleTable::GetDispatcher (3 samples, 0.08%)</title><rect x="974.0" y="561" width="1.0" height="15.0" fill="rgb(229,68,45)" rx="2" ry="2" />
<text text-anchor="" x="977.00" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::MessagePipeReader::ReadAvailableMessages (41 samples, 1.16%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::MessagePipeReader::ReadAvailableMessages (41 samples, 1.16%)</title><rect x="555.0" y="593" width="13.7" height="15.0" fill="rgb(249,92,26)" rx="2" ry="2" />
<text text-anchor="" x="558.00" y="603.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (1 samples, 0.03%)</title><rect x="907.7" y="177" width="0.3" height="15.0" fill="rgb(208,98,5)" rx="2" ry="2" />
<text text-anchor="" x="910.67" y="187.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 (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::string::_M_replace_safe (2 samples, 0.06%)</title><rect x="993.0" y="609" width="0.7" height="15.0" fill="rgb(236,60,30)" rx="2" ry="2" />
<text text-anchor="" x="996.00" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('security_socket_recvmsg (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_recvmsg (5 samples, 0.14%)</title><rect x="449.7" y="609" width="1.6" height="15.0" fill="rgb(242,167,6)" rx="2" ry="2" />
<text text-anchor="" x="452.67" y="619.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_stats_wait_end (1 samples, 0.03%)</title><rect x="175.7" y="609" width="0.3" height="15.0" fill="rgb(230,139,4)" rx="2" ry="2" />
<text text-anchor="" x="178.67" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Core::ReadMessage (47 samples, 1.33%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Core::ReadMessage (47 samples, 1.33%)</title><rect x="370.3" y="625" width="15.7" height="15.0" fill="rgb(223,206,30)" rx="2" ry="2" />
<text text-anchor="" x="373.33" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::EnqueueMessage (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::EnqueueMessage (2 samples, 0.06%)</title><rect x="571.7" y="545" width="0.6" height="15.0" fill="rgb(244,68,20)" rx="2" ry="2" />
<text text-anchor="" x="574.67" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pthread_disable_asynccancel (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_disable_asynccancel (1 samples, 0.03%)</title><rect x="478.3" y="705" width="0.4" height="15.0" fill="rgb(211,223,27)" rx="2" ry="2" />
<text text-anchor="" x="481.33" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (2 samples, 0.06%)</title><rect x="66.3" y="753" width="0.7" height="15.0" fill="rgb(251,24,28)" rx="2" ry="2" />
<text text-anchor="" x="69.33" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dput (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>dput (2 samples, 0.06%)</title><rect x="713.0" y="705" width="0.7" height="15.0" fill="rgb(226,201,34)" rx="2" ry="2" />
<text text-anchor="" x="716.00" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::embedder::PlatformChannelWrite (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::embedder::PlatformChannelWrite (2 samples, 0.06%)</title><rect x="328.3" y="417" width="0.7" height="15.0" fill="rgb(228,227,47)" rx="2" ry="2" />
<text text-anchor="" x="331.33" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::WeakReferenceOwner::GetRef (6 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReferenceOwner::GetRef (6 samples, 0.17%)</title><rect x="1184.7" y="753" width="2.0" height="15.0" fill="rgb(219,29,24)" rx="2" ry="2" />
<text text-anchor="" x="1187.67" y="763.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.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::Message::Message (11 samples, 0.31%)</title><rect x="979.0" y="609" width="3.7" height="15.0" fill="rgb(206,197,43)" rx="2" ry="2" />
<text text-anchor="" x="982.00" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::AddRef (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (5 samples, 0.14%)</title><rect x="1014.3" y="625" width="1.7" height="15.0" fill="rgb(243,208,40)" rx="2" ry="2" />
<text text-anchor="" x="1017.33" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (8 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (8 samples, 0.23%)</title><rect x="382.7" y="609" width="2.6" height="15.0" fill="rgb(225,132,25)" rx="2" ry="2" />
<text text-anchor="" x="385.67" 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_in (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (4 samples, 0.11%)</title><rect x="11.7" y="577" width="1.3" height="15.0" fill="rgb(227,183,9)" rx="2" ry="2" />
<text text-anchor="" x="14.67" 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.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.14%)</title><rect x="11.3" y="753" width="1.7" height="15.0" fill="rgb(251,50,9)" rx="2" ry="2" />
<text text-anchor="" x="14.33" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kprobe_ftrace_handler (9 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>kprobe_ftrace_handler (9 samples, 0.25%)</title><rect x="446.7" y="577" width="3.0" height="15.0" fill="rgb(211,0,53)" rx="2" ry="2" />
<text text-anchor="" x="449.67" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_write (270 samples, 7.63%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (270 samples, 7.63%)</title><rect x="859.3" y="385" width="90.0" height="15.0" fill="rgb(211,193,9)" rx="2" ry="2" />
<text text-anchor="" x="862.33" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys_write</text>
</g>
<g class="func_g" onmouseover="s('current_kernel_time (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>current_kernel_time (4 samples, 0.11%)</title><rect x="848.0" y="369" width="1.3" height="15.0" fill="rgb(220,141,37)" rx="2" ry="2" />
<text text-anchor="" x="851.00" 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 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (1 samples, 0.03%)</title><rect x="847.7" y="369" width="0.3" height="15.0" fill="rgb(244,53,17)" rx="2" ry="2" />
<text text-anchor="" x="850.67" 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 (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (2 samples, 0.06%)</title><rect x="311.7" y="113" width="0.6" height="15.0" fill="rgb(234,6,0)" rx="2" ry="2" />
<text text-anchor="" x="314.67" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (12 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (12 samples, 0.34%)</title><rect x="41.0" y="769" width="4.0" height="15.0" fill="rgb(236,77,4)" rx="2" ry="2" />
<text text-anchor="" x="44.00" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_release_data (10 samples, 0.28%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_data (10 samples, 0.28%)</title><rect x="1104.7" y="561" width="3.3" height="15.0" fill="rgb(225,16,26)" rx="2" ry="2" />
<text text-anchor="" x="1107.67" y="571.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (1 samples, 0.03%)</title><rect x="761.3" y="529" width="0.4" height="15.0" fill="rgb(233,174,30)" rx="2" ry="2" />
<text text-anchor="" x="764.33" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_regs_call (19 samples, 0.54%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_regs_call (19 samples, 0.54%)</title><rect x="443.3" y="609" width="6.4" height="15.0" fill="rgb(208,221,7)" rx="2" ry="2" />
<text text-anchor="" x="446.33" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__clock_gettime (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__clock_gettime (1 samples, 0.03%)</title><rect x="565.0" y="529" width="0.3" height="15.0" fill="rgb(224,57,3)" rx="2" ry="2" />
<text text-anchor="" x="568.00" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator new (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (1 samples, 0.03%)</title><rect x="796.0" y="593" width="0.3" height="15.0" fill="rgb(205,208,47)" rx="2" ry="2" />
<text text-anchor="" x="799.00" y="603.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.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock (2 samples, 0.06%)</title><rect x="1089.3" y="609" width="0.7" height="15.0" fill="rgb(208,45,14)" rx="2" ry="2" />
<text text-anchor="" x="1092.33" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_recvmsg (126 samples, 3.56%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_recvmsg (126 samples, 3.56%)</title><rect x="1085.3" y="673" width="42.0" height="15.0" fill="rgb(237,140,21)" rx="2" ry="2" />
<text text-anchor="" x="1088.33" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys..</text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::Release (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (1 samples, 0.03%)</title><rect x="572.0" y="481" width="0.3" height="15.0" fill="rgb(221,1,16)" rx="2" ry="2" />
<text text-anchor="" x="575.00" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (1 samples, 0.03%)</title><rect x="572.3" y="609" width="0.4" height="15.0" fill="rgb(239,171,51)" rx="2" ry="2" />
<text text-anchor="" x="575.33" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (1 samples, 0.03%)</title><rect x="342.0" y="561" width="0.3" height="15.0" fill="rgb(208,51,51)" rx="2" ry="2" />
<text text-anchor="" x="345.00" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('malloc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>malloc (1 samples, 0.03%)</title><rect x="1061.7" y="721" width="0.3" height="15.0" fill="rgb(205,177,46)" rx="2" ry="2" />
<text text-anchor="" x="1064.67" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree (1 samples, 0.03%)</title><rect x="570.0" y="449" width="0.3" height="15.0" fill="rgb(245,88,12)" rx="2" ry="2" />
<text text-anchor="" x="573.00" y="459.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>rb_next (1 samples, 0.03%)</title><rect x="767.3" y="593" width="0.4" height="15.0" fill="rgb(228,179,13)" rx="2" ry="2" />
<text text-anchor="" x="770.33" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (171 samples, 4.83%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (171 samples, 4.83%)</title><rect x="717.3" y="737" width="57.0" height="15.0" fill="rgb(238,117,4)" rx="2" ry="2" />
<text text-anchor="" x="720.33" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >system..</text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::MessagePipeReader::ReadMessagesThenWait (601 samples, 16.98%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::MessagePipeReader::ReadMessagesThenWait (601 samples, 16.98%)</title><rect x="200.0" y="689" width="200.3" height="15.0" fill="rgb(247,165,37)" rx="2" ry="2" />
<text text-anchor="" x="203.00" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IPC::internal::MessagePipe..</text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (2 samples, 0.06%)</title><rect x="1075.3" y="737" width="0.7" height="15.0" fill="rgb(251,10,4)" rx="2" ry="2" />
<text text-anchor="" x="1078.33" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::WeakPtrBase::WeakPtrBase (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakPtrBase::WeakPtrBase (1 samples, 0.03%)</title><rect x="414.7" y="737" width="0.3" height="15.0" fill="rgb(205,7,5)" rx="2" ry="2" />
<text text-anchor="" x="417.67" y="747.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_disable (1 samples, 0.03%)</title><rect x="168.3" y="593" width="0.4" height="15.0" fill="rgb(241,71,30)" rx="2" ry="2" />
<text text-anchor="" x="171.33" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_getspecific (9 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_getspecific (9 samples, 0.25%)</title><rect x="507.3" y="577" width="3.0" height="15.0" fill="rgb(219,90,44)" rx="2" ry="2" />
<text text-anchor="" x="510.33" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('event_base_loop (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>event_base_loop (1 samples, 0.03%)</title><rect x="547.0" y="785" width="0.3" height="15.0" fill="rgb(223,76,34)" rx="2" ry="2" />
<text text-anchor="" x="550.00" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_regs_call (13 samples, 0.37%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_regs_call (13 samples, 0.37%)</title><rect x="1091.3" y="609" width="4.4" height="15.0" fill="rgb(211,182,27)" rx="2" ry="2" />
<text text-anchor="" x="1094.33" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::WriteMessage (311 samples, 8.79%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::WriteMessage (311 samples, 8.79%)</title><rect x="235.7" y="513" width="103.6" height="15.0" fill="rgb(226,135,15)" rx="2" ry="2" />
<text text-anchor="" x="238.67" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::system..</text>
</g>
<g class="func_g" onmouseover="s('__srcu_read_unlock (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>__srcu_read_unlock (5 samples, 0.14%)</title><rect x="944.7" y="337" width="1.6" height="15.0" fill="rgb(253,49,40)" rx="2" ry="2" />
<text text-anchor="" x="947.67" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::AddAwakable (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::AddAwakable (2 samples, 0.06%)</title><rect x="209.3" y="609" width="0.7" height="15.0" fill="rgb(252,10,35)" rx="2" ry="2" />
<text text-anchor="" x="212.33" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('testing::TestCase::Run (1,560 samples, 44.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>testing::TestCase::Run (1,560 samples, 44.07%)</title><rect x="670.0" y="881" width="520.0" height="15.0" fill="rgb(252,179,1)" rx="2" ry="2" />
<text text-anchor="" x="673.00" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >testing::TestCase::Run</text>
</g>
<g class="func_g" onmouseover="s('read_tsc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>read_tsc (1 samples, 0.03%)</title><rect x="141.3" y="513" width="0.4" height="15.0" fill="rgb(244,40,28)" rx="2" ry="2" />
<text text-anchor="" x="144.33" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('PickleIterator::ReadStringPiece (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>PickleIterator::ReadStringPiece (2 samples, 0.06%)</title><rect x="359.0" y="625" width="0.7" height="15.0" fill="rgb(207,88,22)" rx="2" ry="2" />
<text text-anchor="" x="362.00" y="635.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::Message::Message (1 samples, 0.03%)</title><rect x="364.7" y="641" width="0.3" height="15.0" fill="rgb(216,110,32)" rx="2" ry="2" />
<text text-anchor="" x="367.67" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('std::string::compare (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::string::compare (1 samples, 0.03%)</title><rect x="669.7" y="881" width="0.3" height="15.0" fill="rgb(248,225,28)" rx="2" ry="2" />
<text text-anchor="" x="672.67" y="891.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call (3 samples, 0.08%)</title><rect x="714.7" y="737" width="1.0" height="15.0" fill="rgb(219,20,34)" rx="2" ry="2" />
<text text-anchor="" x="717.67" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pm_relax (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pm_relax (1 samples, 0.03%)</title><rect x="728.3" y="673" width="0.4" height="15.0" fill="rgb(217,49,9)" rx="2" ry="2" />
<text text-anchor="" x="731.33" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('event_active (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>event_active (3 samples, 0.08%)</title><rect x="1189.0" y="753" width="1.0" height="15.0" fill="rgb(237,195,8)" rx="2" ry="2" />
<text text-anchor="" x="1192.00" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('aa_file_perm (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>aa_file_perm (1 samples, 0.03%)</title><rect x="948.7" y="289" width="0.3" height="15.0" fill="rgb(235,24,50)" rx="2" ry="2" />
<text text-anchor="" x="951.67" y="299.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_wall_time (1 samples, 0.03%)</title><rect x="457.3" y="385" width="0.4" height="15.0" fill="rgb(210,197,27)" rx="2" ry="2" />
<text text-anchor="" x="460.33" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::WriteBuffer::HavePlatformHandlesToSend (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::WriteBuffer::HavePlatformHandlesToSend (3 samples, 0.08%)</title><rect x="332.7" y="433" width="1.0" height="15.0" fill="rgb(240,188,24)" rx="2" ry="2" />
<text text-anchor="" x="335.67" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_hrtimeout_range (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (2 samples, 0.06%)</title><rect x="551.7" y="609" width="0.6" height="15.0" fill="rgb(253,6,54)" rx="2" ry="2" />
<text text-anchor="" x="554.67" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_stream_recvmsg (65 samples, 1.84%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_recvmsg (65 samples, 1.84%)</title><rect x="1101.0" y="609" width="21.7" height="15.0" fill="rgb(234,128,23)" rx="2" ry="2" />
<text text-anchor="" x="1104.00" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >u..</text>
</g>
<g class="func_g" onmouseover="s('_int_malloc (72 samples, 2.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_malloc (72 samples, 2.03%)</title><rect x="615.0" y="881" width="24.0" height="15.0" fill="rgb(254,73,1)" rx="2" ry="2" />
<text text-anchor="" x="618.00" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s('ep_poll (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (1 samples, 0.03%)</title><rect x="102.0" y="721" width="0.3" height="15.0" fill="rgb(230,156,53)" rx="2" ry="2" />
<text text-anchor="" x="105.00" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (5 samples, 0.14%)</title><rect x="962.3" y="449" width="1.7" height="15.0" fill="rgb(231,143,39)" rx="2" ry="2" />
<text text-anchor="" x="965.33" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('MojoReadMessage (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>MojoReadMessage (4 samples, 0.11%)</title><rect x="567.0" y="561" width="1.3" height="15.0" fill="rgb(252,123,20)" rx="2" ry="2" />
<text text-anchor="" x="570.00" y="571.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (1 samples, 0.03%)</title><rect x="761.3" y="545" width="0.4" height="15.0" fill="rgb(218,73,42)" rx="2" ry="2" />
<text text-anchor="" x="764.33" 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 (9 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (9 samples, 0.25%)</title><rect x="722.3" y="689" width="3.0" height="15.0" fill="rgb(226,98,51)" rx="2" ry="2" />
<text text-anchor="" x="725.33" y="699.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__run_hrtimer (1 samples, 0.03%)</title><rect x="1131.7" y="641" width="0.3" height="15.0" fill="rgb(237,10,2)" rx="2" ry="2" />
<text text-anchor="" x="1134.67" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pthread_enable_asynccancel (9 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_enable_asynccancel (9 samples, 0.25%)</title><rect x="478.7" y="705" width="3.0" height="15.0" fill="rgb(233,102,29)" rx="2" ry="2" />
<text text-anchor="" x="481.67" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::CallbackBase::CallbackBase (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::CallbackBase::CallbackBase (1 samples, 0.03%)</title><rect x="794.0" y="641" width="0.3" height="15.0" fill="rgb(239,192,52)" rx="2" ry="2" />
<text text-anchor="" x="797.00" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::MessagePipeReader::ReadMessagesThenWait (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::MessagePipeReader::ReadMessagesThenWait (1 samples, 0.03%)</title><rect x="400.3" y="705" width="0.4" height="15.0" fill="rgb(227,28,37)" rx="2" ry="2" />
<text text-anchor="" x="403.33" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (6 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (6 samples, 0.17%)</title><rect x="165.3" y="529" width="2.0" height="15.0" fill="rgb(210,212,51)" rx="2" ry="2" />
<text text-anchor="" x="168.33" y="539.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.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (2 samples, 0.06%)</title><rect x="551.0" y="609" width="0.7" height="15.0" fill="rgb(206,218,47)" rx="2" ry="2" />
<text text-anchor="" x="554.00" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::WeakReference::is_valid (6 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReference::is_valid (6 samples, 0.17%)</title><rect x="1062.7" y="737" width="2.0" height="15.0" fill="rgb(236,196,42)" rx="2" ry="2" />
<text text-anchor="" x="1065.67" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_careful (33 samples, 0.93%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_careful (33 samples, 0.93%)</title><rect x="25.7" y="865" width="11.0" height="15.0" fill="rgb(230,98,49)" rx="2" ry="2" />
<text text-anchor="" x="28.67" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('enqueue_task (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task (3 samples, 0.08%)</title><rect x="559.0" y="65" width="1.0" height="15.0" fill="rgb(217,27,17)" rx="2" ry="2" />
<text text-anchor="" x="562.00" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fget_light (11 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>fget_light (11 samples, 0.31%)</title><rect x="769.7" y="705" width="3.6" height="15.0" fill="rgb(229,217,28)" rx="2" ry="2" />
<text text-anchor="" x="772.67" y="715.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (1 samples, 0.03%)</title><rect x="156.7" y="561" width="0.3" height="15.0" fill="rgb(230,197,23)" rx="2" ry="2" />
<text text-anchor="" x="159.67" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__posix_memalign (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__posix_memalign (1 samples, 0.03%)</title><rect x="242.7" y="481" width="0.3" height="15.0" fill="rgb(239,138,2)" rx="2" ry="2" />
<text text-anchor="" x="245.67" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_disable_all (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_disable_all (2 samples, 0.06%)</title><rect x="32.7" y="737" width="0.6" height="15.0" fill="rgb(227,158,7)" rx="2" ry="2" />
<text text-anchor="" x="35.67" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::EnqueueMessageNoLock (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::EnqueueMessageNoLock (3 samples, 0.08%)</title><rect x="329.0" y="417" width="1.0" height="15.0" fill="rgb(244,205,43)" rx="2" ry="2" />
<text text-anchor="" x="332.00" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessageInTransit::View::IsValid (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::View::IsValid (2 samples, 0.06%)</title><rect x="1134.7" y="721" width="0.6" height="15.0" fill="rgb(238,145,50)" rx="2" ry="2" />
<text text-anchor="" x="1137.67" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::MessagePipeReader::ReadMessageBytes (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::MessagePipeReader::ReadMessageBytes (5 samples, 0.14%)</title><rect x="567.0" y="577" width="1.7" height="15.0" fill="rgb(220,189,34)" rx="2" ry="2" />
<text text-anchor="" x="570.00" y="587.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator delete (1 samples, 0.03%)</title><rect x="1161.7" y="577" width="0.3" height="15.0" fill="rgb(223,146,21)" rx="2" ry="2" />
<text text-anchor="" x="1164.67" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::OnReadMessage (6 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::OnReadMessage (6 samples, 0.17%)</title><rect x="570.7" y="625" width="2.0" height="15.0" fill="rgb(239,39,29)" rx="2" ry="2" />
<text text-anchor="" x="573.67" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Dispatcher::ReadMessage (31 samples, 0.88%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Dispatcher::ReadMessage (31 samples, 0.88%)</title><rect x="1020.0" y="609" width="10.3" height="15.0" fill="rgb(220,4,5)" rx="2" ry="2" />
<text text-anchor="" x="1023.00" y="619.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.03%)</title><rect x="941.0" y="241" width="0.3" height="15.0" fill="rgb(224,125,51)" rx="2" ry="2" />
<text text-anchor="" x="944.00" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Core::ReadMessage (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Core::ReadMessage (3 samples, 0.08%)</title><rect x="394.3" y="641" width="1.0" height="15.0" fill="rgb(218,35,7)" rx="2" ry="2" />
<text text-anchor="" x="397.33" y="651.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.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (2 samples, 0.06%)</title><rect x="461.0" y="481" width="0.7" height="15.0" fill="rgb(237,82,25)" rx="2" ry="2" />
<text text-anchor="" x="464.00" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_sched_timer (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_timer (1 samples, 0.03%)</title><rect x="141.0" y="545" width="0.3" height="15.0" fill="rgb(221,168,48)" rx="2" ry="2" />
<text text-anchor="" x="144.00" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Dispatcher::WriteMessage (327 samples, 9.24%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Dispatcher::WriteMessage (327 samples, 9.24%)</title><rect x="232.0" y="545" width="109.0" height="15.0" fill="rgb(249,61,2)" rx="2" ry="2" />
<text text-anchor="" x="235.00" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::system:..</text>
</g>
<g class="func_g" onmouseover="s('sys_recvmsg (121 samples, 3.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_recvmsg (121 samples, 3.42%)</title><rect x="435.7" y="673" width="40.3" height="15.0" fill="rgb(220,32,37)" rx="2" ry="2" />
<text text-anchor="" x="438.67" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys..</text>
</g>
<g class="func_g" onmouseover="s('[unknown] (145 samples, 4.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (145 samples, 4.10%)</title><rect x="1079.0" y="705" width="48.3" height="15.0" fill="rgb(218,199,14)" rx="2" ry="2" />
<text text-anchor="" x="1082.00" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s('sysret_audit (22 samples, 0.62%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_audit (22 samples, 0.62%)</title><rect x="707.0" y="737" width="7.3" height="15.0" fill="rgb(237,98,12)" rx="2" ry="2" />
<text text-anchor="" x="710.00" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::OnReadMessage (114 samples, 3.22%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::OnReadMessage (114 samples, 3.22%)</title><rect x="490.0" y="705" width="38.0" height="15.0" fill="rgb(241,217,11)" rx="2" ry="2" />
<text text-anchor="" x="493.00" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >moj..</text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (2 samples, 0.06%)</title><rect x="335.0" y="449" width="0.7" height="15.0" fill="rgb(227,211,48)" rx="2" ry="2" />
<text text-anchor="" x="338.00" y="459.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (4 samples, 0.11%)</title><rect x="929.7" y="113" width="1.3" height="15.0" fill="rgb(249,174,15)" rx="2" ry="2" />
<text text-anchor="" x="932.67" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('auditsys (7 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>auditsys (7 samples, 0.20%)</title><rect x="704.0" y="737" width="2.3" height="15.0" fill="rgb(246,226,19)" rx="2" ry="2" />
<text text-anchor="" x="707.00" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('memset (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>memset (5 samples, 0.14%)</title><rect x="354.7" y="609" width="1.6" height="15.0" fill="rgb(227,196,16)" rx="2" ry="2" />
<text text-anchor="" x="357.67" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::OnReadCompleted (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::OnReadCompleted (1 samples, 0.03%)</title><rect x="1076.0" y="737" width="0.3" height="15.0" fill="rgb(251,202,24)" rx="2" ry="2" />
<text text-anchor="" x="1079.00" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (4 samples, 0.11%)</title><rect x="211.0" y="625" width="1.3" height="15.0" fill="rgb(246,187,41)" rx="2" ry="2" />
<text text-anchor="" x="214.00" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_ZNKSs7compareEPKc@plt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZNKSs7compareEPKc@plt (1 samples, 0.03%)</title><rect x="565.7" y="545" width="0.3" height="15.0" fill="rgb(254,33,41)" rx="2" ry="2" />
<text text-anchor="" x="568.67" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('smp_apic_timer_interrupt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.03%)</title><rect x="780.7" y="737" width="0.3" height="15.0" fill="rgb(223,177,20)" rx="2" ry="2" />
<text text-anchor="" x="783.67" y="747.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (3 samples, 0.08%)</title><rect x="1046.0" y="673" width="1.0" height="15.0" fill="rgb(221,96,0)" rx="2" ry="2" />
<text text-anchor="" x="1049.00" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::AsyncHandleWaiter::Context::DidProcessIOEvent (612 samples, 17.29%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::AsyncHandleWaiter::Context::DidProcessIOEvent (612 samples, 17.29%)</title><rect x="197.3" y="721" width="204.0" height="15.0" fill="rgb(253,194,4)" rx="2" ry="2" />
<text text-anchor="" x="200.33" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IPC::internal::AsyncHandle..</text>
</g>
<g class="func_g" onmouseover="s('std::string::assign (6 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::string::assign (6 samples, 0.17%)</title><rect x="993.7" y="609" width="2.0" height="15.0" fill="rgb(225,4,28)" rx="2" ry="2" />
<text text-anchor="" x="996.67" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Dispatcher::AddAwakable (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Dispatcher::AddAwakable (1 samples, 0.03%)</title><rect x="214.3" y="657" width="0.4" height="15.0" fill="rgb(229,141,15)" rx="2" ry="2" />
<text text-anchor="" x="217.33" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_sched_timer (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_timer (1 samples, 0.03%)</title><rect x="780.7" y="673" width="0.3" height="15.0" fill="rgb(243,156,45)" rx="2" ry="2" />
<text text-anchor="" x="783.67" y="683.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (3 samples, 0.08%)</title><rect x="1079.7" y="673" width="1.0" height="15.0" fill="rgb(207,124,6)" rx="2" ry="2" />
<text text-anchor="" x="1082.67" 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 (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_data (2 samples, 0.06%)</title><rect x="461.7" y="577" width="0.6" height="15.0" fill="rgb(220,171,22)" rx="2" ry="2" />
<text text-anchor="" x="464.67" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_sync_write (170 samples, 4.80%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_sync_write (170 samples, 4.80%)</title><rect x="262.0" y="353" width="56.7" height="15.0" fill="rgb(230,108,20)" rx="2" ry="2" />
<text text-anchor="" x="265.00" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >do_syn..</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::AwakableList::AwakeForStateChange (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::AwakableList::AwakeForStateChange (3 samples, 0.08%)</title><rect x="499.3" y="625" width="1.0" height="15.0" fill="rgb(239,203,49)" rx="2" ry="2" />
<text text-anchor="" x="502.33" y="635.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.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (7 samples, 0.20%)</title><rect x="390.0" y="625" width="2.3" height="15.0" fill="rgb(216,87,13)" rx="2" ry="2" />
<text text-anchor="" x="393.00" 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::Release (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (1 samples, 0.03%)</title><rect x="506.0" y="577" width="0.3" height="15.0" fill="rgb(249,193,53)" rx="2" ry="2" />
<text text-anchor="" x="509.00" y="587.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>unroll_tree_refs (3 samples, 0.08%)</title><rect x="257.3" y="369" width="1.0" height="15.0" fill="rgb(224,96,36)" rx="2" ry="2" />
<text text-anchor="" x="260.33" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('std::__detail::_List_node_base::_M_unhook (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_List_node_base::_M_unhook (3 samples, 0.08%)</title><rect x="511.7" y="609" width="1.0" height="15.0" fill="rgb(230,185,18)" rx="2" ry="2" />
<text text-anchor="" x="514.67" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (199 samples, 5.62%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (199 samples, 5.62%)</title><rect x="258.3" y="401" width="66.4" height="15.0" fill="rgb(246,37,13)" rx="2" ry="2" />
<text text-anchor="" x="261.33" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >system_..</text>
</g>
<g class="func_g" onmouseover="s('fget_light (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>fget_light (3 samples, 0.08%)</title><rect x="552.3" y="625" width="1.0" height="15.0" fill="rgb(217,9,54)" rx="2" ry="2" />
<text text-anchor="" x="555.33" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apparmor_file_permission (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (3 samples, 0.08%)</title><rect x="947.0" y="337" width="1.0" height="15.0" fill="rgb(239,125,45)" rx="2" ry="2" />
<text text-anchor="" x="950.00" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sockfd_lookup_light (9 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>sockfd_lookup_light (9 samples, 0.25%)</title><rect x="1124.3" y="641" width="3.0" height="15.0" fill="rgb(220,112,25)" rx="2" ry="2" />
<text text-anchor="" x="1127.33" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__memcmp_sse4_1 (20 samples, 0.56%)')" onmouseout="c()" onclick="zoom(this)">
<title>__memcmp_sse4_1 (20 samples, 0.56%)</title><rect x="574.0" y="881" width="6.7" height="15.0" fill="rgb(244,180,50)" rx="2" ry="2" />
<text text-anchor="" x="577.00" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (3 samples, 0.08%)</title><rect x="527.0" y="689" width="1.0" height="15.0" fill="rgb(218,135,38)" rx="2" ry="2" />
<text text-anchor="" x="530.00" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::RunLoop::Run (1,560 samples, 44.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::RunLoop::Run (1,560 samples, 44.07%)</title><rect x="670.0" y="801" width="520.0" height="15.0" fill="rgb(249,137,53)" rx="2" ry="2" />
<text text-anchor="" x="673.00" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::RunLoop::Run</text>
</g>
<g class="func_g" onmouseover="s('sys_epoll_wait (253 samples, 7.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (253 samples, 7.15%)</title><rect x="102.7" y="721" width="84.3" height="15.0" fill="rgb(206,229,13)" rx="2" ry="2" />
<text text-anchor="" x="105.67" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys_epoll..</text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::Release (6 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (6 samples, 0.17%)</title><rect x="1069.3" y="737" width="2.0" height="15.0" fill="rgb(209,0,27)" rx="2" ry="2" />
<text text-anchor="" x="1072.33" y="747.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>void Pickle::WriteBytesStatic4ul (3 samples, 0.08%)</title><rect x="995.7" y="609" width="1.0" height="15.0" fill="rgb(236,161,35)" rx="2" ry="2" />
<text text-anchor="" x="998.67" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_task (46 samples, 1.30%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task (46 samples, 1.30%)</title><rect x="141.7" y="609" width="15.3" height="15.0" fill="rgb(249,74,16)" rx="2" ry="2" />
<text text-anchor="" x="144.67" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::EnqueueMessage (22 samples, 0.62%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::EnqueueMessage (22 samples, 0.62%)</title><rect x="555.3" y="401" width="7.4" height="15.0" fill="rgb(240,23,6)" rx="2" ry="2" />
<text text-anchor="" x="558.33" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::AsyncHandleWaiter::Context::DidProcessIOEvent (45 samples, 1.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::AsyncHandleWaiter::Context::DidProcessIOEvent (45 samples, 1.27%)</title><rect x="553.7" y="641" width="15.0" height="15.0" fill="rgb(232,128,9)" rx="2" ry="2" />
<text text-anchor="" x="556.67" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::EnqueueMessage (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::EnqueueMessage (2 samples, 0.06%)</title><rect x="240.7" y="497" width="0.6" height="15.0" fill="rgb(240,77,13)" rx="2" ry="2" />
<text text-anchor="" x="243.67" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::ChannelMojo::OnMessageReceived (422 samples, 11.92%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelMojo::OnMessageReceived (422 samples, 11.92%)</title><rect x="223.7" y="641" width="140.6" height="15.0" fill="rgb(254,81,24)" rx="2" ry="2" />
<text text-anchor="" x="226.67" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IPC::ChannelMojo:..</text>
</g>
<g class="func_g" onmouseover="s('enqueue_task_fair (30 samples, 0.85%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (30 samples, 0.85%)</title><rect x="300.7" y="129" width="10.0" height="15.0" fill="rgb(226,28,48)" rx="2" ry="2" />
<text text-anchor="" x="303.67" y="139.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.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (2 samples, 0.06%)</title><rect x="559.0" y="33" width="0.7" height="15.0" fill="rgb(222,45,0)" rx="2" ry="2" />
<text text-anchor="" x="562.00" y="43.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.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>path_put (2 samples, 0.06%)</title><rect x="713.7" y="705" width="0.6" height="15.0" fill="rgb(240,38,2)" rx="2" ry="2" />
<text text-anchor="" x="716.67" y="715.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (1 samples, 0.03%)</title><rect x="155.3" y="593" width="0.4" height="15.0" fill="rgb(226,214,28)" rx="2" ry="2" />
<text text-anchor="" x="158.33" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::DoDelayedWork (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::DoDelayedWork (1 samples, 0.03%)</title><rect x="60.0" y="769" width="0.3" height="15.0" fill="rgb(253,36,16)" rx="2" ry="2" />
<text text-anchor="" x="63.00" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ctx_sched_out (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>ctx_sched_out (1 samples, 0.03%)</title><rect x="552.0" y="513" width="0.3" height="15.0" fill="rgb(214,10,24)" rx="2" ry="2" />
<text text-anchor="" x="555.00" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('consume_skb (29 samples, 0.82%)')" onmouseout="c()" onclick="zoom(this)">
<title>consume_skb (29 samples, 0.82%)</title><rect x="454.0" y="593" width="9.7" height="15.0" fill="rgb(205,21,40)" rx="2" ry="2" />
<text text-anchor="" x="457.00" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('non-virtual thunk to mojo::system:: (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>non-virtual thunk to mojo::system:: (5 samples, 0.14%)</title><rect x="545.3" y="753" width="1.7" height="15.0" fill="rgb(232,116,39)" rx="2" ry="2" />
<text text-anchor="" x="548.33" y="763.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 (12 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_from_iovec (12 samples, 0.34%)</title><rect x="881.0" y="305" width="4.0" height="15.0" fill="rgb(246,54,28)" rx="2" ry="2" />
<text text-anchor="" x="884.00" y="315.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (1 samples, 0.03%)</title><rect x="780.7" y="705" width="0.3" height="15.0" fill="rgb(251,194,24)" rx="2" ry="2" />
<text text-anchor="" x="783.67" y="715.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::LockImpl::Lock (1 samples, 0.03%)</title><rect x="206.7" y="641" width="0.3" height="15.0" fill="rgb(219,19,15)" rx="2" ry="2" />
<text text-anchor="" x="209.67" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__memcpy_sse2_unaligned (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_sse2_unaligned (2 samples, 0.06%)</title><rect x="570.7" y="593" width="0.6" height="15.0" fill="rgb(226,135,1)" rx="2" ry="2" />
<text text-anchor="" x="573.67" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irq (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irq (2 samples, 0.06%)</title><rect x="140.3" y="625" width="0.7" height="15.0" fill="rgb(246,158,3)" rx="2" ry="2" />
<text text-anchor="" x="143.33" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::OnReadMessageForEndpoint (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::OnReadMessageForEndpoint (2 samples, 0.06%)</title><rect x="1177.0" y="705" width="0.7" height="15.0" fill="rgb(250,53,40)" rx="2" ry="2" />
<text text-anchor="" x="1180.00" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::OnReadMessage (46 samples, 1.30%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::OnReadMessage (46 samples, 1.30%)</title><rect x="499.3" y="641" width="15.4" height="15.0" fill="rgb(211,197,28)" rx="2" ry="2" />
<text text-anchor="" x="502.33" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree (2 samples, 0.06%)</title><rect x="94.0" y="705" width="0.7" height="15.0" fill="rgb(215,215,34)" rx="2" ry="2" />
<text text-anchor="" x="97.00" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (1 samples, 0.03%)</title><rect x="567.3" y="497" width="0.4" height="15.0" fill="rgb(232,144,5)" rx="2" ry="2" />
<text text-anchor="" x="570.33" y="507.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (1 samples, 0.03%)</title><rect x="320.3" y="337" width="0.4" height="15.0" fill="rgb(232,42,34)" rx="2" ry="2" />
<text text-anchor="" x="323.33" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::BindStatebase::internal::RunnableAdaptervoid (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::BindStatebase::internal::RunnableAdaptervoid (5 samples, 0.14%)</title><rect x="1159.0" y="561" width="1.7" height="15.0" fill="rgb(244,70,33)" rx="2" ry="2" />
<text text-anchor="" x="1162.00" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_sched_timer (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_timer (1 samples, 0.03%)</title><rect x="457.3" y="449" width="0.4" height="15.0" fill="rgb(254,66,50)" rx="2" ry="2" />
<text text-anchor="" x="460.33" 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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (3 samples, 0.08%)</title><rect x="965.3" y="465" width="1.0" height="15.0" fill="rgb(247,87,27)" rx="2" ry="2" />
<text text-anchor="" x="968.33" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::MessagePipeReader::ReadAvailableMessages (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::MessagePipeReader::ReadAvailableMessages (1 samples, 0.03%)</title><rect x="199.7" y="689" width="0.3" height="15.0" fill="rgb(237,66,10)" rx="2" ry="2" />
<text text-anchor="" x="202.67" y="699.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>load_elf_binary (1 samples, 0.03%)</title><rect x="22.3" y="801" width="0.4" height="15.0" fill="rgb(213,177,53)" rx="2" ry="2" />
<text text-anchor="" x="25.33" y="811.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.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (2 samples, 0.06%)</title><rect x="705.0" y="705" width="0.7" height="15.0" fill="rgb(238,117,5)" rx="2" ry="2" />
<text text-anchor="" x="708.00" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::Release (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (2 samples, 0.06%)</title><rect x="1160.0" y="545" width="0.7" height="15.0" fill="rgb(224,111,2)" rx="2" ry="2" />
<text text-anchor="" x="1163.00" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__kmalloc_node_track_caller (9 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_node_track_caller (9 samples, 0.25%)</title><rect x="893.0" y="257" width="3.0" height="15.0" fill="rgb(230,14,5)" rx="2" ry="2" />
<text text-anchor="" x="896.00" y="267.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.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_out (2 samples, 0.06%)</title><rect x="745.3" y="625" width="0.7" height="15.0" fill="rgb(233,131,3)" rx="2" ry="2" />
<text text-anchor="" x="748.33" y="635.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 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (1 samples, 0.03%)</title><rect x="551.7" y="529" width="0.3" height="15.0" fill="rgb(211,185,29)" rx="2" ry="2" />
<text text-anchor="" x="554.67" 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 (14 samples, 0.40%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_out (14 samples, 0.40%)</title><rect x="29.3" y="801" width="4.7" height="15.0" fill="rgb(234,121,46)" rx="2" ry="2" />
<text text-anchor="" x="32.33" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (217 samples, 6.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (217 samples, 6.13%)</title><rect x="702.0" y="753" width="72.3" height="15.0" fill="rgb(254,79,24)" rx="2" ry="2" />
<text text-anchor="" x="705.00" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s('skb_copy_datagram_iovec (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_iovec (4 samples, 0.11%)</title><rect x="1119.7" y="593" width="1.3" height="15.0" fill="rgb(221,109,18)" rx="2" ry="2" />
<text text-anchor="" x="1122.67" 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 (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (3 samples, 0.08%)</title><rect x="207.0" y="641" width="1.0" height="15.0" fill="rgb(231,194,16)" rx="2" ry="2" />
<text text-anchor="" x="210.00" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock@plt (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock@plt (2 samples, 0.06%)</title><rect x="964.0" y="449" width="0.7" height="15.0" fill="rgb(249,84,9)" rx="2" ry="2" />
<text text-anchor="" x="967.00" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ProxyMessagePipeEndpoint::EnqueueMessage (288 samples, 8.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ProxyMessagePipeEndpoint::EnqueueMessage (288 samples, 8.14%)</title><rect x="243.3" y="497" width="96.0" height="15.0" fill="rgb(243,89,23)" rx="2" ry="2" />
<text text-anchor="" x="246.33" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::syste..</text>
</g>
<g class="func_g" onmouseover="s('pthread_getspecific@plt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_getspecific@plt (1 samples, 0.03%)</title><rect x="1165.0" y="577" width="0.3" height="15.0" fill="rgb(205,227,7)" rx="2" ry="2" />
<text text-anchor="" x="1168.00" 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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_sys_call (1 samples, 0.03%)</title><rect x="706.3" y="737" width="0.4" height="15.0" fill="rgb(233,217,44)" rx="2" ry="2" />
<text text-anchor="" x="709.33" y="747.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>clear_buddies (1 samples, 0.03%)</title><rect x="765.0" y="609" width="0.3" height="15.0" fill="rgb(250,125,32)" rx="2" ry="2" />
<text text-anchor="" x="768.00" y="619.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (1 samples, 0.03%)</title><rect x="933.3" y="97" width="0.4" height="15.0" fill="rgb(237,83,15)" rx="2" ry="2" />
<text text-anchor="" x="936.33" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::OnLibeventNotification (58 samples, 1.64%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::OnLibeventNotification (58 samples, 1.64%)</title><rect x="553.3" y="673" width="19.4" height="15.0" fill="rgb(245,31,12)" rx="2" ry="2" />
<text text-anchor="" x="556.33" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>free (2 samples, 0.06%)</title><rect x="555.3" y="353" width="0.7" height="15.0" fill="rgb(249,190,10)" rx="2" ry="2" />
<text text-anchor="" x="558.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::DoWork (13 samples, 0.37%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::DoWork (13 samples, 0.37%)</title><rect x="689.3" y="769" width="4.4" height="15.0" fill="rgb(232,88,22)" rx="2" ry="2" />
<text text-anchor="" x="692.33" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (4 samples, 0.11%)</title><rect x="1027.0" y="577" width="1.3" height="15.0" fill="rgb(224,82,5)" rx="2" ry="2" />
<text text-anchor="" x="1030.00" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('task_tick_fair (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>task_tick_fair (1 samples, 0.03%)</title><rect x="780.7" y="609" width="0.3" height="15.0" fill="rgb(226,130,24)" rx="2" ry="2" />
<text text-anchor="" x="783.67" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__kmalloc_reserve.isra.27 (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_reserve.isra.27 (3 samples, 0.08%)</title><rect x="897.7" y="289" width="1.0" height="15.0" fill="rgb(243,180,54)" rx="2" ry="2" />
<text text-anchor="" x="900.67" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('all (3,540 samples, 100%)')" onmouseout="c()" onclick="zoom(this)">
<title>all (3,540 samples, 100%)</title><rect x="10.0" y="913" width="1180.0" height="15.0" fill="rgb(217,45,48)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::HandleTable::GetDispatcher (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::HandleTable::GetDispatcher (4 samples, 0.11%)</title><rect x="214.7" y="657" width="1.3" height="15.0" fill="rgb(230,227,9)" rx="2" ry="2" />
<text text-anchor="" x="217.67" y="667.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (4 samples, 0.11%)</title><rect x="213.0" y="641" width="1.3" height="15.0" fill="rgb(207,183,42)" rx="2" ry="2" />
<text text-anchor="" x="216.00" y="651.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock (1 samples, 0.03%)</title><rect x="28.3" y="785" width="0.4" height="15.0" fill="rgb(251,60,53)" rx="2" ry="2" />
<text text-anchor="" x="31.33" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('std::string::_M_mutate (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::string::_M_mutate (3 samples, 0.08%)</title><rect x="21.3" y="849" width="1.0" height="15.0" fill="rgb(252,41,19)" rx="2" ry="2" />
<text text-anchor="" x="24.33" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule (2 samples, 0.06%)</title><rect x="129.0" y="673" width="0.7" height="15.0" fill="rgb(254,67,44)" rx="2" ry="2" />
<text text-anchor="" x="132.00" y="683.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_poll (1 samples, 0.03%)</title><rect x="739.7" y="673" width="0.3" height="15.0" fill="rgb(241,104,45)" rx="2" ry="2" />
<text text-anchor="" x="742.67" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__memcpy_sse2_unaligned (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_sse2_unaligned (2 samples, 0.06%)</title><rect x="822.7" y="497" width="0.6" height="15.0" fill="rgb(231,114,47)" rx="2" ry="2" />
<text text-anchor="" x="825.67" y="507.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.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (7 samples, 0.20%)</title><rect x="150.0" y="561" width="2.3" height="15.0" fill="rgb(206,41,30)" rx="2" ry="2" />
<text text-anchor="" x="153.00" y="571.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__run_hrtimer (1 samples, 0.03%)</title><rect x="457.3" y="465" width="0.4" height="15.0" fill="rgb(239,119,13)" rx="2" ry="2" />
<text text-anchor="" x="460.33" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipeDispatcher::ReadMessageImplNoLock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipeDispatcher::ReadMessageImplNoLock (1 samples, 0.03%)</title><rect x="567.3" y="513" width="0.4" height="15.0" fill="rgb(239,60,43)" rx="2" ry="2" />
<text text-anchor="" x="570.33" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('Pickle::Resize (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>Pickle::Resize (1 samples, 0.03%)</title><rect x="982.3" y="593" width="0.4" height="15.0" fill="rgb(240,97,17)" rx="2" ry="2" />
<text text-anchor="" x="985.33" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_wfree (12 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_wfree (12 samples, 0.34%)</title><rect x="457.7" y="529" width="4.0" height="15.0" fill="rgb(222,46,15)" rx="2" ry="2" />
<text text-anchor="" x="460.67" y="539.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_poll (3 samples, 0.08%)</title><rect x="127.3" y="673" width="1.0" height="15.0" fill="rgb(205,68,39)" rx="2" ry="2" />
<text text-anchor="" x="130.33" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('epoll_dispatch (6 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>epoll_dispatch (6 samples, 0.17%)</title><rect x="1186.7" y="753" width="2.0" height="15.0" fill="rgb(252,157,8)" rx="2" ry="2" />
<text text-anchor="" x="1189.67" y="763.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 (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (3 samples, 0.08%)</title><rect x="758.0" y="593" width="1.0" height="15.0" fill="rgb(231,42,5)" rx="2" ry="2" />
<text text-anchor="" x="761.00" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('malloc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>malloc (1 samples, 0.03%)</title><rect x="1056.0" y="721" width="0.3" height="15.0" fill="rgb(219,17,23)" rx="2" ry="2" />
<text text-anchor="" x="1059.00" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::MessagePipeReader::Send (24 samples, 0.68%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::MessagePipeReader::Send (24 samples, 0.68%)</title><rect x="555.3" y="513" width="8.0" height="15.0" fill="rgb(207,27,15)" rx="2" ry="2" />
<text text-anchor="" x="558.33" y="523.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__run_hrtimer (1 samples, 0.03%)</title><rect x="780.7" y="689" width="0.3" height="15.0" fill="rgb(215,41,49)" rx="2" ry="2" />
<text text-anchor="" x="783.67" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__libc_recvmsg (7 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_recvmsg (7 samples, 0.20%)</title><rect x="476.0" y="705" width="2.3" height="15.0" fill="rgb(245,194,22)" rx="2" ry="2" />
<text text-anchor="" x="479.00" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_wfree (24 samples, 0.68%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_wfree (24 samples, 0.68%)</title><rect x="1110.0" y="529" width="8.0" height="15.0" fill="rgb(231,178,24)" rx="2" ry="2" />
<text text-anchor="" x="1113.00" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (2 samples, 0.06%)</title><rect x="380.0" y="577" width="0.7" height="15.0" fill="rgb(227,102,6)" rx="2" ry="2" />
<text text-anchor="" x="383.00" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (2 samples, 0.06%)</title><rect x="336.0" y="465" width="0.7" height="15.0" fill="rgb(249,208,36)" rx="2" ry="2" />
<text text-anchor="" x="339.00" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock@plt (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock@plt (5 samples, 0.14%)</title><rect x="525.3" y="689" width="1.7" height="15.0" fill="rgb(237,202,14)" rx="2" ry="2" />
<text text-anchor="" x="528.33" y="699.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>load_elf_binary (4 samples, 0.11%)</title><rect x="10.0" y="801" width="1.3" height="15.0" fill="rgb(234,141,35)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::AsyncHandleWaiter::Context::WillProcessIOEvent (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::AsyncHandleWaiter::Context::WillProcessIOEvent (5 samples, 0.14%)</title><rect x="193.0" y="737" width="1.7" height="15.0" fill="rgb(242,75,31)" rx="2" ry="2" />
<text text-anchor="" x="196.00" y="747.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.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_alloc_node (7 samples, 0.20%)</title><rect x="285.7" y="273" width="2.3" height="15.0" fill="rgb(227,148,31)" rx="2" ry="2" />
<text text-anchor="" x="288.67" y="283.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (4 samples, 0.11%)</title><rect x="11.7" y="561" width="1.3" height="15.0" fill="rgb(218,190,34)" rx="2" ry="2" />
<text text-anchor="" x="14.67" y="571.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.03%)</title><rect x="457.3" y="529" width="0.4" height="15.0" fill="rgb(205,93,36)" rx="2" ry="2" />
<text text-anchor="" x="460.33" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_disable (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_disable (2 samples, 0.06%)</title><rect x="32.7" y="753" width="0.6" height="15.0" fill="rgb(216,38,22)" rx="2" ry="2" />
<text text-anchor="" x="35.67" y="763.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::LockImpl::Unlock (1 samples, 0.03%)</title><rect x="491.3" y="689" width="0.4" height="15.0" fill="rgb(215,204,32)" rx="2" ry="2" />
<text text-anchor="" x="494.33" y="699.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.03%)</title><rect x="1131.7" y="545" width="0.3" height="15.0" fill="rgb(215,153,53)" rx="2" ry="2" />
<text text-anchor="" x="1134.67" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::EnqueueMessageNoLock (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::EnqueueMessageNoLock (2 samples, 0.06%)</title><rect x="561.7" y="337" width="0.6" height="15.0" fill="rgb(237,81,15)" rx="2" ry="2" />
<text text-anchor="" x="564.67" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fput (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>fput (3 samples, 0.08%)</title><rect x="469.3" y="641" width="1.0" height="15.0" fill="rgb(212,105,8)" rx="2" ry="2" />
<text text-anchor="" x="472.33" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::ChannelMojo::OnMessageReceived (616 samples, 17.40%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelMojo::OnMessageReceived (616 samples, 17.40%)</title><rect x="804.0" y="641" width="205.3" height="15.0" fill="rgb(225,70,8)" rx="2" ry="2" />
<text text-anchor="" x="807.00" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IPC::ChannelMojo::OnMessage..</text>
</g>
<g class="func_g" onmouseover="s('free (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>free (1 samples, 0.03%)</title><rect x="1154.7" y="593" width="0.3" height="15.0" fill="rgb(213,181,7)" rx="2" ry="2" />
<text text-anchor="" x="1157.67" y="603.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 (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_from_iovec (2 samples, 0.06%)</title><rect x="558.3" y="225" width="0.7" height="15.0" fill="rgb(240,112,15)" rx="2" ry="2" />
<text text-anchor="" x="561.33" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::MessagePipeReader::PipeIsReady (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::MessagePipeReader::PipeIsReady (2 samples, 0.06%)</title><rect x="1050.3" y="721" width="0.7" height="15.0" fill="rgb(237,62,26)" rx="2" ry="2" />
<text text-anchor="" x="1053.33" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::OnReadMessageForEndpoint (96 samples, 2.71%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::OnReadMessageForEndpoint (96 samples, 2.71%)</title><rect x="1139.7" y="689" width="32.0" height="15.0" fill="rgb(220,88,29)" rx="2" ry="2" />
<text text-anchor="" x="1142.67" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mo..</text>
</g>
<g class="func_g" onmouseover="s('ttwu_do_activate.constprop.74 (6 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.74 (6 samples, 0.17%)</title><rect x="559.0" y="97" width="2.0" height="15.0" fill="rgb(214,136,18)" rx="2" ry="2" />
<text text-anchor="" x="562.00" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_def_readable (6 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_def_readable (6 samples, 0.17%)</title><rect x="559.0" y="225" width="2.0" height="15.0" fill="rgb(236,128,12)" rx="2" ry="2" />
<text text-anchor="" x="562.00" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_copy_from_user (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>_copy_from_user (4 samples, 0.11%)</title><rect x="882.3" y="289" width="1.4" height="15.0" fill="rgb(219,111,28)" rx="2" ry="2" />
<text text-anchor="" x="885.33" y="299.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.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (2 samples, 0.06%)</title><rect x="411.7" y="721" width="0.6" height="15.0" fill="rgb(219,199,1)" rx="2" ry="2" />
<text text-anchor="" x="414.67" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::Release (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (2 samples, 0.06%)</title><rect x="816.3" y="561" width="0.7" height="15.0" fill="rgb(228,159,22)" rx="2" ry="2" />
<text text-anchor="" x="819.33" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::DoDelayedWork (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::DoDelayedWork (1 samples, 0.03%)</title><rect x="688.3" y="769" width="0.4" height="15.0" fill="rgb(230,61,25)" rx="2" ry="2" />
<text text-anchor="" x="691.33" y="779.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>_cond_resched (4 samples, 0.11%)</title><rect x="547.3" y="609" width="1.4" height="15.0" fill="rgb(211,106,45)" rx="2" ry="2" />
<text text-anchor="" x="550.33" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_release_all (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_all (3 samples, 0.08%)</title><rect x="467.0" y="593" width="1.0" height="15.0" fill="rgb(247,144,6)" rx="2" ry="2" />
<text text-anchor="" x="470.00" y="603.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator delete (4 samples, 0.11%)</title><rect x="531.7" y="737" width="1.3" height="15.0" fill="rgb(228,145,50)" rx="2" ry="2" />
<text text-anchor="" x="534.67" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pthread_disable_asynccancel (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_disable_asynccancel (5 samples, 0.14%)</title><rect x="950.0" y="417" width="1.7" height="15.0" fill="rgb(211,195,51)" rx="2" ry="2" />
<text text-anchor="" x="953.00" y="427.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (1 samples, 0.03%)</title><rect x="300.3" y="177" width="0.4" height="15.0" fill="rgb(214,83,19)" rx="2" ry="2" />
<text text-anchor="" x="303.33" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__memcpy_sse2_unaligned (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_sse2_unaligned (3 samples, 0.08%)</title><rect x="353.0" y="609" width="1.0" height="15.0" fill="rgb(209,131,1)" rx="2" ry="2" />
<text text-anchor="" x="356.00" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call (4 samples, 0.11%)</title><rect x="99.7" y="737" width="1.3" height="15.0" fill="rgb(234,39,22)" rx="2" ry="2" />
<text text-anchor="" x="102.67" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::Release (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (5 samples, 0.14%)</title><rect x="1060.0" y="721" width="1.7" height="15.0" fill="rgb(247,67,51)" rx="2" ry="2" />
<text text-anchor="" x="1063.00" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('MojoReadMessage (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>MojoReadMessage (3 samples, 0.08%)</title><rect x="395.3" y="657" width="1.0" height="15.0" fill="rgb(250,124,21)" rx="2" ry="2" />
<text text-anchor="" x="398.33" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('Pickle::Resize (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>Pickle::Resize (3 samples, 0.08%)</title><rect x="981.0" y="577" width="1.0" height="15.0" fill="rgb(222,118,1)" rx="2" ry="2" />
<text text-anchor="" x="984.00" y="587.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.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pm_relax (2 samples, 0.06%)</title><rect x="108.0" y="689" width="0.7" height="15.0" fill="rgb(249,181,7)" rx="2" ry="2" />
<text text-anchor="" x="111.00" y="699.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.03%)</title><rect x="105.7" y="705" width="0.3" height="15.0" fill="rgb(227,114,23)" rx="2" ry="2" />
<text text-anchor="" x="108.67" y="715.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (4 samples, 0.11%)</title><rect x="422.0" y="737" width="1.3" height="15.0" fill="rgb(231,226,53)" rx="2" ry="2" />
<text text-anchor="" x="425.00" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (4 samples, 0.11%)</title><rect x="351.7" y="593" width="1.3" height="15.0" fill="rgb(211,133,22)" rx="2" ry="2" />
<text text-anchor="" x="354.67" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree (1 samples, 0.03%)</title><rect x="256.7" y="369" width="0.3" height="15.0" fill="rgb(251,37,15)" rx="2" ry="2" />
<text text-anchor="" x="259.67" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_release_data (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_data (1 samples, 0.03%)</title><rect x="570.0" y="481" width="0.3" height="15.0" fill="rgb(240,221,6)" rx="2" ry="2" />
<text text-anchor="" x="573.00" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('strlen (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>strlen (2 samples, 0.06%)</title><rect x="566.0" y="545" width="0.7" height="15.0" fill="rgb(223,54,42)" rx="2" ry="2" />
<text text-anchor="" x="569.00" y="555.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_out (4 samples, 0.11%)</title><rect x="139.0" y="625" width="1.3" height="15.0" fill="rgb(211,107,9)" rx="2" ry="2" />
<text text-anchor="" x="142.00" 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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (1 samples, 0.03%)</title><rect x="1157.3" y="577" width="0.4" height="15.0" fill="rgb(218,196,7)" rx="2" ry="2" />
<text text-anchor="" x="1160.33" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::AwakableList::AwakeForStateChange (43 samples, 1.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::AwakableList::AwakeForStateChange (43 samples, 1.21%)</title><rect x="1151.0" y="609" width="14.3" height="15.0" fill="rgb(249,201,54)" rx="2" ry="2" />
<text text-anchor="" x="1154.00" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::Run (1,560 samples, 44.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::Run (1,560 samples, 44.07%)</title><rect x="670.0" y="817" width="520.0" height="15.0" fill="rgb(243,164,37)" rx="2" ry="2" />
<text text-anchor="" x="673.00" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::MessageLoop::Run</text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.14%)</title><rect x="11.3" y="769" width="1.7" height="15.0" fill="rgb(231,187,16)" rx="2" ry="2" />
<text text-anchor="" x="14.33" y="779.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::Message::~Message (1 samples, 0.03%)</title><rect x="221.7" y="657" width="0.3" height="15.0" fill="rgb(220,68,2)" rx="2" ry="2" />
<text text-anchor="" x="224.67" 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.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_check (2 samples, 0.06%)</title><rect x="1084.3" y="689" width="0.7" height="15.0" fill="rgb(214,184,41)" rx="2" ry="2" />
<text text-anchor="" x="1087.33" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_entry (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (5 samples, 0.14%)</title><rect x="81.7" y="721" width="1.6" height="15.0" fill="rgb(242,67,34)" rx="2" ry="2" />
<text text-anchor="" x="84.67" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_disable_all (7 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_disable_all (7 samples, 0.20%)</title><rect x="165.0" y="545" width="2.3" height="15.0" fill="rgb(222,225,49)" rx="2" ry="2" />
<text text-anchor="" x="168.00" y="555.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (1 samples, 0.03%)</title><rect x="569.0" y="657" width="0.3" height="15.0" fill="rgb(252,16,33)" rx="2" ry="2" />
<text text-anchor="" x="572.00" y="667.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>check_preempt_curr (1 samples, 0.03%)</title><rect x="312.7" y="161" width="0.3" height="15.0" fill="rgb(238,87,18)" rx="2" ry="2" />
<text text-anchor="" x="315.67" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_write (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (1 samples, 0.03%)</title><rect x="556.3" y="321" width="0.4" height="15.0" fill="rgb(243,73,10)" rx="2" ry="2" />
<text text-anchor="" x="559.33" y="331.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_inodes (1 samples, 0.03%)</title><rect x="853.0" y="369" width="0.3" height="15.0" fill="rgb(216,110,3)" rx="2" ry="2" />
<text text-anchor="" x="856.00" 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,525 samples, 43.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::Run (1,525 samples, 43.08%)</title><rect x="38.7" y="785" width="508.3" height="15.0" fill="rgb(222,27,54)" rx="2" ry="2" />
<text text-anchor="" x="41.67" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::MessagePumpLibevent::Run</text>
</g>
<g class="func_g" onmouseover="s('ftrace_ops_list_func (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_ops_list_func (5 samples, 0.14%)</title><rect x="441.7" y="609" width="1.6" height="15.0" fill="rgb(220,53,34)" rx="2" ry="2" />
<text text-anchor="" x="444.67" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('Pickle::WriteString (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>Pickle::WriteString (2 samples, 0.06%)</title><rect x="997.3" y="625" width="0.7" height="15.0" fill="rgb(234,206,26)" rx="2" ry="2" />
<text text-anchor="" x="1000.33" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_int_free (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (1 samples, 0.03%)</title><rect x="375.0" y="561" width="0.3" height="15.0" fill="rgb(237,4,53)" rx="2" ry="2" />
<text text-anchor="" x="378.00" y="571.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.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>rb_insert_color (2 samples, 0.06%)</title><rect x="920.7" y="81" width="0.6" height="15.0" fill="rgb(216,109,41)" rx="2" ry="2" />
<text text-anchor="" x="923.67" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::AsyncHandleWaiter::Wait (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::AsyncHandleWaiter::Wait (3 samples, 0.08%)</title><rect x="790.3" y="689" width="1.0" height="15.0" fill="rgb(223,140,40)" rx="2" ry="2" />
<text text-anchor="" x="793.33" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (2 samples, 0.06%)</title><rect x="1168.0" y="641" width="0.7" height="15.0" fill="rgb(223,29,50)" rx="2" ry="2" />
<text text-anchor="" x="1171.00" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Dispatcher::WriteMessage (24 samples, 0.68%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Dispatcher::WriteMessage (24 samples, 0.68%)</title><rect x="555.3" y="465" width="8.0" height="15.0" fill="rgb(252,68,2)" rx="2" ry="2" />
<text text-anchor="" x="558.33" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_cond_resched (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_cond_resched (1 samples, 0.03%)</title><rect x="728.7" y="673" width="0.3" height="15.0" fill="rgb(214,189,46)" rx="2" ry="2" />
<text text-anchor="" x="731.67" y="683.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (1 samples, 0.03%)</title><rect x="163.0" y="593" width="0.3" height="15.0" fill="rgb(248,68,24)" rx="2" ry="2" />
<text text-anchor="" x="166.00" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree (1 samples, 0.03%)</title><rect x="434.7" y="673" width="0.3" height="15.0" fill="rgb(212,85,17)" rx="2" ry="2" />
<text text-anchor="" x="437.67" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fget_light (9 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>fget_light (9 samples, 0.25%)</title><rect x="472.3" y="625" width="3.0" height="15.0" fill="rgb(248,103,4)" rx="2" ry="2" />
<text text-anchor="" x="475.33" y="635.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (1 samples, 0.03%)</title><rect x="156.7" y="545" width="0.3" height="15.0" fill="rgb(229,35,28)" rx="2" ry="2" />
<text text-anchor="" x="159.67" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_disable_all (7 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_disable_all (7 samples, 0.20%)</title><rect x="761.7" y="545" width="2.3" height="15.0" fill="rgb(205,16,43)" rx="2" ry="2" />
<text text-anchor="" x="764.67" y="555.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.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>__enqueue_entity (2 samples, 0.06%)</title><rect x="920.7" y="97" width="0.6" height="15.0" fill="rgb(230,138,48)" rx="2" ry="2" />
<text text-anchor="" x="923.67" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (166 samples, 4.69%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (166 samples, 4.69%)</title><rect x="1077.3" y="721" width="55.4" height="15.0" fill="rgb(224,68,22)" rx="2" ry="2" />
<text text-anchor="" x="1080.33" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo:..</text>
</g>
<g class="func_g" onmouseover="s('ttwu_do_wakeup (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_wakeup (5 samples, 0.14%)</title><rect x="935.7" y="161" width="1.6" height="15.0" fill="rgb(247,213,44)" rx="2" ry="2" />
<text text-anchor="" x="938.67" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::WriteMessage (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::WriteMessage (2 samples, 0.06%)</title><rect x="234.3" y="529" width="0.7" height="15.0" fill="rgb(243,136,3)" rx="2" ry="2" />
<text text-anchor="" x="237.33" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::ChannelMojo::Send (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelMojo::Send (1 samples, 0.03%)</title><rect x="224.7" y="625" width="0.3" height="15.0" fill="rgb(212,21,12)" rx="2" ry="2" />
<text text-anchor="" x="227.67" y="635.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator delete (1 samples, 0.03%)</title><rect x="507.0" y="577" width="0.3" height="15.0" fill="rgb(221,55,12)" rx="2" ry="2" />
<text text-anchor="" x="510.00" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator new (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (1 samples, 0.03%)</title><rect x="1000.0" y="625" width="0.3" height="15.0" fill="rgb(249,51,5)" rx="2" ry="2" />
<text text-anchor="" x="1003.00" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>free (2 samples, 0.06%)</title><rect x="502.0" y="593" width="0.7" height="15.0" fill="rgb(250,145,10)" rx="2" ry="2" />
<text text-anchor="" x="505.00" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree (2 samples, 0.06%)</title><rect x="455.7" y="529" width="0.6" height="15.0" fill="rgb(226,13,51)" rx="2" ry="2" />
<text text-anchor="" x="458.67" y="539.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (6 samples, 0.17%)</title><rect x="559.0" y="177" width="2.0" height="15.0" fill="rgb(218,4,39)" rx="2" ry="2" />
<text text-anchor="" x="562.00" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::OnWriteCompletedNoLock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::OnWriteCompletedNoLock (1 samples, 0.03%)</title><rect x="332.3" y="433" width="0.4" height="15.0" fill="rgb(217,170,47)" rx="2" ry="2" />
<text text-anchor="" x="335.33" y="443.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.03%)</title><rect x="453.7" y="593" width="0.3" height="15.0" fill="rgb(218,5,45)" rx="2" ry="2" />
<text text-anchor="" x="456.67" y="603.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>Pickle::Pickle (4 samples, 0.11%)</title><rect x="1011.7" y="641" width="1.3" height="15.0" fill="rgb(220,213,53)" rx="2" ry="2" />
<text text-anchor="" x="1014.67" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree_skbmem (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree_skbmem (3 samples, 0.08%)</title><rect x="1103.3" y="577" width="1.0" height="15.0" fill="rgb(238,65,32)" rx="2" ry="2" />
<text text-anchor="" x="1106.33" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_release_head_state (16 samples, 0.45%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_head_state (16 samples, 0.45%)</title><rect x="456.3" y="561" width="5.4" height="15.0" fill="rgb(230,192,30)" rx="2" ry="2" />
<text text-anchor="" x="459.33" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('copy_user_generic_string (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_string (1 samples, 0.03%)</title><rect x="465.0" y="577" width="0.3" height="15.0" fill="rgb(227,106,10)" rx="2" ry="2" />
<text text-anchor="" x="468.00" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipeDispatcher::ReadMessageImplNoLock (25 samples, 0.71%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipeDispatcher::ReadMessageImplNoLock (25 samples, 0.71%)</title><rect x="373.0" y="593" width="8.3" height="15.0" fill="rgb(208,199,2)" rx="2" ry="2" />
<text text-anchor="" x="376.00" y="603.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (4 samples, 0.11%)</title><rect x="37.0" y="785" width="1.3" height="15.0" fill="rgb(223,4,54)" rx="2" ry="2" />
<text text-anchor="" x="40.00" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kmalloc_slab (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>kmalloc_slab (2 samples, 0.06%)</title><rect x="285.0" y="257" width="0.7" height="15.0" fill="rgb(227,66,17)" rx="2" ry="2" />
<text text-anchor="" x="288.00" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::test::IPCChannelPerfTestBase::RunTestChannelPingPong (79 samples, 2.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::test::IPCChannelPerfTestBase::RunTestChannelPingPong (79 samples, 2.23%)</title><rect x="547.3" y="753" width="26.4" height="15.0" fill="rgb(249,132,38)" rx="2" ry="2" />
<text text-anchor="" x="550.33" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >I..</text>
</g>
<g class="func_g" onmouseover="s('memcpy_fromiovecend (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>memcpy_fromiovecend (3 samples, 0.08%)</title><rect x="274.0" y="289" width="1.0" height="15.0" fill="rgb(234,171,10)" rx="2" ry="2" />
<text text-anchor="" x="277.00" y="299.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.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (2 samples, 0.06%)</title><rect x="885.0" y="289" width="0.7" height="15.0" fill="rgb(234,85,46)" rx="2" ry="2" />
<text text-anchor="" x="888.00" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('finish_task_switch (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (3 samples, 0.08%)</title><rect x="28.0" y="817" width="1.0" height="15.0" fill="rgb(227,181,7)" rx="2" ry="2" />
<text text-anchor="" x="31.00" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fget_light (7 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>fget_light (7 samples, 0.20%)</title><rect x="1125.0" y="625" width="2.3" height="15.0" fill="rgb(243,131,53)" rx="2" ry="2" />
<text text-anchor="" x="1128.00" y="635.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.11%)</title><rect x="11.7" y="513" width="1.3" height="15.0" fill="rgb(226,148,36)" rx="2" ry="2" />
<text text-anchor="" x="14.67" y="523.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.03%)</title><rect x="552.0" y="449" width="0.3" height="15.0" fill="rgb(227,164,19)" rx="2" ry="2" />
<text text-anchor="" x="555.00" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__posix_memalign (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>__posix_memalign (4 samples, 0.11%)</title><rect x="519.0" y="657" width="1.3" height="15.0" fill="rgb(222,139,15)" rx="2" ry="2" />
<text text-anchor="" x="522.00" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('put_pid (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>put_pid (1 samples, 0.03%)</title><rect x="1108.3" y="545" width="0.4" height="15.0" fill="rgb(239,59,44)" rx="2" ry="2" />
<text text-anchor="" x="1111.33" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (2 samples, 0.06%)</title><rect x="691.0" y="753" width="0.7" height="15.0" fill="rgb(219,129,32)" rx="2" ry="2" />
<text text-anchor="" x="694.00" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__kmalloc_reserve.isra.27 (13 samples, 0.37%)')" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_reserve.isra.27 (13 samples, 0.37%)</title><rect x="892.7" y="273" width="4.3" height="15.0" fill="rgb(213,77,50)" rx="2" ry="2" />
<text text-anchor="" x="895.67" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('put_prev_task_fair (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>put_prev_task_fair (2 samples, 0.06%)</title><rect x="768.0" y="625" width="0.7" height="15.0" fill="rgb(248,210,5)" rx="2" ry="2" />
<text text-anchor="" x="771.00" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::ChannelMojo::Send (348 samples, 9.83%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelMojo::Send (348 samples, 9.83%)</title><rect x="228.3" y="609" width="116.0" height="15.0" fill="rgb(224,61,1)" rx="2" ry="2" />
<text text-anchor="" x="231.33" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IPC::ChannelMo..</text>
</g>
<g class="func_g" onmouseover="s('__pm_relax (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pm_relax (1 samples, 0.03%)</title><rect x="722.0" y="689" width="0.3" height="15.0" fill="rgb(248,211,23)" rx="2" ry="2" />
<text text-anchor="" x="725.00" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (4 samples, 0.11%)</title><rect x="10.0" y="881" width="1.3" height="15.0" fill="rgb(237,191,38)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('smp_apic_timer_interrupt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.03%)</title><rect x="457.3" y="513" width="0.4" height="15.0" fill="rgb(222,47,50)" rx="2" ry="2" />
<text text-anchor="" x="460.33" y="523.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::test::LockThreadAffinity::LockThreadAffinity (4 samples, 0.11%)</title><rect x="37.0" y="817" width="1.3" height="15.0" fill="rgb(250,137,1)" rx="2" ry="2" />
<text text-anchor="" x="40.00" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>free (1 samples, 0.03%)</title><rect x="344.0" y="593" width="0.3" height="15.0" fill="rgb(248,108,2)" rx="2" ry="2" />
<text text-anchor="" x="347.00" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('copy_user_generic_string (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_string (1 samples, 0.03%)</title><rect x="558.3" y="209" width="0.4" height="15.0" fill="rgb(223,6,53)" rx="2" ry="2" />
<text text-anchor="" x="561.33" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('malloc (6 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>malloc (6 samples, 0.17%)</title><rect x="1073.3" y="737" width="2.0" height="15.0" fill="rgb(232,160,13)" rx="2" ry="2" />
<text text-anchor="" x="1076.33" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rb_erase (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>rb_erase (2 samples, 0.06%)</title><rect x="766.7" y="593" width="0.6" height="15.0" fill="rgb(228,31,46)" rx="2" ry="2" />
<text text-anchor="" x="769.67" y="603.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_getpeersec_dgram (3 samples, 0.08%)</title><rect x="872.0" y="321" width="1.0" height="15.0" fill="rgb(227,59,39)" rx="2" ry="2" />
<text text-anchor="" x="875.00" y="331.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.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (2 samples, 0.06%)</title><rect x="311.7" y="97" width="0.6" height="15.0" fill="rgb(217,34,34)" rx="2" ry="2" />
<text text-anchor="" x="314.67" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_audit (41 samples, 1.16%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_audit (41 samples, 1.16%)</title><rect x="85.0" y="737" width="13.7" height="15.0" fill="rgb(206,126,30)" rx="2" ry="2" />
<text text-anchor="" x="88.00" y="747.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>stop_one_cpu (4 samples, 0.11%)</title><rect x="37.0" y="721" width="1.3" height="15.0" fill="rgb(228,214,54)" rx="2" ry="2" />
<text text-anchor="" x="40.00" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessageInTransit::MessageInTransit (9 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::MessageInTransit (9 samples, 0.25%)</title><rect x="518.7" y="673" width="3.0" height="15.0" fill="rgb(213,205,40)" rx="2" ry="2" />
<text text-anchor="" x="521.67" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_regs_caller (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_regs_caller (4 samples, 0.11%)</title><rect x="1123.0" y="641" width="1.3" height="15.0" fill="rgb(229,133,39)" rx="2" ry="2" />
<text text-anchor="" x="1126.00" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::AddAwakable (6 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::AddAwakable (6 samples, 0.17%)</title><rect x="794.3" y="625" width="2.0" height="15.0" fill="rgb(212,204,35)" rx="2" ry="2" />
<text text-anchor="" x="797.33" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock@plt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock@plt (1 samples, 0.03%)</title><rect x="385.3" y="609" width="0.4" height="15.0" fill="rgb(250,189,26)" rx="2" ry="2" />
<text text-anchor="" x="388.33" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::Release (9 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (9 samples, 0.25%)</title><rect x="406.7" y="721" width="3.0" height="15.0" fill="rgb(220,103,15)" rx="2" ry="2" />
<text text-anchor="" x="409.67" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_release_all (41 samples, 1.16%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_all (41 samples, 1.16%)</title><rect x="1104.3" y="577" width="13.7" height="15.0" fill="rgb(239,110,54)" rx="2" ry="2" />
<text text-anchor="" x="1107.33" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::AsyncHandleWaiter::Wait (27 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::AsyncHandleWaiter::Wait (27 samples, 0.76%)</title><rect x="792.0" y="673" width="9.0" height="15.0" fill="rgb(244,63,7)" rx="2" ry="2" />
<text text-anchor="" x="795.00" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>free (2 samples, 0.06%)</title><rect x="1055.3" y="721" width="0.7" height="15.0" fill="rgb(217,76,27)" rx="2" ry="2" />
<text text-anchor="" x="1058.33" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::WriteBuffer::GetBuffers (6 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::WriteBuffer::GetBuffers (6 samples, 0.17%)</title><rect x="330.0" y="417" width="2.0" height="15.0" fill="rgb(222,197,32)" rx="2" ry="2" />
<text text-anchor="" x="333.00" y="427.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>current_kernel_time (1 samples, 0.03%)</title><rect x="251.0" y="369" width="0.3" height="15.0" fill="rgb(233,71,32)" rx="2" ry="2" />
<text text-anchor="" x="254.00" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_int_free (103 samples, 2.91%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (103 samples, 2.91%)</title><rect x="580.7" y="881" width="34.3" height="15.0" fill="rgb(245,51,45)" rx="2" ry="2" />
<text text-anchor="" x="583.67" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_i..</text>
</g>
<g class="func_g" onmouseover="s('IPC::Message::~Message (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::Message::~Message (1 samples, 0.03%)</title><rect x="1010.3" y="641" width="0.4" height="15.0" fill="rgb(239,205,39)" rx="2" ry="2" />
<text text-anchor="" x="1013.33" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__sys_recvmsg (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>__sys_recvmsg (3 samples, 0.08%)</title><rect x="569.3" y="577" width="1.0" height="15.0" fill="rgb(212,31,3)" rx="2" ry="2" />
<text text-anchor="" x="572.33" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apparmor_socket_getpeersec_dgram (6 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_getpeersec_dgram (6 samples, 0.17%)</title><rect x="878.3" y="305" width="2.0" height="15.0" fill="rgb(214,133,8)" rx="2" ry="2" />
<text text-anchor="" x="881.33" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_ops_list_func (11 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_ops_list_func (11 samples, 0.31%)</title><rect x="1091.3" y="593" width="3.7" height="15.0" fill="rgb(237,217,42)" rx="2" ry="2" />
<text text-anchor="" x="1094.33" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree (8 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree (8 samples, 0.23%)</title><rect x="1105.3" y="529" width="2.7" height="15.0" fill="rgb(227,190,41)" rx="2" ry="2" />
<text text-anchor="" x="1108.33" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.14%)</title><rect x="11.3" y="817" width="1.7" height="15.0" fill="rgb(254,165,28)" rx="2" ry="2" />
<text text-anchor="" x="14.33" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::AsyncHandleWaiter::Wait (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::AsyncHandleWaiter::Wait (4 samples, 0.11%)</title><rect x="553.7" y="593" width="1.3" height="15.0" fill="rgb(233,98,44)" rx="2" ry="2" />
<text text-anchor="" x="556.67" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_enable (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (3 samples, 0.08%)</title><rect x="159.3" y="577" width="1.0" height="15.0" fill="rgb(214,164,45)" rx="2" ry="2" />
<text text-anchor="" x="162.33" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('event_active (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>event_active (1 samples, 0.03%)</title><rect x="573.0" y="673" width="0.3" height="15.0" fill="rgb(235,124,1)" rx="2" ry="2" />
<text text-anchor="" x="576.00" y="683.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (1 samples, 0.03%)</title><rect x="926.0" y="81" width="0.3" height="15.0" fill="rgb(223,80,18)" rx="2" ry="2" />
<text text-anchor="" x="929.00" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_int_free (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (2 samples, 0.06%)</title><rect x="195.7" y="737" width="0.6" height="15.0" fill="rgb(252,19,52)" rx="2" ry="2" />
<text text-anchor="" x="198.67" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('std::string::_M_mutate (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::string::_M_mutate (2 samples, 0.06%)</title><rect x="668.7" y="881" width="0.6" height="15.0" fill="rgb(216,173,51)" rx="2" ry="2" />
<text text-anchor="" x="671.67" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('scoped_refptrIPC::internal::AsyncHandleWaiter::Context::~scoped_refptr (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>scoped_refptrIPC::internal::AsyncHandleWaiter::Context::~scoped_refptr (2 samples, 0.06%)</title><rect x="400.7" y="705" width="0.6" height="15.0" fill="rgb(216,175,45)" rx="2" ry="2" />
<text text-anchor="" x="403.67" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::WeakReference::is_valid (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReference::is_valid (4 samples, 0.11%)</title><rect x="415.0" y="737" width="1.3" height="15.0" fill="rgb(252,84,37)" rx="2" ry="2" />
<text text-anchor="" x="418.00" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_common (6 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (6 samples, 0.17%)</title><rect x="559.0" y="145" width="2.0" height="15.0" fill="rgb(220,211,28)" rx="2" ry="2" />
<text text-anchor="" x="562.00" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_common (6 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (6 samples, 0.17%)</title><rect x="559.0" y="193" width="2.0" height="15.0" fill="rgb(231,6,29)" rx="2" ry="2" />
<text text-anchor="" x="562.00" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator new (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (1 samples, 0.03%)</title><rect x="1056.3" y="721" width="0.4" height="15.0" fill="rgb(253,119,28)" rx="2" ry="2" />
<text text-anchor="" x="1059.33" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__libc_write (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_write (2 samples, 0.06%)</title><rect x="949.3" y="417" width="0.7" height="15.0" fill="rgb(223,158,51)" rx="2" ry="2" />
<text text-anchor="" x="952.33" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('event_base_loop (1,431 samples, 40.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>event_base_loop (1,431 samples, 40.42%)</title><rect x="70.0" y="769" width="477.0" height="15.0" fill="rgb(238,105,27)" rx="2" ry="2" />
<text text-anchor="" x="73.00" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >event_base_loop</text>
</g>
<g class="func_g" onmouseover="s('void mojo::system::internal::CheckUserPointer4ul, 4ul (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>void mojo::system::internal::CheckUserPointer4ul, 4ul (1 samples, 0.03%)</title><rect x="1026.7" y="561" width="0.3" height="15.0" fill="rgb(212,190,47)" rx="2" ry="2" />
<text text-anchor="" x="1029.67" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_program_event (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_program_event (1 samples, 0.03%)</title><rect x="141.3" y="561" width="0.4" height="15.0" fill="rgb(228,131,39)" rx="2" ry="2" />
<text text-anchor="" x="144.33" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_write (6 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (6 samples, 0.17%)</title><rect x="850.0" y="401" width="2.0" height="15.0" fill="rgb(246,39,16)" rx="2" ry="2" />
<text text-anchor="" x="853.00" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (331 samples, 9.35%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (331 samples, 9.35%)</title><rect x="76.7" y="753" width="110.3" height="15.0" fill="rgb(253,221,45)" rx="2" ry="2" />
<text text-anchor="" x="79.67" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s('perf_event_context_sched_in (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (4 samples, 0.11%)</title><rect x="547.3" y="545" width="1.4" height="15.0" fill="rgb(239,210,27)" rx="2" ry="2" />
<text text-anchor="" x="550.33" y="555.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>rb_erase (4 samples, 0.11%)</title><rect x="172.7" y="593" width="1.3" height="15.0" fill="rgb(217,170,20)" rx="2" ry="2" />
<text text-anchor="" x="175.67" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::OnReadMessageForEndpoint (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::OnReadMessageForEndpoint (5 samples, 0.14%)</title><rect x="570.7" y="609" width="1.6" height="15.0" fill="rgb(251,89,38)" rx="2" ry="2" />
<text text-anchor="" x="573.67" y="619.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_node_track_caller (1 samples, 0.03%)</title><rect x="892.3" y="273" width="0.4" height="15.0" fill="rgb(244,135,8)" rx="2" ry="2" />
<text text-anchor="" x="895.33" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('wait_for_unix_gc (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>wait_for_unix_gc (2 samples, 0.06%)</title><rect x="943.0" y="321" width="0.7" height="15.0" fill="rgb(211,34,16)" rx="2" ry="2" />
<text text-anchor="" x="946.00" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::DidProcessIOEvent (641 samples, 18.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::DidProcessIOEvent (641 samples, 18.11%)</title><rect x="196.3" y="737" width="213.7" height="15.0" fill="rgb(217,62,47)" rx="2" ry="2" />
<text text-anchor="" x="199.33" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::MessagePumpLibevent::D..</text>
</g>
<g class="func_g" onmouseover="s('skb_free_head (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_free_head (2 samples, 0.06%)</title><rect x="455.7" y="545" width="0.6" height="15.0" fill="rgb(252,201,3)" rx="2" ry="2" />
<text text-anchor="" x="458.67" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_lookup_ip (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_lookup_ip (2 samples, 0.06%)</title><rect x="1092.3" y="561" width="0.7" height="15.0" fill="rgb(237,132,31)" rx="2" ry="2" />
<text text-anchor="" x="1095.33" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::InvokerIndexSequence0ul, base::internal::BindStatebase::internal::RunnableAdaptervoid (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::InvokerIndexSequence0ul, base::internal::BindStatebase::internal::RunnableAdaptervoid (1 samples, 0.03%)</title><rect x="1051.0" y="721" width="0.3" height="15.0" fill="rgb(234,150,2)" rx="2" ry="2" />
<text text-anchor="" x="1054.00" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::MessagePipeReader::PipeIsReady (606 samples, 17.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::MessagePipeReader::PipeIsReady (606 samples, 17.12%)</title><rect x="198.3" y="705" width="202.0" height="15.0" fill="rgb(211,120,12)" rx="2" ry="2" />
<text text-anchor="" x="201.33" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IPC::internal::MessagePipe..</text>
</g>
<g class="func_g" onmouseover="s('skb_copy_datagram_from_iovec (12 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_from_iovec (12 samples, 0.34%)</title><rect x="271.0" y="305" width="4.0" height="15.0" fill="rgb(245,37,27)" rx="2" ry="2" />
<text text-anchor="" x="274.00" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__memcpy_sse2_unaligned (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_sse2_unaligned (4 samples, 0.11%)</title><rect x="373.7" y="561" width="1.3" height="15.0" fill="rgb(234,171,33)" rx="2" ry="2" />
<text text-anchor="" x="376.67" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::GetHandleSignalsState (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::GetHandleSignalsState (2 samples, 0.06%)</title><rect x="1166.3" y="625" width="0.7" height="15.0" fill="rgb(225,87,33)" rx="2" ry="2" />
<text text-anchor="" x="1169.33" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('scheduler_tick (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>scheduler_tick (1 samples, 0.03%)</title><rect x="780.7" y="625" width="0.3" height="15.0" fill="rgb(238,221,0)" rx="2" ry="2" />
<text text-anchor="" x="783.67" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (2 samples, 0.06%)</title><rect x="551.7" y="561" width="0.6" height="15.0" fill="rgb(215,98,29)" rx="2" ry="2" />
<text text-anchor="" x="554.67" y="571.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::HasOneRef (4 samples, 0.11%)</title><rect x="1058.7" y="721" width="1.3" height="15.0" fill="rgb(217,101,5)" rx="2" ry="2" />
<text text-anchor="" x="1061.67" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('void mojo::system::internal::CheckUserPointerWithCount1ul, 1ul (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>void mojo::system::internal::CheckUserPointerWithCount1ul, 1ul (1 samples, 0.03%)</title><rect x="1026.3" y="545" width="0.4" height="15.0" fill="rgb(227,170,35)" rx="2" ry="2" />
<text text-anchor="" x="1029.33" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('deactivate_task (46 samples, 1.30%)')" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (46 samples, 1.30%)</title><rect x="141.7" y="625" width="15.3" height="15.0" fill="rgb(217,229,15)" rx="2" ry="2" />
<text text-anchor="" x="144.67" y="635.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::ProcessNextDelayedNonNestableTask (1 samples, 0.03%)</title><rect x="689.0" y="753" width="0.3" height="15.0" fill="rgb(235,161,3)" rx="2" ry="2" />
<text text-anchor="" x="692.00" y="763.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_check (1 samples, 0.03%)</title><rect x="714.3" y="737" width="0.4" height="15.0" fill="rgb(234,82,49)" rx="2" ry="2" />
<text text-anchor="" x="717.33" y="747.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.11%)</title><rect x="37.0" y="577" width="1.3" height="15.0" fill="rgb(208,54,47)" rx="2" ry="2" />
<text text-anchor="" x="40.00" y="587.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (3 samples, 0.08%)</title><rect x="961.3" y="449" width="1.0" height="15.0" fill="rgb(235,93,37)" rx="2" ry="2" />
<text text-anchor="" x="964.33" y="459.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_sys_call (1 samples, 0.03%)</title><rect x="849.7" y="401" width="0.3" height="15.0" fill="rgb(225,5,39)" rx="2" ry="2" />
<text text-anchor="" x="852.67" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::OnReadMessageForClient (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::OnReadMessageForClient (2 samples, 0.06%)</title><rect x="571.7" y="577" width="0.6" height="15.0" fill="rgb(208,69,21)" rx="2" ry="2" />
<text text-anchor="" x="574.67" y="587.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.03%)</title><rect x="550.7" y="609" width="0.3" height="15.0" fill="rgb(232,24,36)" rx="2" ry="2" />
<text text-anchor="" x="553.67" y="619.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>mutex_unlock (3 samples, 0.08%)</title><rect x="740.0" y="689" width="1.0" height="15.0" fill="rgb(207,126,49)" rx="2" ry="2" />
<text text-anchor="" x="743.00" y="699.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>memcpy_fromiovecend (1 samples, 0.03%)</title><rect x="880.7" y="305" width="0.3" height="15.0" fill="rgb(209,196,38)" rx="2" ry="2" />
<text text-anchor="" x="883.67" y="315.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 (6 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (6 samples, 0.17%)</title><rect x="757.0" y="609" width="2.0" height="15.0" fill="rgb(221,109,41)" rx="2" ry="2" />
<text text-anchor="" x="760.00" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>free (2 samples, 0.06%)</title><rect x="375.3" y="561" width="0.7" height="15.0" fill="rgb(241,16,0)" rx="2" ry="2" />
<text text-anchor="" x="378.33" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_task_fair (27 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (27 samples, 0.76%)</title><rect x="746.7" y="593" width="9.0" height="15.0" fill="rgb(223,93,41)" rx="2" ry="2" />
<text text-anchor="" x="749.67" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_unlink (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_unlink (1 samples, 0.03%)</title><rect x="1100.7" y="609" width="0.3" height="15.0" fill="rgb(207,201,50)" rx="2" ry="2" />
<text text-anchor="" x="1103.67" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('std::__detail::_List_node_base::_M_hook (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_List_node_base::_M_hook (1 samples, 0.03%)</title><rect x="554.3" y="529" width="0.4" height="15.0" fill="rgb(248,186,28)" rx="2" ry="2" />
<text text-anchor="" x="557.33" y="539.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>put_prev_task_fair (1 samples, 0.03%)</title><rect x="179.3" y="641" width="0.4" height="15.0" fill="rgb(239,67,23)" rx="2" ry="2" />
<text text-anchor="" x="182.33" y="651.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>task_waking_fair (1 samples, 0.03%)</title><rect x="909.3" y="177" width="0.4" height="15.0" fill="rgb(250,71,18)" rx="2" ry="2" />
<text text-anchor="" x="912.33" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_unlink (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_unlink (4 samples, 0.11%)</title><rect x="468.0" y="593" width="1.3" height="15.0" fill="rgb(245,180,53)" rx="2" ry="2" />
<text text-anchor="" x="471.00" y="603.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator delete (4 samples, 0.11%)</title><rect x="960.0" y="433" width="1.3" height="15.0" fill="rgb(254,144,21)" rx="2" ry="2" />
<text text-anchor="" x="963.00" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::WeakReferenceOwner::GetRef (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReferenceOwner::GetRef (2 samples, 0.06%)</title><rect x="1052.0" y="721" width="0.7" height="15.0" fill="rgb(236,187,30)" rx="2" ry="2" />
<text text-anchor="" x="1055.00" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (2 samples, 0.06%)</title><rect x="380.7" y="577" width="0.6" height="15.0" fill="rgb(239,49,21)" rx="2" ry="2" />
<text text-anchor="" x="383.67" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ret_from_fork (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_fork (5 samples, 0.14%)</title><rect x="11.3" y="625" width="1.7" height="15.0" fill="rgb(214,228,12)" rx="2" ry="2" />
<text text-anchor="" x="14.33" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_release_head_state (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_head_state (3 samples, 0.08%)</title><rect x="1118.0" y="577" width="1.0" height="15.0" fill="rgb(238,84,46)" rx="2" ry="2" />
<text text-anchor="" x="1121.00" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_epoll_wait (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (1 samples, 0.03%)</title><rect x="706.7" y="737" width="0.3" height="15.0" fill="rgb(224,6,6)" rx="2" ry="2" />
<text text-anchor="" x="709.67" y="747.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>search_binary_handler (4 samples, 0.11%)</title><rect x="10.0" y="817" width="1.3" height="15.0" fill="rgb(215,183,36)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="827.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 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_scan_ready_list.isra.9 (1 samples, 0.03%)</title><rect x="180.0" y="705" width="0.3" height="15.0" fill="rgb(241,28,34)" rx="2" ry="2" />
<text text-anchor="" x="183.00" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('place_entity (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>place_entity (2 samples, 0.06%)</title><rect x="309.7" y="113" width="0.6" height="15.0" fill="rgb(226,80,54)" rx="2" ry="2" />
<text text-anchor="" x="312.67" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('security_socket_recvmsg (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_recvmsg (2 samples, 0.06%)</title><rect x="1088.7" y="625" width="0.6" height="15.0" fill="rgb(209,74,18)" rx="2" ry="2" />
<text text-anchor="" x="1091.67" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_read_tsc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_read_tsc (1 samples, 0.03%)</title><rect x="32.3" y="705" width="0.4" height="15.0" fill="rgb(205,102,37)" rx="2" ry="2" />
<text text-anchor="" x="35.33" y="715.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (3 samples, 0.08%)</title><rect x="334.0" y="449" width="1.0" height="15.0" fill="rgb(254,202,42)" rx="2" ry="2" />
<text text-anchor="" x="337.00" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::OnReadMessageForEndpoint (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::OnReadMessageForEndpoint (2 samples, 0.06%)</title><rect x="528.0" y="705" width="0.7" height="15.0" fill="rgb(225,17,25)" rx="2" ry="2" />
<text text-anchor="" x="531.00" y="715.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (1 samples, 0.03%)</title><rect x="156.7" y="577" width="0.3" height="15.0" fill="rgb(247,165,12)" rx="2" ry="2" />
<text text-anchor="" x="159.67" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_hrtimeout_range (153 samples, 4.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (153 samples, 4.32%)</title><rect x="129.0" y="689" width="51.0" height="15.0" fill="rgb(247,154,19)" rx="2" ry="2" />
<text text-anchor="" x="132.00" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sched..</text>
</g>
<g class="func_g" onmouseover="s('copy_msghdr_from_user (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>copy_msghdr_from_user (2 samples, 0.06%)</title><rect x="438.3" y="625" width="0.7" height="15.0" fill="rgb(251,200,25)" rx="2" ry="2" />
<text text-anchor="" x="441.33" y="635.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>setup_new_exec (4 samples, 0.11%)</title><rect x="10.0" y="785" width="1.3" height="15.0" fill="rgb(253,185,30)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (80 samples, 2.26%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (80 samples, 2.26%)</title><rect x="742.0" y="641" width="26.7" height="15.0" fill="rgb(251,125,13)" rx="2" ry="2" />
<text text-anchor="" x="745.00" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s('sysret_audit (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_audit (1 samples, 0.03%)</title><rect x="556.7" y="321" width="0.3" height="15.0" fill="rgb(209,67,31)" rx="2" ry="2" />
<text text-anchor="" x="559.67" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::WeakReference::is_valid (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReference::is_valid (2 samples, 0.06%)</title><rect x="1051.3" y="721" width="0.7" height="15.0" fill="rgb(253,74,2)" rx="2" ry="2" />
<text text-anchor="" x="1054.33" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__libc_disable_asynccancel (12 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_disable_asynccancel (12 samples, 0.34%)</title><rect x="774.3" y="753" width="4.0" height="15.0" fill="rgb(245,205,17)" rx="2" ry="2" />
<text text-anchor="" x="777.33" y="763.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (4 samples, 0.11%)</title><rect x="1175.7" y="689" width="1.3" height="15.0" fill="rgb(231,69,27)" rx="2" ry="2" />
<text text-anchor="" x="1178.67" y="699.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>Pickle::Pickle (1 samples, 0.03%)</title><rect x="564.0" y="513" width="0.3" height="15.0" fill="rgb(220,47,38)" rx="2" ry="2" />
<text text-anchor="" x="567.00" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (2 samples, 0.06%)</title><rect x="1040.3" y="625" width="0.7" height="15.0" fill="rgb(229,168,31)" rx="2" ry="2" />
<text text-anchor="" x="1043.33" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fput (6 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>fput (6 samples, 0.17%)</title><rect x="184.7" y="705" width="2.0" height="15.0" fill="rgb(224,124,5)" rx="2" ry="2" />
<text text-anchor="" x="187.67" y="715.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>set_next_entity (1 samples, 0.03%)</title><rect x="34.0" y="801" width="0.3" height="15.0" fill="rgb(213,178,39)" rx="2" ry="2" />
<text text-anchor="" x="37.00" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('security_socket_recvmsg (11 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_recvmsg (11 samples, 0.31%)</title><rect x="1096.7" y="609" width="3.6" height="15.0" fill="rgb(227,152,36)" rx="2" ry="2" />
<text text-anchor="" x="1099.67" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Dispatcher::AddAwakable (8 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Dispatcher::AddAwakable (8 samples, 0.23%)</title><rect x="794.3" y="641" width="2.7" height="15.0" fill="rgb(220,102,24)" rx="2" ry="2" />
<text text-anchor="" x="797.33" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ObserverListBasemojo::common::MessagePumpMojo::Observer::Iterator::~Iterator (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>ObserverListBasemojo::common::MessagePumpMojo::Observer::Iterator::~Iterator (3 samples, 0.08%)</title><rect x="1057.0" y="721" width="1.0" height="15.0" fill="rgb(219,169,8)" rx="2" ry="2" />
<text text-anchor="" x="1060.00" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::OnLibeventNotification (1,030 samples, 29.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::OnLibeventNotification (1,030 samples, 29.10%)</title><rect x="191.7" y="753" width="343.3" height="15.0" fill="rgb(240,219,21)" rx="2" ry="2" />
<text text-anchor="" x="194.67" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::MessagePumpLibevent::OnLibeventNotificat..</text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_fair (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_fair (1 samples, 0.03%)</title><rect x="769.0" y="641" width="0.3" height="15.0" fill="rgb(249,194,12)" rx="2" ry="2" />
<text text-anchor="" x="772.00" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rb_erase (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>rb_erase (2 samples, 0.06%)</title><rect x="765.3" y="609" width="0.7" height="15.0" fill="rgb(207,228,24)" rx="2" ry="2" />
<text text-anchor="" x="768.33" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('page_fault (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (1 samples, 0.03%)</title><rect x="11.3" y="609" width="0.4" height="15.0" fill="rgb(218,197,52)" rx="2" ry="2" />
<text text-anchor="" x="14.33" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_locked (61 samples, 1.72%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_locked (61 samples, 1.72%)</title><rect x="296.0" y="241" width="20.3" height="15.0" fill="rgb(241,160,1)" rx="2" ry="2" />
<text text-anchor="" x="299.00" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::Release (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (2 samples, 0.06%)</title><rect x="498.0" y="657" width="0.7" height="15.0" fill="rgb(219,211,27)" rx="2" ry="2" />
<text text-anchor="" x="501.00" y="667.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>path_put (1 samples, 0.03%)</title><rect x="257.0" y="369" width="0.3" height="15.0" fill="rgb(247,203,26)" rx="2" ry="2" />
<text text-anchor="" x="260.00" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_task_fair (38 samples, 1.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (38 samples, 1.07%)</title><rect x="142.7" y="593" width="12.6" height="15.0" fill="rgb(244,110,16)" rx="2" ry="2" />
<text text-anchor="" x="145.67" 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 (6 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (6 samples, 0.17%)</title><rect x="504.0" y="577" width="2.0" height="15.0" fill="rgb(248,9,0)" rx="2" ry="2" />
<text text-anchor="" x="507.00" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('testing::TestInfo::Run (1,560 samples, 44.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>testing::TestInfo::Run (1,560 samples, 44.07%)</title><rect x="670.0" y="865" width="520.0" height="15.0" fill="rgb(233,78,2)" rx="2" ry="2" />
<text text-anchor="" x="673.00" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >testing::TestInfo::Run</text>
</g>
<g class="func_g" onmouseover="s('sys_epoll_wait (8 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (8 samples, 0.23%)</title><rect x="550.7" y="641" width="2.6" height="15.0" fill="rgb(208,88,41)" rx="2" ry="2" />
<text text-anchor="" x="553.67" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__posix_memalign (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>__posix_memalign (4 samples, 0.11%)</title><rect x="1169.7" y="657" width="1.3" height="15.0" fill="rgb(251,6,8)" rx="2" ry="2" />
<text text-anchor="" x="1172.67" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::OnLibeventNotification (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::OnLibeventNotification (3 samples, 0.08%)</title><rect x="67.3" y="769" width="1.0" height="15.0" fill="rgb(211,109,12)" rx="2" ry="2" />
<text text-anchor="" x="70.33" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_int_free (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (1 samples, 0.03%)</title><rect x="1153.7" y="593" width="0.3" height="15.0" fill="rgb(221,102,44)" rx="2" ry="2" />
<text text-anchor="" x="1156.67" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__memcpy_sse2_unaligned (10 samples, 0.28%)')" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_sse2_unaligned (10 samples, 0.28%)</title><rect x="494.7" y="673" width="3.3" height="15.0" fill="rgb(215,118,6)" rx="2" ry="2" />
<text text-anchor="" x="497.67" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_user (33 samples, 0.93%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_user (33 samples, 0.93%)</title><rect x="25.7" y="849" width="11.0" height="15.0" fill="rgb(217,164,52)" rx="2" ry="2" />
<text text-anchor="" x="28.67" y="859.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.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (2 samples, 0.06%)</title><rect x="815.7" y="561" width="0.6" height="15.0" fill="rgb(241,130,38)" rx="2" ry="2" />
<text text-anchor="" x="818.67" y="571.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_check (3 samples, 0.08%)</title><rect x="858.3" y="401" width="1.0" height="15.0" fill="rgb(237,108,19)" rx="2" ry="2" />
<text text-anchor="" x="861.33" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('PickleIterator::ReadInt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>PickleIterator::ReadInt (1 samples, 0.03%)</title><rect x="998.0" y="625" width="0.3" height="15.0" fill="rgb(240,2,50)" rx="2" ry="2" />
<text text-anchor="" x="1001.00" y="635.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.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (2 samples, 0.06%)</title><rect x="311.7" y="81" width="0.6" height="15.0" fill="rgb(215,53,41)" rx="2" ry="2" />
<text text-anchor="" x="314.67" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::AddRef (6 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (6 samples, 0.17%)</title><rect x="1066.0" y="737" width="2.0" height="15.0" fill="rgb(231,163,34)" rx="2" ry="2" />
<text text-anchor="" x="1069.00" y="747.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (4 samples, 0.11%)</title><rect x="732.3" y="673" width="1.4" height="15.0" fill="rgb(238,208,33)" rx="2" ry="2" />
<text text-anchor="" x="735.33" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::MessagePipeReader::ReadMessageBytes (94 samples, 2.66%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::MessagePipeReader::ReadMessageBytes (94 samples, 2.66%)</title><rect x="1013.0" y="657" width="31.3" height="15.0" fill="rgb(223,33,10)" rx="2" ry="2" />
<text text-anchor="" x="1016.00" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IP..</text>
</g>
<g class="func_g" onmouseover="s('__srcu_read_lock (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>__srcu_read_lock (3 samples, 0.08%)</title><rect x="261.0" y="353" width="1.0" height="15.0" fill="rgb(243,80,40)" rx="2" ry="2" />
<text text-anchor="" x="264.00" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::MessagePipeReader::Send (493 samples, 13.93%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::MessagePipeReader::Send (493 samples, 13.93%)</title><rect x="812.0" y="593" width="164.3" height="15.0" fill="rgb(209,71,4)" rx="2" ry="2" />
<text text-anchor="" x="815.00" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IPC::internal::Messag..</text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_disable (8 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_disable (8 samples, 0.23%)</title><rect x="165.0" y="577" width="2.7" height="15.0" fill="rgb(244,61,23)" rx="2" ry="2" />
<text text-anchor="" x="168.00" 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 (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (2 samples, 0.06%)</title><rect x="756.0" y="577" width="0.7" height="15.0" fill="rgb(221,113,14)" rx="2" ry="2" />
<text text-anchor="" x="759.00" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_sync_write (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_sync_write (1 samples, 0.03%)</title><rect x="860.3" y="369" width="0.4" height="15.0" fill="rgb(206,11,9)" rx="2" ry="2" />
<text text-anchor="" x="863.33" 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 (8 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (8 samples, 0.23%)</title><rect x="550.7" y="657" width="2.6" height="15.0" fill="rgb(249,133,4)" rx="2" ry="2" />
<text text-anchor="" x="553.67" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::DoWork (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::DoWork (1 samples, 0.03%)</title><rect x="670.0" y="785" width="0.3" height="15.0" fill="rgb(244,96,8)" rx="2" ry="2" />
<text text-anchor="" x="673.00" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (345 samples, 9.75%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (345 samples, 9.75%)</title><rect x="841.0" y="433" width="115.0" height="15.0" fill="rgb(217,144,10)" rx="2" ry="2" />
<text text-anchor="" x="844.00" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::system::</text>
</g>
<g class="func_g" onmouseover="s('update_cfs_rq_blocked_load (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_rq_blocked_load (1 samples, 0.03%)</title><rect x="310.3" y="113" width="0.4" height="15.0" fill="rgb(227,97,15)" rx="2" ry="2" />
<text text-anchor="" x="313.33" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::OnReadCompleted (129 samples, 3.64%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::OnReadCompleted (129 samples, 3.64%)</title><rect x="1136.0" y="721" width="43.0" height="15.0" fill="rgb(252,158,6)" rx="2" ry="2" />
<text text-anchor="" x="1139.00" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo..</text>
</g>
<g class="func_g" onmouseover="s('skb_copy_datagram_from_iovec (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_from_iovec (2 samples, 0.06%)</title><rect x="873.3" y="321" width="0.7" height="15.0" fill="rgb(217,169,52)" rx="2" ry="2" />
<text text-anchor="" x="876.33" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (8 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (8 samples, 0.23%)</title><rect x="853.3" y="369" width="2.7" height="15.0" fill="rgb(229,92,35)" rx="2" ry="2" />
<text text-anchor="" x="856.33" 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 (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (5 samples, 0.14%)</title><rect x="1031.0" y="609" width="1.7" height="15.0" fill="rgb(254,20,47)" rx="2" ry="2" />
<text text-anchor="" x="1034.00" y="619.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>clock_gettime@plt (1 samples, 0.03%)</title><rect x="69.0" y="769" width="0.3" height="15.0" fill="rgb(212,175,50)" rx="2" ry="2" />
<text text-anchor="" x="72.00" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_put (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_put (2 samples, 0.06%)</title><rect x="265.3" y="321" width="0.7" height="15.0" fill="rgb(249,21,46)" rx="2" ry="2" />
<text text-anchor="" x="268.33" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (8 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (8 samples, 0.23%)</title><rect x="22.7" y="865" width="2.6" height="15.0" fill="rgb(253,73,11)" rx="2" ry="2" />
<text text-anchor="" x="25.67" y="875.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>epoll_wait (3 samples, 0.08%)</title><rect x="540.3" y="753" width="1.0" height="15.0" fill="rgb(207,182,23)" rx="2" ry="2" />
<text text-anchor="" x="543.33" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_int_free (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (4 samples, 0.11%)</title><rect x="836.7" y="433" width="1.3" height="15.0" fill="rgb(235,12,7)" rx="2" ry="2" />
<text text-anchor="" x="839.67" y="443.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>local_clock (3 samples, 0.08%)</title><rect x="31.7" y="769" width="1.0" height="15.0" fill="rgb(215,166,36)" rx="2" ry="2" />
<text text-anchor="" x="34.67" y="779.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>current_kernel_time (1 samples, 0.03%)</title><rect x="849.3" y="385" width="0.4" height="15.0" fill="rgb(230,108,28)" rx="2" ry="2" />
<text text-anchor="" x="852.33" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (251 samples, 7.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (251 samples, 7.09%)</title><rect x="248.7" y="433" width="83.6" height="15.0" fill="rgb(245,138,54)" rx="2" ry="2" />
<text text-anchor="" x="251.67" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::sys..</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::EnqueueMessage (47 samples, 1.33%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::EnqueueMessage (47 samples, 1.33%)</title><rect x="1150.7" y="625" width="15.6" height="15.0" fill="rgb(221,107,53)" rx="2" ry="2" />
<text text-anchor="" x="1153.67" y="635.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_stat (1 samples, 0.03%)</title><rect x="316.0" y="193" width="0.3" height="15.0" fill="rgb(216,115,20)" rx="2" ry="2" />
<text text-anchor="" x="319.00" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('check_preempt_curr (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>check_preempt_curr (4 samples, 0.11%)</title><rect x="313.0" y="145" width="1.3" height="15.0" fill="rgb(230,50,18)" rx="2" ry="2" />
<text text-anchor="" x="316.00" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('non-virtual thunk to mojo::system:: (10 samples, 0.28%)')" onmouseout="c()" onclick="zoom(this)">
<title>non-virtual thunk to mojo::system:: (10 samples, 0.28%)</title><rect x="569.3" y="657" width="3.4" height="15.0" fill="rgb(242,197,30)" rx="2" ry="2" />
<text text-anchor="" x="572.33" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_poll (222 samples, 6.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (222 samples, 6.27%)</title><rect x="106.0" y="705" width="74.0" height="15.0" fill="rgb(244,37,16)" rx="2" ry="2" />
<text text-anchor="" x="109.00" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ep_poll</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::ReadMessage (17 samples, 0.48%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::ReadMessage (17 samples, 0.48%)</title><rect x="1021.3" y="577" width="5.7" height="15.0" fill="rgb(214,69,44)" rx="2" ry="2" />
<text text-anchor="" x="1024.33" y="587.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (1 samples, 0.03%)</title><rect x="164.0" y="561" width="0.3" height="15.0" fill="rgb(222,164,50)" rx="2" ry="2" />
<text text-anchor="" x="167.00" y="571.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.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (2 samples, 0.06%)</title><rect x="32.0" y="753" width="0.7" height="15.0" fill="rgb(211,181,29)" rx="2" ry="2" />
<text text-anchor="" x="35.00" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__do_page_fault (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__do_page_fault (1 samples, 0.03%)</title><rect x="11.3" y="577" width="0.4" height="15.0" fill="rgb(240,207,45)" rx="2" ry="2" />
<text text-anchor="" x="14.33" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::TestSuite::Run (1,611 samples, 45.51%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::TestSuite::Run (1,611 samples, 45.51%)</title><rect x="37.0" y="849" width="537.0" height="15.0" fill="rgb(216,126,37)" rx="2" ry="2" />
<text text-anchor="" x="40.00" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::TestSuite::Run</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Core::ReadMessage (46 samples, 1.30%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Core::ReadMessage (46 samples, 1.30%)</title><rect x="1018.3" y="625" width="15.4" height="15.0" fill="rgb(226,22,47)" rx="2" ry="2" />
<text text-anchor="" x="1021.33" y="635.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.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock (2 samples, 0.06%)</title><rect x="757.3" y="593" width="0.7" height="15.0" fill="rgb(213,228,23)" rx="2" ry="2" />
<text text-anchor="" x="760.33" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('Pickle::Resize (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>Pickle::Resize (2 samples, 0.06%)</title><rect x="348.7" y="593" width="0.6" height="15.0" fill="rgb(240,6,42)" rx="2" ry="2" />
<text text-anchor="" x="351.67" y="603.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_do_update_jiffies64 (1 samples, 0.03%)</title><rect x="1131.7" y="593" width="0.3" height="15.0" fill="rgb(234,102,21)" rx="2" ry="2" />
<text text-anchor="" x="1134.67" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::OnReadMessageForEndpoint (85 samples, 2.40%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::OnReadMessageForEndpoint (85 samples, 2.40%)</title><rect x="493.3" y="689" width="28.4" height="15.0" fill="rgb(243,27,34)" rx="2" ry="2" />
<text text-anchor="" x="496.33" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mo..</text>
</g>
<g class="func_g" onmouseover="s('enqueue_entity (48 samples, 1.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (48 samples, 1.36%)</title><rect x="913.7" y="113" width="16.0" height="15.0" fill="rgb(211,224,36)" rx="2" ry="2" />
<text text-anchor="" x="916.67" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call (7 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call (7 samples, 0.20%)</title><rect x="13.7" y="817" width="2.3" height="15.0" fill="rgb(229,62,43)" rx="2" ry="2" />
<text text-anchor="" x="16.67" y="827.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (1 samples, 0.03%)</title><rect x="949.0" y="321" width="0.3" height="15.0" fill="rgb(217,208,39)" rx="2" ry="2" />
<text text-anchor="" x="952.00" y="331.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_setaffinity@@GLIBC_2.3.4 (4 samples, 0.11%)</title><rect x="37.0" y="801" width="1.3" height="15.0" fill="rgb(234,176,36)" rx="2" ry="2" />
<text text-anchor="" x="40.00" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('raw_notifier_call_chain (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>raw_notifier_call_chain (1 samples, 0.03%)</title><rect x="457.3" y="353" width="0.4" height="15.0" fill="rgb(240,224,1)" rx="2" ry="2" />
<text text-anchor="" x="460.33" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('setup_arg_pages (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>setup_arg_pages (1 samples, 0.03%)</title><rect x="22.3" y="785" width="0.4" height="15.0" fill="rgb(244,65,35)" rx="2" ry="2" />
<text text-anchor="" x="25.33" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::Release (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (1 samples, 0.03%)</title><rect x="1050.0" y="705" width="0.3" height="15.0" fill="rgb(213,44,24)" rx="2" ry="2" />
<text text-anchor="" x="1053.00" y="715.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 (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (5 samples, 0.14%)</title><rect x="159.0" y="593" width="1.7" height="15.0" fill="rgb(210,198,30)" rx="2" ry="2" />
<text text-anchor="" x="162.00" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::AwakableList::Add (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::AwakableList::Add (1 samples, 0.03%)</title><rect x="209.7" y="593" width="0.3" height="15.0" fill="rgb(228,201,5)" rx="2" ry="2" />
<text text-anchor="" x="212.67" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (4 samples, 0.11%)</title><rect x="337.7" y="481" width="1.3" height="15.0" fill="rgb(251,78,44)" rx="2" ry="2" />
<text text-anchor="" x="340.67" y="491.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>rb_insert_color (1 samples, 0.03%)</title><rect x="768.3" y="609" width="0.4" height="15.0" fill="rgb(220,222,6)" rx="2" ry="2" />
<text text-anchor="" x="771.33" y="619.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::Message::~Message (1 samples, 0.03%)</title><rect x="365.0" y="641" width="0.3" height="15.0" fill="rgb(233,216,8)" rx="2" ry="2" />
<text text-anchor="" x="368.00" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_locked (6 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_locked (6 samples, 0.17%)</title><rect x="559.0" y="161" width="2.0" height="15.0" fill="rgb(247,119,49)" rx="2" ry="2" />
<text text-anchor="" x="562.00" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::WeakReference::~WeakReference (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReference::~WeakReference (1 samples, 0.03%)</title><rect x="405.0" y="721" width="0.3" height="15.0" fill="rgb(245,180,15)" rx="2" ry="2" />
<text text-anchor="" x="408.00" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('smp_apic_timer_interrupt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.03%)</title><rect x="1131.7" y="689" width="0.3" height="15.0" fill="rgb(219,102,38)" rx="2" ry="2" />
<text text-anchor="" x="1134.67" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::WriteMessage (24 samples, 0.68%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::WriteMessage (24 samples, 0.68%)</title><rect x="555.3" y="433" width="8.0" height="15.0" fill="rgb(230,213,18)" rx="2" ry="2" />
<text text-anchor="" x="558.33" 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 (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>unroll_tree_refs (3 samples, 0.08%)</title><rect x="97.0" y="705" width="1.0" height="15.0" fill="rgb(232,185,20)" rx="2" ry="2" />
<text text-anchor="" x="100.00" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::AsyncWaiter::~AsyncWaiter (9 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::AsyncWaiter::~AsyncWaiter (9 samples, 0.25%)</title><rect x="1158.7" y="577" width="3.0" height="15.0" fill="rgb(240,49,33)" rx="2" ry="2" />
<text text-anchor="" x="1161.67" y="587.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (1 samples, 0.03%)</title><rect x="32.3" y="737" width="0.4" height="15.0" fill="rgb(245,120,22)" rx="2" ry="2" />
<text text-anchor="" x="35.33" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::EnqueueMessage (281 samples, 7.94%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::EnqueueMessage (281 samples, 7.94%)</title><rect x="244.0" y="481" width="93.7" height="15.0" fill="rgb(224,131,41)" rx="2" ry="2" />
<text text-anchor="" x="247.00" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::syste..</text>
</g>
<g class="func_g" onmouseover="s('activate_task (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (2 samples, 0.06%)</title><rect x="908.0" y="177" width="0.7" height="15.0" fill="rgb(222,157,26)" rx="2" ry="2" />
<text text-anchor="" x="911.00" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::OnReadCompleted (6 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::OnReadCompleted (6 samples, 0.17%)</title><rect x="570.7" y="641" width="2.0" height="15.0" fill="rgb(248,185,12)" rx="2" ry="2" />
<text text-anchor="" x="573.67" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (4 samples, 0.11%)</title><rect x="547.3" y="593" width="1.4" height="15.0" fill="rgb(216,188,31)" rx="2" ry="2" />
<text text-anchor="" x="550.33" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::WriteMessage (22 samples, 0.62%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::WriteMessage (22 samples, 0.62%)</title><rect x="555.3" y="369" width="7.4" height="15.0" fill="rgb(234,155,10)" rx="2" ry="2" />
<text text-anchor="" x="558.33" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_ops_list_func (19 samples, 0.54%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_ops_list_func (19 samples, 0.54%)</title><rect x="443.3" y="593" width="6.4" height="15.0" fill="rgb(254,9,43)" rx="2" ry="2" />
<text text-anchor="" x="446.33" 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 (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (3 samples, 0.08%)</title><rect x="159.3" y="561" width="1.0" height="15.0" fill="rgb(214,226,43)" rx="2" ry="2" />
<text text-anchor="" x="162.33" y="571.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.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_check (2 samples, 0.06%)</title><rect x="435.0" y="689" width="0.7" height="15.0" fill="rgb(252,182,2)" rx="2" ry="2" />
<text text-anchor="" x="438.00" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::Release (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (3 samples, 0.08%)</title><rect x="1054.3" y="721" width="1.0" height="15.0" fill="rgb(222,53,24)" rx="2" ry="2" />
<text text-anchor="" x="1057.33" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('check_preempt_wakeup (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>check_preempt_wakeup (1 samples, 0.03%)</title><rect x="560.3" y="49" width="0.4" height="15.0" fill="rgb(226,2,7)" rx="2" ry="2" />
<text text-anchor="" x="563.33" y="59.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.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (2 samples, 0.06%)</title><rect x="118.3" y="673" width="0.7" height="15.0" fill="rgb(247,214,1)" rx="2" ry="2" />
<text text-anchor="" x="121.33" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('malloc (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>malloc (5 samples, 0.14%)</title><rect x="424.0" y="737" width="1.7" height="15.0" fill="rgb(212,128,34)" rx="2" ry="2" />
<text text-anchor="" x="427.00" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_write_space (19 samples, 0.54%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_write_space (19 samples, 0.54%)</title><rect x="1111.7" y="513" width="6.3" height="15.0" fill="rgb(254,76,6)" rx="2" ry="2" />
<text text-anchor="" x="1114.67" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('testing::UnitTest::Run (80 samples, 2.26%)')" onmouseout="c()" onclick="zoom(this)">
<title>testing::UnitTest::Run (80 samples, 2.26%)</title><rect x="547.3" y="833" width="26.7" height="15.0" fill="rgb(244,34,41)" rx="2" ry="2" />
<text text-anchor="" x="550.33" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >t..</text>
</g>
<g class="func_g" onmouseover="s('local_apic_timer_interrupt (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (2 samples, 0.06%)</title><rect x="141.0" y="593" width="0.7" height="15.0" fill="rgb(245,79,3)" rx="2" ry="2" />
<text text-anchor="" x="144.00" y="603.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (1 samples, 0.03%)</title><rect x="35.7" y="801" width="0.3" height="15.0" fill="rgb(219,124,54)" rx="2" ry="2" />
<text text-anchor="" x="38.67" y="811.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>Pickle::Resize (4 samples, 0.11%)</title><rect x="346.0" y="577" width="1.3" height="15.0" fill="rgb(223,205,27)" rx="2" ry="2" />
<text text-anchor="" x="349.00" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (312 samples, 8.81%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (312 samples, 8.81%)</title><rect x="845.3" y="417" width="104.0" height="15.0" fill="rgb(229,34,12)" rx="2" ry="2" />
<text text-anchor="" x="848.33" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s('ttwu_stat (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_stat (3 samples, 0.08%)</title><rect x="315.0" y="177" width="1.0" height="15.0" fill="rgb(246,29,41)" rx="2" ry="2" />
<text text-anchor="" x="318.00" y="187.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (3 samples, 0.08%)</title><rect x="369.0" y="625" width="1.0" height="15.0" fill="rgb(206,91,20)" rx="2" ry="2" />
<text text-anchor="" x="372.00" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('MojoWriteMessage (486 samples, 13.73%)')" onmouseout="c()" onclick="zoom(this)">
<title>MojoWriteMessage (486 samples, 13.73%)</title><rect x="814.3" y="577" width="162.0" height="15.0" fill="rgb(210,101,39)" rx="2" ry="2" />
<text text-anchor="" x="817.33" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >MojoWriteMessage</text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (3 samples, 0.08%)</title><rect x="217.0" y="657" width="1.0" height="15.0" fill="rgb(217,188,31)" rx="2" ry="2" />
<text text-anchor="" x="220.00" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>free (2 samples, 0.06%)</title><rect x="1022.7" y="561" width="0.6" height="15.0" fill="rgb(238,73,16)" rx="2" ry="2" />
<text text-anchor="" x="1025.67" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::OnLibeventNotification (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::OnLibeventNotification (1 samples, 0.03%)</title><rect x="549.3" y="689" width="0.4" height="15.0" fill="rgb(237,2,23)" rx="2" ry="2" />
<text text-anchor="" x="552.33" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.14%)</title><rect x="11.3" y="657" width="1.7" height="15.0" fill="rgb(218,168,26)" rx="2" ry="2" />
<text text-anchor="" x="14.33" y="667.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (1 samples, 0.03%)</title><rect x="792.3" y="657" width="0.4" height="15.0" fill="rgb(227,192,42)" rx="2" ry="2" />
<text text-anchor="" x="795.33" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('realloc@plt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>realloc@plt (1 samples, 0.03%)</title><rect x="982.0" y="577" width="0.3" height="15.0" fill="rgb(223,63,36)" rx="2" ry="2" />
<text text-anchor="" x="985.00" y="587.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator delete (1 samples, 0.03%)</title><rect x="999.7" y="625" width="0.3" height="15.0" fill="rgb(223,151,11)" rx="2" ry="2" />
<text text-anchor="" x="1002.67" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessageInTransit::~MessageInTransit (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::~MessageInTransit (1 samples, 0.03%)</title><rect x="378.0" y="545" width="0.3" height="15.0" fill="rgb(216,56,14)" rx="2" ry="2" />
<text text-anchor="" x="381.00" y="555.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.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (2 samples, 0.06%)</title><rect x="936.7" y="113" width="0.6" height="15.0" fill="rgb(246,113,46)" rx="2" ry="2" />
<text text-anchor="" x="939.67" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (18 samples, 0.51%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (18 samples, 0.51%)</title><rect x="11.3" y="833" width="6.0" height="15.0" fill="rgb(247,109,0)" rx="2" ry="2" />
<text text-anchor="" x="14.33" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('std::string::_S_construct (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::string::_S_construct (1 samples, 0.03%)</title><rect x="573.7" y="753" width="0.3" height="15.0" fill="rgb(206,49,27)" rx="2" ry="2" />
<text text-anchor="" x="576.67" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock@plt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock@plt (1 samples, 0.03%)</title><rect x="1169.3" y="657" width="0.4" height="15.0" fill="rgb(209,152,49)" rx="2" ry="2" />
<text text-anchor="" x="1172.33" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('set_next_entity (6 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>set_next_entity (6 samples, 0.17%)</title><rect x="766.0" y="609" width="2.0" height="15.0" fill="rgb(229,82,45)" rx="2" ry="2" />
<text text-anchor="" x="769.00" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kmem_cache_alloc_node (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_alloc_node (2 samples, 0.06%)</title><rect x="897.0" y="273" width="0.7" height="15.0" fill="rgb(207,179,13)" rx="2" ry="2" />
<text text-anchor="" x="900.00" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dput (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>dput (1 samples, 0.03%)</title><rect x="550.3" y="609" width="0.4" height="15.0" fill="rgb(224,83,5)" rx="2" ry="2" />
<text text-anchor="" x="553.33" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::OnReadCompleted (127 samples, 3.59%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::OnReadCompleted (127 samples, 3.59%)</title><rect x="488.7" y="721" width="42.3" height="15.0" fill="rgb(230,75,13)" rx="2" ry="2" />
<text text-anchor="" x="491.67" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >moj..</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::GetHandleSignalsState (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::GetHandleSignalsState (2 samples, 0.06%)</title><rect x="210.0" y="609" width="0.7" height="15.0" fill="rgb(227,210,36)" rx="2" ry="2" />
<text text-anchor="" x="213.00" y="619.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.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_min_vruntime (2 samples, 0.06%)</title><rect x="153.7" y="545" width="0.6" height="15.0" fill="rgb(248,42,11)" rx="2" ry="2" />
<text text-anchor="" x="156.67" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::WeakReferenceOwner::GetRef (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReferenceOwner::GetRef (4 samples, 0.11%)</title><rect x="535.0" y="753" width="1.3" height="15.0" fill="rgb(235,180,25)" rx="2" ry="2" />
<text text-anchor="" x="538.00" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('realloc (7 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>realloc (7 samples, 0.20%)</title><rect x="666.3" y="881" width="2.4" height="15.0" fill="rgb(232,30,1)" rx="2" ry="2" />
<text text-anchor="" x="669.33" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_process_times (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_process_times (1 samples, 0.03%)</title><rect x="780.7" y="641" width="0.3" height="15.0" fill="rgb(228,189,7)" rx="2" ry="2" />
<text text-anchor="" x="783.67" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.06%)</title><rect x="159.7" y="529" width="0.6" height="15.0" fill="rgb(245,117,19)" rx="2" ry="2" />
<text text-anchor="" x="162.67" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessageInTransit::SerializeAndCloseDispatchers (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::SerializeAndCloseDispatchers (2 samples, 0.06%)</title><rect x="964.7" y="465" width="0.6" height="15.0" fill="rgb(247,50,10)" rx="2" ry="2" />
<text text-anchor="" x="967.67" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('consume_skb (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>consume_skb (1 samples, 0.03%)</title><rect x="570.0" y="513" width="0.3" height="15.0" fill="rgb(227,95,19)" rx="2" ry="2" />
<text text-anchor="" x="573.00" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (2 samples, 0.06%)</title><rect x="799.3" y="657" width="0.7" height="15.0" fill="rgb(239,179,11)" rx="2" ry="2" />
<text text-anchor="" x="802.33" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('put_pid (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>put_pid (1 samples, 0.03%)</title><rect x="871.7" y="321" width="0.3" height="15.0" fill="rgb(241,105,51)" rx="2" ry="2" />
<text text-anchor="" x="874.67" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::GetHandleSignalsState (6 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::GetHandleSignalsState (6 samples, 0.17%)</title><rect x="512.7" y="625" width="2.0" height="15.0" fill="rgb(220,36,20)" rx="2" ry="2" />
<text text-anchor="" x="515.67" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('PickleIterator::PickleIterator (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>PickleIterator::PickleIterator (1 samples, 0.03%)</title><rect x="357.7" y="625" width="0.3" height="15.0" fill="rgb(230,26,16)" rx="2" ry="2" />
<text text-anchor="" x="360.67" y="635.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator delete (1 samples, 0.03%)</title><rect x="1181.7" y="737" width="0.3" height="15.0" fill="rgb(232,12,29)" rx="2" ry="2" />
<text text-anchor="" x="1184.67" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::RunLoop::Run (1,527 samples, 43.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::RunLoop::Run (1,527 samples, 43.14%)</title><rect x="38.3" y="801" width="509.0" height="15.0" fill="rgb(244,149,10)" rx="2" ry="2" />
<text text-anchor="" x="41.33" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::RunLoop::Run</text>
</g>
<g class="func_g" onmouseover="s('ftrace_ops_list_func (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_ops_list_func (3 samples, 0.08%)</title><rect x="1090.3" y="609" width="1.0" height="15.0" fill="rgb(209,135,48)" rx="2" ry="2" />
<text text-anchor="" x="1093.33" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('aa_revalidate_sk (11 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>aa_revalidate_sk (11 samples, 0.31%)</title><rect x="1096.7" y="593" width="3.6" height="15.0" fill="rgb(242,199,45)" rx="2" ry="2" />
<text text-anchor="" x="1099.67" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_ops_test (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_ops_test (2 samples, 0.06%)</title><rect x="1092.3" y="577" width="0.7" height="15.0" fill="rgb(213,123,50)" rx="2" ry="2" />
<text text-anchor="" x="1095.33" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_destruct_scm (14 samples, 0.40%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_destruct_scm (14 samples, 0.40%)</title><rect x="457.0" y="545" width="4.7" height="15.0" fill="rgb(247,30,9)" rx="2" ry="2" />
<text text-anchor="" x="460.00" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__sys_recvmsg (126 samples, 3.56%)')" onmouseout="c()" onclick="zoom(this)">
<title>__sys_recvmsg (126 samples, 3.56%)</title><rect x="1085.3" y="657" width="42.0" height="15.0" fill="rgb(213,45,40)" rx="2" ry="2" />
<text text-anchor="" x="1088.33" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__s..</text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (2 samples, 0.06%)</title><rect x="975.0" y="561" width="0.7" height="15.0" fill="rgb(228,148,50)" rx="2" ry="2" />
<text text-anchor="" x="978.00" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Dispatcher::AddAwakable (14 samples, 0.40%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Dispatcher::AddAwakable (14 samples, 0.40%)</title><rect x="208.0" y="641" width="4.7" height="15.0" fill="rgb(222,65,30)" rx="2" ry="2" />
<text text-anchor="" x="211.00" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('MojoWriteMessage (338 samples, 9.55%)')" onmouseout="c()" onclick="zoom(this)">
<title>MojoWriteMessage (338 samples, 9.55%)</title><rect x="230.0" y="577" width="112.7" height="15.0" fill="rgb(239,143,50)" rx="2" ry="2" />
<text text-anchor="" x="233.00" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >MojoWriteMess..</text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (3 samples, 0.08%)</title><rect x="1116.7" y="481" width="1.0" height="15.0" fill="rgb(233,50,25)" rx="2" ry="2" />
<text text-anchor="" x="1119.67" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::embedder::AsyncWait (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::embedder::AsyncWait (4 samples, 0.11%)</title><rect x="1047.0" y="673" width="1.3" height="15.0" fill="rgb(208,99,42)" rx="2" ry="2" />
<text text-anchor="" x="1050.00" y="683.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>void Pickle::WriteBytesStatic8ul (3 samples, 0.08%)</title><rect x="1008.3" y="625" width="1.0" height="15.0" fill="rgb(209,191,53)" rx="2" ry="2" />
<text text-anchor="" x="1011.33" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::OnReadMessage (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::OnReadMessage (3 samples, 0.08%)</title><rect x="571.3" y="593" width="1.0" height="15.0" fill="rgb(236,23,21)" rx="2" ry="2" />
<text text-anchor="" x="574.33" y="603.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (1 samples, 0.03%)</title><rect x="264.7" y="321" width="0.3" height="15.0" fill="rgb(215,120,23)" rx="2" ry="2" />
<text text-anchor="" x="267.67" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('std::__detail::_List_node_base::_M_hook (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::__detail::_List_node_base::_M_hook (1 samples, 0.03%)</title><rect x="210.7" y="609" width="0.3" height="15.0" fill="rgb(252,213,43)" rx="2" ry="2" />
<text text-anchor="" x="213.67" y="619.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::ProcessNextDelayedNonNestableTask (1 samples, 0.03%)</title><rect x="60.7" y="753" width="0.3" height="15.0" fill="rgb(252,117,10)" rx="2" ry="2" />
<text text-anchor="" x="63.67" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator new (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (1 samples, 0.03%)</title><rect x="25.3" y="865" width="0.4" height="15.0" fill="rgb(219,130,29)" rx="2" ry="2" />
<text text-anchor="" x="28.33" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (6 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (6 samples, 0.17%)</title><rect x="1028.3" y="577" width="2.0" height="15.0" fill="rgb(214,121,40)" rx="2" ry="2" />
<text text-anchor="" x="1031.33" y="587.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.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>unroll_tree_refs (2 samples, 0.06%)</title><rect x="857.3" y="385" width="0.7" height="15.0" fill="rgb(250,227,15)" rx="2" ry="2" />
<text text-anchor="" x="860.33" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_release_all (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_all (2 samples, 0.06%)</title><rect x="1121.0" y="593" width="0.7" height="15.0" fill="rgb(224,6,23)" rx="2" ry="2" />
<text text-anchor="" x="1124.00" y="603.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (4 samples, 0.11%)</title><rect x="275.7" y="289" width="1.3" height="15.0" fill="rgb(217,72,41)" rx="2" ry="2" />
<text text-anchor="" x="278.67" y="299.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>wait_for_unix_gc (1 samples, 0.03%)</title><rect x="561.0" y="241" width="0.3" height="15.0" fill="rgb(228,207,48)" rx="2" ry="2" />
<text text-anchor="" x="564.00" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_hrtimeout_range (85 samples, 2.40%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (85 samples, 2.40%)</title><rect x="741.0" y="689" width="28.3" height="15.0" fill="rgb(253,219,6)" rx="2" ry="2" />
<text text-anchor="" x="744.00" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sc..</text>
</g>
<g class="func_g" onmouseover="s('__clock_gettime (45 samples, 1.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>__clock_gettime (45 samples, 1.27%)</title><rect x="45.0" y="769" width="15.0" height="15.0" fill="rgb(229,216,42)" rx="2" ry="2" />
<text text-anchor="" x="48.00" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('Pickle::Resize (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>Pickle::Resize (1 samples, 0.03%)</title><rect x="564.3" y="513" width="0.4" height="15.0" fill="rgb(221,38,42)" rx="2" ry="2" />
<text text-anchor="" x="567.33" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__memcpy_sse2_unaligned (11 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_sse2_unaligned (11 samples, 0.31%)</title><rect x="17.7" y="849" width="3.6" height="15.0" fill="rgb(211,131,6)" rx="2" ry="2" />
<text text-anchor="" x="20.67" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::embedder::PlatformChannelRecvmsg (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::embedder::PlatformChannelRecvmsg (2 samples, 0.06%)</title><rect x="1132.0" y="705" width="0.7" height="15.0" fill="rgb(227,92,17)" rx="2" ry="2" />
<text text-anchor="" x="1135.00" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('account_entity_enqueue (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_enqueue (2 samples, 0.06%)</title><rect x="921.3" y="97" width="0.7" height="15.0" fill="rgb(234,169,36)" rx="2" ry="2" />
<text text-anchor="" x="924.33" y="107.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (4 samples, 0.11%)</title><rect x="11.7" y="545" width="1.3" height="15.0" fill="rgb(238,80,27)" rx="2" ry="2" />
<text text-anchor="" x="14.67" y="555.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mutex_lock_interruptible (1 samples, 0.03%)</title><rect x="1119.3" y="593" width="0.4" height="15.0" fill="rgb(235,229,25)" rx="2" ry="2" />
<text text-anchor="" x="1122.33" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('event_active (12 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>event_active (12 samples, 0.34%)</title><rect x="541.3" y="753" width="4.0" height="15.0" fill="rgb(235,184,35)" rx="2" ry="2" />
<text text-anchor="" x="544.33" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rb_insert_color (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>rb_insert_color (3 samples, 0.08%)</title><rect x="177.3" y="593" width="1.0" height="15.0" fill="rgb(254,181,17)" rx="2" ry="2" />
<text text-anchor="" x="180.33" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('strlen (15 samples, 0.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>strlen (15 samples, 0.42%)</title><rect x="1003.3" y="625" width="5.0" height="15.0" fill="rgb(245,39,29)" rx="2" ry="2" />
<text text-anchor="" x="1006.33" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (1 samples, 0.03%)</title><rect x="342.3" y="561" width="0.4" height="15.0" fill="rgb(219,121,15)" rx="2" ry="2" />
<text text-anchor="" x="345.33" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.06%)</title><rect x="32.7" y="721" width="0.6" height="15.0" fill="rgb(209,47,14)" rx="2" ry="2" />
<text text-anchor="" x="35.67" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (1 samples, 0.03%)</title><rect x="212.3" y="625" width="0.4" height="15.0" fill="rgb(217,168,6)" rx="2" ry="2" />
<text text-anchor="" x="215.33" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_sync_key (6 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (6 samples, 0.17%)</title><rect x="559.0" y="209" width="2.0" height="15.0" fill="rgb(211,29,49)" rx="2" ry="2" />
<text text-anchor="" x="562.00" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_read_tsc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_read_tsc (1 samples, 0.03%)</title><rect x="756.3" y="545" width="0.4" height="15.0" fill="rgb(226,92,4)" rx="2" ry="2" />
<text text-anchor="" x="759.33" 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 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.03%)</title><rect x="300.0" y="177" width="0.3" height="15.0" fill="rgb(225,212,41)" rx="2" ry="2" />
<text text-anchor="" x="303.00" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__vma_adjust_trans_huge (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__vma_adjust_trans_huge (1 samples, 0.03%)</title><rect x="22.3" y="753" width="0.4" height="15.0" fill="rgb(246,113,52)" rx="2" ry="2" />
<text text-anchor="" x="25.33" y="763.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::LockImpl::Unlock (1 samples, 0.03%)</title><rect x="792.0" y="657" width="0.3" height="15.0" fill="rgb(243,227,36)" rx="2" ry="2" />
<text text-anchor="" x="795.00" y="667.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (1 samples, 0.03%)</title><rect x="432.0" y="657" width="0.3" height="15.0" fill="rgb(216,114,40)" rx="2" ry="2" />
<text text-anchor="" x="435.00" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ctx_sched_out (12 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>ctx_sched_out (12 samples, 0.34%)</title><rect x="760.0" y="593" width="4.0" height="15.0" fill="rgb(247,157,38)" rx="2" ry="2" />
<text text-anchor="" x="763.00" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (76 samples, 2.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (76 samples, 2.15%)</title><rect x="11.3" y="881" width="25.4" height="15.0" fill="rgb(216,15,21)" rx="2" ry="2" />
<text text-anchor="" x="14.33" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[..</text>
</g>
<g class="func_g" onmouseover="s('base::TimeTicks::NowFromSystemTraceTime (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::TimeTicks::NowFromSystemTraceTime (4 samples, 0.11%)</title><rect x="361.0" y="625" width="1.3" height="15.0" fill="rgb(239,118,23)" rx="2" ry="2" />
<text text-anchor="" x="364.00" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (10 samples, 0.28%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (10 samples, 0.28%)</title><rect x="550.0" y="673" width="3.3" height="15.0" fill="rgb(211,116,12)" rx="2" ry="2" />
<text text-anchor="" x="553.00" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::WriteMessage (380 samples, 10.73%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::WriteMessage (380 samples, 10.73%)</title><rect x="834.7" y="449" width="126.6" height="15.0" fill="rgb(232,126,7)" rx="2" ry="2" />
<text text-anchor="" x="837.67" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::system::R..</text>
</g>
<g class="func_g" onmouseover="s('_copy_from_user (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>_copy_from_user (2 samples, 0.06%)</title><rect x="272.3" y="289" width="0.7" height="15.0" fill="rgb(209,90,30)" rx="2" ry="2" />
<text text-anchor="" x="275.33" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_sync_write (13 samples, 0.37%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_sync_write (13 samples, 0.37%)</title><rect x="557.0" y="273" width="4.3" height="15.0" fill="rgb(218,50,18)" rx="2" ry="2" />
<text text-anchor="" x="560.00" y="283.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_setaffinity (4 samples, 0.11%)</title><rect x="547.3" y="673" width="1.4" height="15.0" fill="rgb(250,216,27)" rx="2" ry="2" />
<text text-anchor="" x="550.33" y="683.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.03%)</title><rect x="167.3" y="545" width="0.4" height="15.0" fill="rgb(223,224,47)" rx="2" ry="2" />
<text text-anchor="" x="170.33" y="555.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 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (1 samples, 0.03%)</title><rect x="551.7" y="513" width="0.3" height="15.0" fill="rgb(253,203,50)" rx="2" ry="2" />
<text text-anchor="" x="554.67" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_audit (18 samples, 0.51%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_audit (18 samples, 0.51%)</title><rect x="252.3" y="401" width="6.0" height="15.0" fill="rgb(231,23,8)" rx="2" ry="2" />
<text text-anchor="" x="255.33" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('void mojo::system::internal::CheckUserPointer4ul, 4ul (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>void mojo::system::internal::CheckUserPointer4ul, 4ul (1 samples, 0.03%)</title><rect x="1033.3" y="609" width="0.4" height="15.0" fill="rgb(218,56,48)" rx="2" ry="2" />
<text text-anchor="" x="1036.33" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('enqueue_task (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task (3 samples, 0.08%)</title><rect x="934.7" y="161" width="1.0" height="15.0" fill="rgb(247,208,0)" rx="2" ry="2" />
<text text-anchor="" x="937.67" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('Pickle::WriteString (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>Pickle::WriteString (3 samples, 0.08%)</title><rect x="356.7" y="625" width="1.0" height="15.0" fill="rgb(237,211,5)" rx="2" ry="2" />
<text text-anchor="" x="359.67" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__enqueue_entity (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>__enqueue_entity (3 samples, 0.08%)</title><rect x="177.3" y="609" width="1.0" height="15.0" fill="rgb(214,43,28)" rx="2" ry="2" />
<text text-anchor="" x="180.33" y="619.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_sched_setaffinity (4 samples, 0.11%)</title><rect x="547.3" y="689" width="1.4" height="15.0" fill="rgb(254,134,46)" rx="2" ry="2" />
<text text-anchor="" x="550.33" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::embedder::PlatformChannelRecvmsg (10 samples, 0.28%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::embedder::PlatformChannelRecvmsg (10 samples, 0.28%)</title><rect x="481.7" y="705" width="3.3" height="15.0" fill="rgb(206,26,37)" rx="2" ry="2" />
<text text-anchor="" x="484.67" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('void Pickle::WriteBytesStatic8ul (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>void Pickle::WriteBytesStatic8ul (1 samples, 0.03%)</title><rect x="356.3" y="609" width="0.4" height="15.0" fill="rgb(226,20,24)" rx="2" ry="2" />
<text text-anchor="" x="359.33" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pthread_disable_asynccancel (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_disable_asynccancel (1 samples, 0.03%)</title><rect x="326.3" y="417" width="0.4" height="15.0" fill="rgb(243,168,12)" rx="2" ry="2" />
<text text-anchor="" x="329.33" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::HasOneRef (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::HasOneRef (2 samples, 0.06%)</title><rect x="412.3" y="721" width="0.7" height="15.0" fill="rgb(206,207,41)" rx="2" ry="2" />
<text text-anchor="" x="415.33" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule (2 samples, 0.06%)</title><rect x="551.7" y="577" width="0.6" height="15.0" fill="rgb(220,19,51)" rx="2" ry="2" />
<text text-anchor="" x="554.67" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::AddRef (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (4 samples, 0.11%)</title><rect x="418.7" y="737" width="1.3" height="15.0" fill="rgb(247,119,30)" rx="2" ry="2" />
<text text-anchor="" x="421.67" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kmem_cache_free (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_free (3 samples, 0.08%)</title><rect x="1103.3" y="561" width="1.0" height="15.0" fill="rgb(246,156,50)" rx="2" ry="2" />
<text text-anchor="" x="1106.33" y="571.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::LockImpl::Lock (1 samples, 0.03%)</title><rect x="243.7" y="481" width="0.3" height="15.0" fill="rgb(227,204,40)" rx="2" ry="2" />
<text text-anchor="" x="246.67" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Dispatcher::AddAwakable (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Dispatcher::AddAwakable (3 samples, 0.08%)</title><rect x="553.7" y="561" width="1.0" height="15.0" fill="rgb(215,73,11)" rx="2" ry="2" />
<text text-anchor="" x="556.67" y="571.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>rb_insert_color (1 samples, 0.03%)</title><rect x="307.0" y="97" width="0.3" height="15.0" fill="rgb(224,207,48)" rx="2" ry="2" />
<text text-anchor="" x="310.00" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipeDispatcher::ReadMessageImplNoLock (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipeDispatcher::ReadMessageImplNoLock (4 samples, 0.11%)</title><rect x="381.3" y="609" width="1.4" height="15.0" fill="rgb(210,163,42)" rx="2" ry="2" />
<text text-anchor="" x="384.33" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::IncomingTaskQueue::ReloadWorkQueue (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::IncomingTaskQueue::ReloadWorkQueue (1 samples, 0.03%)</title><rect x="695.3" y="769" width="0.4" height="15.0" fill="rgb(225,89,45)" rx="2" ry="2" />
<text text-anchor="" x="698.33" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::AwakableList::AwakeForStateChange (34 samples, 0.96%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::AwakableList::AwakeForStateChange (34 samples, 0.96%)</title><rect x="500.3" y="609" width="11.4" height="15.0" fill="rgb(236,133,38)" rx="2" ry="2" />
<text text-anchor="" x="503.33" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('check_preempt_wakeup (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>check_preempt_wakeup (1 samples, 0.03%)</title><rect x="313.7" y="129" width="0.3" height="15.0" fill="rgb(216,172,21)" rx="2" ry="2" />
<text text-anchor="" x="316.67" y="139.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (4 samples, 0.11%)</title><rect x="547.3" y="705" width="1.4" height="15.0" fill="rgb(213,79,35)" rx="2" ry="2" />
<text text-anchor="" x="550.33" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pthread_enable_asynccancel (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_enable_asynccancel (5 samples, 0.14%)</title><rect x="326.7" y="417" width="1.6" height="15.0" fill="rgb(225,108,3)" rx="2" ry="2" />
<text text-anchor="" x="329.67" y="427.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 (15 samples, 0.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_task_sched_out (15 samples, 0.42%)</title><rect x="759.0" y="625" width="5.0" height="15.0" fill="rgb(237,156,11)" rx="2" ry="2" />
<text text-anchor="" x="762.00" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessageInTransit::~MessageInTransit (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::~MessageInTransit (2 samples, 0.06%)</title><rect x="1025.3" y="545" width="0.7" height="15.0" fill="rgb(238,47,25)" rx="2" ry="2" />
<text text-anchor="" x="1028.33" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('maybe_add_creds (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>maybe_add_creds (2 samples, 0.06%)</title><rect x="270.3" y="305" width="0.7" height="15.0" fill="rgb(209,201,22)" rx="2" ry="2" />
<text text-anchor="" x="273.33" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('auditsys (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>auditsys (1 samples, 0.03%)</title><rect x="13.3" y="817" width="0.4" height="15.0" fill="rgb(220,52,19)" rx="2" ry="2" />
<text text-anchor="" x="16.33" y="827.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (1 samples, 0.03%)</title><rect x="754.0" y="545" width="0.3" height="15.0" fill="rgb(207,215,7)" rx="2" ry="2" />
<text text-anchor="" x="757.00" 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 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (1 samples, 0.03%)</title><rect x="877.7" y="305" width="0.3" height="15.0" fill="rgb(247,60,6)" rx="2" ry="2" />
<text text-anchor="" x="880.67" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.14%)</title><rect x="11.3" y="641" width="1.7" height="15.0" fill="rgb(207,87,43)" rx="2" ry="2" />
<text text-anchor="" x="14.33" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_disable (8 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_disable (8 samples, 0.23%)</title><rect x="165.0" y="561" width="2.7" height="15.0" fill="rgb(240,148,36)" rx="2" ry="2" />
<text text-anchor="" x="168.00" y="571.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_stat (1 samples, 0.03%)</title><rect x="940.0" y="193" width="0.3" height="15.0" fill="rgb(233,53,42)" rx="2" ry="2" />
<text text-anchor="" x="943.00" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_poll (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (5 samples, 0.14%)</title><rect x="550.7" y="625" width="1.6" height="15.0" fill="rgb(230,108,25)" rx="2" ry="2" />
<text text-anchor="" x="553.67" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (15 samples, 0.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (15 samples, 0.42%)</title><rect x="556.3" y="337" width="5.0" height="15.0" fill="rgb(239,18,39)" rx="2" ry="2" />
<text text-anchor="" x="559.33" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('copy_user_generic_string (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_string (2 samples, 0.06%)</title><rect x="883.7" y="289" width="0.6" height="15.0" fill="rgb(229,110,45)" rx="2" ry="2" />
<text text-anchor="" x="886.67" y="299.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_scm_to_skb (1 samples, 0.03%)</title><rect x="874.0" y="321" width="0.3" height="15.0" fill="rgb(245,140,50)" rx="2" ry="2" />
<text text-anchor="" x="877.00" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('testing::TestInfo::Run (80 samples, 2.26%)')" onmouseout="c()" onclick="zoom(this)">
<title>testing::TestInfo::Run (80 samples, 2.26%)</title><rect x="547.3" y="785" width="26.7" height="15.0" fill="rgb(218,206,16)" rx="2" ry="2" />
<text text-anchor="" x="550.33" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >t..</text>
</g>
<g class="func_g" onmouseover="s('sched_clock (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (2 samples, 0.06%)</title><rect x="933.7" y="97" width="0.6" height="15.0" fill="rgb(219,49,18)" rx="2" ry="2" />
<text text-anchor="" x="936.67" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (2 samples, 0.06%)</title><rect x="966.3" y="481" width="0.7" height="15.0" fill="rgb(205,76,28)" rx="2" ry="2" />
<text text-anchor="" x="969.33" 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 (126 samples, 3.56%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (126 samples, 3.56%)</title><rect x="900.3" y="289" width="42.0" height="15.0" fill="rgb(223,129,34)" rx="2" ry="2" />
<text text-anchor="" x="903.33" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__w..</text>
</g>
<g class="func_g" onmouseover="s('testing::internal::UnitTestImpl::RunAllTests (80 samples, 2.26%)')" onmouseout="c()" onclick="zoom(this)">
<title>testing::internal::UnitTestImpl::RunAllTests (80 samples, 2.26%)</title><rect x="547.3" y="817" width="26.7" height="15.0" fill="rgb(235,88,43)" rx="2" ry="2" />
<text text-anchor="" x="550.33" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >t..</text>
</g>
<g class="func_g" onmouseover="s('ep_poll_callback (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (5 samples, 0.14%)</title><rect x="1114.3" y="465" width="1.7" height="15.0" fill="rgb(205,146,16)" rx="2" ry="2" />
<text text-anchor="" x="1117.33" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessageInTransit::MessageInTransit (6 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::MessageInTransit (6 samples, 0.17%)</title><rect x="1169.7" y="673" width="2.0" height="15.0" fill="rgb(220,49,0)" rx="2" ry="2" />
<text text-anchor="" x="1172.67" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (2 samples, 0.06%)</title><rect x="339.7" y="513" width="0.6" height="15.0" fill="rgb(242,33,28)" rx="2" ry="2" />
<text text-anchor="" x="342.67" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('memcpy_fromiovecend (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>memcpy_fromiovecend (2 samples, 0.06%)</title><rect x="884.3" y="289" width="0.7" height="15.0" fill="rgb(217,116,16)" rx="2" ry="2" />
<text text-anchor="" x="887.33" y="299.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_setaffinity (4 samples, 0.11%)</title><rect x="37.0" y="753" width="1.3" height="15.0" fill="rgb(213,220,26)" rx="2" ry="2" />
<text text-anchor="" x="40.00" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('get_kprobe (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_kprobe (2 samples, 0.06%)</title><rect x="448.3" y="561" width="0.7" height="15.0" fill="rgb(241,18,44)" rx="2" ry="2" />
<text text-anchor="" x="451.33" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dput (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>dput (1 samples, 0.03%)</title><rect x="434.3" y="641" width="0.4" height="15.0" fill="rgb(239,116,33)" rx="2" ry="2" />
<text text-anchor="" x="437.33" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('auditsys (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>auditsys (2 samples, 0.06%)</title><rect x="431.7" y="689" width="0.6" height="15.0" fill="rgb(241,42,45)" rx="2" ry="2" />
<text text-anchor="" x="434.67" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::WeakReference::~WeakReference (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReference::~WeakReference (1 samples, 0.03%)</title><rect x="416.3" y="737" width="0.4" height="15.0" fill="rgb(243,195,6)" rx="2" ry="2" />
<text text-anchor="" x="419.33" y="747.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (1 samples, 0.03%)</title><rect x="1131.7" y="657" width="0.3" height="15.0" fill="rgb(232,202,34)" rx="2" ry="2" />
<text text-anchor="" x="1134.67" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_Znwm@plt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_Znwm@plt (1 samples, 0.03%)</title><rect x="36.7" y="881" width="0.3" height="15.0" fill="rgb(237,131,34)" rx="2" ry="2" />
<text text-anchor="" x="39.67" y="891.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_stats_wait_end (1 samples, 0.03%)</title><rect x="767.7" y="593" width="0.3" height="15.0" fill="rgb(223,192,7)" rx="2" ry="2" />
<text text-anchor="" x="770.67" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::AsyncWaiter::Awake (27 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::AsyncWaiter::Awake (27 samples, 0.76%)</title><rect x="502.7" y="593" width="9.0" height="15.0" fill="rgb(214,126,26)" rx="2" ry="2" />
<text text-anchor="" x="505.67" y="603.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (1 samples, 0.03%)</title><rect x="98.3" y="721" width="0.4" height="15.0" fill="rgb(251,144,44)" rx="2" ry="2" />
<text text-anchor="" x="101.33" y="731.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_setaffinity@@GLIBC_2.3.4 (4 samples, 0.11%)</title><rect x="547.3" y="721" width="1.4" height="15.0" fill="rgb(223,223,54)" rx="2" ry="2" />
<text text-anchor="" x="550.33" y="731.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (1 samples, 0.03%)</title><rect x="434.0" y="657" width="0.3" height="15.0" fill="rgb(213,61,39)" rx="2" ry="2" />
<text text-anchor="" x="437.00" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('realloc (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>realloc (4 samples, 0.11%)</title><rect x="347.3" y="577" width="1.4" height="15.0" fill="rgb(240,112,51)" rx="2" ry="2" />
<text text-anchor="" x="350.33" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::TimeDelta::SaturatedAdd (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::TimeDelta::SaturatedAdd (4 samples, 0.11%)</title><rect x="359.7" y="625" width="1.3" height="15.0" fill="rgb(249,19,18)" rx="2" ry="2" />
<text text-anchor="" x="362.67" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_stream_recvmsg (54 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_recvmsg (54 samples, 1.53%)</title><rect x="451.3" y="609" width="18.0" height="15.0" fill="rgb(232,159,21)" rx="2" ry="2" />
<text text-anchor="" x="454.33" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::AsyncHandleWaiter::Context::HandleIsReady (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::AsyncHandleWaiter::Context::HandleIsReady (4 samples, 0.11%)</title><rect x="1155.7" y="577" width="1.3" height="15.0" fill="rgb(240,92,21)" rx="2" ry="2" />
<text text-anchor="" x="1158.67" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::AddAwakable (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::AddAwakable (5 samples, 0.14%)</title><rect x="794.7" y="609" width="1.6" height="15.0" fill="rgb(238,98,34)" rx="2" ry="2" />
<text text-anchor="" x="797.67" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__libc_start_main (1,611 samples, 45.51%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_start_main (1,611 samples, 45.51%)</title><rect x="37.0" y="881" width="537.0" height="15.0" fill="rgb(236,154,1)" rx="2" ry="2" />
<text text-anchor="" x="40.00" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__libc_start_main</text>
</g>
<g class="func_g" onmouseover="s('IPC::test::PerformanceChannelListener::OnMessageReceived (576 samples, 16.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::test::PerformanceChannelListener::OnMessageReceived (576 samples, 16.27%)</title><rect x="805.3" y="625" width="192.0" height="15.0" fill="rgb(232,208,25)" rx="2" ry="2" />
<text text-anchor="" x="808.33" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IPC::test::PerformanceCha..</text>
</g>
<g class="func_g" onmouseover="s('malloc@plt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>malloc@plt (1 samples, 0.03%)</title><rect x="554.0" y="513" width="0.3" height="15.0" fill="rgb(238,166,29)" rx="2" ry="2" />
<text text-anchor="" x="557.00" y="523.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.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_check (2 samples, 0.06%)</title><rect x="98.7" y="737" width="0.6" height="15.0" fill="rgb(222,132,42)" rx="2" ry="2" />
<text text-anchor="" x="101.67" y="747.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (1 samples, 0.03%)</title><rect x="457.3" y="481" width="0.4" height="15.0" fill="rgb(247,125,20)" rx="2" ry="2" />
<text text-anchor="" x="460.33" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_lookup_ip (7 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_lookup_ip (7 samples, 0.20%)</title><rect x="444.3" y="561" width="2.4" height="15.0" fill="rgb(239,217,27)" rx="2" ry="2" />
<text text-anchor="" x="447.33" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('logging::GetMinLogLevel (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>logging::GetMinLogLevel (5 samples, 0.14%)</title><rect x="238.3" y="497" width="1.7" height="15.0" fill="rgb(254,35,22)" rx="2" ry="2" />
<text text-anchor="" x="241.33" 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.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (2 samples, 0.06%)</title><rect x="317.7" y="273" width="0.6" height="15.0" fill="rgb(247,161,49)" rx="2" ry="2" />
<text text-anchor="" x="320.67" 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 (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (2 samples, 0.06%)</title><rect x="1122.0" y="577" width="0.7" height="15.0" fill="rgb(237,194,22)" rx="2" ry="2" />
<text text-anchor="" x="1125.00" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (1 samples, 0.03%)</title><rect x="518.0" y="657" width="0.3" height="15.0" fill="rgb(232,52,48)" rx="2" ry="2" />
<text text-anchor="" x="521.00" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_recvmsg (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_recvmsg (1 samples, 0.03%)</title><rect x="432.3" y="689" width="0.4" height="15.0" fill="rgb(254,48,31)" rx="2" ry="2" />
<text text-anchor="" x="435.33" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_recvmsg (100 samples, 2.82%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (100 samples, 2.82%)</title><rect x="1089.3" y="625" width="33.4" height="15.0" fill="rgb(242,165,7)" rx="2" ry="2" />
<text text-anchor="" x="1092.33" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >so..</text>
</g>
<g class="func_g" onmouseover="s('update_stats_wait_end (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_stats_wait_end (5 samples, 0.14%)</title><rect x="174.0" y="593" width="1.7" height="15.0" fill="rgb(242,213,4)" rx="2" ry="2" />
<text text-anchor="" x="177.00" y="603.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (4 samples, 0.11%)</title><rect x="37.0" y="641" width="1.3" height="15.0" fill="rgb(230,182,34)" rx="2" ry="2" />
<text text-anchor="" x="40.00" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (6 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (6 samples, 0.17%)</title><rect x="967.0" y="481" width="2.0" height="15.0" fill="rgb(212,127,21)" rx="2" ry="2" />
<text text-anchor="" x="970.00" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('path_put (7 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>path_put (7 samples, 0.20%)</title><rect x="94.7" y="705" width="2.3" height="15.0" fill="rgb(215,142,25)" rx="2" ry="2" />
<text text-anchor="" x="97.67" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (2 samples, 0.06%)</title><rect x="975.7" y="561" width="0.6" height="15.0" fill="rgb(232,211,3)" rx="2" ry="2" />
<text text-anchor="" x="978.67" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::AsyncHandleWaiter::Context::HandleIsReady (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::AsyncHandleWaiter::Context::HandleIsReady (1 samples, 0.03%)</title><rect x="502.7" y="577" width="0.3" height="15.0" fill="rgb(218,213,36)" rx="2" ry="2" />
<text text-anchor="" x="505.67" y="587.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.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (2 samples, 0.06%)</title><rect x="933.7" y="81" width="0.6" height="15.0" fill="rgb(254,185,25)" rx="2" ry="2" />
<text text-anchor="" x="936.67" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__clock_gettime (7 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>__clock_gettime (7 samples, 0.20%)</title><rect x="350.7" y="609" width="2.3" height="15.0" fill="rgb(226,101,27)" rx="2" ry="2" />
<text text-anchor="" x="353.67" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('try_to_wake_up (6 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (6 samples, 0.17%)</title><rect x="559.0" y="113" width="2.0" height="15.0" fill="rgb(244,58,26)" rx="2" ry="2" />
<text text-anchor="" x="562.00" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('void mojo::system::internal::CheckUserPointer4ul, 4ul (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>void mojo::system::internal::CheckUserPointer4ul, 4ul (1 samples, 0.03%)</title><rect x="1026.0" y="545" width="0.3" height="15.0" fill="rgb(240,29,27)" rx="2" ry="2" />
<text text-anchor="" x="1029.00" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::TimeTicks::NowFromSystemTraceTime (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::TimeTicks::NowFromSystemTraceTime (1 samples, 0.03%)</title><rect x="991.3" y="609" width="0.4" height="15.0" fill="rgb(247,171,22)" rx="2" ry="2" />
<text text-anchor="" x="994.33" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.14%)</title><rect x="11.3" y="689" width="1.7" height="15.0" fill="rgb(251,29,12)" rx="2" ry="2" />
<text text-anchor="" x="14.33" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::AwakableList::AwakeForStateChange (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::AwakableList::AwakeForStateChange (2 samples, 0.06%)</title><rect x="377.3" y="545" width="0.7" height="15.0" fill="rgb(219,28,7)" rx="2" ry="2" />
<text text-anchor="" x="380.33" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__memcpy_sse2_unaligned (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_sse2_unaligned (1 samples, 0.03%)</title><rect x="990.7" y="609" width="0.3" height="15.0" fill="rgb(241,0,21)" rx="2" ry="2" />
<text text-anchor="" x="993.67" y="619.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.74 (1 samples, 0.03%)</title><rect x="939.7" y="193" width="0.3" height="15.0" fill="rgb(220,115,47)" rx="2" ry="2" />
<text text-anchor="" x="942.67" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__srcu_read_lock (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>__srcu_read_lock (2 samples, 0.06%)</title><rect x="318.7" y="337" width="0.6" height="15.0" fill="rgb(254,196,43)" rx="2" ry="2" />
<text text-anchor="" x="321.67" y="347.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.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>select_task_rq_fair (2 samples, 0.06%)</title><rect x="908.7" y="177" width="0.6" height="15.0" fill="rgb(234,27,22)" rx="2" ry="2" />
<text text-anchor="" x="911.67" y="187.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>set_cpus_allowed_ptr (4 samples, 0.11%)</title><rect x="547.3" y="657" width="1.4" height="15.0" fill="rgb(240,161,9)" rx="2" ry="2" />
<text text-anchor="" x="550.33" y="667.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_execve (1 samples, 0.03%)</title><rect x="22.3" y="849" width="0.4" height="15.0" fill="rgb(226,92,11)" rx="2" ry="2" />
<text text-anchor="" x="25.33" y="859.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 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_rq_blocked_load (1 samples, 0.03%)</title><rect x="149.7" y="561" width="0.3" height="15.0" fill="rgb(235,62,49)" rx="2" ry="2" />
<text text-anchor="" x="152.67" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('trigger_load_balance (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>trigger_load_balance (1 samples, 0.03%)</title><rect x="141.0" y="497" width="0.3" height="15.0" fill="rgb(249,61,49)" rx="2" ry="2" />
<text text-anchor="" x="144.00" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_read_tsc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_read_tsc (1 samples, 0.03%)</title><rect x="934.0" y="65" width="0.3" height="15.0" fill="rgb(252,107,54)" rx="2" ry="2" />
<text text-anchor="" x="937.00" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_int_free (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (1 samples, 0.03%)</title><rect x="1022.3" y="561" width="0.4" height="15.0" fill="rgb(219,81,36)" rx="2" ry="2" />
<text text-anchor="" x="1025.33" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('activate_task (36 samples, 1.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (36 samples, 1.02%)</title><rect x="300.7" y="161" width="12.0" height="15.0" fill="rgb(231,61,40)" rx="2" ry="2" />
<text text-anchor="" x="303.67" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('write@plt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>write@plt (1 samples, 0.03%)</title><rect x="332.0" y="417" width="0.3" height="15.0" fill="rgb(209,155,1)" rx="2" ry="2" />
<text text-anchor="" x="335.00" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_sync_key (11 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (11 samples, 0.31%)</title><rect x="1114.3" y="497" width="3.7" height="15.0" fill="rgb(231,173,21)" rx="2" ry="2" />
<text text-anchor="" x="1117.33" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sockfd_lookup_light (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>sockfd_lookup_light (2 samples, 0.06%)</title><rect x="475.3" y="657" width="0.7" height="15.0" fill="rgb(228,64,34)" rx="2" ry="2" />
<text text-anchor="" x="478.33" y="667.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 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::trace_event::TraceLog::GetInstance (1 samples, 0.03%)</title><rect x="354.3" y="609" width="0.4" height="15.0" fill="rgb(215,223,47)" rx="2" ry="2" />
<text text-anchor="" x="357.33" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__sys_recvmsg (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__sys_recvmsg (1 samples, 0.03%)</title><rect x="1085.0" y="673" width="0.3" height="15.0" fill="rgb(214,0,23)" rx="2" ry="2" />
<text text-anchor="" x="1088.00" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kprobe_ftrace_handler (6 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>kprobe_ftrace_handler (6 samples, 0.17%)</title><rect x="1093.0" y="577" width="2.0" height="15.0" fill="rgb(235,156,12)" rx="2" ry="2" />
<text text-anchor="" x="1096.00" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::MessagePipeReader::ReadAvailableMessages (733 samples, 20.71%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::MessagePipeReader::ReadAvailableMessages (733 samples, 20.71%)</title><rect x="801.0" y="673" width="244.3" height="15.0" fill="rgb(205,105,13)" rx="2" ry="2" />
<text text-anchor="" x="804.00" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IPC::internal::MessagePipeReader..</text>
</g>
<g class="func_g" onmouseover="s('void mojo::system::internal::CheckUserPointer4ul, 4ul (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>void mojo::system::internal::CheckUserPointer4ul, 4ul (3 samples, 0.08%)</title><rect x="393.3" y="625" width="1.0" height="15.0" fill="rgb(223,229,45)" rx="2" ry="2" />
<text text-anchor="" x="396.33" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::ChannelMojo::OnMessageReceived (34 samples, 0.96%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelMojo::OnMessageReceived (34 samples, 0.96%)</title><rect x="555.3" y="561" width="11.4" height="15.0" fill="rgb(253,128,21)" rx="2" ry="2" />
<text text-anchor="" x="558.33" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::CallbackBase::~CallbackBase (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::CallbackBase::~CallbackBase (1 samples, 0.03%)</title><rect x="503.7" y="577" width="0.3" height="15.0" fill="rgb(240,203,27)" rx="2" ry="2" />
<text text-anchor="" x="506.67" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (1 samples, 0.03%)</title><rect x="339.0" y="481" width="0.3" height="15.0" fill="rgb(244,96,37)" rx="2" ry="2" />
<text text-anchor="" x="342.00" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (139 samples, 3.93%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (139 samples, 3.93%)</title><rect x="132.7" y="641" width="46.3" height="15.0" fill="rgb(226,129,16)" rx="2" ry="2" />
<text text-anchor="" x="135.67" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__sc..</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::HandleTable::GetDispatcher (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::HandleTable::GetDispatcher (5 samples, 0.14%)</title><rect x="797.7" y="657" width="1.6" height="15.0" fill="rgb(234,182,31)" rx="2" ry="2" />
<text text-anchor="" x="800.67" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_audit (7 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_audit (7 samples, 0.20%)</title><rect x="432.7" y="689" width="2.3" height="15.0" fill="rgb(243,57,17)" rx="2" ry="2" />
<text text-anchor="" x="435.67" y="699.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.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (2 samples, 0.06%)</title><rect x="316.3" y="241" width="0.7" height="15.0" fill="rgb(221,156,6)" rx="2" ry="2" />
<text text-anchor="" x="319.33" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ksize (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>ksize (3 samples, 0.08%)</title><rect x="290.0" y="289" width="1.0" height="15.0" fill="rgb(226,216,39)" rx="2" ry="2" />
<text text-anchor="" x="293.00" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('PickleIterator::ReadInt64 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>PickleIterator::ReadInt64 (1 samples, 0.03%)</title><rect x="998.3" y="625" width="0.4" height="15.0" fill="rgb(244,70,28)" rx="2" ry="2" />
<text text-anchor="" x="1001.33" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('auditsys (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>auditsys (1 samples, 0.03%)</title><rect x="22.7" y="833" width="0.3" height="15.0" fill="rgb(246,177,39)" rx="2" ry="2" />
<text text-anchor="" x="25.67" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_poll_callback (120 samples, 3.39%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (120 samples, 3.39%)</title><rect x="901.3" y="257" width="40.0" height="15.0" fill="rgb(228,146,53)" rx="2" ry="2" />
<text text-anchor="" x="904.33" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ep_..</text>
</g>
<g class="func_g" onmouseover="s('local_apic_timer_interrupt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (1 samples, 0.03%)</title><rect x="1131.7" y="673" width="0.3" height="15.0" fill="rgb(237,86,11)" rx="2" ry="2" />
<text text-anchor="" x="1134.67" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (270 samples, 7.63%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (270 samples, 7.63%)</title><rect x="859.3" y="401" width="90.0" height="15.0" fill="rgb(208,171,10)" rx="2" ry="2" />
<text text-anchor="" x="862.33" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >system_cal..</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Dispatcher::ReadMessage (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Dispatcher::ReadMessage (1 samples, 0.03%)</title><rect x="567.3" y="529" width="0.4" height="15.0" fill="rgb(214,53,45)" rx="2" ry="2" />
<text text-anchor="" x="570.33" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.14%)</title><rect x="11.3" y="721" width="1.7" height="15.0" fill="rgb(236,33,30)" rx="2" ry="2" />
<text text-anchor="" x="14.33" y="731.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::LockImpl::Lock (3 samples, 0.08%)</title><rect x="490.3" y="689" width="1.0" height="15.0" fill="rgb(212,2,11)" rx="2" ry="2" />
<text text-anchor="" x="493.33" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (4 samples, 0.11%)</title><rect x="569.3" y="641" width="1.4" height="15.0" fill="rgb(225,184,40)" rx="2" ry="2" />
<text text-anchor="" x="572.33" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('enqueue_entity (20 samples, 0.56%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (20 samples, 0.56%)</title><rect x="303.0" y="113" width="6.7" height="15.0" fill="rgb(213,165,44)" rx="2" ry="2" />
<text text-anchor="" x="306.00" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('clockevents_program_event (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>clockevents_program_event (1 samples, 0.03%)</title><rect x="141.3" y="545" width="0.4" height="15.0" fill="rgb(237,15,9)" rx="2" ry="2" />
<text text-anchor="" x="144.33" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Dispatcher::ReadMessage (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Dispatcher::ReadMessage (1 samples, 0.03%)</title><rect x="386.0" y="625" width="0.3" height="15.0" fill="rgb(222,73,45)" rx="2" ry="2" />
<text text-anchor="" x="389.00" 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 (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (2 samples, 0.06%)</title><rect x="559.0" y="49" width="0.7" height="15.0" fill="rgb(251,69,43)" rx="2" ry="2" />
<text text-anchor="" x="562.00" y="59.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 (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (2 samples, 0.06%)</title><rect x="28.3" y="801" width="0.7" height="15.0" fill="rgb(219,174,21)" rx="2" ry="2" />
<text text-anchor="" x="31.33" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ProxyMessagePipeEndpoint::EnqueueMessage (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ProxyMessagePipeEndpoint::EnqueueMessage (1 samples, 0.03%)</title><rect x="339.3" y="513" width="0.4" height="15.0" fill="rgb(240,133,14)" rx="2" ry="2" />
<text text-anchor="" x="342.33" y="523.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 (42 samples, 1.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.74 (42 samples, 1.19%)</title><rect x="300.7" y="177" width="14.0" height="15.0" fill="rgb(220,192,42)" rx="2" ry="2" />
<text text-anchor="" x="303.67" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Core::WriteMessage (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Core::WriteMessage (1 samples, 0.03%)</title><rect x="342.7" y="577" width="0.3" height="15.0" fill="rgb(206,67,49)" rx="2" ry="2" />
<text text-anchor="" x="345.67" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apparmor_file_permission (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (3 samples, 0.08%)</title><rect x="948.0" y="321" width="1.0" height="15.0" fill="rgb(215,10,4)" rx="2" ry="2" />
<text text-anchor="" x="951.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::PingPongTestClient::RunMain (1,531 samples, 43.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::test::PingPongTestClient::RunMain (1,531 samples, 43.25%)</title><rect x="37.0" y="833" width="510.3" height="15.0" fill="rgb(249,89,0)" rx="2" ry="2" />
<text text-anchor="" x="40.00" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IPC::test::PingPongTestClient::RunMain</text>
</g>
<g class="func_g" onmouseover="s('sysret_audit (18 samples, 0.51%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_audit (18 samples, 0.51%)</title><rect x="852.0" y="401" width="6.0" height="15.0" fill="rgb(232,45,1)" rx="2" ry="2" />
<text text-anchor="" x="855.00" y="411.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>Pickle::~Pickle (1 samples, 0.03%)</title><rect x="563.3" y="513" width="0.4" height="15.0" fill="rgb(205,211,43)" rx="2" ry="2" />
<text text-anchor="" x="566.33" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::EnqueueMessageNoLock (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::EnqueueMessageNoLock (2 samples, 0.06%)</title><rect x="954.0" y="417" width="0.7" height="15.0" fill="rgb(213,20,15)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="427.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 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::string::_Rep::_S_create (1 samples, 0.03%)</title><rect x="669.3" y="881" width="0.4" height="15.0" fill="rgb(223,211,28)" rx="2" ry="2" />
<text text-anchor="" x="672.33" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pthread_disable_asynccancel (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_disable_asynccancel (1 samples, 0.03%)</title><rect x="570.3" y="625" width="0.4" height="15.0" fill="rgb(221,132,45)" rx="2" ry="2" />
<text text-anchor="" x="573.33" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessageInTransit::View::IsValid (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::View::IsValid (4 samples, 0.11%)</title><rect x="1177.7" y="705" width="1.3" height="15.0" fill="rgb(245,48,31)" rx="2" ry="2" />
<text text-anchor="" x="1180.67" y="715.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.28%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (10 samples, 0.28%)</title><rect x="729.0" y="673" width="3.3" height="15.0" fill="rgb(242,0,27)" rx="2" ry="2" />
<text text-anchor="" x="732.00" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_poll_callback (68 samples, 1.92%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (68 samples, 1.92%)</title><rect x="295.0" y="257" width="22.7" height="15.0" fill="rgb(229,151,22)" rx="2" ry="2" />
<text text-anchor="" x="298.00" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >e..</text>
</g>
<g class="func_g" onmouseover="s('fget_light (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>fget_light (1 samples, 0.03%)</title><rect x="259.0" y="369" width="0.3" height="15.0" fill="rgb(224,63,7)" rx="2" ry="2" />
<text text-anchor="" x="262.00" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('MojoWriteMessage (24 samples, 0.68%)')" onmouseout="c()" onclick="zoom(this)">
<title>MojoWriteMessage (24 samples, 0.68%)</title><rect x="555.3" y="497" width="8.0" height="15.0" fill="rgb(220,148,23)" rx="2" ry="2" />
<text text-anchor="" x="558.33" y="507.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.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>_copy_from_user (2 samples, 0.06%)</title><rect x="437.7" y="625" width="0.6" height="15.0" fill="rgb(226,6,9)" rx="2" ry="2" />
<text text-anchor="" x="440.67" y="635.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>put_prev_task_fair (1 samples, 0.03%)</title><rect x="36.3" y="833" width="0.4" height="15.0" fill="rgb(221,148,16)" rx="2" ry="2" />
<text text-anchor="" x="39.33" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_mid_memalign (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>_mid_memalign (2 samples, 0.06%)</title><rect x="1171.0" y="657" width="0.7" height="15.0" fill="rgb(218,201,47)" rx="2" ry="2" />
<text text-anchor="" x="1174.00" y="667.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::ProcessNextDelayedNonNestableTask (1 samples, 0.03%)</title><rect x="67.0" y="769" width="0.3" height="15.0" fill="rgb(247,145,44)" rx="2" ry="2" />
<text text-anchor="" x="70.00" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('hrtick_update (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>hrtick_update (3 samples, 0.08%)</title><rect x="931.0" y="129" width="1.0" height="15.0" fill="rgb(210,116,49)" rx="2" ry="2" />
<text text-anchor="" x="934.00" y="139.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__enqueue_entity (1 samples, 0.03%)</title><rect x="912.7" y="113" width="0.3" height="15.0" fill="rgb(222,156,35)" rx="2" ry="2" />
<text text-anchor="" x="915.67" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('security_socket_getpeersec_dgram (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_getpeersec_dgram (1 samples, 0.03%)</title><rect x="265.0" y="321" width="0.3" height="15.0" fill="rgb(245,44,52)" rx="2" ry="2" />
<text text-anchor="" x="268.00" y="331.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.40%)')" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (14 samples, 0.40%)</title><rect x="320.0" y="353" width="4.7" height="15.0" fill="rgb(217,37,13)" rx="2" ry="2" />
<text text-anchor="" x="323.00" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::OnReadMessage (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::OnReadMessage (5 samples, 0.14%)</title><rect x="1171.7" y="689" width="1.6" height="15.0" fill="rgb(215,203,6)" rx="2" ry="2" />
<text text-anchor="" x="1174.67" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_hrtimeout_range_clock (151 samples, 4.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (151 samples, 4.27%)</title><rect x="129.7" y="673" width="50.3" height="15.0" fill="rgb(223,29,40)" rx="2" ry="2" />
<text text-anchor="" x="132.67" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sched..</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::OnReadMessage (61 samples, 1.72%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::OnReadMessage (61 samples, 1.72%)</title><rect x="498.0" y="673" width="20.3" height="15.0" fill="rgb(254,115,21)" rx="2" ry="2" />
<text text-anchor="" x="501.00" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessageInTransit::View::IsValid (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::View::IsValid (1 samples, 0.03%)</title><rect x="488.3" y="721" width="0.4" height="15.0" fill="rgb(222,184,32)" rx="2" ry="2" />
<text text-anchor="" x="491.33" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Core::WriteMessage (24 samples, 0.68%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Core::WriteMessage (24 samples, 0.68%)</title><rect x="555.3" y="481" width="8.0" height="15.0" fill="rgb(219,7,42)" rx="2" ry="2" />
<text text-anchor="" x="558.33" y="491.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_string (4 samples, 0.11%)</title><rect x="1087.3" y="625" width="1.4" height="15.0" fill="rgb(222,127,44)" rx="2" ry="2" />
<text text-anchor="" x="1090.33" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessageInTransit::~MessageInTransit (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::~MessageInTransit (3 samples, 0.08%)</title><rect x="956.0" y="433" width="1.0" height="15.0" fill="rgb(237,6,25)" rx="2" ry="2" />
<text text-anchor="" x="959.00" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_careful (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_careful (1 samples, 0.03%)</title><rect x="858.0" y="401" width="0.3" height="15.0" fill="rgb(247,64,43)" rx="2" ry="2" />
<text text-anchor="" x="861.00" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_locked (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_locked (1 samples, 0.03%)</title><rect x="901.0" y="257" width="0.3" height="15.0" fill="rgb(223,133,30)" rx="2" ry="2" />
<text text-anchor="" x="904.00" y="267.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.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (5 samples, 0.14%)</title><rect x="1114.3" y="481" width="1.7" height="15.0" fill="rgb(241,53,35)" rx="2" ry="2" />
<text text-anchor="" x="1117.33" 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 (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (3 samples, 0.08%)</title><rect x="941.3" y="273" width="1.0" height="15.0" fill="rgb(220,45,16)" rx="2" ry="2" />
<text text-anchor="" x="944.33" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('MojoReadMessage (76 samples, 2.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>MojoReadMessage (76 samples, 2.15%)</title><rect x="369.0" y="641" width="25.3" height="15.0" fill="rgb(248,60,33)" rx="2" ry="2" />
<text text-anchor="" x="372.00" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >M..</text>
</g>
<g class="func_g" onmouseover="s('Pickle::Resize (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>Pickle::Resize (1 samples, 0.03%)</title><rect x="564.0" y="497" width="0.3" height="15.0" fill="rgb(226,11,40)" rx="2" ry="2" />
<text text-anchor="" x="567.00" y="507.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::Message::Message (1 samples, 0.03%)</title><rect x="803.0" y="657" width="0.3" height="15.0" fill="rgb(211,208,45)" rx="2" ry="2" />
<text text-anchor="" x="806.00" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::OnLibeventNotification (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::OnLibeventNotification (5 samples, 0.14%)</title><rect x="693.7" y="769" width="1.6" height="15.0" fill="rgb(217,223,10)" rx="2" ry="2" />
<text text-anchor="" x="696.67" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule (145 samples, 4.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule (145 samples, 4.10%)</title><rect x="131.7" y="657" width="48.3" height="15.0" fill="rgb(220,93,33)" rx="2" ry="2" />
<text text-anchor="" x="134.67" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sche..</text>
</g>
<g class="func_g" onmouseover="s('finish_task_switch (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 0.11%)</title><rect x="37.0" y="657" width="1.3" height="15.0" fill="rgb(218,18,35)" rx="2" ry="2" />
<text text-anchor="" x="40.00" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock@plt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock@plt (1 samples, 0.03%)</title><rect x="1167.7" y="641" width="0.3" height="15.0" fill="rgb(208,123,7)" rx="2" ry="2" />
<text text-anchor="" x="1170.67" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessageInTransit::GetNextMessageSize (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::GetNextMessageSize (3 samples, 0.08%)</title><rect x="1133.7" y="721" width="1.0" height="15.0" fill="rgb(216,189,26)" rx="2" ry="2" />
<text text-anchor="" x="1136.67" y="731.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>Pickle::Pickle (1 samples, 0.03%)</title><rect x="366.0" y="641" width="0.3" height="15.0" fill="rgb(221,91,8)" rx="2" ry="2" />
<text text-anchor="" x="369.00" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_sched_handle.isra.17 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_handle.isra.17 (1 samples, 0.03%)</title><rect x="780.7" y="657" width="0.3" height="15.0" fill="rgb(253,218,11)" rx="2" ry="2" />
<text text-anchor="" x="783.67" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::DoWork (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::DoWork (1 samples, 0.03%)</title><rect x="549.0" y="689" width="0.3" height="15.0" fill="rgb(226,91,11)" rx="2" ry="2" />
<text text-anchor="" x="552.00" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free (9 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>free (9 samples, 0.25%)</title><rect x="838.0" y="433" width="3.0" height="15.0" fill="rgb(212,133,26)" rx="2" ry="2" />
<text text-anchor="" x="841.00" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ttwu_do_wakeup (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_wakeup (1 samples, 0.03%)</title><rect x="314.7" y="177" width="0.3" height="15.0" fill="rgb(241,105,4)" rx="2" ry="2" />
<text text-anchor="" x="317.67" y="187.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>current_kernel_time (1 samples, 0.03%)</title><rect x="1080.3" y="657" width="0.4" height="15.0" fill="rgb(223,74,23)" rx="2" ry="2" />
<text text-anchor="" x="1083.33" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_entity (16 samples, 0.45%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (16 samples, 0.45%)</title><rect x="750.3" y="577" width="5.4" height="15.0" fill="rgb(227,185,18)" rx="2" ry="2" />
<text text-anchor="" x="753.33" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fput (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>fput (1 samples, 0.03%)</title><rect x="862.3" y="369" width="0.4" height="15.0" fill="rgb(236,159,18)" rx="2" ry="2" />
<text text-anchor="" x="865.33" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_common (61 samples, 1.72%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (61 samples, 1.72%)</title><rect x="296.0" y="225" width="20.3" height="15.0" fill="rgb(213,22,49)" rx="2" ry="2" />
<text text-anchor="" x="299.00" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_def_readable (82 samples, 2.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_def_readable (82 samples, 2.32%)</title><rect x="291.0" y="305" width="27.3" height="15.0" fill="rgb(207,160,7)" rx="2" ry="2" />
<text text-anchor="" x="294.00" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s('free (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>free (2 samples, 0.06%)</title><rect x="248.0" y="433" width="0.7" height="15.0" fill="rgb(221,40,24)" rx="2" ry="2" />
<text text-anchor="" x="251.00" y="443.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (1 samples, 0.03%)</title><rect x="556.7" y="305" width="0.3" height="15.0" fill="rgb(233,46,14)" rx="2" ry="2" />
<text text-anchor="" x="559.67" y="315.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.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (2 samples, 0.06%)</title><rect x="299.3" y="177" width="0.7" height="15.0" fill="rgb(253,214,25)" rx="2" ry="2" />
<text text-anchor="" x="302.33" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.03%)</title><rect x="548.7" y="689" width="0.3" height="15.0" fill="rgb(228,183,1)" rx="2" ry="2" />
<text text-anchor="" x="551.67" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (2 samples, 0.06%)</title><rect x="973.3" y="545" width="0.7" height="15.0" fill="rgb(208,82,46)" rx="2" ry="2" />
<text text-anchor="" x="976.33" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('Pickle::WriteString (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>Pickle::WriteString (3 samples, 0.08%)</title><rect x="349.7" y="609" width="1.0" height="15.0" fill="rgb(213,139,23)" rx="2" ry="2" />
<text text-anchor="" x="352.67" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::MessagePipeReader::PipeIsReady (45 samples, 1.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::MessagePipeReader::PipeIsReady (45 samples, 1.27%)</title><rect x="553.7" y="625" width="15.0" height="15.0" fill="rgb(246,49,5)" rx="2" ry="2" />
<text text-anchor="" x="556.67" 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::Release (7 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (7 samples, 0.20%)</title><rect x="1016.0" y="625" width="2.3" height="15.0" fill="rgb(247,153,26)" rx="2" ry="2" />
<text text-anchor="" x="1019.00" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (2 samples, 0.06%)</title><rect x="340.3" y="513" width="0.7" height="15.0" fill="rgb(207,44,11)" rx="2" ry="2" />
<text text-anchor="" x="343.33" 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 (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::DidProcessIOEvent (2 samples, 0.06%)</title><rect x="781.0" y="753" width="0.7" height="15.0" fill="rgb(251,155,28)" rx="2" ry="2" />
<text text-anchor="" x="784.00" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('put_prev_task_fair (8 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>put_prev_task_fair (8 samples, 0.23%)</title><rect x="176.0" y="625" width="2.7" height="15.0" fill="rgb(241,133,35)" rx="2" ry="2" />
<text text-anchor="" x="179.00" y="635.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>current_kernel_time (1 samples, 0.03%)</title><rect x="83.0" y="705" width="0.3" height="15.0" fill="rgb(230,52,29)" rx="2" ry="2" />
<text text-anchor="" x="86.00" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apparmor_socket_recvmsg (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_recvmsg (1 samples, 0.03%)</title><rect x="1090.0" y="609" width="0.3" height="15.0" fill="rgb(250,164,50)" rx="2" ry="2" />
<text text-anchor="" x="1093.00" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::OnReadMessage (71 samples, 2.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::OnReadMessage (71 samples, 2.01%)</title><rect x="1146.0" y="673" width="23.7" height="15.0" fill="rgb(251,185,3)" rx="2" ry="2" />
<text text-anchor="" x="1149.00" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >m..</text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (4 samples, 0.11%)</title><rect x="11.7" y="497" width="1.3" height="15.0" fill="rgb(234,219,16)" rx="2" ry="2" />
<text text-anchor="" x="14.67" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('deactivate_task (32 samples, 0.90%)')" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (32 samples, 0.90%)</title><rect x="746.0" y="625" width="10.7" height="15.0" fill="rgb(219,177,20)" rx="2" ry="2" />
<text text-anchor="" x="749.00" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_process_times (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_process_times (1 samples, 0.03%)</title><rect x="141.0" y="513" width="0.3" height="15.0" fill="rgb(243,94,11)" rx="2" ry="2" />
<text text-anchor="" x="144.00" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::ChannelMojo::Send (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelMojo::Send (2 samples, 0.06%)</title><rect x="804.7" y="625" width="0.6" height="15.0" fill="rgb(221,202,2)" rx="2" ry="2" />
<text text-anchor="" x="807.67" y="635.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_sendmsg (1 samples, 0.03%)</title><rect x="873.0" y="321" width="0.3" height="15.0" fill="rgb(216,222,37)" rx="2" ry="2" />
<text text-anchor="" x="876.00" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (16 samples, 0.45%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (16 samples, 0.45%)</title><rect x="985.3" y="593" width="5.4" height="15.0" fill="rgb(247,101,21)" rx="2" ry="2" />
<text text-anchor="" x="988.33" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>free (2 samples, 0.06%)</title><rect x="423.3" y="737" width="0.7" height="15.0" fill="rgb(254,2,19)" rx="2" ry="2" />
<text text-anchor="" x="426.33" y="747.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>__fsnotify_parent (3 samples, 0.08%)</title><rect x="865.7" y="353" width="1.0" height="15.0" fill="rgb(220,110,44)" rx="2" ry="2" />
<text text-anchor="" x="868.67" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('___sys_recvmsg (101 samples, 2.85%)')" onmouseout="c()" onclick="zoom(this)">
<title>___sys_recvmsg (101 samples, 2.85%)</title><rect x="435.7" y="641" width="33.6" height="15.0" fill="rgb(254,15,13)" rx="2" ry="2" />
<text text-anchor="" x="438.67" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__..</text>
</g>
<g class="func_g" onmouseover="s('void mojo::system::internal::CheckUserPointer4ul, 4ul (7 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>void mojo::system::internal::CheckUserPointer4ul, 4ul (7 samples, 0.20%)</title><rect x="1041.0" y="625" width="2.3" height="15.0" fill="rgb(209,126,34)" rx="2" ry="2" />
<text text-anchor="" x="1044.00" 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::Release (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (1 samples, 0.03%)</title><rect x="568.7" y="641" width="0.3" height="15.0" fill="rgb(234,132,7)" rx="2" ry="2" />
<text text-anchor="" x="571.67" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_stream_recvmsg (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_recvmsg (2 samples, 0.06%)</title><rect x="569.7" y="529" width="0.6" height="15.0" fill="rgb(231,55,10)" rx="2" ry="2" />
<text text-anchor="" x="572.67" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::LockImpl::Unlock (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::LockImpl::Unlock (2 samples, 0.06%)</title><rect x="818.7" y="545" width="0.6" height="15.0" fill="rgb(229,132,46)" rx="2" ry="2" />
<text text-anchor="" x="821.67" y="555.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 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::trace_event::TraceLog::GetInstance (1 samples, 0.03%)</title><rect x="565.3" y="529" width="0.4" height="15.0" fill="rgb(225,15,11)" rx="2" ry="2" />
<text text-anchor="" x="568.33" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::BindStatebase::internal::RunnableAdaptervoid (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::BindStatebase::internal::RunnableAdaptervoid (1 samples, 0.03%)</title><rect x="503.3" y="577" width="0.4" height="15.0" fill="rgb(226,117,20)" rx="2" ry="2" />
<text text-anchor="" x="506.33" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_disable (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_disable (2 samples, 0.06%)</title><rect x="32.7" y="769" width="0.6" height="15.0" fill="rgb(239,90,34)" rx="2" ry="2" />
<text text-anchor="" x="35.67" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::AlignedAlloc (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::AlignedAlloc (2 samples, 0.06%)</title><rect x="826.7" y="481" width="0.6" height="15.0" fill="rgb(247,209,30)" rx="2" ry="2" />
<text text-anchor="" x="829.67" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__memcpy_sse2_unaligned (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_sse2_unaligned (1 samples, 0.03%)</title><rect x="1022.0" y="561" width="0.3" height="15.0" fill="rgb(221,21,29)" rx="2" ry="2" />
<text text-anchor="" x="1025.00" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator new (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (2 samples, 0.06%)</title><rect x="363.7" y="625" width="0.6" height="15.0" fill="rgb(209,117,30)" rx="2" ry="2" />
<text text-anchor="" x="366.67" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::ReadBuffer::GetBuffer (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::ReadBuffer::GetBuffer (2 samples, 0.06%)</title><rect x="531.0" y="721" width="0.7" height="15.0" fill="rgb(205,150,22)" rx="2" ry="2" />
<text text-anchor="" x="534.00" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::AddRef (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (4 samples, 0.11%)</title><rect x="491.7" y="689" width="1.3" height="15.0" fill="rgb(216,192,47)" rx="2" ry="2" />
<text text-anchor="" x="494.67" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_release_data (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_data (3 samples, 0.08%)</title><rect x="455.3" y="561" width="1.0" height="15.0" fill="rgb(227,201,45)" rx="2" ry="2" />
<text text-anchor="" x="458.33" y="571.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>task_waking_fair (1 samples, 0.03%)</title><rect x="297.7" y="193" width="0.3" height="15.0" fill="rgb(227,215,22)" rx="2" ry="2" />
<text text-anchor="" x="300.67" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::AwakableList::AwakeForStateChange (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::AwakableList::AwakeForStateChange (4 samples, 0.11%)</title><rect x="1149.3" y="625" width="1.4" height="15.0" fill="rgb(248,59,23)" rx="2" ry="2" />
<text text-anchor="" x="1152.33" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('account_entity_enqueue (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_enqueue (2 samples, 0.06%)</title><rect x="306.0" y="97" width="0.7" height="15.0" fill="rgb(215,173,54)" rx="2" ry="2" />
<text text-anchor="" x="309.00" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::HasOneRef (6 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::HasOneRef (6 samples, 0.17%)</title><rect x="420.0" y="737" width="2.0" height="15.0" fill="rgb(249,149,48)" rx="2" ry="2" />
<text text-anchor="" x="423.00" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::MessagePipeReader::PipeIsReady (785 samples, 22.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::MessagePipeReader::PipeIsReady (785 samples, 22.18%)</title><rect x="788.3" y="705" width="261.7" height="15.0" fill="rgb(214,113,27)" rx="2" ry="2" />
<text text-anchor="" x="791.33" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IPC::internal::MessagePipeReader::..</text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (2 samples, 0.06%)</title><rect x="317.0" y="241" width="0.7" height="15.0" fill="rgb(224,163,7)" rx="2" ry="2" />
<text text-anchor="" x="320.00" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('maybe_add_creds (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>maybe_add_creds (1 samples, 0.03%)</title><rect x="880.3" y="305" width="0.4" height="15.0" fill="rgb(207,72,36)" rx="2" ry="2" />
<text text-anchor="" x="883.33" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::HandleTable::GetDispatcher (11 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::HandleTable::GetDispatcher (11 samples, 0.31%)</title><rect x="386.3" y="625" width="3.7" height="15.0" fill="rgb(251,127,17)" rx="2" ry="2" />
<text text-anchor="" x="389.33" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('MojoWriteMessage (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>MojoWriteMessage (1 samples, 0.03%)</title><rect x="976.3" y="593" width="0.4" height="15.0" fill="rgb(233,89,4)" rx="2" ry="2" />
<text text-anchor="" x="979.33" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (1 samples, 0.03%)</title><rect x="341.7" y="545" width="0.3" height="15.0" fill="rgb(245,122,52)" rx="2" ry="2" />
<text text-anchor="" x="344.67" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apparmor_socket_getpeersec_dgram (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_getpeersec_dgram (4 samples, 0.11%)</title><rect x="269.0" y="305" width="1.3" height="15.0" fill="rgb(251,154,42)" rx="2" ry="2" />
<text text-anchor="" x="272.00" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::Release (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (1 samples, 0.03%)</title><rect x="506.7" y="561" width="0.3" height="15.0" fill="rgb(209,92,1)" rx="2" ry="2" />
<text text-anchor="" x="509.67" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ObserverListBasemojo::common::MessagePumpMojo::Observer::Iterator::~Iterator (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>ObserverListBasemojo::common::MessagePumpMojo::Observer::Iterator::~Iterator (2 samples, 0.06%)</title><rect x="783.0" y="737" width="0.7" height="15.0" fill="rgb(235,12,25)" rx="2" ry="2" />
<text text-anchor="" x="786.00" y="747.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (1 samples, 0.03%)</title><rect x="13.0" y="817" width="0.3" height="15.0" fill="rgb(218,129,39)" rx="2" ry="2" />
<text text-anchor="" x="16.00" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::Release (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (1 samples, 0.03%)</title><rect x="1148.0" y="657" width="0.3" height="15.0" fill="rgb(236,179,19)" rx="2" ry="2" />
<text text-anchor="" x="1151.00" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('logging::GetMinLogLevel (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>logging::GetMinLogLevel (4 samples, 0.11%)</title><rect x="823.3" y="497" width="1.4" height="15.0" fill="rgb(217,54,51)" rx="2" ry="2" />
<text text-anchor="" x="826.33" y="507.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (4 samples, 0.11%)</title><rect x="204.7" y="657" width="1.3" height="15.0" fill="rgb(234,18,36)" rx="2" ry="2" />
<text text-anchor="" x="207.67" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.14%)</title><rect x="11.3" y="801" width="1.7" height="15.0" fill="rgb(210,61,16)" rx="2" ry="2" />
<text text-anchor="" x="14.33" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::WillProcessIOEvent (14 samples, 0.40%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::WillProcessIOEvent (14 samples, 0.40%)</title><rect x="410.0" y="737" width="4.7" height="15.0" fill="rgb(247,81,10)" rx="2" ry="2" />
<text text-anchor="" x="413.00" y="747.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_disable (1 samples, 0.03%)</title><rect x="168.0" y="577" width="0.3" height="15.0" fill="rgb(232,54,23)" rx="2" ry="2" />
<text text-anchor="" x="171.00" y="587.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>mutex_unlock (3 samples, 0.08%)</title><rect x="1095.7" y="609" width="1.0" height="15.0" fill="rgb(239,27,26)" rx="2" ry="2" />
<text text-anchor="" x="1098.67" y="619.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>clear_buddies (1 samples, 0.03%)</title><rect x="750.0" y="577" width="0.3" height="15.0" fill="rgb(250,225,35)" rx="2" ry="2" />
<text text-anchor="" x="753.00" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kretprobe_trampoline (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>kretprobe_trampoline (1 samples, 0.03%)</title><rect x="22.3" y="865" width="0.4" height="15.0" fill="rgb(213,109,10)" rx="2" ry="2" />
<text text-anchor="" x="25.33" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (18 samples, 0.51%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (18 samples, 0.51%)</title><rect x="11.3" y="849" width="6.0" height="15.0" fill="rgb(205,152,51)" rx="2" ry="2" />
<text text-anchor="" x="14.33" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_curr (10 samples, 0.28%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (10 samples, 0.28%)</title><rect x="926.3" y="97" width="3.4" height="15.0" fill="rgb(228,105,32)" rx="2" ry="2" />
<text text-anchor="" x="929.33" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kmem_cache_alloc_node (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_alloc_node (1 samples, 0.03%)</title><rect x="289.7" y="289" width="0.3" height="15.0" fill="rgb(221,126,17)" rx="2" ry="2" />
<text text-anchor="" x="292.67" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::Release (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (1 samples, 0.03%)</title><rect x="571.3" y="577" width="0.4" height="15.0" fill="rgb(207,181,50)" rx="2" ry="2" />
<text text-anchor="" x="574.33" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::AlignedAlloc (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::AlignedAlloc (2 samples, 0.06%)</title><rect x="521.0" y="657" width="0.7" height="15.0" fill="rgb(236,127,15)" rx="2" ry="2" />
<text text-anchor="" x="524.00" y="667.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.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (7 samples, 0.20%)</title><rect x="704.0" y="721" width="2.3" height="15.0" fill="rgb(228,89,50)" rx="2" ry="2" />
<text text-anchor="" x="707.00" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ipc_mojo_perfte (3,536 samples, 99.89%)')" onmouseout="c()" onclick="zoom(this)">
<title>ipc_mojo_perfte (3,536 samples, 99.89%)</title><rect x="11.3" y="897" width="1178.7" height="15.0" fill="rgb(235,131,22)" rx="2" ry="2" />
<text text-anchor="" x="14.33" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ipc_mojo_perfte</text>
</g>
<g class="func_g" onmouseover="s('IPC::test::IPCChannelPerfTestBase::RunTestChannelPingPong (1,560 samples, 44.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::test::IPCChannelPerfTestBase::RunTestChannelPingPong (1,560 samples, 44.07%)</title><rect x="670.0" y="833" width="520.0" height="15.0" fill="rgb(208,221,36)" rx="2" ry="2" />
<text text-anchor="" x="673.00" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IPC::test::IPCChannelPerfTestBase::RunTestChannelPingPong</text>
</g>
<g class="func_g" onmouseover="s('wait_for_completion (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>wait_for_completion (4 samples, 0.11%)</title><rect x="37.0" y="705" width="1.3" height="15.0" fill="rgb(249,160,7)" rx="2" ry="2" />
<text text-anchor="" x="40.00" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::ReadBuffer::GetBuffer (8 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::ReadBuffer::GetBuffer (8 samples, 0.23%)</title><rect x="1179.0" y="721" width="2.7" height="15.0" fill="rgb(224,211,35)" rx="2" ry="2" />
<text text-anchor="" x="1182.00" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (127 samples, 3.59%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (127 samples, 3.59%)</title><rect x="1085.0" y="689" width="42.3" height="15.0" fill="rgb(206,37,4)" rx="2" ry="2" />
<text text-anchor="" x="1088.00" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys..</text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::MessagePipeReader::ReadMessagesThenWait (45 samples, 1.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::MessagePipeReader::ReadMessagesThenWait (45 samples, 1.27%)</title><rect x="553.7" y="609" width="15.0" height="15.0" fill="rgb(252,103,44)" rx="2" ry="2" />
<text text-anchor="" x="556.67" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_poll_callback (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (1 samples, 0.03%)</title><rect x="1117.7" y="481" width="0.3" height="15.0" fill="rgb(233,187,54)" rx="2" ry="2" />
<text text-anchor="" x="1120.67" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipeDispatcher::ReadMessageImplNoLock (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipeDispatcher::ReadMessageImplNoLock (2 samples, 0.06%)</title><rect x="1030.3" y="609" width="0.7" height="15.0" fill="rgb(245,193,37)" rx="2" ry="2" />
<text text-anchor="" x="1033.33" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Core::AsyncWait (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Core::AsyncWait (4 samples, 0.11%)</title><rect x="398.3" y="673" width="1.4" height="15.0" fill="rgb(218,68,30)" rx="2" ry="2" />
<text text-anchor="" x="401.33" y="683.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.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (2 samples, 0.06%)</title><rect x="164.3" y="561" width="0.7" height="15.0" fill="rgb(212,80,3)" rx="2" ry="2" />
<text text-anchor="" x="167.33" 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 (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (5 samples, 0.14%)</title><rect x="905.7" y="177" width="1.6" height="15.0" fill="rgb(213,225,13)" rx="2" ry="2" />
<text text-anchor="" x="908.67" y="187.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.62%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_fair (22 samples, 0.62%)</title><rect x="168.7" y="625" width="7.3" height="15.0" fill="rgb(220,180,5)" rx="2" ry="2" />
<text text-anchor="" x="171.67" y="635.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (4 samples, 0.11%)</title><rect x="83.7" y="737" width="1.3" height="15.0" fill="rgb(236,155,30)" rx="2" ry="2" />
<text text-anchor="" x="86.67" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::AddRef (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (4 samples, 0.11%)</title><rect x="405.3" y="721" width="1.4" height="15.0" fill="rgb(219,220,49)" rx="2" ry="2" />
<text text-anchor="" x="408.33" y="731.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (3 samples, 0.08%)</title><rect x="1115.0" y="449" width="1.0" height="15.0" fill="rgb(250,46,14)" rx="2" ry="2" />
<text text-anchor="" x="1118.00" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('aa_revalidate_sk (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>aa_revalidate_sk (1 samples, 0.03%)</title><rect x="873.0" y="305" width="0.3" height="15.0" fill="rgb(217,13,34)" rx="2" ry="2" />
<text text-anchor="" x="876.00" y="315.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.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_dequeue (2 samples, 0.06%)</title><rect x="753.0" y="561" width="0.7" height="15.0" fill="rgb(213,194,31)" rx="2" ry="2" />
<text text-anchor="" x="756.00" y="571.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>place_entity (1 samples, 0.03%)</title><rect x="306.7" y="97" width="0.3" height="15.0" fill="rgb(248,68,25)" rx="2" ry="2" />
<text text-anchor="" x="309.67" y="107.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_string (3 samples, 0.08%)</title><rect x="1119.7" y="577" width="1.0" height="15.0" fill="rgb(230,169,9)" rx="2" ry="2" />
<text text-anchor="" x="1122.67" 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.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.14%)</title><rect x="11.3" y="705" width="1.7" height="15.0" fill="rgb(222,23,1)" rx="2" ry="2" />
<text text-anchor="" x="14.33" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_tail (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_tail (4 samples, 0.11%)</title><rect x="11.7" y="609" width="1.3" height="15.0" fill="rgb(223,92,40)" rx="2" ry="2" />
<text text-anchor="" x="14.67" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__clock_gettime (17 samples, 0.48%)')" onmouseout="c()" onclick="zoom(this)">
<title>__clock_gettime (17 samples, 0.48%)</title><rect x="985.0" y="609" width="5.7" height="15.0" fill="rgb(211,128,18)" rx="2" ry="2" />
<text text-anchor="" x="988.00" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::TimeTicks::NowFromSystemTraceTime (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::TimeTicks::NowFromSystemTraceTime (1 samples, 0.03%)</title><rect x="999.3" y="625" width="0.4" height="15.0" fill="rgb(232,221,3)" rx="2" ry="2" />
<text text-anchor="" x="1002.33" y="635.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_wall_time (1 samples, 0.03%)</title><rect x="1131.7" y="561" width="0.3" height="15.0" fill="rgb(224,118,25)" rx="2" ry="2" />
<text text-anchor="" x="1134.67" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (2 samples, 0.06%)</title><rect x="562.7" y="401" width="0.6" height="15.0" fill="rgb(251,87,15)" rx="2" ry="2" />
<text text-anchor="" x="565.67" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (3 samples, 0.08%)</title><rect x="392.3" y="625" width="1.0" height="15.0" fill="rgb(215,102,3)" rx="2" ry="2" />
<text text-anchor="" x="395.33" 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 (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_string (5 samples, 0.14%)</title><rect x="439.0" y="625" width="1.7" height="15.0" fill="rgb(242,73,9)" rx="2" ry="2" />
<text text-anchor="" x="442.00" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::AddAwakable (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::AddAwakable (1 samples, 0.03%)</title><rect x="554.0" y="529" width="0.3" height="15.0" fill="rgb(211,106,41)" rx="2" ry="2" />
<text text-anchor="" x="557.00" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::OnReadMessage (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::OnReadMessage (3 samples, 0.08%)</title><rect x="521.7" y="689" width="1.0" height="15.0" fill="rgb(238,29,38)" rx="2" ry="2" />
<text text-anchor="" x="524.67" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_int_free (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (1 samples, 0.03%)</title><rect x="1157.0" y="577" width="0.3" height="15.0" fill="rgb(206,165,4)" rx="2" ry="2" />
<text text-anchor="" x="1160.00" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_queue_tail (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_queue_tail (5 samples, 0.14%)</title><rect x="885.0" y="305" width="1.7" height="15.0" fill="rgb(239,219,1)" rx="2" ry="2" />
<text text-anchor="" x="888.00" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::WeakReference::~WeakReference (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReference::~WeakReference (1 samples, 0.03%)</title><rect x="1064.7" y="737" width="0.3" height="15.0" fill="rgb(229,220,40)" rx="2" ry="2" />
<text text-anchor="" x="1067.67" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_regs_caller (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_regs_caller (2 samples, 0.06%)</title><rect x="470.3" y="641" width="0.7" height="15.0" fill="rgb(237,154,27)" rx="2" ry="2" />
<text text-anchor="" x="473.33" y="651.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>unroll_tree_refs (1 samples, 0.03%)</title><rect x="1084.0" y="657" width="0.3" height="15.0" fill="rgb(235,24,45)" rx="2" ry="2" />
<text text-anchor="" x="1087.00" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (2 samples, 0.06%)</title><rect x="1167.0" y="641" width="0.7" height="15.0" fill="rgb(240,159,27)" rx="2" ry="2" />
<text text-anchor="" x="1170.00" y="651.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.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (2 samples, 0.06%)</title><rect x="460.0" y="481" width="0.7" height="15.0" fill="rgb(218,19,24)" rx="2" ry="2" />
<text text-anchor="" x="463.00" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('___sys_recvmsg (111 samples, 3.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>___sys_recvmsg (111 samples, 3.14%)</title><rect x="1086.0" y="641" width="37.0" height="15.0" fill="rgb(209,144,23)" rx="2" ry="2" />
<text text-anchor="" x="1089.00" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >___..</text>
</g>
<g class="func_g" onmouseover="s('dput (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>dput (4 samples, 0.11%)</title><rect x="95.7" y="689" width="1.3" height="15.0" fill="rgb(247,62,16)" rx="2" ry="2" />
<text text-anchor="" x="98.67" y="699.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.11%)</title><rect x="37.0" y="593" width="1.3" height="15.0" fill="rgb(215,151,52)" rx="2" ry="2" />
<text text-anchor="" x="40.00" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('PickleIterator::ReadInt64 (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>PickleIterator::ReadInt64 (2 samples, 0.06%)</title><rect x="358.3" y="625" width="0.7" height="15.0" fill="rgb(238,91,13)" rx="2" ry="2" />
<text text-anchor="" x="361.33" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('timekeeping_update.constprop.9 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>timekeeping_update.constprop.9 (1 samples, 0.03%)</title><rect x="457.3" y="369" width="0.4" height="15.0" fill="rgb(247,107,6)" rx="2" ry="2" />
<text text-anchor="" x="460.33" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('aa_file_perm (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>aa_file_perm (1 samples, 0.03%)</title><rect x="948.0" y="305" width="0.3" height="15.0" fill="rgb(248,0,23)" rx="2" ry="2" />
<text text-anchor="" x="951.00" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>free (2 samples, 0.06%)</title><rect x="978.3" y="593" width="0.7" height="15.0" fill="rgb(226,5,29)" rx="2" ry="2" />
<text text-anchor="" x="981.33" y="603.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>mutex_lock (3 samples, 0.08%)</title><rect x="126.3" y="673" width="1.0" height="15.0" fill="rgb(205,53,2)" rx="2" ry="2" />
<text text-anchor="" x="129.33" y="683.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator delete (1 samples, 0.03%)</title><rect x="333.7" y="433" width="0.3" height="15.0" fill="rgb(215,110,14)" rx="2" ry="2" />
<text text-anchor="" x="336.67" y="443.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.03%)</title><rect x="878.0" y="305" width="0.3" height="15.0" fill="rgb(212,45,52)" rx="2" ry="2" />
<text text-anchor="" x="881.00" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('enqueue_task (73 samples, 2.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task (73 samples, 2.06%)</title><rect x="910.0" y="145" width="24.3" height="15.0" fill="rgb(220,69,33)" rx="2" ry="2" />
<text text-anchor="" x="913.00" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >e..</text>
</g>
<g class="func_g" onmouseover="s('sock_alloc_send_pskb (37 samples, 1.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_alloc_send_pskb (37 samples, 1.05%)</title><rect x="886.7" y="305" width="12.3" height="15.0" fill="rgb(254,169,51)" rx="2" ry="2" />
<text text-anchor="" x="889.67" y="315.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (3 samples, 0.08%)</title><rect x="251.3" y="401" width="1.0" height="15.0" fill="rgb(213,79,22)" rx="2" ry="2" />
<text text-anchor="" x="254.33" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::MessagePipeReader::Send (343 samples, 9.69%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::MessagePipeReader::Send (343 samples, 9.69%)</title><rect x="228.7" y="593" width="114.3" height="15.0" fill="rgb(237,181,12)" rx="2" ry="2" />
<text text-anchor="" x="231.67" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IPC::internal:..</text>
</g>
<g class="func_g" onmouseover="s('sched_clock_cpu (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (1 samples, 0.03%)</title><rect x="932.0" y="129" width="0.3" height="15.0" fill="rgb(243,168,6)" rx="2" ry="2" />
<text text-anchor="" x="935.00" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_int_free (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (1 samples, 0.03%)</title><rect x="503.0" y="577" width="0.3" height="15.0" fill="rgb(224,84,24)" rx="2" ry="2" />
<text text-anchor="" x="506.00" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('malloc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>malloc (1 samples, 0.03%)</title><rect x="795.3" y="593" width="0.4" height="15.0" fill="rgb(209,143,3)" rx="2" ry="2" />
<text text-anchor="" x="798.33" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_stream_sendmsg (206 samples, 5.82%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_sendmsg (206 samples, 5.82%)</title><rect x="874.3" y="321" width="68.7" height="15.0" fill="rgb(230,194,35)" rx="2" ry="2" />
<text text-anchor="" x="877.33" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >unix_st..</text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::Release (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (4 samples, 0.11%)</title><rect x="413.0" y="721" width="1.3" height="15.0" fill="rgb(208,204,14)" rx="2" ry="2" />
<text text-anchor="" x="416.00" y="731.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_fair (1 samples, 0.03%)</title><rect x="34.0" y="817" width="0.3" height="15.0" fill="rgb(225,94,43)" rx="2" ry="2" />
<text text-anchor="" x="37.00" y="827.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>cpuacct_charge (1 samples, 0.03%)</title><rect x="753.7" y="561" width="0.3" height="15.0" fill="rgb(231,43,11)" rx="2" ry="2" />
<text text-anchor="" x="756.67" y="571.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_min_vruntime (1 samples, 0.03%)</title><rect x="152.0" y="529" width="0.3" height="15.0" fill="rgb(238,149,4)" rx="2" ry="2" />
<text text-anchor="" x="155.00" y="539.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.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_dequeue (2 samples, 0.06%)</title><rect x="146.3" y="577" width="0.7" height="15.0" fill="rgb(244,143,24)" rx="2" ry="2" />
<text text-anchor="" x="149.33" y="587.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::Message::TraceMessageBegin (1 samples, 0.03%)</title><rect x="811.3" y="593" width="0.4" height="15.0" fill="rgb(207,67,2)" rx="2" ry="2" />
<text text-anchor="" x="814.33" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('epoll_dispatch (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>epoll_dispatch (2 samples, 0.06%)</title><rect x="69.3" y="769" width="0.7" height="15.0" fill="rgb(235,147,36)" rx="2" ry="2" />
<text text-anchor="" x="72.33" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('check_preempt_wakeup (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>check_preempt_wakeup (4 samples, 0.11%)</title><rect x="936.0" y="129" width="1.3" height="15.0" fill="rgb(222,190,8)" rx="2" ry="2" />
<text text-anchor="" x="939.00" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('enqueue_task (35 samples, 0.99%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task (35 samples, 0.99%)</title><rect x="300.7" y="145" width="11.6" height="15.0" fill="rgb(232,170,43)" rx="2" ry="2" />
<text text-anchor="" x="303.67" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::ChannelMojo::Send (25 samples, 0.71%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelMojo::Send (25 samples, 0.71%)</title><rect x="555.3" y="529" width="8.4" height="15.0" fill="rgb(237,38,23)" rx="2" ry="2" />
<text text-anchor="" x="558.33" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_Znwm@plt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_Znwm@plt (1 samples, 0.03%)</title><rect x="795.0" y="593" width="0.3" height="15.0" fill="rgb(244,133,41)" rx="2" ry="2" />
<text text-anchor="" x="798.00" y="603.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>unroll_tree_refs (3 samples, 0.08%)</title><rect x="856.3" y="369" width="1.0" height="15.0" fill="rgb(237,209,14)" rx="2" ry="2" />
<text text-anchor="" x="859.33" y="379.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::LockImpl::Lock (1 samples, 0.03%)</title><rect x="499.0" y="641" width="0.3" height="15.0" fill="rgb(238,102,29)" rx="2" ry="2" />
<text text-anchor="" x="502.00" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::AlignedAlloc (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::AlignedAlloc (3 samples, 0.08%)</title><rect x="1145.0" y="673" width="1.0" height="15.0" fill="rgb(208,39,13)" rx="2" ry="2" />
<text text-anchor="" x="1148.00" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('check_preempt_curr (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>check_preempt_curr (5 samples, 0.14%)</title><rect x="935.7" y="145" width="1.6" height="15.0" fill="rgb(214,142,0)" rx="2" ry="2" />
<text text-anchor="" x="938.67" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_send_events_proc (22 samples, 0.62%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_send_events_proc (22 samples, 0.62%)</title><rect x="119.0" y="673" width="7.3" height="15.0" fill="rgb(205,63,7)" rx="2" ry="2" />
<text text-anchor="" x="122.00" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::Message::Message (15 samples, 0.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::Message::Message (15 samples, 0.42%)</title><rect x="344.3" y="609" width="5.0" height="15.0" fill="rgb(218,174,10)" rx="2" ry="2" />
<text text-anchor="" x="347.33" y="619.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_inodes (1 samples, 0.03%)</title><rect x="433.7" y="657" width="0.3" height="15.0" fill="rgb(241,158,18)" rx="2" ry="2" />
<text text-anchor="" x="436.67" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Dispatcher::WriteMessage (460 samples, 12.99%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Dispatcher::WriteMessage (460 samples, 12.99%)</title><rect x="819.3" y="545" width="153.4" height="15.0" fill="rgb(231,98,41)" rx="2" ry="2" />
<text text-anchor="" x="822.33" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::system::Dispa..</text>
</g>
<g class="func_g" onmouseover="s('sched_clock_cpu (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (2 samples, 0.06%)</title><rect x="761.0" y="561" width="0.7" height="15.0" fill="rgb(209,204,18)" rx="2" ry="2" />
<text text-anchor="" x="764.00" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::Release (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (1 samples, 0.03%)</title><rect x="370.0" y="625" width="0.3" height="15.0" fill="rgb(254,185,40)" rx="2" ry="2" />
<text text-anchor="" x="373.00" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::ChannelMojo::ReadFromMessageAttachmentSet (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelMojo::ReadFromMessageAttachmentSet (2 samples, 0.06%)</title><rect x="229.3" y="577" width="0.7" height="15.0" fill="rgb(220,82,14)" rx="2" ry="2" />
<text text-anchor="" x="232.33" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::MessagePipeReader::PipeIsReady (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::MessagePipeReader::PipeIsReady (2 samples, 0.06%)</title><rect x="401.3" y="721" width="0.7" height="15.0" fill="rgb(219,183,14)" rx="2" ry="2" />
<text text-anchor="" x="404.33" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('security_file_permission (12 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (12 samples, 0.34%)</title><rect x="320.7" y="337" width="4.0" height="15.0" fill="rgb(228,23,19)" rx="2" ry="2" />
<text text-anchor="" x="323.67" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::OnReadMessage (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::OnReadMessage (2 samples, 0.06%)</title><rect x="571.7" y="561" width="0.6" height="15.0" fill="rgb(243,208,25)" rx="2" ry="2" />
<text text-anchor="" x="574.67" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (30 samples, 0.85%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (30 samples, 0.85%)</title><rect x="50.0" y="753" width="10.0" height="15.0" fill="rgb(243,148,11)" rx="2" ry="2" />
<text text-anchor="" x="53.00" y="763.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_timer (1 samples, 0.03%)</title><rect x="457.3" y="401" width="0.4" height="15.0" fill="rgb(207,30,0)" rx="2" ry="2" />
<text text-anchor="" x="460.33" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_write (199 samples, 5.62%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (199 samples, 5.62%)</title><rect x="258.3" y="385" width="66.4" height="15.0" fill="rgb(236,113,29)" rx="2" ry="2" />
<text text-anchor="" x="261.33" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys_write</text>
</g>
<g class="func_g" onmouseover="s('__memcpy_sse2_unaligned (12 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_sse2_unaligned (12 samples, 0.34%)</title><rect x="1141.0" y="673" width="4.0" height="15.0" fill="rgb(216,164,34)" rx="2" ry="2" />
<text text-anchor="" x="1144.00" 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::Release (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (3 samples, 0.08%)</title><rect x="1157.7" y="577" width="1.0" height="15.0" fill="rgb(237,155,10)" rx="2" ry="2" />
<text text-anchor="" x="1160.67" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (12 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (12 samples, 0.34%)</title><rect x="709.0" y="705" width="4.0" height="15.0" fill="rgb(208,27,27)" rx="2" ry="2" />
<text text-anchor="" x="712.00" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::Release (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (2 samples, 0.06%)</title><rect x="792.7" y="657" width="0.6" height="15.0" fill="rgb(207,34,35)" rx="2" ry="2" />
<text text-anchor="" x="795.67" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::OnReadMessage (55 samples, 1.55%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::OnReadMessage (55 samples, 1.55%)</title><rect x="1148.7" y="641" width="18.3" height="15.0" fill="rgb(238,87,6)" rx="2" ry="2" />
<text text-anchor="" x="1151.67" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::WriteMessage (262 samples, 7.40%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::WriteMessage (262 samples, 7.40%)</title><rect x="246.7" y="449" width="87.3" height="15.0" fill="rgb(246,129,7)" rx="2" ry="2" />
<text text-anchor="" x="249.67" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::syst..</text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.14%)</title><rect x="11.3" y="785" width="1.7" height="15.0" fill="rgb(207,119,15)" rx="2" ry="2" />
<text text-anchor="" x="14.33" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('epoll_wait (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>epoll_wait (1 samples, 0.03%)</title><rect x="1188.7" y="753" width="0.3" height="15.0" fill="rgb(245,29,49)" rx="2" ry="2" />
<text text-anchor="" x="1191.67" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__kmalloc_reserve.isra.27 (11 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_reserve.isra.27 (11 samples, 0.31%)</title><rect x="282.0" y="273" width="3.7" height="15.0" fill="rgb(245,198,21)" rx="2" ry="2" />
<text text-anchor="" x="285.00" 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_clock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (1 samples, 0.03%)</title><rect x="769.3" y="689" width="0.4" height="15.0" fill="rgb(233,39,16)" rx="2" ry="2" />
<text text-anchor="" x="772.33" y="699.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_execve_common.isra.22 (1 samples, 0.03%)</title><rect x="22.3" y="833" width="0.4" height="15.0" fill="rgb(230,34,12)" rx="2" ry="2" />
<text text-anchor="" x="25.33" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apparmor_file_permission (7 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (7 samples, 0.20%)</title><rect x="322.0" y="321" width="2.3" height="15.0" fill="rgb(250,193,26)" rx="2" ry="2" />
<text text-anchor="" x="325.00" y="331.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (3 samples, 0.08%)</title><rect x="1147.0" y="657" width="1.0" height="15.0" fill="rgb(211,155,3)" rx="2" ry="2" />
<text text-anchor="" x="1150.00" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessageInTransit::View::View (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::View::View (2 samples, 0.06%)</title><rect x="1135.3" y="721" width="0.7" height="15.0" fill="rgb(253,229,41)" rx="2" ry="2" />
<text text-anchor="" x="1138.33" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('memset (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>memset (2 samples, 0.06%)</title><rect x="240.0" y="497" width="0.7" height="15.0" fill="rgb(231,181,39)" rx="2" ry="2" />
<text text-anchor="" x="243.00" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (2 samples, 0.06%)</title><rect x="341.0" y="545" width="0.7" height="15.0" fill="rgb(207,80,48)" rx="2" ry="2" />
<text text-anchor="" x="344.00" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_inodes (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_inodes (2 samples, 0.06%)</title><rect x="253.0" y="369" width="0.7" height="15.0" fill="rgb(237,142,38)" rx="2" ry="2" />
<text text-anchor="" x="256.00" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::OnWriteCompletedNoLock (7 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::OnWriteCompletedNoLock (7 samples, 0.20%)</title><rect x="957.7" y="433" width="2.3" height="15.0" fill="rgb(211,36,22)" rx="2" ry="2" />
<text text-anchor="" x="960.67" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (2 samples, 0.06%)</title><rect x="1168.7" y="657" width="0.6" height="15.0" fill="rgb(241,112,17)" rx="2" ry="2" />
<text text-anchor="" x="1171.67" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (29 samples, 0.82%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (29 samples, 0.82%)</title><rect x="26.3" y="833" width="9.7" height="15.0" fill="rgb(249,157,42)" rx="2" ry="2" />
<text text-anchor="" x="29.33" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('auditsys (6 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>auditsys (6 samples, 0.17%)</title><rect x="81.7" y="737" width="2.0" height="15.0" fill="rgb(233,54,54)" rx="2" ry="2" />
<text text-anchor="" x="84.67" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (4 samples, 0.11%)</title><rect x="108.7" y="689" width="1.3" height="15.0" fill="rgb(246,84,33)" rx="2" ry="2" />
<text text-anchor="" x="111.67" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('wait_for_unix_gc (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>wait_for_unix_gc (2 samples, 0.06%)</title><rect x="942.3" y="305" width="0.7" height="15.0" fill="rgb(238,122,2)" rx="2" ry="2" />
<text text-anchor="" x="945.33" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.14%)</title><rect x="11.3" y="737" width="1.7" height="15.0" fill="rgb(230,99,17)" rx="2" ry="2" />
<text text-anchor="" x="14.33" y="747.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 (49 samples, 1.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_scan_ready_list.isra.9 (49 samples, 1.38%)</title><rect x="112.0" y="689" width="16.3" height="15.0" fill="rgb(237,12,11)" rx="2" ry="2" />
<text text-anchor="" x="115.00" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pthread_enable_asynccancel (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_enable_asynccancel (1 samples, 0.03%)</title><rect x="951.7" y="417" width="0.3" height="15.0" fill="rgb(247,216,37)" rx="2" ry="2" />
<text text-anchor="" x="954.67" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::TimeTicks::NowFromSystemTraceTime (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::TimeTicks::NowFromSystemTraceTime (1 samples, 0.03%)</title><rect x="354.0" y="609" width="0.3" height="15.0" fill="rgb(213,67,54)" rx="2" ry="2" />
<text text-anchor="" x="357.00" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_disable (7 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_disable (7 samples, 0.20%)</title><rect x="761.7" y="561" width="2.3" height="15.0" fill="rgb(237,121,16)" rx="2" ry="2" />
<text text-anchor="" x="764.67" y="571.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>hrtick_update (1 samples, 0.03%)</title><rect x="559.7" y="49" width="0.3" height="15.0" fill="rgb(222,106,42)" rx="2" ry="2" />
<text text-anchor="" x="562.67" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (33 samples, 0.93%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (33 samples, 0.93%)</title><rect x="11.3" y="865" width="11.0" height="15.0" fill="rgb(236,54,17)" rx="2" ry="2" />
<text text-anchor="" x="14.33" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('memset (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>memset (2 samples, 0.06%)</title><rect x="992.3" y="609" width="0.7" height="15.0" fill="rgb(228,200,10)" rx="2" ry="2" />
<text text-anchor="" x="995.33" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessageInTransit::MessageInTransit (6 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::MessageInTransit (6 samples, 0.17%)</title><rect x="241.3" y="497" width="2.0" height="15.0" fill="rgb(207,177,49)" rx="2" ry="2" />
<text text-anchor="" x="244.33" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('scoped_refptrIPC::internal::AsyncHandleWaiter::Context::~scoped_refptr (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>scoped_refptrIPC::internal::AsyncHandleWaiter::Context::~scoped_refptr (1 samples, 0.03%)</title><rect x="1161.3" y="561" width="0.4" height="15.0" fill="rgb(222,97,47)" rx="2" ry="2" />
<text text-anchor="" x="1164.33" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::WriteBuffer::GetBuffers (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::WriteBuffer::GetBuffers (3 samples, 0.08%)</title><rect x="954.7" y="417" width="1.0" height="15.0" fill="rgb(218,152,1)" rx="2" ry="2" />
<text text-anchor="" x="957.67" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::AsyncHandleWaiter::Context::HandleIsReady (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::AsyncHandleWaiter::Context::HandleIsReady (1 samples, 0.03%)</title><rect x="1153.3" y="593" width="0.4" height="15.0" fill="rgb(221,223,23)" rx="2" ry="2" />
<text text-anchor="" x="1156.33" y="603.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 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_from_iovec (1 samples, 0.03%)</title><rect x="557.7" y="241" width="0.3" height="15.0" fill="rgb(242,195,0)" rx="2" ry="2" />
<text text-anchor="" x="560.67" y="251.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (4 samples, 0.11%)</title><rect x="37.0" y="609" width="1.3" height="15.0" fill="rgb(210,188,36)" rx="2" ry="2" />
<text text-anchor="" x="40.00" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule (82 samples, 2.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule (82 samples, 2.32%)</title><rect x="742.0" y="657" width="27.3" height="15.0" fill="rgb(233,184,17)" rx="2" ry="2" />
<text text-anchor="" x="745.00" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s('fput (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>fput (3 samples, 0.08%)</title><rect x="773.3" y="705" width="1.0" height="15.0" fill="rgb(234,100,10)" rx="2" ry="2" />
<text text-anchor="" x="776.33" y="715.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.11%)</title><rect x="547.3" y="497" width="1.4" height="15.0" fill="rgb(235,48,11)" rx="2" ry="2" />
<text text-anchor="" x="550.33" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::test::ChannelReflectorListener::OnMessageReceived (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::test::ChannelReflectorListener::OnMessageReceived (2 samples, 0.06%)</title><rect x="365.3" y="641" width="0.7" height="15.0" fill="rgb(208,131,9)" rx="2" ry="2" />
<text text-anchor="" x="368.33" y="651.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>check_preempt_curr (1 samples, 0.03%)</title><rect x="560.0" y="81" width="0.3" height="15.0" fill="rgb(245,96,19)" rx="2" ry="2" />
<text text-anchor="" x="563.00" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__srcu_read_unlock (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>__srcu_read_unlock (2 samples, 0.06%)</title><rect x="319.3" y="337" width="0.7" height="15.0" fill="rgb(248,132,14)" rx="2" ry="2" />
<text text-anchor="" x="322.33" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Core::AsyncWait (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Core::AsyncWait (4 samples, 0.11%)</title><rect x="553.7" y="577" width="1.3" height="15.0" fill="rgb(212,148,29)" rx="2" ry="2" />
<text text-anchor="" x="556.67" y="587.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (4 samples, 0.11%)</title><rect x="10.0" y="673" width="1.3" height="15.0" fill="rgb(243,63,38)" 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('check_preempt_curr (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>check_preempt_curr (1 samples, 0.03%)</title><rect x="934.3" y="161" width="0.4" height="15.0" fill="rgb(209,225,10)" rx="2" ry="2" />
<text text-anchor="" x="937.33" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (8 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (8 samples, 0.23%)</title><rect x="522.7" y="689" width="2.6" height="15.0" fill="rgb(251,204,16)" rx="2" ry="2" />
<text text-anchor="" x="525.67" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__srcu_read_lock (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>__srcu_read_lock (4 samples, 0.11%)</title><rect x="866.7" y="353" width="1.3" height="15.0" fill="rgb(242,216,27)" rx="2" ry="2" />
<text text-anchor="" x="869.67" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Core::AsyncWait (13 samples, 0.37%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Core::AsyncWait (13 samples, 0.37%)</title><rect x="793.3" y="657" width="4.4" height="15.0" fill="rgb(237,0,34)" rx="2" ry="2" />
<text text-anchor="" x="796.33" y="667.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__enqueue_entity (1 samples, 0.03%)</title><rect x="768.0" y="609" width="0.3" height="15.0" fill="rgb(234,5,26)" rx="2" ry="2" />
<text text-anchor="" x="771.00" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fsnotify (8 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>fsnotify (8 samples, 0.23%)</title><rect x="943.7" y="353" width="2.6" height="15.0" fill="rgb(243,216,34)" rx="2" ry="2" />
<text text-anchor="" x="946.67" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('account_entity_enqueue (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_enqueue (2 samples, 0.06%)</title><rect x="913.0" y="113" width="0.7" height="15.0" fill="rgb(247,105,40)" rx="2" ry="2" />
<text text-anchor="" x="916.00" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mutex_unlock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mutex_unlock (1 samples, 0.03%)</title><rect x="128.7" y="689" width="0.3" height="15.0" fill="rgb(229,174,13)" rx="2" ry="2" />
<text text-anchor="" x="131.67" y="699.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (4 samples, 0.11%)</title><rect x="547.3" y="481" width="1.4" height="15.0" fill="rgb(205,158,26)" rx="2" ry="2" />
<text text-anchor="" x="550.33" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (6 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (6 samples, 0.17%)</title><rect x="691.7" y="753" width="2.0" height="15.0" fill="rgb(232,86,43)" rx="2" ry="2" />
<text text-anchor="" x="694.67" y="763.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (6 samples, 0.17%)</title><rect x="533.0" y="737" width="2.0" height="15.0" fill="rgb(219,122,48)" rx="2" ry="2" />
<text text-anchor="" x="536.00" y="747.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (3 samples, 0.08%)</title><rect x="885.7" y="289" width="1.0" height="15.0" fill="rgb(214,13,26)" rx="2" ry="2" />
<text text-anchor="" x="888.67" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_rotate_start.isra.39 (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_rotate_start.isra.39 (3 samples, 0.08%)</title><rect x="758.0" y="577" width="1.0" height="15.0" fill="rgb(239,156,54)" rx="2" ry="2" />
<text text-anchor="" x="761.00" y="587.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::HasOneRef (4 samples, 0.11%)</title><rect x="1068.0" y="737" width="1.3" height="15.0" fill="rgb(216,175,30)" rx="2" ry="2" />
<text text-anchor="" x="1071.00" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::ChannelMojo::Send (508 samples, 14.35%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelMojo::Send (508 samples, 14.35%)</title><rect x="809.7" y="609" width="169.3" height="15.0" fill="rgb(228,33,41)" rx="2" ry="2" />
<text text-anchor="" x="812.67" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IPC::ChannelMojo::Send</text>
</g>
<g class="func_g" onmouseover="s('mojo::embedder::PlatformChannelRecvmsg (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::embedder::PlatformChannelRecvmsg (3 samples, 0.08%)</title><rect x="1076.3" y="721" width="1.0" height="15.0" fill="rgb(208,48,17)" rx="2" ry="2" />
<text text-anchor="" x="1079.33" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_rotate_start.isra.39 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_rotate_start.isra.39 (1 samples, 0.03%)</title><rect x="160.3" y="577" width="0.4" height="15.0" fill="rgb(209,143,34)" rx="2" ry="2" />
<text text-anchor="" x="163.33" y="587.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.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>set_next_entity (12 samples, 0.34%)</title><rect x="171.7" y="609" width="4.0" height="15.0" fill="rgb(206,7,53)" rx="2" ry="2" />
<text text-anchor="" x="174.67" y="619.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 (83 samples, 2.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.74 (83 samples, 2.34%)</title><rect x="909.7" y="177" width="27.6" height="15.0" fill="rgb(223,183,50)" rx="2" ry="2" />
<text text-anchor="" x="912.67" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >t..</text>
</g>
<g class="func_g" onmouseover="s('base::internal::WeakReferenceOwner::GetRef (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReferenceOwner::GetRef (3 samples, 0.08%)</title><rect x="1065.0" y="737" width="1.0" height="15.0" fill="rgb(241,53,32)" rx="2" ry="2" />
<text text-anchor="" x="1068.00" y="747.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (3 samples, 0.08%)</title><rect x="1173.3" y="689" width="1.0" height="15.0" fill="rgb(242,87,23)" rx="2" ry="2" />
<text text-anchor="" x="1176.33" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rw_verify_area (9 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (9 samples, 0.25%)</title><rect x="946.3" y="353" width="3.0" height="15.0" fill="rgb(214,112,34)" rx="2" ry="2" />
<text text-anchor="" x="949.33" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('testing::Test::Run (80 samples, 2.26%)')" onmouseout="c()" onclick="zoom(this)">
<title>testing::Test::Run (80 samples, 2.26%)</title><rect x="547.3" y="769" width="26.7" height="15.0" fill="rgb(238,137,24)" rx="2" ry="2" />
<text text-anchor="" x="550.33" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >t..</text>
</g>
<g class="func_g" onmouseover="s('ep_scan_ready_list.isra.9 (37 samples, 1.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_scan_ready_list.isra.9 (37 samples, 1.05%)</title><rect x="727.7" y="689" width="12.3" height="15.0" fill="rgb(240,159,1)" rx="2" ry="2" />
<text text-anchor="" x="730.67" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('malloc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>malloc (1 samples, 0.03%)</title><rect x="414.3" y="721" width="0.4" height="15.0" fill="rgb(244,88,31)" rx="2" ry="2" />
<text text-anchor="" x="417.33" y="731.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_scm_to_skb (1 samples, 0.03%)</title><rect x="318.3" y="305" width="0.4" height="15.0" fill="rgb(230,100,7)" rx="2" ry="2" />
<text text-anchor="" x="321.33" y="315.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator delete (1 samples, 0.03%)</title><rect x="562.3" y="353" width="0.4" height="15.0" fill="rgb(247,184,2)" rx="2" ry="2" />
<text text-anchor="" x="565.33" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::AsyncWaiter::Awake (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::AsyncWaiter::Awake (2 samples, 0.06%)</title><rect x="571.7" y="513" width="0.6" height="15.0" fill="rgb(250,187,3)" rx="2" ry="2" />
<text text-anchor="" x="574.67" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_sched_handle.isra.17 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_handle.isra.17 (1 samples, 0.03%)</title><rect x="141.0" y="529" width="0.3" height="15.0" fill="rgb(206,160,48)" rx="2" ry="2" />
<text text-anchor="" x="144.00" y="539.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (3 samples, 0.08%)</title><rect x="250.3" y="385" width="1.0" height="15.0" fill="rgb(227,200,52)" rx="2" ry="2" />
<text text-anchor="" x="253.33" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('non-virtual thunk to mojo::system:: (316 samples, 8.93%)')" onmouseout="c()" onclick="zoom(this)">
<title>non-virtual thunk to mojo::system:: (316 samples, 8.93%)</title><rect x="1076.3" y="737" width="105.4" height="15.0" fill="rgb(209,97,52)" rx="2" ry="2" />
<text text-anchor="" x="1079.33" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >non-virtual ..</text>
</g>
<g class="func_g" onmouseover="s('__memcpy_sse2_unaligned (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_sse2_unaligned (1 samples, 0.03%)</title><rect x="238.0" y="497" width="0.3" height="15.0" fill="rgb(222,91,40)" rx="2" ry="2" />
<text text-anchor="" x="241.00" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::EnqueueMessage (37 samples, 1.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::EnqueueMessage (37 samples, 1.05%)</title><rect x="500.3" y="625" width="12.4" height="15.0" fill="rgb(221,126,24)" rx="2" ry="2" />
<text text-anchor="" x="503.33" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::WriteMessage (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::WriteMessage (3 samples, 0.08%)</title><rect x="829.3" y="481" width="1.0" height="15.0" fill="rgb(211,135,35)" rx="2" ry="2" />
<text text-anchor="" x="832.33" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock@plt (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock@plt (4 samples, 0.11%)</title><rect x="1174.3" y="689" width="1.4" height="15.0" fill="rgb(230,67,31)" rx="2" ry="2" />
<text text-anchor="" x="1177.33" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('put_pid (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>put_pid (1 samples, 0.03%)</title><rect x="456.7" y="545" width="0.3" height="15.0" fill="rgb(216,31,3)" rx="2" ry="2" />
<text text-anchor="" x="459.67" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (136 samples, 3.84%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (136 samples, 3.84%)</title><rect x="430.7" y="705" width="45.3" height="15.0" fill="rgb(223,118,48)" rx="2" ry="2" />
<text text-anchor="" x="433.67" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (3 samples, 0.08%)</title><rect x="569.3" y="609" width="1.0" height="15.0" fill="rgb(228,156,51)" rx="2" ry="2" />
<text text-anchor="" x="572.33" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (8 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (8 samples, 0.23%)</title><rect x="253.7" y="369" width="2.6" height="15.0" fill="rgb(212,190,4)" rx="2" ry="2" />
<text text-anchor="" x="256.67" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('activate_task (73 samples, 2.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (73 samples, 2.06%)</title><rect x="910.0" y="161" width="24.3" height="15.0" fill="rgb(217,141,32)" rx="2" ry="2" />
<text text-anchor="" x="913.00" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >a..</text>
</g>
<g class="func_g" onmouseover="s('ttwu_do_wakeup (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_wakeup (2 samples, 0.06%)</title><rect x="560.3" y="81" width="0.7" height="15.0" fill="rgb(240,37,20)" rx="2" ry="2" />
<text text-anchor="" x="563.33" y="91.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>search_binary_handler (1 samples, 0.03%)</title><rect x="22.3" y="817" width="0.4" height="15.0" fill="rgb(254,122,53)" rx="2" ry="2" />
<text text-anchor="" x="25.33" y="827.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 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_out (1 samples, 0.03%)</title><rect x="552.0" y="529" width="0.3" height="15.0" fill="rgb(205,207,47)" rx="2" ry="2" />
<text text-anchor="" x="555.00" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_poll (151 samples, 4.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (151 samples, 4.27%)</title><rect x="719.3" y="705" width="50.4" height="15.0" fill="rgb(246,40,42)" rx="2" ry="2" />
<text text-anchor="" x="722.33" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ep_poll</text>
</g>
<g class="func_g" onmouseover="s('cpuacct_charge (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>cpuacct_charge (3 samples, 0.08%)</title><rect x="308.7" y="81" width="1.0" height="15.0" fill="rgb(242,76,5)" rx="2" ry="2" />
<text text-anchor="" x="311.67" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::operator== (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::operator== (4 samples, 0.11%)</title><rect x="362.3" y="625" width="1.4" height="15.0" fill="rgb(225,0,29)" rx="2" ry="2" />
<text text-anchor="" x="365.33" y="635.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_sendmsg (1 samples, 0.03%)</title><rect x="869.3" y="337" width="0.4" height="15.0" fill="rgb(230,105,21)" rx="2" ry="2" />
<text text-anchor="" x="872.33" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('PickleIterator::ReadInt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>PickleIterator::ReadInt (1 samples, 0.03%)</title><rect x="358.0" y="625" width="0.3" height="15.0" fill="rgb(225,157,36)" rx="2" ry="2" />
<text text-anchor="" x="361.00" y="635.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 (6 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_rq_clock.part.63 (6 samples, 0.17%)</title><rect x="932.3" y="129" width="2.0" height="15.0" fill="rgb(205,206,17)" rx="2" ry="2" />
<text text-anchor="" x="935.33" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::embedder::PlatformChannelRecvmsg (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::embedder::PlatformChannelRecvmsg (1 samples, 0.03%)</title><rect x="427.7" y="721" width="0.3" height="15.0" fill="rgb(212,129,28)" rx="2" ry="2" />
<text text-anchor="" x="430.67" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::ChannelMojo::WriteToMessageAttachmentSet (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelMojo::WriteToMessageAttachmentSet (2 samples, 0.06%)</title><rect x="219.7" y="657" width="0.6" height="15.0" fill="rgb(240,64,21)" rx="2" ry="2" />
<text text-anchor="" x="222.67" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::EnqueueMessage (408 samples, 11.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::EnqueueMessage (408 samples, 11.53%)</title><rect x="830.3" y="481" width="136.0" height="15.0" fill="rgb(253,211,22)" rx="2" ry="2" />
<text text-anchor="" x="833.33" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::system::Cha..</text>
</g>
<g class="func_g" onmouseover="s('epoll_dispatch (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>epoll_dispatch (1 samples, 0.03%)</title><rect x="695.7" y="769" width="0.3" height="15.0" fill="rgb(206,146,37)" rx="2" ry="2" />
<text text-anchor="" x="698.67" y="779.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_recvmsg (1 samples, 0.03%)</title><rect x="569.3" y="529" width="0.4" height="15.0" fill="rgb(211,14,21)" rx="2" ry="2" />
<text text-anchor="" x="572.33" 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::Release (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (1 samples, 0.03%)</title><rect x="493.0" y="689" width="0.3" height="15.0" fill="rgb(246,217,26)" rx="2" ry="2" />
<text text-anchor="" x="496.00" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_epoll_wait (171 samples, 4.83%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (171 samples, 4.83%)</title><rect x="717.3" y="721" width="57.0" height="15.0" fill="rgb(246,113,4)" rx="2" ry="2" />
<text text-anchor="" x="720.33" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys_ep..</text>
</g>
<g class="func_g" onmouseover="s('perf_event_context_sched_in (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (4 samples, 0.11%)</title><rect x="37.0" y="625" width="1.3" height="15.0" fill="rgb(229,76,25)" rx="2" ry="2" />
<text text-anchor="" x="40.00" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dput (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>dput (1 samples, 0.03%)</title><rect x="256.3" y="369" width="0.4" height="15.0" fill="rgb(212,79,19)" rx="2" ry="2" />
<text text-anchor="" x="259.33" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_send_events_proc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_send_events_proc (1 samples, 0.03%)</title><rect x="128.3" y="689" width="0.4" height="15.0" fill="rgb(219,30,38)" rx="2" ry="2" />
<text text-anchor="" x="131.33" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::AsyncWaiter::~AsyncWaiter (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::AsyncWaiter::~AsyncWaiter (2 samples, 0.06%)</title><rect x="506.3" y="577" width="0.7" height="15.0" fill="rgb(218,167,9)" rx="2" ry="2" />
<text text-anchor="" x="509.33" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (13 samples, 0.37%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (13 samples, 0.37%)</title><rect x="557.0" y="321" width="4.3" height="15.0" fill="rgb(215,88,19)" rx="2" ry="2" />
<text text-anchor="" x="560.00" y="331.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_free_head (1 samples, 0.03%)</title><rect x="455.0" y="561" width="0.3" height="15.0" fill="rgb(205,113,23)" rx="2" ry="2" />
<text text-anchor="" x="458.00" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('void mojo::system::internal::CheckUserPointer4ul, 4ul (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>void mojo::system::internal::CheckUserPointer4ul, 4ul (1 samples, 0.03%)</title><rect x="385.7" y="609" width="0.3" height="15.0" fill="rgb(231,218,12)" rx="2" ry="2" />
<text text-anchor="" x="388.67" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::Release (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (1 samples, 0.03%)</title><rect x="231.0" y="561" width="0.3" height="15.0" fill="rgb(211,115,3)" rx="2" ry="2" />
<text text-anchor="" x="234.00" y="571.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.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (5 samples, 0.14%)</title><rect x="1048.3" y="673" width="1.7" height="15.0" fill="rgb(244,163,22)" rx="2" ry="2" />
<text text-anchor="" x="1051.33" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('MojoReadMessage (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>MojoReadMessage (3 samples, 0.08%)</title><rect x="1044.3" y="657" width="1.0" height="15.0" fill="rgb(217,223,22)" rx="2" ry="2" />
<text text-anchor="" x="1047.33" y="667.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (6 samples, 0.17%)</title><rect x="1101.3" y="593" width="2.0" height="15.0" fill="rgb(222,91,41)" rx="2" ry="2" />
<text text-anchor="" x="1104.33" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('malloc (82 samples, 2.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>malloc (82 samples, 2.32%)</title><rect x="639.0" y="881" width="27.3" height="15.0" fill="rgb(249,19,21)" rx="2" ry="2" />
<text text-anchor="" x="642.00" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >m..</text>
</g>
<g class="func_g" onmouseover="s('system_call_after_swapgs (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_after_swapgs (4 samples, 0.11%)</title><rect x="16.0" y="817" width="1.3" height="15.0" fill="rgb(208,101,25)" rx="2" ry="2" />
<text text-anchor="" x="19.00" y="827.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_recvmsg (1 samples, 0.03%)</title><rect x="440.7" y="625" width="0.3" height="15.0" fill="rgb(224,68,29)" rx="2" ry="2" />
<text text-anchor="" x="443.67" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule (3 samples, 0.08%)</title><rect x="741.0" y="673" width="1.0" height="15.0" fill="rgb(212,74,12)" rx="2" ry="2" />
<text text-anchor="" x="744.00" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_write_space (9 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_write_space (9 samples, 0.25%)</title><rect x="458.7" y="513" width="3.0" height="15.0" fill="rgb(221,73,43)" rx="2" ry="2" />
<text text-anchor="" x="461.67" y="523.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>Pickle::WriteString (1 samples, 0.03%)</title><rect x="564.7" y="529" width="0.3" height="15.0" fill="rgb(250,210,5)" rx="2" ry="2" />
<text text-anchor="" x="567.67" y="539.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 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_rq_blocked_load (1 samples, 0.03%)</title><rect x="923.3" y="97" width="0.4" height="15.0" fill="rgb(219,104,22)" rx="2" ry="2" />
<text text-anchor="" x="926.33" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('check_preempt_wakeup (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>check_preempt_wakeup (1 samples, 0.03%)</title><rect x="314.3" y="145" width="0.4" height="15.0" fill="rgb(228,122,51)" rx="2" ry="2" />
<text text-anchor="" x="317.33" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('void mojo::system::internal::CheckUserPointerWithCount1ul, 1ul (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>void mojo::system::internal::CheckUserPointerWithCount1ul, 1ul (4 samples, 0.11%)</title><rect x="378.7" y="545" width="1.3" height="15.0" fill="rgb(241,63,7)" rx="2" ry="2" />
<text text-anchor="" x="381.67" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kprobe_ftrace_handler (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>kprobe_ftrace_handler (2 samples, 0.06%)</title><rect x="1095.0" y="593" width="0.7" height="15.0" fill="rgb(214,161,25)" rx="2" ry="2" />
<text text-anchor="" x="1098.00" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::AsyncHandleWaiter::Context::DidProcessIOEvent (788 samples, 22.26%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::AsyncHandleWaiter::Context::DidProcessIOEvent (788 samples, 22.26%)</title><rect x="787.7" y="721" width="262.6" height="15.0" fill="rgb(220,179,43)" rx="2" ry="2" />
<text text-anchor="" x="790.67" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IPC::internal::AsyncHandleWaiter::C..</text>
</g>
<g class="func_g" onmouseover="s('fput (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>fput (1 samples, 0.03%)</title><rect x="102.3" y="721" width="0.4" height="15.0" fill="rgb(235,155,50)" rx="2" ry="2" />
<text text-anchor="" x="105.33" y="731.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 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_rq_blocked_load (1 samples, 0.03%)</title><rect x="780.7" y="593" width="0.3" height="15.0" fill="rgb(235,150,44)" rx="2" ry="2" />
<text text-anchor="" x="783.67" y="603.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_rq_clock.part.63 (3 samples, 0.08%)</title><rect x="755.7" y="593" width="1.0" height="15.0" fill="rgb(226,114,47)" rx="2" ry="2" />
<text text-anchor="" x="758.67" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pthread_enable_asynccancel (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_enable_asynccancel (1 samples, 0.03%)</title><rect x="561.3" y="337" width="0.4" height="15.0" fill="rgb(243,148,52)" rx="2" ry="2" />
<text text-anchor="" x="564.33" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('void mojo::system::internal::CheckUserPointer4ul, 4ul (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>void mojo::system::internal::CheckUserPointer4ul, 4ul (1 samples, 0.03%)</title><rect x="567.7" y="529" width="0.3" height="15.0" fill="rgb(224,170,54)" rx="2" ry="2" />
<text text-anchor="" x="570.67" y="539.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>_cond_resched (4 samples, 0.11%)</title><rect x="37.0" y="689" width="1.3" height="15.0" fill="rgb(220,70,41)" rx="2" ry="2" />
<text text-anchor="" x="40.00" y="699.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (1 samples, 0.03%)</title><rect x="268.7" y="305" width="0.3" height="15.0" fill="rgb(229,134,41)" rx="2" ry="2" />
<text text-anchor="" x="271.67" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_hrtimeout_range_clock (82 samples, 2.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (82 samples, 2.32%)</title><rect x="742.0" y="673" width="27.3" height="15.0" fill="rgb(220,217,45)" rx="2" ry="2" />
<text text-anchor="" x="745.00" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s('IPC::Message::TraceMessageEnd (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::Message::TraceMessageEnd (1 samples, 0.03%)</title><rect x="1010.0" y="641" width="0.3" height="15.0" fill="rgb(227,26,18)" rx="2" ry="2" />
<text text-anchor="" x="1013.00" y="651.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (1 samples, 0.03%)</title><rect x="33.3" y="769" width="0.4" height="15.0" fill="rgb(241,214,38)" rx="2" ry="2" />
<text text-anchor="" x="36.33" y="779.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.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (2 samples, 0.06%)</title><rect x="396.7" y="673" width="0.6" height="15.0" fill="rgb(220,37,46)" rx="2" ry="2" />
<text text-anchor="" x="399.67" y="683.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (4 samples, 0.11%)</title><rect x="10.0" y="737" width="1.3" height="15.0" fill="rgb(233,15,13)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dput (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>dput (1 samples, 0.03%)</title><rect x="93.7" y="705" width="0.3" height="15.0" fill="rgb(223,83,52)" rx="2" ry="2" />
<text text-anchor="" x="96.67" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (9 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (9 samples, 0.25%)</title><rect x="672.3" y="769" width="3.0" height="15.0" fill="rgb(245,180,36)" rx="2" ry="2" />
<text text-anchor="" x="675.33" y="779.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.11%)</title><rect x="547.3" y="513" width="1.4" height="15.0" fill="rgb(252,137,31)" rx="2" ry="2" />
<text text-anchor="" x="550.33" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::MessagePipeReader::OnMessageReceived (433 samples, 12.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::MessagePipeReader::OnMessageReceived (433 samples, 12.23%)</title><rect x="222.0" y="657" width="144.3" height="15.0" fill="rgb(241,168,52)" rx="2" ry="2" />
<text text-anchor="" x="225.00" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IPC::internal::Mes..</text>
</g>
<g class="func_g" onmouseover="s(':24862 (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>:24862 (4 samples, 0.11%)</title><rect x="10.0" y="897" width="1.3" height="15.0" fill="rgb(209,89,27)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="907.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::Message::TraceMessageEnd (1 samples, 0.03%)</title><rect x="221.3" y="657" width="0.4" height="15.0" fill="rgb(220,27,8)" rx="2" ry="2" />
<text text-anchor="" x="224.33" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ksize (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>ksize (1 samples, 0.03%)</title><rect x="898.7" y="289" width="0.3" height="15.0" fill="rgb(216,113,7)" rx="2" ry="2" />
<text text-anchor="" x="901.67" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_release_all (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_all (1 samples, 0.03%)</title><rect x="570.0" y="497" width="0.3" height="15.0" fill="rgb(252,126,41)" rx="2" ry="2" />
<text text-anchor="" x="573.00" y="507.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (4 samples, 0.11%)</title><rect x="468.0" y="577" width="1.3" height="15.0" fill="rgb(235,51,17)" rx="2" ry="2" />
<text text-anchor="" x="471.00" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fget_light (13 samples, 0.37%)')" onmouseout="c()" onclick="zoom(this)">
<title>fget_light (13 samples, 0.37%)</title><rect x="180.3" y="705" width="4.4" height="15.0" fill="rgb(243,183,44)" rx="2" ry="2" />
<text text-anchor="" x="183.33" y="715.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (3 samples, 0.08%)</title><rect x="969.3" y="513" width="1.0" height="15.0" fill="rgb(213,211,35)" rx="2" ry="2" />
<text text-anchor="" x="972.33" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::OnReadMessageForClient (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::OnReadMessageForClient (1 samples, 0.03%)</title><rect x="518.3" y="673" width="0.4" height="15.0" fill="rgb(206,189,31)" rx="2" ry="2" />
<text text-anchor="" x="521.33" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_recvmsg (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_recvmsg (2 samples, 0.06%)</title><rect x="1080.7" y="689" width="0.6" height="15.0" fill="rgb(209,171,44)" rx="2" ry="2" />
<text text-anchor="" x="1083.67" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_release_head_state (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_head_state (4 samples, 0.11%)</title><rect x="462.3" y="577" width="1.4" height="15.0" fill="rgb(254,64,20)" rx="2" ry="2" />
<text text-anchor="" x="465.33" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_aio_write (11 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_aio_write (11 samples, 0.31%)</title><rect x="557.7" y="257" width="3.6" height="15.0" fill="rgb(206,49,19)" rx="2" ry="2" />
<text text-anchor="" x="560.67" y="267.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>stop_one_cpu (4 samples, 0.11%)</title><rect x="547.3" y="641" width="1.4" height="15.0" fill="rgb(235,228,37)" rx="2" ry="2" />
<text text-anchor="" x="550.33" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('check_preempt_curr (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>check_preempt_curr (2 samples, 0.06%)</title><rect x="560.3" y="65" width="0.7" height="15.0" fill="rgb(239,200,12)" rx="2" ry="2" />
<text text-anchor="" x="563.33" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (19 samples, 0.54%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (19 samples, 0.54%)</title><rect x="556.0" y="353" width="6.3" height="15.0" fill="rgb(228,158,1)" rx="2" ry="2" />
<text text-anchor="" x="559.00" 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::Unlock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::LockImpl::Unlock (1 samples, 0.03%)</title><rect x="230.7" y="561" width="0.3" height="15.0" fill="rgb(250,9,30)" rx="2" ry="2" />
<text text-anchor="" x="233.67" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_alloc_send_pskb (42 samples, 1.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_alloc_send_pskb (42 samples, 1.19%)</title><rect x="277.0" y="305" width="14.0" height="15.0" fill="rgb(229,89,34)" rx="2" ry="2" />
<text text-anchor="" x="280.00" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_rotate_start.isra.39 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_rotate_start.isra.39 (1 samples, 0.03%)</title><rect x="551.7" y="497" width="0.3" height="15.0" fill="rgb(244,209,11)" rx="2" ry="2" />
<text text-anchor="" x="554.67" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('cpuacct_charge (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>cpuacct_charge (4 samples, 0.11%)</title><rect x="927.7" y="81" width="1.3" height="15.0" fill="rgb(215,219,25)" rx="2" ry="2" />
<text text-anchor="" x="930.67" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::MessagePipeReader::ReadMessagesThenWait (776 samples, 21.92%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::MessagePipeReader::ReadMessagesThenWait (776 samples, 21.92%)</title><rect x="791.3" y="689" width="258.7" height="15.0" fill="rgb(248,37,21)" rx="2" ry="2" />
<text text-anchor="" x="794.33" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IPC::internal::MessagePipeReader::..</text>
</g>
<g class="func_g" onmouseover="s('skb_copy_datagram_iovec (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_iovec (1 samples, 0.03%)</title><rect x="1100.3" y="609" width="0.4" height="15.0" fill="rgb(243,208,8)" rx="2" ry="2" />
<text text-anchor="" x="1103.33" y="619.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.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::Message::~Message (2 samples, 0.06%)</title><rect x="982.7" y="609" width="0.6" height="15.0" fill="rgb(214,186,26)" rx="2" ry="2" />
<text text-anchor="" x="985.67" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('___sys_recvmsg (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>___sys_recvmsg (3 samples, 0.08%)</title><rect x="569.3" y="561" width="1.0" height="15.0" fill="rgb(225,56,41)" rx="2" ry="2" />
<text text-anchor="" x="572.33" 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_irqsave (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.03%)</title><rect x="907.3" y="177" width="0.4" height="15.0" fill="rgb(249,13,26)" rx="2" ry="2" />
<text text-anchor="" x="910.33" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::TimeDelta::SaturatedAdd (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::TimeDelta::SaturatedAdd (1 samples, 0.03%)</title><rect x="999.0" y="625" width="0.3" height="15.0" fill="rgb(253,107,5)" rx="2" ry="2" />
<text text-anchor="" x="1002.00" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::MessagePipeReader::OnMessageReceived (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::MessagePipeReader::OnMessageReceived (2 samples, 0.06%)</title><rect x="218.0" y="673" width="0.7" height="15.0" fill="rgb(217,131,37)" rx="2" ry="2" />
<text text-anchor="" x="221.00" y="683.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.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_poll (2 samples, 0.06%)</title><rect x="739.0" y="641" width="0.7" height="15.0" fill="rgb(245,214,23)" rx="2" ry="2" />
<text text-anchor="" x="742.00" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('MojoReadMessage (89 samples, 2.51%)')" onmouseout="c()" onclick="zoom(this)">
<title>MojoReadMessage (89 samples, 2.51%)</title><rect x="1013.7" y="641" width="29.6" height="15.0" fill="rgb(212,143,27)" rx="2" ry="2" />
<text text-anchor="" x="1016.67" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Mo..</text>
</g>
<g class="func_g" onmouseover="s('__mem_cgroup_count_vm_event (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__mem_cgroup_count_vm_event (1 samples, 0.03%)</title><rect x="11.3" y="545" width="0.4" height="15.0" fill="rgb(241,178,30)" rx="2" ry="2" />
<text text-anchor="" x="14.33" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__sys_recvmsg (119 samples, 3.36%)')" onmouseout="c()" onclick="zoom(this)">
<title>__sys_recvmsg (119 samples, 3.36%)</title><rect x="435.7" y="657" width="39.6" height="15.0" fill="rgb(211,149,48)" rx="2" ry="2" />
<text text-anchor="" x="438.67" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__s..</text>
</g>
<g class="func_g" onmouseover="s('testing::TestCase::Run (80 samples, 2.26%)')" onmouseout="c()" onclick="zoom(this)">
<title>testing::TestCase::Run (80 samples, 2.26%)</title><rect x="547.3" y="801" width="26.7" height="15.0" fill="rgb(250,66,43)" rx="2" ry="2" />
<text text-anchor="" x="550.33" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >t..</text>
</g>
<g class="func_g" onmouseover="s('do_timer (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_timer (1 samples, 0.03%)</title><rect x="1131.7" y="577" width="0.3" height="15.0" fill="rgb(238,78,4)" rx="2" ry="2" />
<text text-anchor="" x="1134.67" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sockfd_lookup_light (13 samples, 0.37%)')" onmouseout="c()" onclick="zoom(this)">
<title>sockfd_lookup_light (13 samples, 0.37%)</title><rect x="471.0" y="641" width="4.3" height="15.0" fill="rgb(211,82,35)" rx="2" ry="2" />
<text text-anchor="" x="474.00" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_hrtimeout_range_clock (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (2 samples, 0.06%)</title><rect x="551.7" y="593" width="0.6" height="15.0" fill="rgb(229,68,1)" rx="2" ry="2" />
<text text-anchor="" x="554.67" 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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_inodes (1 samples, 0.03%)</title><rect x="708.7" y="705" width="0.3" height="15.0" fill="rgb(220,223,30)" rx="2" ry="2" />
<text text-anchor="" x="711.67" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (2 samples, 0.06%)</title><rect x="797.0" y="641" width="0.7" height="15.0" fill="rgb(216,175,15)" rx="2" ry="2" />
<text text-anchor="" x="800.00" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::WriteMessage (442 samples, 12.49%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::WriteMessage (442 samples, 12.49%)</title><rect x="821.7" y="513" width="147.3" height="15.0" fill="rgb(223,136,48)" rx="2" ry="2" />
<text text-anchor="" x="824.67" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::system::Mess..</text>
</g>
<g class="func_g" onmouseover="s('tick_sched_timer (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_timer (1 samples, 0.03%)</title><rect x="1131.7" y="625" width="0.3" height="15.0" fill="rgb(246,26,18)" rx="2" ry="2" />
<text text-anchor="" x="1134.67" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.03%)</title><rect x="565.0" y="513" width="0.3" height="15.0" fill="rgb(221,143,2)" rx="2" ry="2" />
<text text-anchor="" x="568.00" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (6 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (6 samples, 0.17%)</title><rect x="516.0" y="657" width="2.0" height="15.0" fill="rgb(217,43,17)" rx="2" ry="2" />
<text text-anchor="" x="519.00" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Core::WriteMessage (471 samples, 13.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Core::WriteMessage (471 samples, 13.31%)</title><rect x="817.0" y="561" width="157.0" height="15.0" fill="rgb(207,122,14)" rx="2" ry="2" />
<text text-anchor="" x="820.00" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::system::Core::..</text>
</g>
<g class="func_g" onmouseover="s('do_execve_common.isra.22 (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_execve_common.isra.22 (4 samples, 0.11%)</title><rect x="10.0" y="833" width="1.3" height="15.0" fill="rgb(208,143,11)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_int_free (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (4 samples, 0.11%)</title><rect x="783.7" y="737" width="1.3" height="15.0" fill="rgb(237,3,30)" rx="2" ry="2" />
<text text-anchor="" x="786.67" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::ReadMessage (12 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::ReadMessage (12 samples, 0.34%)</title><rect x="376.0" y="561" width="4.0" height="15.0" fill="rgb(239,163,20)" rx="2" ry="2" />
<text text-anchor="" x="379.00" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_ops_test (9 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_ops_test (9 samples, 0.25%)</title><rect x="443.7" y="577" width="3.0" height="15.0" fill="rgb(241,24,45)" rx="2" ry="2" />
<text text-anchor="" x="446.67" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::DidProcessIOEvent (815 samples, 23.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::DidProcessIOEvent (815 samples, 23.02%)</title><rect x="785.0" y="737" width="271.7" height="15.0" fill="rgb(250,29,21)" rx="2" ry="2" />
<text text-anchor="" x="788.00" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::MessagePumpLibevent::DidProces..</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::WriteMessage (273 samples, 7.71%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::WriteMessage (273 samples, 7.71%)</title><rect x="245.0" y="465" width="91.0" height="15.0" fill="rgb(235,32,23)" rx="2" ry="2" />
<text text-anchor="" x="248.00" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::syst..</text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (121 samples, 3.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (121 samples, 3.42%)</title><rect x="435.7" y="689" width="40.3" height="15.0" fill="rgb(210,75,16)" rx="2" ry="2" />
<text text-anchor="" x="438.67" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys..</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::AsyncWaiter::Awake (31 samples, 0.88%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::AsyncWaiter::Awake (31 samples, 0.88%)</title><rect x="1155.0" y="593" width="10.3" height="15.0" fill="rgb(220,63,3)" rx="2" ry="2" />
<text text-anchor="" x="1158.00" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::ReadMessage (21 samples, 0.59%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::ReadMessage (21 samples, 0.59%)</title><rect x="373.0" y="577" width="7.0" height="15.0" fill="rgb(216,58,1)" rx="2" ry="2" />
<text text-anchor="" x="376.00" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_queue_tail (6 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_queue_tail (6 samples, 0.17%)</title><rect x="275.0" y="305" width="2.0" height="15.0" fill="rgb(211,177,50)" rx="2" ry="2" />
<text text-anchor="" x="278.00" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_getspecific@plt (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_getspecific@plt (4 samples, 0.11%)</title><rect x="510.3" y="577" width="1.4" height="15.0" fill="rgb(234,220,3)" rx="2" ry="2" />
<text text-anchor="" x="513.33" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessageInTransit::View::IsValid (7 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::View::IsValid (7 samples, 0.20%)</title><rect x="528.7" y="705" width="2.3" height="15.0" fill="rgb(220,161,17)" rx="2" ry="2" />
<text text-anchor="" x="531.67" y="715.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>current_kernel_time (1 samples, 0.03%)</title><rect x="83.3" y="721" width="0.4" height="15.0" fill="rgb(249,11,30)" rx="2" ry="2" />
<text text-anchor="" x="86.33" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('verify_iovec (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>verify_iovec (1 samples, 0.03%)</title><rect x="1122.7" y="625" width="0.3" height="15.0" fill="rgb(240,106,1)" rx="2" ry="2" />
<text text-anchor="" x="1125.67" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (3 samples, 0.08%)</title><rect x="800.0" y="657" width="1.0" height="15.0" fill="rgb(211,41,8)" rx="2" ry="2" />
<text text-anchor="" x="803.00" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::EnqueueMessageNoLock (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::EnqueueMessageNoLock (2 samples, 0.06%)</title><rect x="957.0" y="433" width="0.7" height="15.0" fill="rgb(227,63,48)" rx="2" ry="2" />
<text text-anchor="" x="960.00" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::MessagePipeReader::OnMessageReceived (35 samples, 0.99%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::MessagePipeReader::OnMessageReceived (35 samples, 0.99%)</title><rect x="555.3" y="577" width="11.7" height="15.0" fill="rgb(251,173,33)" rx="2" ry="2" />
<text text-anchor="" x="558.33" y="587.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>Pickle::WriteString (4 samples, 0.11%)</title><rect x="983.3" y="609" width="1.4" height="15.0" fill="rgb(210,213,45)" rx="2" ry="2" />
<text text-anchor="" x="986.33" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::WeakReferenceOwner::GetRef (6 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReferenceOwner::GetRef (6 samples, 0.17%)</title><rect x="416.7" y="737" width="2.0" height="15.0" fill="rgb(214,183,49)" rx="2" ry="2" />
<text text-anchor="" x="419.67" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipeDispatcher::WriteMessageImplNoLock (455 samples, 12.85%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipeDispatcher::WriteMessageImplNoLock (455 samples, 12.85%)</title><rect x="821.0" y="529" width="151.7" height="15.0" fill="rgb(234,223,47)" rx="2" ry="2" />
<text text-anchor="" x="824.00" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::system::Messa..</text>
</g>
<g class="func_g" onmouseover="s('__srcu_read_lock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__srcu_read_lock (1 samples, 0.03%)</title><rect x="944.3" y="337" width="0.4" height="15.0" fill="rgb(226,20,3)" rx="2" ry="2" />
<text text-anchor="" x="947.33" y="347.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (1 samples, 0.03%)</title><rect x="571.7" y="497" width="0.3" height="15.0" fill="rgb(223,145,31)" rx="2" ry="2" />
<text text-anchor="" x="574.67" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::BindStatebase::internal::RunnableAdaptervoid (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::BindStatebase::internal::RunnableAdaptervoid (1 samples, 0.03%)</title><rect x="506.3" y="561" width="0.4" height="15.0" fill="rgb(208,59,18)" rx="2" ry="2" />
<text text-anchor="" x="509.33" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::MessagePipeReader::ReadMessageBytes (87 samples, 2.46%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::MessagePipeReader::ReadMessageBytes (87 samples, 2.46%)</title><rect x="366.3" y="657" width="29.0" height="15.0" fill="rgb(240,25,22)" rx="2" ry="2" />
<text text-anchor="" x="369.33" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IP..</text>
</g>
<g class="func_g" onmouseover="s('vfs_write (260 samples, 7.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (260 samples, 7.34%)</title><rect x="862.7" y="369" width="86.6" height="15.0" fill="rgb(231,29,45)" rx="2" ry="2" />
<text text-anchor="" x="865.67" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >vfs_write</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Core::AsyncWait (25 samples, 0.71%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Core::AsyncWait (25 samples, 0.71%)</title><rect x="206.0" y="657" width="8.3" height="15.0" fill="rgb(240,60,19)" rx="2" ry="2" />
<text text-anchor="" x="209.00" y="667.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (3 samples, 0.08%)</title><rect x="514.7" y="641" width="1.0" height="15.0" fill="rgb(252,192,27)" rx="2" ry="2" />
<text text-anchor="" x="517.67" y="651.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>path_put (1 samples, 0.03%)</title><rect x="434.3" y="657" width="0.4" height="15.0" fill="rgb(251,42,21)" rx="2" ry="2" />
<text text-anchor="" x="437.33" y="667.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>set_task_comm (4 samples, 0.11%)</title><rect x="10.0" y="769" width="1.3" height="15.0" fill="rgb(214,99,44)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('event_base_loop (72 samples, 2.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>event_base_loop (72 samples, 2.03%)</title><rect x="549.7" y="689" width="24.0" height="15.0" fill="rgb(221,84,37)" rx="2" ry="2" />
<text text-anchor="" x="552.67" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >e..</text>
</g>
<g class="func_g" onmouseover="s('__alloc_skb (25 samples, 0.71%)')" onmouseout="c()" onclick="zoom(this)">
<title>__alloc_skb (25 samples, 0.71%)</title><rect x="889.3" y="289" width="8.4" height="15.0" fill="rgb(233,87,12)" rx="2" ry="2" />
<text text-anchor="" x="892.33" y="299.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_disable (1 samples, 0.03%)</title><rect x="552.0" y="481" width="0.3" height="15.0" fill="rgb(242,95,1)" rx="2" ry="2" />
<text text-anchor="" x="555.00" y="491.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>local_clock (4 samples, 0.11%)</title><rect x="760.3" y="577" width="1.4" height="15.0" fill="rgb(230,151,50)" rx="2" ry="2" />
<text text-anchor="" x="763.33" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::AsyncWaiter::~AsyncWaiter (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::AsyncWaiter::~AsyncWaiter (1 samples, 0.03%)</title><rect x="572.0" y="497" width="0.3" height="15.0" fill="rgb(244,98,31)" rx="2" ry="2" />
<text text-anchor="" x="575.00" 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 (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (2 samples, 0.06%)</title><rect x="431.7" y="673" width="0.6" height="15.0" fill="rgb(221,199,27)" rx="2" ry="2" />
<text text-anchor="" x="434.67" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kmalloc_slab (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>kmalloc_slab (2 samples, 0.06%)</title><rect x="896.3" y="257" width="0.7" height="15.0" fill="rgb(225,32,14)" rx="2" ry="2" />
<text text-anchor="" x="899.33" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('memcpy_toiovec (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>memcpy_toiovec (1 samples, 0.03%)</title><rect x="1120.7" y="577" width="0.3" height="15.0" fill="rgb(239,51,34)" rx="2" ry="2" />
<text text-anchor="" x="1123.67" y="587.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 (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::trace_event::TraceLog::GetInstance (2 samples, 0.06%)</title><rect x="991.7" y="609" width="0.6" height="15.0" fill="rgb(217,42,12)" rx="2" ry="2" />
<text text-anchor="" x="994.67" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('Pickle::Pickle (8 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>Pickle::Pickle (8 samples, 0.23%)</title><rect x="346.0" y="593" width="2.7" height="15.0" fill="rgb(243,206,41)" rx="2" ry="2" />
<text text-anchor="" x="349.00" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__kmalloc_node_track_caller (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_node_track_caller (4 samples, 0.11%)</title><rect x="280.7" y="273" width="1.3" height="15.0" fill="rgb(245,55,15)" rx="2" ry="2" />
<text text-anchor="" x="283.67" y="283.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (1 samples, 0.03%)</title><rect x="754.0" y="561" width="0.3" height="15.0" fill="rgb(242,38,20)" rx="2" ry="2" />
<text text-anchor="" x="757.00" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ctx_sched_out (15 samples, 0.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>ctx_sched_out (15 samples, 0.42%)</title><rect x="163.3" y="593" width="5.0" height="15.0" fill="rgb(210,190,42)" rx="2" ry="2" />
<text text-anchor="" x="166.33" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (9 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (9 samples, 0.25%)</title><rect x="1081.3" y="673" width="3.0" height="15.0" fill="rgb(226,193,20)" rx="2" ry="2" />
<text text-anchor="" x="1084.33" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('enqueue_task_fair (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (1 samples, 0.03%)</title><rect x="312.3" y="145" width="0.4" height="15.0" fill="rgb(243,205,20)" rx="2" ry="2" />
<text text-anchor="" x="315.33" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (6 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (6 samples, 0.17%)</title><rect x="432.7" y="673" width="2.0" height="15.0" fill="rgb(220,191,17)" rx="2" ry="2" />
<text text-anchor="" x="435.67" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('get_kprobe (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_kprobe (3 samples, 0.08%)</title><rect x="1094.0" y="561" width="1.0" height="15.0" fill="rgb(253,185,6)" rx="2" ry="2" />
<text text-anchor="" x="1097.00" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_copy_datagram_iovec (10 samples, 0.28%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_iovec (10 samples, 0.28%)</title><rect x="463.7" y="593" width="3.3" height="15.0" fill="rgb(208,160,33)" rx="2" ry="2" />
<text text-anchor="" x="466.67" y="603.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_do_timer (1 samples, 0.03%)</title><rect x="1131.7" y="609" width="0.3" height="15.0" fill="rgb(205,219,39)" rx="2" ry="2" />
<text text-anchor="" x="1134.67" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_common (122 samples, 3.45%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (122 samples, 3.45%)</title><rect x="900.7" y="273" width="40.6" height="15.0" fill="rgb(236,130,22)" rx="2" ry="2" />
<text text-anchor="" x="903.67" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__w..</text>
</g>
<g class="func_g" onmouseover="s('default_wake_function (115 samples, 3.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (115 samples, 3.25%)</title><rect x="902.0" y="209" width="38.3" height="15.0" fill="rgb(214,228,13)" rx="2" ry="2" />
<text text-anchor="" x="905.00" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >def..</text>
</g>
<g class="func_g" onmouseover="s('Pickle::Pickle (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>Pickle::Pickle (1 samples, 0.03%)</title><rect x="349.3" y="609" width="0.4" height="15.0" fill="rgb(244,47,26)" rx="2" ry="2" />
<text text-anchor="" x="352.33" 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 (6 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (6 samples, 0.17%)</title><rect x="459.7" y="497" width="2.0" height="15.0" fill="rgb(233,213,19)" rx="2" ry="2" />
<text text-anchor="" x="462.67" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::test::PerformanceChannelListener::OnMessageReceived (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::test::PerformanceChannelListener::OnMessageReceived (3 samples, 0.08%)</title><rect x="1010.7" y="641" width="1.0" height="15.0" fill="rgb(231,17,10)" rx="2" ry="2" />
<text text-anchor="" x="1013.67" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (255 samples, 7.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (255 samples, 7.20%)</title><rect x="102.0" y="737" width="85.0" height="15.0" fill="rgb(251,175,18)" rx="2" ry="2" />
<text text-anchor="" x="105.00" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >system_cal..</text>
</g>
<g class="func_g" onmouseover="s('IPC::ChannelMojo::WriteToMessageAttachmentSet (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelMojo::WriteToMessageAttachmentSet (1 samples, 0.03%)</title><rect x="364.3" y="641" width="0.4" height="15.0" fill="rgb(252,124,47)" rx="2" ry="2" />
<text text-anchor="" x="367.33" y="651.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_disable (1 samples, 0.03%)</title><rect x="33.7" y="785" width="0.3" height="15.0" fill="rgb(216,116,31)" rx="2" ry="2" />
<text text-anchor="" x="36.67" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('non-virtual thunk to mojo::system:: (315 samples, 8.90%)')" onmouseout="c()" onclick="zoom(this)">
<title>non-virtual thunk to mojo::system:: (315 samples, 8.90%)</title><rect x="426.7" y="737" width="105.0" height="15.0" fill="rgb(224,206,46)" rx="2" ry="2" />
<text text-anchor="" x="429.67" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >non-virtual ..</text>
</g>
<g class="func_g" onmouseover="s('sock_def_readable (130 samples, 3.67%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_def_readable (130 samples, 3.67%)</title><rect x="899.0" y="305" width="43.3" height="15.0" fill="rgb(207,153,28)" rx="2" ry="2" />
<text text-anchor="" x="902.00" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sock..</text>
</g>
<g class="func_g" onmouseover="s('dequeue_task (32 samples, 0.90%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task (32 samples, 0.90%)</title><rect x="746.0" y="609" width="10.7" height="15.0" fill="rgb(217,91,20)" rx="2" ry="2" />
<text text-anchor="" x="749.00" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_after_swapgs (7 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_after_swapgs (7 samples, 0.20%)</title><rect x="23.0" y="833" width="2.3" height="15.0" fill="rgb(220,135,52)" rx="2" ry="2" />
<text text-anchor="" x="26.00" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_rotate_start.isra.39 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_rotate_start.isra.39 (1 samples, 0.03%)</title><rect x="160.7" y="593" width="0.3" height="15.0" fill="rgb(239,3,26)" rx="2" ry="2" />
<text text-anchor="" x="163.67" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock_cpu (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (5 samples, 0.14%)</title><rect x="932.7" y="113" width="1.6" height="15.0" fill="rgb(244,126,5)" rx="2" ry="2" />
<text text-anchor="" x="935.67" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (7 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (7 samples, 0.20%)</title><rect x="761.7" y="529" width="2.3" height="15.0" fill="rgb(233,186,19)" rx="2" ry="2" />
<text text-anchor="" x="764.67" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Dispatcher::ReadMessage (25 samples, 0.71%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Dispatcher::ReadMessage (25 samples, 0.71%)</title><rect x="373.0" y="609" width="8.3" height="15.0" fill="rgb(222,199,18)" rx="2" ry="2" />
<text text-anchor="" x="376.00" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_entity (22 samples, 0.62%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (22 samples, 0.62%)</title><rect x="147.0" y="577" width="7.3" height="15.0" fill="rgb(207,139,26)" rx="2" ry="2" />
<text text-anchor="" x="150.00" y="587.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>cpuacct_charge (1 samples, 0.03%)</title><rect x="922.0" y="97" width="0.3" height="15.0" fill="rgb(224,137,3)" rx="2" ry="2" />
<text text-anchor="" x="925.00" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::AwakableList::Add (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::AwakableList::Add (1 samples, 0.03%)</title><rect x="795.7" y="593" width="0.3" height="15.0" fill="rgb(241,13,15)" rx="2" ry="2" />
<text text-anchor="" x="798.67" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_disable_all (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_disable_all (1 samples, 0.03%)</title><rect x="552.0" y="465" width="0.3" height="15.0" fill="rgb(249,77,23)" rx="2" ry="2" />
<text text-anchor="" x="555.00" y="475.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 (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_rq_clock.part.63 (5 samples, 0.14%)</title><rect x="310.7" y="129" width="1.6" height="15.0" fill="rgb(208,217,2)" rx="2" ry="2" />
<text text-anchor="" x="313.67" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_copy_to_user (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_copy_to_user (1 samples, 0.03%)</title><rect x="464.7" y="577" width="0.3" height="15.0" fill="rgb(232,139,25)" rx="2" ry="2" />
<text text-anchor="" x="467.67" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (16 samples, 0.45%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (16 samples, 0.45%)</title><rect x="852.0" y="385" width="5.3" height="15.0" fill="rgb(222,222,29)" rx="2" ry="2" />
<text text-anchor="" x="855.00" y="395.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.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_free (2 samples, 0.06%)</title><rect x="454.3" y="561" width="0.7" height="15.0" fill="rgb(229,172,17)" rx="2" ry="2" />
<text text-anchor="" x="457.33" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Core::WriteMessage (332 samples, 9.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Core::WriteMessage (332 samples, 9.38%)</title><rect x="231.3" y="561" width="110.7" height="15.0" fill="rgb(212,175,26)" rx="2" ry="2" />
<text text-anchor="" x="234.33" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo::system:..</text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (1 samples, 0.03%)</title><rect x="970.3" y="513" width="0.4" height="15.0" fill="rgb(246,9,4)" rx="2" ry="2" />
<text text-anchor="" x="973.33" y="523.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.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (2 samples, 0.06%)</title><rect x="948.3" y="305" width="0.7" height="15.0" fill="rgb(227,73,34)" rx="2" ry="2" />
<text text-anchor="" x="951.33" y="315.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.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (7 samples, 0.20%)</title><rect x="1081.7" y="657" width="2.3" height="15.0" fill="rgb(248,144,26)" rx="2" ry="2" />
<text text-anchor="" x="1084.67" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__libc_recvmsg (10 samples, 0.28%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_recvmsg (10 samples, 0.28%)</title><rect x="1127.3" y="705" width="3.4" height="15.0" fill="rgb(242,173,7)" rx="2" ry="2" />
<text text-anchor="" x="1130.33" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (7 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (7 samples, 0.20%)</title><rect x="725.3" y="689" width="2.4" height="15.0" fill="rgb(229,66,3)" rx="2" ry="2" />
<text text-anchor="" x="728.33" y="699.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::Message::TraceMessageEnd (1 samples, 0.03%)</title><rect x="566.7" y="561" width="0.3" height="15.0" fill="rgb(206,141,35)" rx="2" ry="2" />
<text text-anchor="" x="569.67" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('local_apic_timer_interrupt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (1 samples, 0.03%)</title><rect x="780.7" y="721" width="0.3" height="15.0" fill="rgb(219,148,35)" rx="2" ry="2" />
<text text-anchor="" x="783.67" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (2 samples, 0.06%)</title><rect x="425.7" y="737" width="0.6" height="15.0" fill="rgb(242,18,35)" rx="2" ry="2" />
<text text-anchor="" x="428.67" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__libc_enable_asynccancel (7 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_enable_asynccancel (7 samples, 0.20%)</title><rect x="778.3" y="753" width="2.4" height="15.0" fill="rgb(220,47,11)" rx="2" ry="2" />
<text text-anchor="" x="781.33" y="763.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (1 samples, 0.03%)</title><rect x="756.3" y="561" width="0.4" height="15.0" fill="rgb(236,75,7)" rx="2" ry="2" />
<text text-anchor="" x="759.33" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_task (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task (1 samples, 0.03%)</title><rect x="756.7" y="625" width="0.3" height="15.0" fill="rgb(207,14,45)" rx="2" ry="2" />
<text text-anchor="" x="759.67" y="635.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 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_task_sched_out (1 samples, 0.03%)</title><rect x="179.0" y="641" width="0.3" height="15.0" fill="rgb(251,133,14)" rx="2" ry="2" />
<text text-anchor="" x="182.00" y="651.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.03%)</title><rect x="460.7" y="481" width="0.3" height="15.0" fill="rgb(229,94,44)" rx="2" ry="2" />
<text text-anchor="" x="463.67" y="491.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (1 samples, 0.03%)</title><rect x="178.3" y="609" width="0.4" height="15.0" fill="rgb(210,106,46)" rx="2" ry="2" />
<text text-anchor="" x="181.33" y="619.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>set_cpus_allowed_ptr (4 samples, 0.11%)</title><rect x="37.0" y="737" width="1.3" height="15.0" fill="rgb(223,114,41)" rx="2" ry="2" />
<text text-anchor="" x="40.00" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::DidProcessIOEvent (45 samples, 1.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::DidProcessIOEvent (45 samples, 1.27%)</title><rect x="553.7" y="657" width="15.0" height="15.0" fill="rgb(235,97,26)" rx="2" ry="2" />
<text text-anchor="" x="556.67" 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 (23 samples, 0.65%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_task_sched_out (23 samples, 0.65%)</title><rect x="161.0" y="625" width="7.7" height="15.0" fill="rgb(207,108,15)" rx="2" ry="2" />
<text text-anchor="" x="164.00" y="635.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.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::Message::Message (2 samples, 0.06%)</title><rect x="1009.3" y="641" width="0.7" height="15.0" fill="rgb(227,55,18)" rx="2" ry="2" />
<text text-anchor="" x="1012.33" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::OnLibeventNotification (1,209 samples, 34.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::OnLibeventNotification (1,209 samples, 34.15%)</title><rect x="781.7" y="753" width="403.0" height="15.0" fill="rgb(221,88,2)" rx="2" ry="2" />
<text text-anchor="" x="784.67" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::MessagePumpLibevent::OnLibeventNotification</text>
</g>
<g class="func_g" onmouseover="s('void mojo::system::internal::CheckUserPointer4ul, 4ul (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>void mojo::system::internal::CheckUserPointer4ul, 4ul (1 samples, 0.03%)</title><rect x="378.3" y="545" width="0.4" height="15.0" fill="rgb(209,210,33)" rx="2" ry="2" />
<text text-anchor="" x="381.33" y="555.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.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>select_task_rq_fair (2 samples, 0.06%)</title><rect x="902.0" y="193" width="0.7" height="15.0" fill="rgb(217,46,2)" rx="2" ry="2" />
<text text-anchor="" x="905.00" y="203.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.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_rq_clock.part.63 (2 samples, 0.06%)</title><rect x="156.3" y="593" width="0.7" height="15.0" fill="rgb(245,65,32)" rx="2" ry="2" />
<text text-anchor="" x="159.33" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (38 samples, 1.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (38 samples, 1.07%)</title><rect x="85.3" y="721" width="12.7" height="15.0" fill="rgb(226,28,31)" rx="2" ry="2" />
<text text-anchor="" x="88.33" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_inodes (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_inodes (2 samples, 0.06%)</title><rect x="89.0" y="705" width="0.7" height="15.0" fill="rgb(232,41,29)" rx="2" ry="2" />
<text text-anchor="" x="92.00" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::InvokerIndexSequence0ul, base::internal::BindStatebase::internal::RunnableAdaptervoid (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::InvokerIndexSequence0ul, base::internal::BindStatebase::internal::RunnableAdaptervoid (4 samples, 0.11%)</title><rect x="500.7" y="593" width="1.3" height="15.0" fill="rgb(253,156,54)" rx="2" ry="2" />
<text text-anchor="" x="503.67" 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::Release (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (2 samples, 0.06%)</title><rect x="1160.7" y="561" width="0.6" height="15.0" fill="rgb(217,205,8)" rx="2" ry="2" />
<text text-anchor="" x="1163.67" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pthread_enable_asynccancel (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_enable_asynccancel (1 samples, 0.03%)</title><rect x="1131.3" y="705" width="0.4" height="15.0" fill="rgb(209,211,45)" rx="2" ry="2" />
<text text-anchor="" x="1134.33" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('task_waking_fair (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>task_waking_fair (3 samples, 0.08%)</title><rect x="902.7" y="193" width="1.0" height="15.0" fill="rgb(245,165,10)" rx="2" ry="2" />
<text text-anchor="" x="905.67" y="203.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 0.11%)</title><rect x="11.7" y="593" width="1.3" height="15.0" fill="rgb(223,77,29)" rx="2" ry="2" />
<text text-anchor="" x="14.67" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_recvmsg (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (3 samples, 0.08%)</title><rect x="569.3" y="545" width="1.0" height="15.0" fill="rgb(215,127,34)" rx="2" ry="2" />
<text text-anchor="" x="572.33" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apparmor_socket_sendmsg (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_sendmsg (1 samples, 0.03%)</title><rect x="871.3" y="321" width="0.4" height="15.0" fill="rgb(245,185,52)" rx="2" ry="2" />
<text text-anchor="" x="874.33" y="331.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>set_next_entity (1 samples, 0.03%)</title><rect x="178.7" y="625" width="0.3" height="15.0" fill="rgb(220,85,29)" rx="2" ry="2" />
<text text-anchor="" x="181.67" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::AsyncHandleWaiter::Wait (46 samples, 1.30%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::AsyncHandleWaiter::Wait (46 samples, 1.30%)</title><rect x="202.7" y="673" width="15.3" height="15.0" fill="rgb(213,9,18)" rx="2" ry="2" />
<text text-anchor="" x="205.67" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::RunLoop::Run (75 samples, 2.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::RunLoop::Run (75 samples, 2.12%)</title><rect x="548.7" y="721" width="25.0" height="15.0" fill="rgb(213,151,5)" rx="2" ry="2" />
<text text-anchor="" x="551.67" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >b..</text>
</g>
<g class="func_g" onmouseover="s('skb_free_head (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_free_head (1 samples, 0.03%)</title><rect x="570.0" y="465" width="0.3" height="15.0" fill="rgb(207,160,7)" rx="2" ry="2" />
<text text-anchor="" x="573.00" y="475.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_free_head (1 samples, 0.03%)</title><rect x="1104.3" y="561" width="0.4" height="15.0" fill="rgb(205,11,22)" rx="2" ry="2" />
<text text-anchor="" x="1107.33" y="571.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.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (2 samples, 0.06%)</title><rect x="1058.0" y="721" width="0.7" height="15.0" fill="rgb(223,132,29)" rx="2" ry="2" />
<text text-anchor="" x="1061.00" y="731.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (1 samples, 0.03%)</title><rect x="186.7" y="705" width="0.3" height="15.0" fill="rgb(234,119,50)" rx="2" ry="2" />
<text text-anchor="" x="189.67" y="715.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>wait_for_completion (4 samples, 0.11%)</title><rect x="547.3" y="625" width="1.4" height="15.0" fill="rgb(240,30,38)" rx="2" ry="2" />
<text text-anchor="" x="550.33" y="635.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.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_poll (2 samples, 0.06%)</title><rect x="125.7" y="641" width="0.6" height="15.0" fill="rgb(237,216,46)" rx="2" ry="2" />
<text text-anchor="" x="128.67" 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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_do_update_jiffies64 (1 samples, 0.03%)</title><rect x="457.3" y="417" width="0.4" height="15.0" fill="rgb(254,207,11)" rx="2" ry="2" />
<text text-anchor="" x="460.33" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessageInTransit::~MessageInTransit (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::~MessageInTransit (2 samples, 0.06%)</title><rect x="959.3" y="417" width="0.7" height="15.0" fill="rgb(246,15,15)" rx="2" ry="2" />
<text text-anchor="" x="962.33" y="427.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>local_clock (4 samples, 0.11%)</title><rect x="163.7" y="577" width="1.3" height="15.0" fill="rgb(213,153,49)" rx="2" ry="2" />
<text text-anchor="" x="166.67" y="587.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::test::LockThreadAffinity::LockThreadAffinity (4 samples, 0.11%)</title><rect x="547.3" y="737" width="1.4" height="15.0" fill="rgb(236,189,7)" rx="2" ry="2" />
<text text-anchor="" x="550.33" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator new (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (1 samples, 0.03%)</title><rect x="409.7" y="721" width="0.3" height="15.0" fill="rgb(215,129,6)" rx="2" ry="2" />
<text text-anchor="" x="412.67" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::current (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::current (2 samples, 0.06%)</title><rect x="1156.3" y="561" width="0.7" height="15.0" fill="rgb(246,4,50)" rx="2" ry="2" />
<text text-anchor="" x="1159.33" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (1 samples, 0.03%)</title><rect x="796.7" y="625" width="0.3" height="15.0" fill="rgb(223,101,16)" rx="2" ry="2" />
<text text-anchor="" x="799.67" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessageInTransit::GetNextMessageSize (6 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::GetNextMessageSize (6 samples, 0.17%)</title><rect x="486.3" y="721" width="2.0" height="15.0" fill="rgb(225,152,26)" rx="2" ry="2" />
<text text-anchor="" x="489.33" y="731.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 (23 samples, 0.65%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_out (23 samples, 0.65%)</title><rect x="161.0" y="609" width="7.7" height="15.0" fill="rgb(245,93,9)" rx="2" ry="2" />
<text text-anchor="" x="164.00" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (2 samples, 0.06%)</title><rect x="972.7" y="545" width="0.6" height="15.0" fill="rgb(217,77,2)" rx="2" ry="2" />
<text text-anchor="" x="975.67" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free (6 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>free (6 samples, 0.17%)</title><rect x="1071.3" y="737" width="2.0" height="15.0" fill="rgb(206,194,43)" rx="2" ry="2" />
<text text-anchor="" x="1074.33" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dput (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>dput (1 samples, 0.03%)</title><rect x="856.0" y="353" width="0.3" height="15.0" fill="rgb(224,208,28)" rx="2" ry="2" />
<text text-anchor="" x="859.00" y="363.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>memcpy_fromiovecend (1 samples, 0.03%)</title><rect x="558.7" y="209" width="0.3" height="15.0" fill="rgb(210,185,33)" rx="2" ry="2" />
<text text-anchor="" x="561.67" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.14%)</title><rect x="11.3" y="673" width="1.7" height="15.0" fill="rgb(239,200,25)" rx="2" ry="2" />
<text text-anchor="" x="14.33" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('account_entity_dequeue (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_dequeue (4 samples, 0.11%)</title><rect x="148.3" y="561" width="1.4" height="15.0" fill="rgb(209,192,26)" rx="2" ry="2" />
<text text-anchor="" x="151.33" y="571.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>PickleIterator::ReadString (1 samples, 0.03%)</title><rect x="984.7" y="609" width="0.3" height="15.0" fill="rgb(249,84,18)" rx="2" ry="2" />
<text text-anchor="" x="987.67" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_int_free (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (2 samples, 0.06%)</title><rect x="247.3" y="433" width="0.7" height="15.0" fill="rgb(220,69,34)" rx="2" ry="2" />
<text text-anchor="" x="250.33" y="443.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.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (8 samples, 0.23%)</title><rect x="1182.0" y="737" width="2.7" height="15.0" fill="rgb(208,48,37)" rx="2" ry="2" />
<text text-anchor="" x="1185.00" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apic_timer_interrupt (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (2 samples, 0.06%)</title><rect x="141.0" y="625" width="0.7" height="15.0" fill="rgb(209,81,35)" rx="2" ry="2" />
<text text-anchor="" x="144.00" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::CallbackBase::CallbackBase (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::CallbackBase::CallbackBase (1 samples, 0.03%)</title><rect x="1045.3" y="673" width="0.4" height="15.0" fill="rgb(235,130,46)" rx="2" ry="2" />
<text text-anchor="" x="1048.33" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::MessagePipeReader::ReadAvailableMessages (533 samples, 15.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::MessagePipeReader::ReadAvailableMessages (533 samples, 15.06%)</title><rect x="218.7" y="673" width="177.6" height="15.0" fill="rgb(244,75,19)" rx="2" ry="2" />
<text text-anchor="" x="221.67" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IPC::internal::MessageP..</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::EnqueueMessage (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::EnqueueMessage (2 samples, 0.06%)</title><rect x="824.7" y="497" width="0.6" height="15.0" fill="rgb(230,60,49)" rx="2" ry="2" />
<text text-anchor="" x="827.67" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fsnotify (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>fsnotify (4 samples, 0.11%)</title><rect x="318.7" y="353" width="1.3" height="15.0" fill="rgb(236,206,36)" rx="2" ry="2" />
<text text-anchor="" x="321.67" 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 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_task_sched_out (1 samples, 0.03%)</title><rect x="36.0" y="833" width="0.3" height="15.0" fill="rgb(211,7,50)" rx="2" ry="2" />
<text text-anchor="" x="39.00" y="843.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (4 samples, 0.11%)</title><rect x="308.3" y="97" width="1.4" height="15.0" fill="rgb(217,38,1)" rx="2" ry="2" />
<text text-anchor="" x="311.33" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::Message::HasAttachments (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::Message::HasAttachments (1 samples, 0.03%)</title><rect x="814.0" y="577" width="0.3" height="15.0" fill="rgb(239,37,31)" rx="2" ry="2" />
<text text-anchor="" x="817.00" y="587.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>cpuacct_charge (1 samples, 0.03%)</title><rect x="153.3" y="545" width="0.4" height="15.0" fill="rgb(215,193,21)" rx="2" ry="2" />
<text text-anchor="" x="156.33" y="555.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_after_swapgs (3 samples, 0.08%)</title><rect x="101.0" y="737" width="1.0" height="15.0" fill="rgb(232,136,29)" rx="2" ry="2" />
<text text-anchor="" x="104.00" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::test::PerformanceChannelListener::OnMessageReceived (31 samples, 0.88%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::test::PerformanceChannelListener::OnMessageReceived (31 samples, 0.88%)</title><rect x="555.3" y="545" width="10.4" height="15.0" fill="rgb(232,58,4)" rx="2" ry="2" />
<text text-anchor="" x="558.33" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('Pickle::~Pickle (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>Pickle::~Pickle (5 samples, 0.14%)</title><rect x="976.7" y="593" width="1.6" height="15.0" fill="rgb(241,49,18)" rx="2" ry="2" />
<text text-anchor="" x="979.67" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ObserverListBasemojo::common::MessagePumpMojo::Observer::Iterator::~Iterator (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>ObserverListBasemojo::common::MessagePumpMojo::Observer::Iterator::~Iterator (3 samples, 0.08%)</title><rect x="194.7" y="737" width="1.0" height="15.0" fill="rgb(221,193,31)" rx="2" ry="2" />
<text text-anchor="" x="197.67" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::OnReadMessage (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::OnReadMessage (3 samples, 0.08%)</title><rect x="1132.7" y="721" width="1.0" height="15.0" fill="rgb(240,12,40)" rx="2" ry="2" />
<text text-anchor="" x="1135.67" y="731.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.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree_skbmem (2 samples, 0.06%)</title><rect x="454.3" y="577" width="0.7" height="15.0" fill="rgb(247,30,15)" rx="2" ry="2" />
<text text-anchor="" x="457.33" y="587.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.11%)</title><rect x="10.0" y="705" width="1.3" height="15.0" fill="rgb(220,147,3)" 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('mojo::system::ChannelEndpoint::OnReadMessageForClient (61 samples, 1.72%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::OnReadMessageForClient (61 samples, 1.72%)</title><rect x="1148.3" y="657" width="20.4" height="15.0" fill="rgb(236,129,32)" rx="2" ry="2" />
<text text-anchor="" x="1151.33" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (1 samples, 0.03%)</title><rect x="796.3" y="625" width="0.4" height="15.0" fill="rgb(235,204,31)" rx="2" ry="2" />
<text text-anchor="" x="799.33" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::Run (75 samples, 2.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::Run (75 samples, 2.12%)</title><rect x="548.7" y="737" width="25.0" height="15.0" fill="rgb(219,142,13)" rx="2" ry="2" />
<text text-anchor="" x="551.67" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >b..</text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_entry (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (1 samples, 0.03%)</title><rect x="431.3" y="689" width="0.4" height="15.0" fill="rgb(223,53,27)" rx="2" ry="2" />
<text text-anchor="" x="434.33" y="699.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (6 samples, 0.17%)</title><rect x="152.3" y="561" width="2.0" height="15.0" fill="rgb(251,211,4)" rx="2" ry="2" />
<text text-anchor="" x="155.33" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_wfree (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_wfree (1 samples, 0.03%)</title><rect x="1108.7" y="545" width="0.3" height="15.0" fill="rgb(241,149,14)" rx="2" ry="2" />
<text text-anchor="" x="1111.67" y="555.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (1 samples, 0.03%)</title><rect x="152.0" y="545" width="0.3" height="15.0" fill="rgb(234,151,14)" rx="2" ry="2" />
<text text-anchor="" x="155.00" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_write (13 samples, 0.37%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (13 samples, 0.37%)</title><rect x="557.0" y="305" width="4.3" height="15.0" fill="rgb(235,161,43)" rx="2" ry="2" />
<text text-anchor="" x="560.00" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('handle_mm_fault (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>handle_mm_fault (1 samples, 0.03%)</title><rect x="11.3" y="561" width="0.4" height="15.0" fill="rgb(238,20,50)" rx="2" ry="2" />
<text text-anchor="" x="14.33" y="571.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_dequeue (1 samples, 0.03%)</title><rect x="925.7" y="81" width="0.3" height="15.0" fill="rgb(217,71,54)" rx="2" ry="2" />
<text text-anchor="" x="928.67" y="91.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_do_timer (1 samples, 0.03%)</title><rect x="457.3" y="433" width="0.4" height="15.0" fill="rgb(208,199,11)" rx="2" ry="2" />
<text text-anchor="" x="460.33" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('finish_task_switch (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (1 samples, 0.03%)</title><rect x="551.7" y="545" width="0.3" height="15.0" fill="rgb(246,171,9)" rx="2" ry="2" />
<text text-anchor="" x="554.67" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (6 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (6 samples, 0.17%)</title><rect x="110.0" y="689" width="2.0" height="15.0" fill="rgb(226,93,30)" rx="2" ry="2" />
<text text-anchor="" x="113.00" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ProxyMessagePipeEndpoint::EnqueueMessage (24 samples, 0.68%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ProxyMessagePipeEndpoint::EnqueueMessage (24 samples, 0.68%)</title><rect x="555.3" y="417" width="8.0" height="15.0" fill="rgb(244,180,7)" rx="2" ry="2" />
<text text-anchor="" x="558.33" y="427.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>__fsnotify_parent (1 samples, 0.03%)</title><rect x="260.7" y="353" width="0.3" height="15.0" fill="rgb(230,11,3)" rx="2" ry="2" />
<text text-anchor="" x="263.67" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::AddAwakable (7 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::AddAwakable (7 samples, 0.20%)</title><rect x="208.7" y="625" width="2.3" height="15.0" fill="rgb(210,57,34)" rx="2" ry="2" />
<text text-anchor="" x="211.67" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_sync_key (76 samples, 2.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (76 samples, 2.15%)</title><rect x="293.0" y="289" width="25.3" height="15.0" fill="rgb(207,61,38)" rx="2" ry="2" />
<text text-anchor="" x="296.00" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s('base::internal::InvokerIndexSequence0ul, base::internal::BindStatebase::internal::RunnableAdaptervoid (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::InvokerIndexSequence0ul, base::internal::BindStatebase::internal::RunnableAdaptervoid (2 samples, 0.06%)</title><rect x="1154.0" y="593" width="0.7" height="15.0" fill="rgb(235,166,50)" rx="2" ry="2" />
<text text-anchor="" x="1157.00" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__clock_gettime (39 samples, 1.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>__clock_gettime (39 samples, 1.10%)</title><rect x="675.3" y="769" width="13.0" height="15.0" fill="rgb(251,217,34)" rx="2" ry="2" />
<text text-anchor="" x="678.33" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__kmalloc_node_track_caller (8 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_node_track_caller (8 samples, 0.23%)</title><rect x="282.3" y="257" width="2.7" height="15.0" fill="rgb(240,95,5)" rx="2" ry="2" />
<text text-anchor="" x="285.33" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_task (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task (2 samples, 0.06%)</title><rect x="157.0" y="625" width="0.7" height="15.0" fill="rgb(232,126,1)" rx="2" ry="2" />
<text text-anchor="" x="160.00" y="635.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 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_rq_blocked_load (1 samples, 0.03%)</title><rect x="307.3" y="97" width="0.4" height="15.0" fill="rgb(249,60,11)" rx="2" ry="2" />
<text text-anchor="" x="310.33" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::HandleTable::GetDispatcher (10 samples, 0.28%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::HandleTable::GetDispatcher (10 samples, 0.28%)</title><rect x="1033.7" y="625" width="3.3" height="15.0" fill="rgb(237,85,49)" rx="2" ry="2" />
<text text-anchor="" x="1036.67" y="635.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (3 samples, 0.08%)</title><rect x="216.0" y="657" width="1.0" height="15.0" fill="rgb(226,6,24)" rx="2" ry="2" />
<text text-anchor="" x="219.00" y="667.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>path_put (1 samples, 0.03%)</title><rect x="550.3" y="625" width="0.4" height="15.0" fill="rgb(244,144,43)" rx="2" ry="2" />
<text text-anchor="" x="553.33" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (4 samples, 0.11%)</title><rect x="37.0" y="673" width="1.3" height="15.0" fill="rgb(230,205,43)" rx="2" ry="2" />
<text text-anchor="" x="40.00" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('finish_task_switch (6 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (6 samples, 0.17%)</title><rect x="757.0" y="625" width="2.0" height="15.0" fill="rgb(248,123,51)" rx="2" ry="2" />
<text text-anchor="" x="760.00" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::MessagePipeReader::ReadMessageBytes (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::MessagePipeReader::ReadMessageBytes (1 samples, 0.03%)</title><rect x="396.3" y="673" width="0.4" height="15.0" fill="rgb(228,20,37)" rx="2" ry="2" />
<text text-anchor="" x="399.33" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (2 samples, 0.06%)</title><rect x="834.0" y="449" width="0.7" height="15.0" fill="rgb(241,79,15)" rx="2" ry="2" />
<text text-anchor="" x="837.00" 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 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (1 samples, 0.03%)</title><rect x="554.7" y="561" width="0.3" height="15.0" fill="rgb(221,208,49)" rx="2" ry="2" />
<text text-anchor="" x="557.67" y="571.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_signal (1 samples, 0.03%)</title><rect x="99.3" y="737" width="0.4" height="15.0" fill="rgb(243,2,42)" rx="2" ry="2" />
<text text-anchor="" x="102.33" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::WillProcessIOEvent (18 samples, 0.51%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::WillProcessIOEvent (18 samples, 0.51%)</title><rect x="1056.7" y="737" width="6.0" height="15.0" fill="rgb(254,106,6)" rx="2" ry="2" />
<text text-anchor="" x="1059.67" y="747.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::DoIdleWork (1 samples, 0.03%)</title><rect x="38.3" y="785" width="0.4" height="15.0" fill="rgb(250,29,1)" rx="2" ry="2" />
<text text-anchor="" x="41.33" y="795.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.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (2 samples, 0.06%)</title><rect x="940.3" y="209" width="0.7" height="15.0" fill="rgb(234,162,40)" rx="2" ry="2" />
<text text-anchor="" x="943.33" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('memcpy_toiovec (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>memcpy_toiovec (5 samples, 0.14%)</title><rect x="465.3" y="577" width="1.7" height="15.0" fill="rgb(229,201,31)" rx="2" ry="2" />
<text text-anchor="" x="468.33" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Core::ReadMessage (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Core::ReadMessage (1 samples, 0.03%)</title><rect x="568.3" y="561" width="0.4" height="15.0" fill="rgb(252,127,54)" rx="2" ry="2" />
<text text-anchor="" x="571.33" y="571.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>kretprobe_trampoline (4 samples, 0.11%)</title><rect x="10.0" y="865" width="1.3" height="15.0" fill="rgb(253,201,45)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="875.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>rcu_note_context_switch (1 samples, 0.03%)</title><rect x="179.7" y="641" width="0.3" height="15.0" fill="rgb(226,121,36)" rx="2" ry="2" />
<text text-anchor="" x="182.67" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('void std::vectormojo::system::RawChannel::WriteBuffer::Buffer, std::allocatormojo::system::RawChannel::WriteBuffer::Buffer ::_M_emplace_back_auxmojo::system::RawChannel::WriteBuffer::Buffer const&amp; (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>void std::vectormojo::system::RawChannel::WriteBuffer::Buffer, std::allocatormojo::system::RawChannel::WriteBuffer::Buffer ::_M_emplace_back_auxmojo::system::RawChannel::WriteBuffer::Buffer const&amp; (3 samples, 0.08%)</title><rect x="331.0" y="401" width="1.0" height="15.0" fill="rgb(223,121,4)" rx="2" ry="2" />
<text text-anchor="" x="334.00" 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 (12 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (12 samples, 0.34%)</title><rect x="89.7" y="705" width="4.0" height="15.0" fill="rgb(230,138,17)" rx="2" ry="2" />
<text text-anchor="" x="92.67" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_common (117 samples, 3.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (117 samples, 3.31%)</title><rect x="902.0" y="225" width="39.0" height="15.0" fill="rgb(251,125,1)" rx="2" ry="2" />
<text text-anchor="" x="905.00" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__w..</text>
</g>
<g class="func_g" onmouseover="s('ksize (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>ksize (4 samples, 0.11%)</title><rect x="288.0" y="273" width="1.3" height="15.0" fill="rgb(239,130,24)" rx="2" ry="2" />
<text text-anchor="" x="291.00" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('put_prev_task_fair (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>put_prev_task_fair (5 samples, 0.14%)</title><rect x="34.3" y="817" width="1.7" height="15.0" fill="rgb(241,131,33)" rx="2" ry="2" />
<text text-anchor="" x="37.33" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_sync_write (227 samples, 6.41%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_sync_write (227 samples, 6.41%)</title><rect x="868.0" y="353" width="75.7" height="15.0" fill="rgb(209,102,36)" rx="2" ry="2" />
<text text-anchor="" x="871.00" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >do_sync_..</text>
</g>
<g class="func_g" onmouseover="s('update_curr (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (1 samples, 0.03%)</title><rect x="314.0" y="129" width="0.3" height="15.0" fill="rgb(244,114,13)" rx="2" ry="2" />
<text text-anchor="" x="317.00" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('local_apic_timer_interrupt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (1 samples, 0.03%)</title><rect x="457.3" y="497" width="0.4" height="15.0" fill="rgb(212,99,21)" rx="2" ry="2" />
<text text-anchor="" x="460.33" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ObserverListBasemojo::common::MessagePumpMojo::Observer::Iterator::~Iterator (4 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>ObserverListBasemojo::common::MessagePumpMojo::Observer::Iterator::~Iterator (4 samples, 0.11%)</title><rect x="410.3" y="721" width="1.4" height="15.0" fill="rgb(251,106,37)" rx="2" ry="2" />
<text text-anchor="" x="413.33" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pvclock_gtod_notify (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pvclock_gtod_notify (1 samples, 0.03%)</title><rect x="457.3" y="337" width="0.4" height="15.0" fill="rgb(254,129,19)" rx="2" ry="2" />
<text text-anchor="" x="460.33" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('vfs_write (196 samples, 5.54%)')" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (196 samples, 5.54%)</title><rect x="259.3" y="369" width="65.4" height="15.0" fill="rgb(234,108,10)" rx="2" ry="2" />
<text text-anchor="" x="262.33" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >vfs_write</text>
</g>
<g class="func_g" onmouseover="s('aa_revalidate_sk (5 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>aa_revalidate_sk (5 samples, 0.14%)</title><rect x="449.7" y="593" width="1.6" height="15.0" fill="rgb(236,92,36)" rx="2" ry="2" />
<text text-anchor="" x="452.67" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (1 samples, 0.03%)</title><rect x="212.7" y="641" width="0.3" height="15.0" fill="rgb(221,73,47)" rx="2" ry="2" />
<text text-anchor="" x="215.67" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dput (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>dput (1 samples, 0.03%)</title><rect x="257.0" y="353" width="0.3" height="15.0" fill="rgb(226,32,19)" rx="2" ry="2" />
<text text-anchor="" x="260.00" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_release_head_state (30 samples, 0.85%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_head_state (30 samples, 0.85%)</title><rect x="1108.0" y="561" width="10.0" height="15.0" fill="rgb(205,217,51)" rx="2" ry="2" />
<text text-anchor="" x="1111.00" y="571.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.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (4 samples, 0.11%)</title><rect x="547.3" y="561" width="1.4" height="15.0" fill="rgb(248,165,37)" rx="2" ry="2" />
<text text-anchor="" x="550.33" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_destruct_scm (27 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_destruct_scm (27 samples, 0.76%)</title><rect x="1109.0" y="545" width="9.0" height="15.0" fill="rgb(221,123,45)" rx="2" ry="2" />
<text text-anchor="" x="1112.00" y="555.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZdlPv@plt (1 samples, 0.03%)</title><rect x="998.7" y="625" width="0.3" height="15.0" fill="rgb(239,57,9)" rx="2" ry="2" />
<text text-anchor="" x="1001.67" y="635.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::LockImpl::Lock (1 samples, 0.03%)</title><rect x="549.0" y="673" width="0.3" height="15.0" fill="rgb(205,74,14)" rx="2" ry="2" />
<text text-anchor="" x="552.00" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pthread_disable_asynccancel (2 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_disable_asynccancel (2 samples, 0.06%)</title><rect x="1130.7" y="705" width="0.6" height="15.0" fill="rgb(243,148,32)" rx="2" ry="2" />
<text text-anchor="" x="1133.67" y="715.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (1 samples, 0.03%)</title><rect x="324.3" y="321" width="0.4" height="15.0" fill="rgb(247,179,51)" rx="2" ry="2" />
<text text-anchor="" x="327.33" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::Message::Message (3 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::Message::Message (3 samples, 0.08%)</title><rect x="220.3" y="657" width="1.0" height="15.0" fill="rgb(206,166,51)" rx="2" ry="2" />
<text text-anchor="" x="223.33" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_int_free (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (1 samples, 0.03%)</title><rect x="991.0" y="609" width="0.3" height="15.0" fill="rgb(227,182,5)" rx="2" ry="2" />
<text text-anchor="" x="994.00" y="619.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.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.03%)</title><rect x="1131.7" y="705" width="0.3" height="15.0" fill="rgb(214,45,3)" rx="2" ry="2" />
<text text-anchor="" x="1134.67" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::OnReadMessage (116 samples, 3.28%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::OnReadMessage (116 samples, 3.28%)</title><rect x="1138.3" y="705" width="38.7" height="15.0" fill="rgb(230,68,0)" rx="2" ry="2" />
<text text-anchor="" x="1141.33" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >moj..</text>
</g>
<g class="func_g" onmouseover="s('path_put (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>path_put (1 samples, 0.03%)</title><rect x="856.0" y="369" width="0.3" height="15.0" fill="rgb(231,92,24)" rx="2" ry="2" />
<text text-anchor="" x="859.00" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
</svg>
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.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment