Skip to content

Instantly share code, notes, and snippets.

@omo
Created February 14, 2015 01:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save omo/4f234d1152b5f7793b04 to your computer and use it in GitHub Desktop.
Save omo/4f234d1152b5f7793b04 to your computer and use it in GitHub Desktop.
Benchmark results
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="626" onload="init(evt)" viewBox="0 0 1200 626" 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="626.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="609" 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('__wake_up_sync_key (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (1 samples, 0.04%)</title><rect x="75.6" y="449" width="0.5" height="15.0" fill="rgb(227,53,24)" rx="2" ry="2" />
<text text-anchor="" x="78.56" y="459.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.30%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_disable (7 samples, 0.30%)</title><rect x="775.6" y="145" width="3.6" height="15.0" fill="rgb(235,25,31)" rx="2" ry="2" />
<text text-anchor="" x="778.65" y="155.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>void Pickle::WriteBytesStatic8ul (1 samples, 0.04%)</title><rect x="459.9" y="321" width="0.5" height="15.0" fill="rgb(245,113,12)" rx="2" ry="2" />
<text text-anchor="" x="462.88" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (202 samples, 8.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (202 samples, 8.57%)</title><rect x="231.7" y="417" width="101.1" height="15.0" fill="rgb(216,208,49)" rx="2" ry="2" />
<text text-anchor="" x="234.69" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (2 samples, 0.08%)</title><rect x="880.2" y="113" width="1.0" height="15.0" fill="rgb(229,154,8)" rx="2" ry="2" />
<text text-anchor="" x="883.24" y="123.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (1 samples, 0.04%)</title><rect x="910.8" y="241" width="0.5" height="15.0" fill="rgb(249,106,41)" rx="2" ry="2" />
<text text-anchor="" x="913.76" y="251.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.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_rotate_start.isra.39 (3 samples, 0.13%)</title><rect x="766.6" y="161" width="1.5" height="15.0" fill="rgb(210,103,3)" rx="2" ry="2" />
<text text-anchor="" x="769.64" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_fair (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_fair (1 samples, 0.04%)</title><rect x="328.8" y="305" width="0.5" height="15.0" fill="rgb(222,109,20)" rx="2" ry="2" />
<text text-anchor="" x="331.77" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('aa_revalidate_sk (6 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>aa_revalidate_sk (6 samples, 0.25%)</title><rect x="989.8" y="177" width="3.0" height="15.0" fill="rgb(222,16,13)" rx="2" ry="2" />
<text text-anchor="" x="992.83" y="187.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>scheduler_tick (1 samples, 0.04%)</title><rect x="976.3" y="161" width="0.5" height="15.0" fill="rgb(236,219,3)" rx="2" ry="2" />
<text text-anchor="" x="979.32" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('memset (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>memset (3 samples, 0.13%)</title><rect x="385.8" y="209" width="1.5" height="15.0" fill="rgb(219,76,15)" rx="2" ry="2" />
<text text-anchor="" x="388.82" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_poll_callback (130 samples, 5.51%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (130 samples, 5.51%)</title><rect x="107.6" y="401" width="65.0" height="15.0" fill="rgb(253,119,36)" rx="2" ry="2" />
<text text-anchor="" x="110.58" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ep_poll..</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::EnqueueMessage (57 samples, 2.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::EnqueueMessage (57 samples, 2.42%)</title><rect x="394.3" y="193" width="28.5" height="15.0" fill="rgb(245,154,19)" rx="2" ry="2" />
<text text-anchor="" x="397.33" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mo..</text>
</g>
<g class="func_g" onmouseover="s('auditsys (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>auditsys (4 samples, 0.17%)</title><rect x="511.9" y="353" width="2.0" height="15.0" fill="rgb(223,145,5)" rx="2" ry="2" />
<text text-anchor="" x="514.93" y="363.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 (95 samples, 4.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.74 (95 samples, 4.03%)</title><rect x="119.1" y="321" width="47.5" height="15.0" fill="rgb(248,208,26)" rx="2" ry="2" />
<text text-anchor="" x="122.09" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ttwu..</text>
</g>
<g class="func_g" onmouseover="s('sys_execve (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_execve (4 samples, 0.17%)</title><rect x="10.0" y="513" width="2.0" height="15.0" fill="rgb(241,72,23)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::Run (894 samples, 37.91%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::Run (894 samples, 37.91%)</title><rect x="193.7" y="481" width="447.3" height="15.0" fill="rgb(228,12,10)" rx="2" ry="2" />
<text text-anchor="" x="196.66" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::MessageLoop::Run</text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (5 samples, 0.21%)</title><rect x="515.4" y="321" width="2.5" height="15.0" fill="rgb(254,198,15)" rx="2" ry="2" />
<text text-anchor="" x="518.43" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('hrtimer_interrupt (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (1 samples, 0.04%)</title><rect x="976.3" y="241" width="0.5" height="15.0" fill="rgb(230,42,33)" rx="2" ry="2" />
<text text-anchor="" x="979.32" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('security_socket_recvmsg (6 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_recvmsg (6 samples, 0.25%)</title><rect x="989.8" y="193" width="3.0" height="15.0" fill="rgb(221,158,20)" rx="2" ry="2" />
<text text-anchor="" x="992.83" y="203.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_sched_setaffinity (4 samples, 0.17%)</title><rect x="191.7" y="433" width="2.0" height="15.0" fill="rgb(207,162,15)" rx="2" ry="2" />
<text text-anchor="" x="194.65" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unroll_tree_refs (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>unroll_tree_refs (1 samples, 0.04%)</title><rect x="982.8" y="257" width="0.5" height="15.0" fill="rgb(225,140,47)" rx="2" ry="2" />
<text text-anchor="" x="985.82" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::ProcessNextDelayedNonNestableTask (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::ProcessNextDelayedNonNestableTask (5 samples, 0.21%)</title><rect x="216.7" y="433" width="2.5" height="15.0" fill="rgb(214,43,32)" rx="2" ry="2" />
<text text-anchor="" x="219.68" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('std::string::compare (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::string::compare (2 samples, 0.08%)</title><rect x="1189.0" y="545" width="1.0" height="15.0" fill="rgb(228,89,34)" rx="2" ry="2" />
<text text-anchor="" x="1192.00" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__libc_disable_asynccancel (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_disable_asynccancel (5 samples, 0.21%)</title><rect x="332.8" y="417" width="2.5" height="15.0" fill="rgb(222,111,30)" rx="2" ry="2" />
<text text-anchor="" x="335.77" y="427.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (1 samples, 0.04%)</title><rect x="423.4" y="193" width="0.5" height="15.0" fill="rgb(231,7,7)" rx="2" ry="2" />
<text text-anchor="" x="426.35" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('set_next_entity (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>set_next_entity (1 samples, 0.04%)</title><rect x="328.3" y="289" width="0.5" height="15.0" fill="rgb(208,206,2)" rx="2" ry="2" />
<text text-anchor="" x="331.27" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (4 samples, 0.17%)</title><rect x="191.7" y="337" width="2.0" height="15.0" fill="rgb(225,115,3)" rx="2" ry="2" />
<text text-anchor="" x="194.65" y="347.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.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (3 samples, 0.13%)</title><rect x="306.8" y="289" width="1.5" height="15.0" fill="rgb(243,205,39)" rx="2" ry="2" />
<text text-anchor="" x="309.75" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::Run (914 samples, 38.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::Run (914 samples, 38.76%)</title><rect x="643.5" y="369" width="457.4" height="15.0" fill="rgb(216,27,34)" rx="2" ry="2" />
<text text-anchor="" x="646.54" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::MessagePumpLibevent::Run</text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::DidProcessIOEvent (283 samples, 12.00%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::DidProcessIOEvent (283 samples, 12.00%)</title><rect x="345.8" y="401" width="141.6" height="15.0" fill="rgb(228,180,40)" rx="2" ry="2" />
<text text-anchor="" x="348.78" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::MessagePumpL..</text>
</g>
<g class="func_g" onmouseover="s('base::internal::LockImpl::Lock (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::LockImpl::Lock (1 samples, 0.04%)</title><rect x="572.5" y="337" width="0.5" height="15.0" fill="rgb(205,130,8)" rx="2" ry="2" />
<text text-anchor="" x="575.48" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('activate_task (77 samples, 3.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (77 samples, 3.27%)</title><rect x="119.1" y="305" width="38.5" height="15.0" fill="rgb(207,119,28)" rx="2" ry="2" />
<text text-anchor="" x="122.09" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >act..</text>
</g>
<g class="func_g" onmouseover="s('__libc_send (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_send (1 samples, 0.04%)</title><rect x="401.3" y="145" width="0.5" height="15.0" fill="rgb(232,88,36)" rx="2" ry="2" />
<text text-anchor="" x="404.33" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tracesys (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>tracesys (1 samples, 0.04%)</title><rect x="31.5" y="529" width="0.5" height="15.0" fill="rgb(253,220,35)" rx="2" ry="2" />
<text text-anchor="" x="34.52" y="539.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReference::is_valid (4 samples, 0.17%)</title><rect x="491.4" y="401" width="2.0" height="15.0" fill="rgb(227,35,12)" rx="2" ry="2" />
<text text-anchor="" x="494.41" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_task_fair (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (1 samples, 0.04%)</title><rect x="762.6" y="193" width="0.5" height="15.0" fill="rgb(239,127,48)" rx="2" ry="2" />
<text text-anchor="" x="765.64" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('std::string::assign (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::string::assign (3 samples, 0.13%)</title><rect x="917.3" y="241" width="1.5" height="15.0" fill="rgb(221,137,28)" rx="2" ry="2" />
<text text-anchor="" x="920.27" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_after_swapgs (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_after_swapgs (1 samples, 0.04%)</title><rect x="31.0" y="529" width="0.5" height="15.0" fill="rgb(239,17,32)" rx="2" ry="2" />
<text text-anchor="" x="34.02" 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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_rq_blocked_load (1 samples, 0.04%)</title><rect x="976.3" y="129" width="0.5" height="15.0" fill="rgb(254,193,47)" rx="2" ry="2" />
<text text-anchor="" x="979.32" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::MessagePipeReader::MessageWasArrived (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::MessagePipeReader::MessageWasArrived (2 samples, 0.08%)</title><rect x="944.3" y="305" width="1.0" height="15.0" fill="rgb(250,97,4)" rx="2" ry="2" />
<text text-anchor="" x="947.29" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessageInTransit::GetNextMessageSize (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::GetNextMessageSize (4 samples, 0.17%)</title><rect x="561.5" y="385" width="2.0" height="15.0" fill="rgb(215,154,7)" rx="2" ry="2" />
<text text-anchor="" x="564.47" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('set_next_entity (10 samples, 0.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>set_next_entity (10 samples, 0.42%)</title><rect x="320.8" y="273" width="5.0" height="15.0" fill="rgb(228,85,40)" rx="2" ry="2" />
<text text-anchor="" x="323.76" y="283.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::LockImpl::Unlock (2 samples, 0.08%)</title><rect x="213.7" y="417" width="1.0" height="15.0" fill="rgb(253,22,12)" rx="2" ry="2" />
<text text-anchor="" x="216.67" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.04%)</title><rect x="717.6" y="289" width="0.5" height="15.0" fill="rgb(209,41,47)" rx="2" ry="2" />
<text text-anchor="" x="720.60" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_audit (25 samples, 1.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_audit (25 samples, 1.06%)</title><rect x="37.5" y="529" width="12.5" height="15.0" fill="rgb(224,25,10)" rx="2" ry="2" />
<text text-anchor="" x="40.52" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::Message::~Message (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::Message::~Message (2 samples, 0.08%)</title><rect x="823.2" y="289" width="1.0" height="15.0" fill="rgb(241,215,32)" rx="2" ry="2" />
<text text-anchor="" x="826.19" 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 (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 0.17%)</title><rect x="641.0" y="241" width="2.0" height="15.0" fill="rgb(241,210,22)" rx="2" ry="2" />
<text text-anchor="" x="644.03" y="251.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_enqueue (2 samples, 0.08%)</title><rect x="135.1" y="241" width="1.0" height="15.0" fill="rgb(209,168,47)" rx="2" ry="2" />
<text text-anchor="" x="138.11" 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::AddRef (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (1 samples, 0.04%)</title><rect x="839.7" y="193" width="0.5" height="15.0" fill="rgb(210,86,35)" rx="2" ry="2" />
<text text-anchor="" x="842.70" 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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 0.17%)</title><rect x="191.7" y="321" width="2.0" height="15.0" fill="rgb(253,101,40)" rx="2" ry="2" />
<text text-anchor="" x="194.65" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (77 samples, 3.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (77 samples, 3.27%)</title><rect x="983.3" y="273" width="38.6" height="15.0" fill="rgb(233,113,9)" rx="2" ry="2" />
<text text-anchor="" x="986.32" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys..</text>
</g>
<g class="func_g" onmouseover="s('__perf_event_task_sched_in (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (1 samples, 0.04%)</title><rect x="50.5" y="465" width="0.5" height="15.0" fill="rgb(239,213,20)" rx="2" ry="2" />
<text text-anchor="" x="53.53" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__libc_send (317 samples, 13.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_send (317 samples, 13.44%)</title><rect x="33.0" y="545" width="158.7" height="15.0" fill="rgb(220,16,27)" rx="2" ry="2" />
<text text-anchor="" x="36.02" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__libc_send</text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_unlock (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (2 samples, 0.08%)</title><rect x="1064.4" y="241" width="1.0" height="15.0" fill="rgb(226,46,10)" rx="2" ry="2" />
<text text-anchor="" x="1067.39" y="251.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.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_rq_clock.part.63 (3 samples, 0.13%)</title><rect x="761.1" y="177" width="1.5" height="15.0" fill="rgb(240,200,11)" rx="2" ry="2" />
<text text-anchor="" x="764.14" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__alloc_skb (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>__alloc_skb (3 samples, 0.13%)</title><rect x="74.1" y="449" width="1.5" height="15.0" fill="rgb(237,1,15)" rx="2" ry="2" />
<text text-anchor="" x="77.05" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('clear_buddies (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>clear_buddies (3 samples, 0.13%)</title><rect x="318.8" y="273" width="1.5" height="15.0" fill="rgb(232,26,38)" rx="2" ry="2" />
<text text-anchor="" x="321.76" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__run_hrtimer (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__run_hrtimer (1 samples, 0.04%)</title><rect x="976.3" y="225" width="0.5" height="15.0" fill="rgb(215,196,20)" rx="2" ry="2" />
<text text-anchor="" x="979.32" y="235.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>cpuacct_charge (4 samples, 0.17%)</title><rect x="146.1" y="225" width="2.0" height="15.0" fill="rgb(225,108,10)" rx="2" ry="2" />
<text text-anchor="" x="149.12" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (4 samples, 0.17%)</title><rect x="641.0" y="257" width="2.0" height="15.0" fill="rgb(213,51,54)" rx="2" ry="2" />
<text text-anchor="" x="644.03" y="267.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.17%)</title><rect x="12.5" y="81" width="2.0" height="15.0" fill="rgb(252,90,15)" rx="2" ry="2" />
<text text-anchor="" x="15.50" y="91.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::~MessageInTransit (1 samples, 0.04%)</title><rect x="408.3" y="145" width="0.5" height="15.0" fill="rgb(219,165,49)" rx="2" ry="2" />
<text text-anchor="" x="411.34" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree_skbmem (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree_skbmem (2 samples, 0.08%)</title><rect x="994.3" y="161" width="1.0" height="15.0" fill="rgb(217,228,5)" rx="2" ry="2" />
<text text-anchor="" x="997.33" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('copy_user_generic_string (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_string (1 samples, 0.04%)</title><rect x="542.5" y="241" width="0.5" height="15.0" fill="rgb(224,136,17)" rx="2" ry="2" />
<text text-anchor="" x="545.45" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_ZN4base11MessageLoop6DoWorkEv@plt (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4base11MessageLoop6DoWorkEv@plt (1 samples, 0.04%)</title><rect x="194.2" y="449" width="0.5" height="15.0" fill="rgb(250,87,50)" rx="2" ry="2" />
<text text-anchor="" x="197.16" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fput (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>fput (1 samples, 0.04%)</title><rect x="60.5" y="481" width="0.5" height="15.0" fill="rgb(223,127,38)" rx="2" ry="2" />
<text text-anchor="" x="63.54" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.04%)</title><rect x="85.6" y="433" width="0.5" height="15.0" fill="rgb(225,184,53)" rx="2" ry="2" />
<text text-anchor="" x="88.56" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::embedder::PlatformChannelRecvmsg (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::embedder::PlatformChannelRecvmsg (4 samples, 0.17%)</title><rect x="1027.9" y="289" width="2.0" height="15.0" fill="rgb(243,77,53)" rx="2" ry="2" />
<text text-anchor="" x="1030.86" y="299.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::WriteMessage (2 samples, 0.08%)</title><rect x="843.7" y="161" width="1.0" height="15.0" fill="rgb(223,127,7)" rx="2" ry="2" />
<text text-anchor="" x="846.71" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('resched_task (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>resched_task (1 samples, 0.04%)</title><rect x="164.6" y="273" width="0.5" height="15.0" fill="rgb(214,146,8)" rx="2" ry="2" />
<text text-anchor="" x="167.63" y="283.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::test::LockThreadAffinity::LockThreadAffinity (4 samples, 0.17%)</title><rect x="191.7" y="481" width="2.0" height="15.0" fill="rgb(240,39,48)" rx="2" ry="2" />
<text text-anchor="" x="194.65" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mutex_lock_interruptible (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>mutex_lock_interruptible (1 samples, 0.04%)</title><rect x="989.3" y="193" width="0.5" height="15.0" fill="rgb(248,190,30)" rx="2" ry="2" />
<text text-anchor="" x="992.33" y="203.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_setaffinity (4 samples, 0.17%)</title><rect x="641.0" y="337" width="2.0" height="15.0" fill="rgb(228,25,38)" rx="2" ry="2" />
<text text-anchor="" x="644.03" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule (3 samples, 0.13%)</title><rect x="741.1" y="257" width="1.5" height="15.0" fill="rgb(205,217,27)" rx="2" ry="2" />
<text text-anchor="" x="744.12" y="267.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.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>event_active (3 samples, 0.13%)</title><rect x="1096.9" y="337" width="1.5" height="15.0" fill="rgb(230,156,43)" rx="2" ry="2" />
<text text-anchor="" x="1099.92" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::LockImpl::Unlock (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::LockImpl::Unlock (1 samples, 0.04%)</title><rect x="378.3" y="225" width="0.5" height="15.0" fill="rgb(237,168,45)" rx="2" ry="2" />
<text text-anchor="" x="381.31" y="235.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_rq_blocked_load (1 samples, 0.04%)</title><rect x="1088.4" y="161" width="0.5" height="15.0" fill="rgb(235,186,5)" rx="2" ry="2" />
<text text-anchor="" x="1091.41" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('PickleIterator::PickleIterator (7 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
<title>PickleIterator::PickleIterator (7 samples, 0.30%)</title><rect x="920.3" y="257" width="3.5" height="15.0" fill="rgb(207,143,29)" rx="2" ry="2" />
<text text-anchor="" x="923.27" y="267.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (1 samples, 0.04%)</title><rect x="1066.4" y="257" width="0.5" height="15.0" fill="rgb(213,50,14)" rx="2" ry="2" />
<text text-anchor="" x="1069.40" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (1 samples, 0.04%)</title><rect x="881.7" y="177" width="0.5" height="15.0" fill="rgb(211,97,52)" rx="2" ry="2" />
<text text-anchor="" x="884.74" y="187.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.30%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (7 samples, 0.30%)</title><rect x="276.7" y="337" width="3.5" height="15.0" fill="rgb(234,8,52)" rx="2" ry="2" />
<text text-anchor="" x="279.73" y="347.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (4 samples, 0.17%)</title><rect x="12.5" y="113" width="2.0" height="15.0" fill="rgb(218,55,3)" rx="2" ry="2" />
<text text-anchor="" x="15.50" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_epoll_wait (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (2 samples, 0.08%)</title><rect x="696.1" y="321" width="1.0" height="15.0" fill="rgb(231,26,33)" rx="2" ry="2" />
<text text-anchor="" x="699.08" 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 (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (1 samples, 0.04%)</title><rect x="1038.4" y="273" width="0.5" height="15.0" fill="rgb(205,207,9)" rx="2" ry="2" />
<text text-anchor="" x="1041.37" 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 (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>put_prev_task_fair (3 samples, 0.13%)</title><rect x="789.2" y="225" width="1.5" height="15.0" fill="rgb(236,197,54)" rx="2" ry="2" />
<text text-anchor="" x="792.16" y="235.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.30%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_disable_all (7 samples, 0.30%)</title><rect x="775.6" y="129" width="3.6" height="15.0" fill="rgb(226,113,29)" rx="2" ry="2" />
<text text-anchor="" x="778.65" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('PickleIterator::ReadUInt32 (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>PickleIterator::ReadUInt32 (1 samples, 0.04%)</title><rect x="924.3" y="257" width="0.5" height="15.0" fill="rgb(206,130,13)" rx="2" ry="2" />
<text text-anchor="" x="927.27" y="267.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_string (4 samples, 0.17%)</title><rect x="1004.3" y="161" width="2.0" height="15.0" fill="rgb(229,33,39)" rx="2" ry="2" />
<text text-anchor="" x="1007.34" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_stream_sendmsg (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_sendmsg (1 samples, 0.04%)</title><rect x="179.1" y="481" width="0.5" height="15.0" fill="rgb(243,96,9)" rx="2" ry="2" />
<text text-anchor="" x="182.14" y="491.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (4 samples, 0.17%)</title><rect x="15.0" y="161" width="2.0" height="15.0" fill="rgb(241,114,50)" rx="2" ry="2" />
<text text-anchor="" x="18.00" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mutex_lock (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>mutex_lock (5 samples, 0.21%)</title><rect x="738.1" y="257" width="2.5" height="15.0" fill="rgb(212,35,7)" rx="2" ry="2" />
<text text-anchor="" x="741.12" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::OnReadMessageForEndpoint (12 samples, 0.51%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::OnReadMessageForEndpoint (12 samples, 0.51%)</title><rect x="1071.9" y="289" width="6.0" height="15.0" fill="rgb(228,132,44)" rx="2" ry="2" />
<text text-anchor="" x="1074.90" 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 (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (1 samples, 0.04%)</title><rect x="370.3" y="273" width="0.5" height="15.0" fill="rgb(234,74,40)" rx="2" ry="2" />
<text text-anchor="" x="373.31" y="283.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::RunnableAdapterbool (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::InvokerIndexSequence0ul, base::internal::BindStatebase::internal::RunnableAdapterbool (3 samples, 0.13%)</title><rect x="1046.9" y="225" width="1.5" height="15.0" fill="rgb(206,185,3)" rx="2" ry="2" />
<text text-anchor="" x="1049.88" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unroll_tree_refs (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>unroll_tree_refs (2 samples, 0.08%)</title><rect x="517.9" y="321" width="1.0" height="15.0" fill="rgb(217,54,20)" rx="2" ry="2" />
<text text-anchor="" x="520.93" y="331.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::test::LockThreadAffinity::LockThreadAffinity (4 samples, 0.17%)</title><rect x="641.0" y="401" width="2.0" height="15.0" fill="rgb(225,157,40)" rx="2" ry="2" />
<text text-anchor="" x="644.03" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_execve (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_execve (1 samples, 0.04%)</title><rect x="30.5" y="513" width="0.5" height="15.0" fill="rgb(221,119,23)" rx="2" ry="2" />
<text text-anchor="" x="33.52" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('enqueue_entity (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (1 samples, 0.04%)</title><rect x="119.1" y="273" width="0.5" height="15.0" fill="rgb(237,46,39)" rx="2" ry="2" />
<text text-anchor="" x="122.09" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::MessagePipeReader::MessageWasArrived (250 samples, 10.60%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::MessagePipeReader::MessageWasArrived (250 samples, 10.60%)</title><rect x="353.8" y="369" width="125.1" height="15.0" fill="rgb(207,175,35)" rx="2" ry="2" />
<text text-anchor="" x="356.79" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IPC::internal::..</text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (1 samples, 0.04%)</title><rect x="432.4" y="273" width="0.5" height="15.0" fill="rgb(210,140,33)" rx="2" ry="2" />
<text text-anchor="" x="435.36" y="283.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>rb_erase (2 samples, 0.08%)</title><rect x="784.2" y="177" width="1.0" height="15.0" fill="rgb(228,136,6)" rx="2" ry="2" />
<text text-anchor="" x="787.16" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('epoll_dispatch (7 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
<title>epoll_dispatch (7 samples, 0.30%)</title><rect x="675.1" y="353" width="3.5" height="15.0" fill="rgb(218,182,1)" rx="2" ry="2" />
<text text-anchor="" x="678.06" 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 (8 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::OnReadMessage (8 samples, 0.34%)</title><rect x="599.5" y="353" width="4.0" height="15.0" fill="rgb(225,0,15)" rx="2" ry="2" />
<text text-anchor="" x="602.50" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (1 samples, 0.04%)</title><rect x="670.1" y="337" width="0.5" height="15.0" fill="rgb(237,85,12)" rx="2" ry="2" />
<text text-anchor="" x="673.06" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_ZN4base11MessageLoop10DoIdleWorkEv@plt (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4base11MessageLoop10DoIdleWorkEv@plt (1 samples, 0.04%)</title><rect x="193.7" y="449" width="0.5" height="15.0" fill="rgb(214,21,15)" rx="2" ry="2" />
<text text-anchor="" x="196.66" y="459.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_disable_asynccancel (2 samples, 0.08%)</title><rect x="1024.9" y="289" width="1.0" height="15.0" fill="rgb(208,16,8)" rx="2" ry="2" />
<text text-anchor="" x="1027.86" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock_cpu (6 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (6 samples, 0.25%)</title><rect x="154.6" y="257" width="3.0" height="15.0" fill="rgb(210,98,51)" rx="2" ry="2" />
<text text-anchor="" x="157.62" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('memcpy@plt (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>memcpy@plt (1 samples, 0.04%)</title><rect x="852.2" y="129" width="0.5" height="15.0" fill="rgb(217,126,33)" rx="2" ry="2" />
<text text-anchor="" x="855.21" y="139.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (1 samples, 0.04%)</title><rect x="14.5" y="289" width="0.5" height="15.0" fill="rgb(212,170,21)" rx="2" ry="2" />
<text text-anchor="" x="17.50" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::WillProcessIOEvent (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::WillProcessIOEvent (4 samples, 0.17%)</title><rect x="1086.9" y="337" width="2.0" height="15.0" fill="rgb(208,164,5)" rx="2" ry="2" />
<text text-anchor="" x="1089.91" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::test::PingPongTestClient::RunMain (898 samples, 38.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::test::PingPongTestClient::RunMain (898 samples, 38.08%)</title><rect x="191.7" y="497" width="449.3" height="15.0" fill="rgb(224,134,44)" rx="2" ry="2" />
<text text-anchor="" x="194.65" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IPC::test::PingPongTestClient::RunMain</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::OnWriteCompletedNoLock (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::OnWriteCompletedNoLock (3 samples, 0.13%)</title><rect x="872.7" y="65" width="1.5" height="15.0" fill="rgb(243,140,10)" rx="2" ry="2" />
<text text-anchor="" x="875.73" y="75.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 (22 samples, 0.93%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_task_sched_out (22 samples, 0.93%)</title><rect x="768.6" y="209" width="11.1" height="15.0" fill="rgb(209,201,27)" rx="2" ry="2" />
<text text-anchor="" x="771.64" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('logging::GetMinLogLevel (6 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>logging::GetMinLogLevel (6 samples, 0.25%)</title><rect x="382.8" y="209" width="3.0" height="15.0" fill="rgb(225,168,48)" rx="2" ry="2" />
<text text-anchor="" x="385.82" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('std::string::_M_replace_safe (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::string::_M_replace_safe (5 samples, 0.21%)</title><rect x="453.9" y="321" width="2.5" height="15.0" fill="rgb(246,1,38)" rx="2" ry="2" />
<text text-anchor="" x="456.88" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_poll (145 samples, 6.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (145 samples, 6.15%)</title><rect x="718.1" y="289" width="72.6" height="15.0" fill="rgb(222,130,47)" rx="2" ry="2" />
<text text-anchor="" x="721.10" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ep_poll</text>
</g>
<g class="func_g" onmouseover="s('schedule_hrtimeout_range (99 samples, 4.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (99 samples, 4.20%)</title><rect x="741.1" y="273" width="49.6" height="15.0" fill="rgb(253,158,50)" rx="2" ry="2" />
<text text-anchor="" x="744.12" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sche..</text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_rotate_start.isra.39 (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_rotate_start.isra.39 (1 samples, 0.04%)</title><rect x="768.1" y="177" width="0.5" height="15.0" fill="rgb(211,170,42)" rx="2" ry="2" />
<text text-anchor="" x="771.14" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__posix_memalign (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>__posix_memalign (3 samples, 0.13%)</title><rect x="856.7" y="113" width="1.5" height="15.0" fill="rgb(240,128,31)" rx="2" ry="2" />
<text text-anchor="" x="859.72" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (2 samples, 0.08%)</title><rect x="644.5" y="353" width="1.0" height="15.0" fill="rgb(221,59,45)" rx="2" ry="2" />
<text text-anchor="" x="647.54" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.04%)</title><rect x="744.6" y="241" width="0.5" height="15.0" fill="rgb(208,92,34)" rx="2" ry="2" />
<text text-anchor="" x="747.62" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_poll (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_poll (5 samples, 0.21%)</title><rect x="283.2" y="305" width="2.5" height="15.0" fill="rgb(219,195,38)" rx="2" ry="2" />
<text text-anchor="" x="286.23" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (5 samples, 0.21%)</title><rect x="50.0" y="497" width="2.5" height="15.0" fill="rgb(249,40,42)" rx="2" ry="2" />
<text text-anchor="" x="53.03" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call (2 samples, 0.08%)</title><rect x="53.5" y="529" width="1.0" height="15.0" fill="rgb(228,179,37)" rx="2" ry="2" />
<text text-anchor="" x="56.54" 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 (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (1 samples, 0.04%)</title><rect x="878.7" y="97" width="0.5" height="15.0" fill="rgb(240,47,23)" rx="2" ry="2" />
<text text-anchor="" x="881.74" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessageInTransit::GetNextMessageSize (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::GetNextMessageSize (4 samples, 0.17%)</title><rect x="1029.9" y="305" width="2.0" height="15.0" fill="rgb(227,25,3)" rx="2" ry="2" />
<text text-anchor="" x="1032.86" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_write_space (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_write_space (3 samples, 0.13%)</title><rect x="998.8" y="97" width="1.5" height="15.0" fill="rgb(214,51,44)" rx="2" ry="2" />
<text text-anchor="" x="1001.84" y="107.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>rb_erase (4 samples, 0.17%)</title><rect x="322.3" y="257" width="2.0" height="15.0" fill="rgb(231,132,11)" rx="2" ry="2" />
<text text-anchor="" x="325.26" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_poll_callback (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (2 samples, 0.08%)</title><rect x="999.3" y="49" width="1.0" height="15.0" fill="rgb(233,60,10)" rx="2" ry="2" />
<text text-anchor="" x="1002.34" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unroll_tree_refs (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>unroll_tree_refs (1 samples, 0.04%)</title><rect x="519.4" y="337" width="0.5" height="15.0" fill="rgb(252,52,12)" rx="2" ry="2" />
<text text-anchor="" x="522.43" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_ZN4base9TimeTicks3NowEv@plt (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4base9TimeTicks3NowEv@plt (2 samples, 0.08%)</title><rect x="467.4" y="337" width="1.0" height="15.0" fill="rgb(249,3,42)" rx="2" ry="2" />
<text text-anchor="" x="470.39" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('realloc (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>realloc (1 samples, 0.04%)</title><rect x="897.3" y="209" width="0.5" height="15.0" fill="rgb(234,212,47)" rx="2" ry="2" />
<text text-anchor="" x="900.25" y="219.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:: (227 samples, 9.63%)')" onmouseout="c()" onclick="zoom(this)">
<title>non-virtual thunk to mojo::system:: (227 samples, 9.63%)</title><rect x="507.4" y="401" width="113.6" height="15.0" fill="rgb(241,194,27)" rx="2" ry="2" />
<text text-anchor="" x="510.42" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >non-virtual th..</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::WriteMessage (45 samples, 1.91%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::WriteMessage (45 samples, 1.91%)</title><rect x="394.3" y="177" width="22.5" height="15.0" fill="rgb(247,12,6)" rx="2" ry="2" />
<text text-anchor="" x="397.33" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >m..</text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (1 samples, 0.04%)</title><rect x="239.2" y="385" width="0.5" height="15.0" fill="rgb(208,38,42)" rx="2" ry="2" />
<text text-anchor="" x="242.19" y="395.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_put (2 samples, 0.08%)</title><rect x="67.5" y="465" width="1.0" height="15.0" fill="rgb(235,73,22)" rx="2" ry="2" />
<text text-anchor="" x="70.55" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kprobe_ftrace_handler (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>kprobe_ftrace_handler (3 samples, 0.13%)</title><rect x="549.5" y="273" width="1.5" height="15.0" fill="rgb(222,98,15)" rx="2" ry="2" />
<text text-anchor="" x="552.46" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_ops_list_func (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_ops_list_func (1 samples, 0.04%)</title><rect x="1009.8" y="225" width="0.5" height="15.0" fill="rgb(212,29,14)" rx="2" ry="2" />
<text text-anchor="" x="1012.85" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock (1 samples, 0.04%)</title><rect x="306.8" y="257" width="0.5" height="15.0" fill="rgb(254,174,52)" rx="2" ry="2" />
<text text-anchor="" x="309.75" y="267.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.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::LockImpl::Lock (3 samples, 0.13%)</title><rect x="568.0" y="353" width="1.5" height="15.0" fill="rgb(233,45,53)" rx="2" ry="2" />
<text text-anchor="" x="570.97" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_locked (127 samples, 5.39%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_locked (127 samples, 5.39%)</title><rect x="107.6" y="385" width="63.5" height="15.0" fill="rgb(222,120,37)" rx="2" ry="2" />
<text text-anchor="" x="110.58" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__wake..</text>
</g>
<g class="func_g" onmouseover="s('mojo::embedder::PlatformChannelRecvmsg (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::embedder::PlatformChannelRecvmsg (1 samples, 0.04%)</title><rect x="976.3" y="305" width="0.5" height="15.0" fill="rgb(234,183,20)" rx="2" ry="2" />
<text text-anchor="" x="979.32" y="315.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (1 samples, 0.04%)</title><rect x="432.9" y="273" width="0.5" height="15.0" fill="rgb(220,151,49)" rx="2" ry="2" />
<text text-anchor="" x="435.86" y="283.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>stop_one_cpu (4 samples, 0.17%)</title><rect x="641.0" y="305" width="2.0" height="15.0" fill="rgb(230,106,14)" rx="2" ry="2" />
<text text-anchor="" x="644.03" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('malloc (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>malloc (1 samples, 0.04%)</title><rect x="858.7" y="113" width="0.5" height="15.0" fill="rgb(224,70,36)" rx="2" ry="2" />
<text text-anchor="" x="861.72" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('consume_skb (17 samples, 0.72%)')" onmouseout="c()" onclick="zoom(this)">
<title>consume_skb (17 samples, 0.72%)</title><rect x="531.4" y="257" width="8.5" height="15.0" fill="rgb(219,8,14)" rx="2" ry="2" />
<text text-anchor="" x="534.44" y="267.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.04%)</title><rect x="976.3" y="273" width="0.5" height="15.0" fill="rgb(247,143,31)" rx="2" ry="2" />
<text text-anchor="" x="979.32" 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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (2 samples, 0.08%)</title><rect x="86.1" y="433" width="1.0" height="15.0" fill="rgb(241,123,23)" rx="2" ry="2" />
<text text-anchor="" x="89.06" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fput (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>fput (2 samples, 0.08%)</title><rect x="331.8" y="369" width="1.0" height="15.0" fill="rgb(210,74,17)" rx="2" ry="2" />
<text text-anchor="" x="334.77" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__run_hrtimer (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__run_hrtimer (1 samples, 0.04%)</title><rect x="1088.4" y="257" width="0.5" height="15.0" fill="rgb(251,115,29)" rx="2" ry="2" />
<text text-anchor="" x="1091.41" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('MojoWriteMessage (128 samples, 5.43%)')" onmouseout="c()" onclick="zoom(this)">
<title>MojoWriteMessage (128 samples, 5.43%)</title><rect x="369.3" y="289" width="64.1" height="15.0" fill="rgb(240,217,15)" rx="2" ry="2" />
<text text-anchor="" x="372.30" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >MojoWri..</text>
</g>
<g class="func_g" onmouseover="s('update_stats_wait_end (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_stats_wait_end (1 samples, 0.04%)</title><rect x="787.2" y="193" width="0.5" height="15.0" fill="rgb(239,48,13)" rx="2" ry="2" />
<text text-anchor="" x="790.16" y="203.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (4 samples, 0.17%)</title><rect x="423.9" y="225" width="2.0" height="15.0" fill="rgb(226,186,22)" rx="2" ry="2" />
<text text-anchor="" x="426.85" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('local_clock (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>local_clock (1 samples, 0.04%)</title><rect x="317.3" y="257" width="0.5" height="15.0" fill="rgb(252,172,50)" rx="2" ry="2" />
<text text-anchor="" x="320.26" y="267.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 (11 samples, 0.47%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_from_iovec (11 samples, 0.47%)</title><rect x="80.1" y="449" width="5.5" height="15.0" fill="rgb(222,193,41)" rx="2" ry="2" />
<text text-anchor="" x="83.06" y="459.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.17%)</title><rect x="15.0" y="177" width="2.0" height="15.0" fill="rgb(205,161,35)" rx="2" ry="2" />
<text text-anchor="" x="18.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::Release (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (1 samples, 0.04%)</title><rect x="942.8" y="289" width="0.5" height="15.0" fill="rgb(240,165,31)" rx="2" ry="2" />
<text text-anchor="" x="945.79" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_int_free (37 samples, 1.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (37 samples, 1.57%)</title><rect x="1120.9" y="545" width="18.6" height="15.0" fill="rgb(224,175,39)" rx="2" ry="2" />
<text text-anchor="" x="1123.94" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fput (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>fput (5 samples, 0.21%)</title><rect x="795.7" y="289" width="2.5" height="15.0" fill="rgb(229,190,49)" rx="2" ry="2" />
<text text-anchor="" x="798.67" y="299.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReferenceOwner::GetRef (2 samples, 0.08%)</title><rect x="494.4" y="401" width="1.0" height="15.0" fill="rgb(228,98,1)" rx="2" ry="2" />
<text text-anchor="" x="497.41" 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 (10 samples, 0.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (10 samples, 0.42%)</title><rect x="763.6" y="209" width="5.0" height="15.0" fill="rgb(239,17,49)" rx="2" ry="2" />
<text text-anchor="" x="766.64" y="219.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.17%)</title><rect x="10.0" y="369" width="2.0" height="15.0" fill="rgb(248,136,37)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (10 samples, 0.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (10 samples, 0.42%)</title><rect x="12.0" y="449" width="5.0" height="15.0" fill="rgb(227,114,15)" rx="2" ry="2" />
<text text-anchor="" x="15.00" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_destruct_scm (6 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_destruct_scm (6 samples, 0.25%)</title><rect x="997.3" y="129" width="3.0" height="15.0" fill="rgb(232,139,32)" rx="2" ry="2" />
<text text-anchor="" x="1000.34" y="139.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_sse2_unaligned (2 samples, 0.08%)</title><rect x="589.0" y="289" width="1.0" height="15.0" fill="rgb(237,116,29)" rx="2" ry="2" />
<text text-anchor="" x="591.99" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::TimeTicks::NowFromSystemTraceTime (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::TimeTicks::NowFromSystemTraceTime (3 samples, 0.13%)</title><rect x="469.4" y="337" width="1.5" height="15.0" fill="rgb(212,198,38)" rx="2" ry="2" />
<text text-anchor="" x="472.39" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ctx_sched_out (14 samples, 0.59%)')" onmouseout="c()" onclick="zoom(this)">
<title>ctx_sched_out (14 samples, 0.59%)</title><rect x="310.3" y="257" width="7.0" height="15.0" fill="rgb(211,96,31)" rx="2" ry="2" />
<text text-anchor="" x="313.25" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_curr (7 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (7 samples, 0.30%)</title><rect x="144.6" y="241" width="3.5" height="15.0" fill="rgb(223,66,4)" rx="2" ry="2" />
<text text-anchor="" x="147.61" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('void Pickle::WriteBytesStatic4ul (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>void Pickle::WriteBytesStatic4ul (1 samples, 0.04%)</title><rect x="459.4" y="321" width="0.5" height="15.0" fill="rgb(218,29,24)" rx="2" ry="2" />
<text text-anchor="" x="462.38" y="331.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.17%)</title><rect x="10.0" y="353" width="2.0" height="15.0" fill="rgb(226,10,13)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="363.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_handle.isra.17 (1 samples, 0.04%)</title><rect x="976.3" y="193" width="0.5" height="15.0" fill="rgb(253,188,50)" rx="2" ry="2" />
<text text-anchor="" x="979.32" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::ChannelMojo::OnMessageReceived (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelMojo::OnMessageReceived (4 samples, 0.17%)</title><rect x="818.7" y="289" width="2.0" height="15.0" fill="rgb(208,194,33)" rx="2" ry="2" />
<text text-anchor="" x="821.69" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::HandleTable::GetDispatcher (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::HandleTable::GetDispatcher (5 samples, 0.21%)</title><rect x="429.9" y="273" width="2.5" height="15.0" fill="rgb(211,138,46)" rx="2" ry="2" />
<text text-anchor="" x="432.86" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::EnqueueMessage (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::EnqueueMessage (1 samples, 0.04%)</title><rect x="854.2" y="129" width="0.5" height="15.0" fill="rgb(253,131,18)" rx="2" ry="2" />
<text text-anchor="" x="857.22" y="139.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.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::EnqueueMessageNoLock (3 samples, 0.13%)</title><rect x="869.7" y="49" width="1.5" height="15.0" fill="rgb(233,226,40)" rx="2" ry="2" />
<text text-anchor="" x="872.73" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::TestSuite::Run (1,818 samples, 77.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::TestSuite::Run (1,818 samples, 77.10%)</title><rect x="191.7" y="513" width="909.7" height="15.0" fill="rgb(205,169,17)" rx="2" ry="2" />
<text text-anchor="" x="194.65" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::TestSuite::Run</text>
</g>
<g class="func_g" onmouseover="s('get_user_pages (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_user_pages (1 samples, 0.04%)</title><rect x="12.0" y="209" width="0.5" height="15.0" fill="rgb(207,87,19)" rx="2" ry="2" />
<text text-anchor="" x="15.00" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('malloc (38 samples, 1.61%)')" onmouseout="c()" onclick="zoom(this)">
<title>malloc (38 samples, 1.61%)</title><rect x="1159.5" y="545" width="19.0" height="15.0" fill="rgb(251,27,34)" rx="2" ry="2" />
<text text-anchor="" x="1162.47" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kmalloc_slab (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>kmalloc_slab (1 samples, 0.04%)</title><rect x="95.6" y="401" width="0.5" height="15.0" fill="rgb(246,129,29)" rx="2" ry="2" />
<text text-anchor="" x="98.57" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::WriteMessage (28 samples, 1.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::WriteMessage (28 samples, 1.19%)</title><rect x="863.2" y="97" width="14.0" height="15.0" fill="rgb(215,166,2)" rx="2" ry="2" />
<text text-anchor="" x="866.22" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fput (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>fput (1 samples, 0.04%)</title><rect x="179.6" y="497" width="0.5" height="15.0" fill="rgb(212,26,1)" rx="2" ry="2" />
<text text-anchor="" x="182.64" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__enqueue_entity (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>__enqueue_entity (2 samples, 0.08%)</title><rect x="133.6" y="241" width="1.0" height="15.0" fill="rgb(248,191,14)" rx="2" ry="2" />
<text text-anchor="" x="136.60" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_release_head_state (14 samples, 0.59%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_head_state (14 samples, 0.59%)</title><rect x="532.9" y="225" width="7.0" height="15.0" fill="rgb(250,1,25)" rx="2" ry="2" />
<text text-anchor="" x="535.94" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('std::dequemojo::system::MessageInTransit*, std::allocatormojo::system::MessageInTransit* ::_M_reallocate_map (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::dequemojo::system::MessageInTransit*, std::allocatormojo::system::MessageInTransit* ::_M_reallocate_map (1 samples, 0.04%)</title><rect x="870.7" y="33" width="0.5" height="15.0" fill="rgb(252,113,30)" rx="2" ry="2" />
<text text-anchor="" x="873.73" y="43.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>void mojo::system::internal::CheckUserPointerWithCount1ul, 1ul (1 samples, 0.04%)</title><rect x="391.8" y="193" width="0.5" height="15.0" fill="rgb(241,192,2)" rx="2" ry="2" />
<text text-anchor="" x="394.82" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (3 samples, 0.13%)</title><rect x="197.2" y="433" width="1.5" height="15.0" fill="rgb(246,22,22)" rx="2" ry="2" />
<text text-anchor="" x="200.16" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('check_preempt_curr (11 samples, 0.47%)')" onmouseout="c()" onclick="zoom(this)">
<title>check_preempt_curr (11 samples, 0.47%)</title><rect x="159.6" y="289" width="5.5" height="15.0" fill="rgb(254,9,45)" rx="2" ry="2" />
<text text-anchor="" x="162.63" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (1 samples, 0.04%)</title><rect x="539.4" y="145" width="0.5" height="15.0" fill="rgb(235,51,22)" rx="2" ry="2" />
<text text-anchor="" x="542.45" y="155.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (1 samples, 0.04%)</title><rect x="881.2" y="145" width="0.5" height="15.0" fill="rgb(238,31,54)" rx="2" ry="2" />
<text text-anchor="" x="884.24" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::AsyncHandleWaiter::Context::MessageWasReceived (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::AsyncHandleWaiter::Context::MessageWasReceived (2 samples, 0.08%)</title><rect x="577.0" y="305" width="1.0" height="15.0" fill="rgb(246,56,21)" rx="2" ry="2" />
<text text-anchor="" x="579.98" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(':11738 (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>:11738 (4 samples, 0.17%)</title><rect x="10.0" y="561" width="2.0" height="15.0" fill="rgb(222,55,40)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_disable (11 samples, 0.47%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_disable (11 samples, 0.47%)</title><rect x="311.8" y="225" width="5.5" height="15.0" fill="rgb(211,146,26)" rx="2" ry="2" />
<text text-anchor="" x="314.76" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('strlen (6 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>strlen (6 samples, 0.25%)</title><rect x="933.3" y="257" width="3.0" height="15.0" fill="rgb(231,84,32)" rx="2" ry="2" />
<text text-anchor="" x="936.28" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free@plt (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>free@plt (1 samples, 0.04%)</title><rect x="914.3" y="241" width="0.5" height="15.0" fill="rgb(250,59,5)" rx="2" ry="2" />
<text text-anchor="" x="917.27" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree (1 samples, 0.04%)</title><rect x="518.9" y="337" width="0.5" height="15.0" fill="rgb(228,199,8)" rx="2" ry="2" />
<text text-anchor="" x="521.93" y="347.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>Pickle::Resize (4 samples, 0.17%)</title><rect x="437.9" y="289" width="2.0" height="15.0" fill="rgb(221,28,44)" rx="2" ry="2" />
<text text-anchor="" x="440.86" y="299.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>wait_for_completion (4 samples, 0.17%)</title><rect x="641.0" y="289" width="2.0" height="15.0" fill="rgb(244,20,30)" rx="2" ry="2" />
<text text-anchor="" x="644.03" y="299.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (1 samples, 0.04%)</title><rect x="876.7" y="81" width="0.5" height="15.0" fill="rgb(244,158,15)" rx="2" ry="2" />
<text text-anchor="" x="879.73" 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 (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock (2 samples, 0.08%)</title><rect x="988.3" y="193" width="1.0" height="15.0" fill="rgb(243,124,11)" rx="2" ry="2" />
<text text-anchor="" x="991.33" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_poll (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_poll (3 samples, 0.13%)</title><rect x="736.6" y="225" width="1.5" height="15.0" fill="rgb(243,54,52)" rx="2" ry="2" />
<text text-anchor="" x="739.62" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::DoWork (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::DoWork (5 samples, 0.21%)</title><rect x="194.7" y="449" width="2.5" height="15.0" fill="rgb(214,200,14)" rx="2" ry="2" />
<text text-anchor="" x="197.66" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('copy_strings.isra.17 (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>copy_strings.isra.17 (1 samples, 0.04%)</title><rect x="12.0" y="225" width="0.5" height="15.0" fill="rgb(232,110,32)" rx="2" ry="2" />
<text text-anchor="" x="15.00" y="235.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>scoped_refptrIPC::internal::AsyncHandleWaiter::Context::~scoped_refptr (1 samples, 0.04%)</title><rect x="481.4" y="369" width="0.5" height="15.0" fill="rgb(234,38,52)" rx="2" ry="2" />
<text text-anchor="" x="484.40" y="379.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_read_tsc (1 samples, 0.04%)</title><rect x="762.1" y="113" width="0.5" height="15.0" fill="rgb(221,197,15)" rx="2" ry="2" />
<text text-anchor="" x="765.14" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pthread_enable_asynccancel (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_enable_asynccancel (2 samples, 0.08%)</title><rect x="401.8" y="145" width="1.0" height="15.0" fill="rgb(235,198,28)" rx="2" ry="2" />
<text text-anchor="" x="404.83" y="155.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>task_tick_fair (1 samples, 0.04%)</title><rect x="1088.4" y="177" width="0.5" height="15.0" fill="rgb(224,223,40)" rx="2" ry="2" />
<text text-anchor="" x="1091.41" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (1 samples, 0.04%)</title><rect x="993.8" y="177" width="0.5" height="15.0" fill="rgb(213,117,19)" rx="2" ry="2" />
<text text-anchor="" x="996.83" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (16 samples, 0.68%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (16 samples, 0.68%)</title><rect x="12.0" y="513" width="8.0" height="15.0" fill="rgb(233,96,5)" rx="2" ry="2" />
<text text-anchor="" x="15.00" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::Release (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (1 samples, 0.04%)</title><rect x="479.9" y="369" width="0.5" height="15.0" fill="rgb(210,158,41)" rx="2" ry="2" />
<text text-anchor="" x="482.90" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('memset (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>memset (2 samples, 0.08%)</title><rect x="914.8" y="241" width="1.0" height="15.0" fill="rgb(211,109,43)" rx="2" ry="2" />
<text text-anchor="" x="917.77" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_sched_clock (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (1 samples, 0.04%)</title><rect x="762.1" y="129" width="0.5" height="15.0" fill="rgb(245,62,15)" rx="2" ry="2" />
<text text-anchor="" x="765.14" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_enable_all (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (1 samples, 0.04%)</title><rect x="307.3" y="209" width="0.5" height="15.0" fill="rgb(242,39,43)" rx="2" ry="2" />
<text text-anchor="" x="310.25" y="219.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.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>epoll_dispatch (6 samples, 0.25%)</title><rect x="629.5" y="417" width="3.0" height="15.0" fill="rgb(212,85,52)" rx="2" ry="2" />
<text text-anchor="" x="632.53" y="427.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (1 samples, 0.04%)</title><rect x="1088.4" y="289" width="0.5" height="15.0" fill="rgb(239,165,52)" rx="2" ry="2" />
<text text-anchor="" x="1091.41" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (220 samples, 9.33%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (220 samples, 9.33%)</title><rect x="688.1" y="337" width="110.1" height="15.0" fill="rgb(209,158,7)" rx="2" ry="2" />
<text text-anchor="" x="691.07" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s('ima_collect_measurement (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>ima_collect_measurement (1 samples, 0.04%)</title><rect x="1120.4" y="401" width="0.5" height="15.0" fill="rgb(226,0,25)" rx="2" ry="2" />
<text text-anchor="" x="1123.44" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('memset (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>memset (3 samples, 0.13%)</title><rect x="452.4" y="321" width="1.5" height="15.0" fill="rgb(242,55,44)" rx="2" ry="2" />
<text text-anchor="" x="455.37" y="331.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 (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::WriteBuffer::GetBuffers (1 samples, 0.04%)</title><rect x="407.8" y="129" width="0.5" height="15.0" fill="rgb(254,176,4)" rx="2" ry="2" />
<text text-anchor="" x="410.84" y="139.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>search_binary_handler (4 samples, 0.17%)</title><rect x="10.0" y="481" width="2.0" height="15.0" fill="rgb(231,20,2)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pthread_disable_asynccancel (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_disable_asynccancel (5 samples, 0.21%)</title><rect x="1117.9" y="545" width="2.5" height="15.0" fill="rgb(221,67,54)" rx="2" ry="2" />
<text text-anchor="" x="1120.94" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (10 samples, 0.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (10 samples, 0.42%)</title><rect x="12.0" y="385" width="5.0" height="15.0" fill="rgb(213,174,50)" rx="2" ry="2" />
<text text-anchor="" x="15.00" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_copy_datagram_iovec (8 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_iovec (8 samples, 0.34%)</title><rect x="1002.3" y="177" width="4.0" height="15.0" fill="rgb(251,67,43)" rx="2" ry="2" />
<text text-anchor="" x="1005.34" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('Pickle::Resize (7 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
<title>Pickle::Resize (7 samples, 0.30%)</title><rect x="897.8" y="225" width="3.5" height="15.0" fill="rgb(245,229,54)" rx="2" ry="2" />
<text text-anchor="" x="900.75" y="235.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.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (3 samples, 0.13%)</title><rect x="757.1" y="145" width="1.5" height="15.0" fill="rgb(232,32,12)" rx="2" ry="2" />
<text text-anchor="" x="760.13" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_sync_key (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (2 samples, 0.08%)</title><rect x="999.3" y="81" width="1.0" height="15.0" fill="rgb(251,161,33)" rx="2" ry="2" />
<text text-anchor="" x="1002.34" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_poll_callback (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (3 samples, 0.13%)</title><rect x="537.4" y="129" width="1.5" height="15.0" fill="rgb(210,20,8)" rx="2" ry="2" />
<text text-anchor="" x="540.45" y="139.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (4 samples, 0.17%)</title><rect x="10.0" y="401" width="2.0" height="15.0" fill="rgb(247,127,51)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="411.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 (7 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::ReadBuffer::GetBuffer (7 samples, 0.30%)</title><rect x="617.5" y="385" width="3.5" height="15.0" fill="rgb(217,56,2)" rx="2" ry="2" />
<text text-anchor="" x="620.51" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_regs_call (11 samples, 0.47%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_regs_call (11 samples, 0.47%)</title><rect x="1010.3" y="225" width="5.6" height="15.0" fill="rgb(254,58,36)" rx="2" ry="2" />
<text text-anchor="" x="1013.35" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::AsyncHandleWaiter::Context::MessageWasReceived (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::AsyncHandleWaiter::Context::MessageWasReceived (2 samples, 0.08%)</title><rect x="1045.9" y="225" width="1.0" height="15.0" fill="rgb(238,152,4)" rx="2" ry="2" />
<text text-anchor="" x="1048.88" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::AddRef (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (1 samples, 0.04%)</title><rect x="1040.9" y="257" width="0.5" height="15.0" fill="rgb(215,126,21)" rx="2" ry="2" />
<text text-anchor="" x="1043.87" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_stats_wait_end (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_stats_wait_end (3 samples, 0.13%)</title><rect x="785.7" y="177" width="1.5" height="15.0" fill="rgb(206,190,5)" rx="2" ry="2" />
<text text-anchor="" x="788.66" y="187.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>_cond_resched (4 samples, 0.17%)</title><rect x="641.0" y="273" width="2.0" height="15.0" fill="rgb(225,52,16)" rx="2" ry="2" />
<text text-anchor="" x="644.03" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_ZN4mojo6system10RawChannel22OnWriteCompletedNoLockENS1_8IOResultEmm@plt (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4mojo6system10RawChannel22OnWriteCompletedNoLockENS1_8IOResultEmm@plt (2 samples, 0.08%)</title><rect x="395.8" y="161" width="1.0" height="15.0" fill="rgb(231,93,3)" rx="2" ry="2" />
<text text-anchor="" x="398.83" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (1 samples, 0.04%)</title><rect x="538.4" y="113" width="0.5" height="15.0" fill="rgb(216,46,23)" rx="2" ry="2" />
<text text-anchor="" x="541.45" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::WeakReference::~WeakReference (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReference::~WeakReference (2 samples, 0.08%)</title><rect x="493.4" y="401" width="1.0" height="15.0" fill="rgb(230,38,16)" rx="2" ry="2" />
<text text-anchor="" x="496.41" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('security_socket_recvmsg (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_recvmsg (4 samples, 0.17%)</title><rect x="525.4" y="273" width="2.0" height="15.0" fill="rgb(241,49,50)" rx="2" ry="2" />
<text text-anchor="" x="528.44" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_exec (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_exec (4 samples, 0.17%)</title><rect x="12.5" y="241" width="2.0" height="15.0" fill="rgb(215,168,9)" rx="2" ry="2" />
<text text-anchor="" x="15.50" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rb_insert_color (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>rb_insert_color (1 samples, 0.04%)</title><rect x="788.7" y="193" width="0.5" height="15.0" fill="rgb(254,115,51)" rx="2" ry="2" />
<text text-anchor="" x="791.66" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_timer (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_timer (1 samples, 0.04%)</title><rect x="749.1" y="81" width="0.5" height="15.0" fill="rgb(233,142,48)" rx="2" ry="2" />
<text text-anchor="" x="752.13" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Core::WriteMessage (85 samples, 3.60%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Core::WriteMessage (85 samples, 3.60%)</title><rect x="840.7" y="193" width="42.5" height="15.0" fill="rgb(213,84,16)" rx="2" ry="2" />
<text text-anchor="" x="843.70" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo..</text>
</g>
<g class="func_g" onmouseover="s('IPC::Message::Message (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::Message::Message (5 samples, 0.21%)</title><rect x="820.7" y="289" width="2.5" height="15.0" fill="rgb(250,40,26)" rx="2" ry="2" />
<text text-anchor="" x="823.69" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (10 samples, 0.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (10 samples, 0.42%)</title><rect x="12.0" y="401" width="5.0" height="15.0" fill="rgb(239,202,40)" rx="2" ry="2" />
<text text-anchor="" x="15.00" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::Release (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (5 samples, 0.21%)</title><rect x="948.8" y="305" width="2.5" height="15.0" fill="rgb(251,131,49)" rx="2" ry="2" />
<text text-anchor="" x="951.80" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('security_mmap_file (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>security_mmap_file (1 samples, 0.04%)</title><rect x="1120.4" y="449" width="0.5" height="15.0" fill="rgb(216,227,52)" rx="2" ry="2" />
<text text-anchor="" x="1123.44" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_sched_do_timer (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_do_timer (1 samples, 0.04%)</title><rect x="749.1" y="113" width="0.5" height="15.0" fill="rgb(208,177,37)" rx="2" ry="2" />
<text text-anchor="" x="752.13" y="123.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>set_cpus_allowed_ptr (4 samples, 0.17%)</title><rect x="641.0" y="321" width="2.0" height="15.0" fill="rgb(234,193,42)" rx="2" ry="2" />
<text text-anchor="" x="644.03" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (5 samples, 0.21%)</title><rect x="603.5" y="353" width="2.5" height="15.0" fill="rgb(226,199,15)" rx="2" ry="2" />
<text text-anchor="" x="606.50" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_fair (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_fair (1 samples, 0.04%)</title><rect x="51.5" y="481" width="0.5" height="15.0" fill="rgb(226,12,47)" rx="2" ry="2" />
<text text-anchor="" x="54.54" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('send@plt (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>send@plt (1 samples, 0.04%)</title><rect x="413.8" y="145" width="0.5" height="15.0" fill="rgb(206,185,54)" rx="2" ry="2" />
<text text-anchor="" x="416.84" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apparmor_socket_getpeersec_dgram (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_getpeersec_dgram (1 samples, 0.04%)</title><rect x="77.6" y="449" width="0.5" height="15.0" fill="rgb(246,17,30)" rx="2" ry="2" />
<text text-anchor="" x="80.56" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::HasOneRef (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::HasOneRef (2 samples, 0.08%)</title><rect x="962.8" y="321" width="1.0" height="15.0" fill="rgb(241,114,23)" rx="2" ry="2" />
<text text-anchor="" x="965.81" y="331.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (4 samples, 0.17%)</title><rect x="10.0" y="385" width="2.0" height="15.0" fill="rgb(250,4,3)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apic_timer_interrupt (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.04%)</title><rect x="976.3" y="289" width="0.5" height="15.0" fill="rgb(254,216,29)" rx="2" ry="2" />
<text text-anchor="" x="979.32" y="299.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.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_rq_clock.part.63 (3 samples, 0.13%)</title><rect x="304.7" y="257" width="1.6" height="15.0" fill="rgb(226,35,16)" rx="2" ry="2" />
<text text-anchor="" x="307.75" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('epoll_wait@plt (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>epoll_wait@plt (2 samples, 0.08%)</title><rect x="633.0" y="417" width="1.0" height="15.0" fill="rgb(235,171,14)" rx="2" ry="2" />
<text text-anchor="" x="636.03" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fget_light (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>fget_light (3 samples, 0.13%)</title><rect x="551.5" y="289" width="1.5" height="15.0" fill="rgb(216,224,17)" rx="2" ry="2" />
<text text-anchor="" x="554.46" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::Run (885 samples, 37.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::Run (885 samples, 37.53%)</title><rect x="197.2" y="449" width="442.8" height="15.0" fill="rgb(222,200,15)" rx="2" ry="2" />
<text text-anchor="" x="200.16" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::MessagePumpLibevent::Run</text>
</g>
<g class="func_g" onmouseover="s('mem_cgroup_newpage_charge (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>mem_cgroup_newpage_charge (1 samples, 0.04%)</title><rect x="12.0" y="161" width="0.5" height="15.0" fill="rgb(219,166,45)" rx="2" ry="2" />
<text text-anchor="" x="15.00" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('page_add_new_anon_rmap (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>page_add_new_anon_rmap (1 samples, 0.04%)</title><rect x="1159.0" y="465" width="0.5" height="15.0" fill="rgb(206,171,54)" rx="2" ry="2" />
<text text-anchor="" x="1161.97" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_after_swapgs (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_after_swapgs (4 samples, 0.17%)</title><rect x="28.5" y="513" width="2.0" height="15.0" fill="rgb(231,160,31)" rx="2" ry="2" />
<text text-anchor="" x="31.52" y="523.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelMojo::ReadFromMessageAttachmentSet (2 samples, 0.08%)</title><rect x="366.3" y="289" width="1.0" height="15.0" fill="rgb(236,41,31)" rx="2" ry="2" />
<text text-anchor="" x="369.30" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('strlcpy (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>strlcpy (1 samples, 0.04%)</title><rect x="30.5" y="417" width="0.5" height="15.0" fill="rgb(254,87,0)" rx="2" ry="2" />
<text text-anchor="" x="33.52" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator delete (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator delete (1 samples, 0.04%)</title><rect x="490.9" y="385" width="0.5" height="15.0" fill="rgb(232,153,34)" rx="2" ry="2" />
<text text-anchor="" x="493.91" y="395.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.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::MessageInTransit (9 samples, 0.38%)</title><rect x="387.8" y="209" width="4.5" height="15.0" fill="rgb(237,28,20)" rx="2" ry="2" />
<text text-anchor="" x="390.82" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('Pickle::WriteString (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>Pickle::WriteString (1 samples, 0.04%)</title><rect x="445.4" y="321" width="0.5" height="15.0" fill="rgb(253,164,51)" rx="2" ry="2" />
<text text-anchor="" x="448.37" y="331.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 (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::trace_event::TraceLog::GetInstance (5 samples, 0.21%)</title><rect x="911.8" y="241" width="2.5" height="15.0" fill="rgb(225,174,13)" rx="2" ry="2" />
<text text-anchor="" x="914.76" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_ZN4mojo6system11MessagePipe12WriteMessageEjNS0_11UserPointerIKvEEjPSt6vectorINS0_19DispatcherTransportESaIS6_EEj@plt (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4mojo6system11MessagePipe12WriteMessageEjNS0_11UserPointerIKvEEjPSt6vectorINS0_19DispatcherTransportESaIS6_EEj@plt (1 samples, 0.04%)</title><rect x="377.3" y="241" width="0.5" height="15.0" fill="rgb(223,216,45)" rx="2" ry="2" />
<text text-anchor="" x="380.31" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_after_swapgs (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_after_swapgs (4 samples, 0.17%)</title><rect x="257.7" y="401" width="2.0" height="15.0" fill="rgb(210,136,5)" rx="2" ry="2" />
<text text-anchor="" x="260.71" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kmem_cache_alloc_node (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_alloc_node (4 samples, 0.17%)</title><rect x="96.1" y="417" width="2.0" height="15.0" fill="rgb(236,189,28)" rx="2" ry="2" />
<text text-anchor="" x="99.07" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (3 samples, 0.13%)</title><rect x="971.3" y="321" width="1.5" height="15.0" fill="rgb(218,86,16)" rx="2" ry="2" />
<text text-anchor="" x="974.31" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ObserverListBasebase::SystemMonitor::DevicesChangedObserver::Iterator::~Iterator (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>ObserverListBasebase::SystemMonitor::DevicesChangedObserver::Iterator::~Iterator (1 samples, 0.04%)</title><rect x="488.4" y="385" width="0.5" height="15.0" fill="rgb(226,38,53)" rx="2" ry="2" />
<text text-anchor="" x="491.41" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (9 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (9 samples, 0.38%)</title><rect x="403.8" y="145" width="4.5" height="15.0" fill="rgb(241,170,5)" rx="2" ry="2" />
<text text-anchor="" x="406.83" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__memcpy_sse2_unaligned (6 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_sse2_unaligned (6 samples, 0.25%)</title><rect x="1055.4" y="209" width="3.0" height="15.0" fill="rgb(224,158,16)" rx="2" ry="2" />
<text text-anchor="" x="1058.39" y="219.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (1 samples, 0.04%)</title><rect x="468.9" y="337" width="0.5" height="15.0" fill="rgb(214,147,0)" rx="2" ry="2" />
<text text-anchor="" x="471.89" 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:: (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>non-virtual thunk to mojo::system:: (4 samples, 0.17%)</title><rect x="638.0" y="417" width="2.0" height="15.0" fill="rgb(214,211,12)" rx="2" ry="2" />
<text text-anchor="" x="641.03" 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::Release (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (2 samples, 0.08%)</title><rect x="570.5" y="353" width="1.0" height="15.0" fill="rgb(216,224,34)" rx="2" ry="2" />
<text text-anchor="" x="573.47" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree (1 samples, 0.04%)</title><rect x="709.1" y="305" width="0.5" height="15.0" fill="rgb(246,155,40)" rx="2" ry="2" />
<text text-anchor="" x="712.09" y="315.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (2 samples, 0.08%)</title><rect x="931.8" y="257" width="1.0" height="15.0" fill="rgb(245,179,40)" rx="2" ry="2" />
<text text-anchor="" x="934.78" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (1 samples, 0.04%)</title><rect x="173.1" y="417" width="0.5" height="15.0" fill="rgb(231,217,14)" rx="2" ry="2" />
<text text-anchor="" x="176.14" 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::WillProcessIOEvent (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::AsyncHandleWaiter::Context::WillProcessIOEvent (4 samples, 0.17%)</title><rect x="341.8" y="401" width="2.0" height="15.0" fill="rgb(212,45,12)" rx="2" ry="2" />
<text text-anchor="" x="344.78" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_curr (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (2 samples, 0.08%)</title><rect x="150.6" y="257" width="1.0" height="15.0" fill="rgb(208,62,20)" rx="2" ry="2" />
<text text-anchor="" x="153.62" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('account_entity_dequeue (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_dequeue (2 samples, 0.08%)</title><rect x="756.1" y="145" width="1.0" height="15.0" fill="rgb(218,39,28)" rx="2" ry="2" />
<text text-anchor="" x="759.13" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator delete (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator delete (2 samples, 0.08%)</title><rect x="471.4" y="337" width="1.0" height="15.0" fill="rgb(248,166,2)" rx="2" ry="2" />
<text text-anchor="" x="474.39" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_enable (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (1 samples, 0.04%)</title><rect x="307.3" y="225" width="0.5" height="15.0" fill="rgb(222,178,32)" rx="2" ry="2" />
<text text-anchor="" x="310.25" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apic_timer_interrupt (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.04%)</title><rect x="749.1" y="209" width="0.5" height="15.0" fill="rgb(218,55,49)" rx="2" ry="2" />
<text text-anchor="" x="752.13" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('enqueue_task (77 samples, 3.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task (77 samples, 3.27%)</title><rect x="119.1" y="289" width="38.5" height="15.0" fill="rgb(230,33,39)" rx="2" ry="2" />
<text text-anchor="" x="122.09" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >enq..</text>
</g>
<g class="func_g" onmouseover="s('event_active (8 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>event_active (8 samples, 0.34%)</title><rect x="634.0" y="417" width="4.0" height="15.0" fill="rgb(215,208,15)" rx="2" ry="2" />
<text text-anchor="" x="637.03" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('memset (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>memset (4 samples, 0.17%)</title><rect x="1050.9" y="193" width="2.0" height="15.0" fill="rgb(233,214,12)" rx="2" ry="2" />
<text text-anchor="" x="1053.88" y="203.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (1 samples, 0.04%)</title><rect x="1063.9" y="241" width="0.5" height="15.0" fill="rgb(233,205,0)" rx="2" ry="2" />
<text text-anchor="" x="1066.89" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_def_readable (144 samples, 6.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_def_readable (144 samples, 6.11%)</title><rect x="102.6" y="449" width="72.0" height="15.0" fill="rgb(247,127,26)" rx="2" ry="2" />
<text text-anchor="" x="105.58" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sock_def..</text>
</g>
<g class="func_g" onmouseover="s('__kmalloc_reserve.isra.26 (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_reserve.isra.26 (2 samples, 0.08%)</title><rect x="99.1" y="433" width="1.0" height="15.0" fill="rgb(240,215,2)" rx="2" ry="2" />
<text text-anchor="" x="102.08" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_stats_wait_end (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_stats_wait_end (1 samples, 0.04%)</title><rect x="325.8" y="273" width="0.5" height="15.0" fill="rgb(241,138,8)" rx="2" ry="2" />
<text text-anchor="" x="328.77" y="283.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (1 samples, 0.04%)</title><rect x="976.3" y="257" width="0.5" height="15.0" fill="rgb(242,21,44)" rx="2" ry="2" />
<text text-anchor="" x="979.32" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_scm_to_skb (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_scm_to_skb (1 samples, 0.04%)</title><rect x="68.5" y="465" width="0.6" height="15.0" fill="rgb(253,148,4)" rx="2" ry="2" />
<text text-anchor="" x="71.55" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::WriteMessage (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::WriteMessage (2 samples, 0.08%)</title><rect x="393.3" y="193" width="1.0" height="15.0" fill="rgb(239,207,2)" rx="2" ry="2" />
<text text-anchor="" x="396.32" y="203.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::AlignedAlloc (2 samples, 0.08%)</title><rect x="849.2" y="129" width="1.0" height="15.0" fill="rgb(250,16,42)" rx="2" ry="2" />
<text text-anchor="" x="852.21" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_ZN4base8internal8LockImpl6UnlockEv@plt (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4base8internal8LockImpl6UnlockEv@plt (2 samples, 0.08%)</title><rect x="394.8" y="161" width="1.0" height="15.0" fill="rgb(226,52,14)" rx="2" ry="2" />
<text text-anchor="" x="397.83" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('local_clock (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>local_clock (2 samples, 0.08%)</title><rect x="310.8" y="241" width="1.0" height="15.0" fill="rgb(219,113,0)" rx="2" ry="2" />
<text text-anchor="" x="313.75" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_poll (6 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_poll (6 samples, 0.25%)</title><rect x="282.7" y="321" width="3.0" height="15.0" fill="rgb(223,19,27)" rx="2" ry="2" />
<text text-anchor="" x="285.73" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kprobe_ftrace_handler (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>kprobe_ftrace_handler (1 samples, 0.04%)</title><rect x="1015.4" y="209" width="0.5" height="15.0" fill="rgb(242,216,31)" rx="2" ry="2" />
<text text-anchor="" x="1018.35" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_sendmsg_handler (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg_handler (2 samples, 0.08%)</title><rect x="189.2" y="465" width="1.0" height="15.0" fill="rgb(225,63,22)" rx="2" ry="2" />
<text text-anchor="" x="192.15" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ipc_mojo_perfte (2,354 samples, 99.83%)')" onmouseout="c()" onclick="zoom(this)">
<title>ipc_mojo_perfte (2,354 samples, 99.83%)</title><rect x="12.0" y="561" width="1178.0" height="15.0" fill="rgb(239,213,0)" rx="2" ry="2" />
<text text-anchor="" x="15.00" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ipc_mojo_perfte</text>
</g>
<g class="func_g" onmouseover="s('set_cpus_allowed_ptr (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>set_cpus_allowed_ptr (4 samples, 0.17%)</title><rect x="191.7" y="401" width="2.0" height="15.0" fill="rgb(236,111,8)" rx="2" ry="2" />
<text text-anchor="" x="194.65" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kretprobe_trampoline (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>kretprobe_trampoline (5 samples, 0.21%)</title><rect x="12.0" y="289" width="2.5" height="15.0" fill="rgb(246,24,24)" rx="2" ry="2" />
<text text-anchor="" x="15.00" y="299.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.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_enable_asynccancel (5 samples, 0.21%)</title><rect x="802.2" y="337" width="2.5" height="15.0" fill="rgb(230,25,3)" rx="2" ry="2" />
<text text-anchor="" x="805.17" y="347.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 (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReference::is_valid (1 samples, 0.04%)</title><rect x="1088.9" y="337" width="0.5" height="15.0" fill="rgb(254,95,1)" rx="2" ry="2" />
<text text-anchor="" x="1091.91" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pthread_enable_asynccancel (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_enable_asynccancel (4 samples, 0.17%)</title><rect x="1025.9" y="289" width="2.0" height="15.0" fill="rgb(207,198,21)" rx="2" ry="2" />
<text text-anchor="" x="1028.86" 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 (10 samples, 0.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (10 samples, 0.42%)</title><rect x="720.1" y="273" width="5.0" height="15.0" fill="rgb(234,55,29)" rx="2" ry="2" />
<text text-anchor="" x="723.10" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>free (1 samples, 0.04%)</title><rect x="470.9" y="337" width="0.5" height="15.0" fill="rgb(219,212,13)" rx="2" ry="2" />
<text text-anchor="" x="473.89" y="347.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_handle.isra.17 (1 samples, 0.04%)</title><rect x="100.1" y="337" width="0.5" height="15.0" fill="rgb(207,135,31)" rx="2" ry="2" />
<text text-anchor="" x="103.08" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_sync_key (7 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (7 samples, 0.30%)</title><rect x="536.4" y="161" width="3.5" height="15.0" fill="rgb(205,95,13)" rx="2" ry="2" />
<text text-anchor="" x="539.45" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (14 samples, 0.59%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (14 samples, 0.59%)</title><rect x="865.7" y="65" width="7.0" height="15.0" fill="rgb(215,155,16)" rx="2" ry="2" />
<text text-anchor="" x="868.73" y="75.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irq (2 samples, 0.08%)</title><rect x="296.2" y="289" width="1.0" height="15.0" fill="rgb(213,71,21)" rx="2" ry="2" />
<text text-anchor="" x="299.24" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_stats_wait_end (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_stats_wait_end (2 samples, 0.08%)</title><rect x="324.8" y="257" width="1.0" height="15.0" fill="rgb(227,88,16)" rx="2" ry="2" />
<text text-anchor="" x="327.77" y="267.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.17%)</title><rect x="641.0" y="161" width="2.0" height="15.0" fill="rgb(224,78,35)" rx="2" ry="2" />
<text text-anchor="" x="644.03" y="171.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_scan_ready_list.isra.9 (1 samples, 0.04%)</title><rect x="329.3" y="369" width="0.5" height="15.0" fill="rgb(245,68,24)" rx="2" ry="2" />
<text text-anchor="" x="332.27" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (4 samples, 0.17%)</title><rect x="12.5" y="177" width="2.0" height="15.0" fill="rgb(243,20,27)" rx="2" ry="2" />
<text text-anchor="" x="15.50" 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 (112 samples, 4.75%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Core::WriteMessage (112 samples, 4.75%)</title><rect x="371.3" y="273" width="56.1" height="15.0" fill="rgb(247,177,26)" rx="2" ry="2" />
<text text-anchor="" x="374.31" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo:..</text>
</g>
<g class="func_g" onmouseover="s('unix_destruct_scm (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_destruct_scm (2 samples, 0.08%)</title><rect x="1000.3" y="145" width="1.0" height="15.0" fill="rgb(254,125,34)" rx="2" ry="2" />
<text text-anchor="" x="1003.34" y="155.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.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (3 samples, 0.13%)</title><rect x="33.0" y="513" width="1.5" height="15.0" fill="rgb(228,127,38)" rx="2" ry="2" />
<text text-anchor="" x="36.02" 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 (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (5 samples, 0.21%)</title><rect x="420.3" y="177" width="2.5" height="15.0" fill="rgb(247,144,29)" rx="2" ry="2" />
<text text-anchor="" x="423.35" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_stream_recvmsg (31 samples, 1.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_recvmsg (31 samples, 1.31%)</title><rect x="992.8" y="193" width="15.5" height="15.0" fill="rgb(208,82,13)" rx="2" ry="2" />
<text text-anchor="" x="995.83" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.21%)</title><rect x="908.3" y="225" width="2.5" height="15.0" fill="rgb(254,160,24)" rx="2" ry="2" />
<text text-anchor="" x="911.26" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unroll_tree_refs (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>unroll_tree_refs (2 samples, 0.08%)</title><rect x="251.2" y="369" width="1.0" height="15.0" fill="rgb(235,35,24)" rx="2" ry="2" />
<text text-anchor="" x="254.20" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::Message::~Message (7 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::Message::~Message (7 samples, 0.30%)</title><rect x="902.8" y="241" width="3.5" height="15.0" fill="rgb(248,197,37)" rx="2" ry="2" />
<text text-anchor="" x="905.76" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_ZNSt6vectorIN4mojo6system10RawChannel11WriteBuffer6BufferESaIS4_EE19_M_emplace_back_auxIJRKS4_EEEvDpOT_@plt (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZNSt6vectorIN4mojo6system10RawChannel11WriteBuffer6BufferESaIS4_EE19_M_emplace_back_auxIJRKS4_EEEvDpOT_@plt (2 samples, 0.08%)</title><rect x="868.7" y="49" width="1.0" height="15.0" fill="rgb(234,209,54)" rx="2" ry="2" />
<text text-anchor="" x="871.73" y="59.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_read_tsc (1 samples, 0.04%)</title><rect x="157.1" y="209" width="0.5" height="15.0" fill="rgb(229,151,36)" rx="2" ry="2" />
<text text-anchor="" x="160.12" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__memcmp_sse4_1 (33 samples, 1.40%)')" onmouseout="c()" onclick="zoom(this)">
<title>__memcmp_sse4_1 (33 samples, 1.40%)</title><rect x="1101.4" y="545" width="16.5" height="15.0" fill="rgb(246,148,20)" rx="2" ry="2" />
<text text-anchor="" x="1104.42" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (2 samples, 0.08%)</title><rect x="305.3" y="225" width="1.0" height="15.0" fill="rgb(212,158,20)" rx="2" ry="2" />
<text text-anchor="" x="308.25" y="235.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 (26 samples, 1.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_scan_ready_list.isra.9 (26 samples, 1.10%)</title><rect x="727.6" y="273" width="13.0" height="15.0" fill="rgb(215,103,24)" rx="2" ry="2" />
<text text-anchor="" x="730.61" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (10 samples, 0.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (10 samples, 0.42%)</title><rect x="312.3" y="193" width="5.0" height="15.0" fill="rgb(225,229,35)" rx="2" ry="2" />
<text text-anchor="" x="315.26" y="203.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (4 samples, 0.17%)</title><rect x="15.0" y="225" width="2.0" height="15.0" fill="rgb(212,132,10)" rx="2" ry="2" />
<text text-anchor="" x="18.00" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('Pickle::Pickle (6 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>Pickle::Pickle (6 samples, 0.25%)</title><rect x="436.9" y="305" width="3.0" height="15.0" fill="rgb(243,208,19)" rx="2" ry="2" />
<text text-anchor="" x="439.86" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_task_fair (13 samples, 0.55%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (13 samples, 0.55%)</title><rect x="298.2" y="257" width="6.5" height="15.0" fill="rgb(226,112,39)" rx="2" ry="2" />
<text text-anchor="" x="301.24" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_send_events_proc (10 samples, 0.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_send_events_proc (10 samples, 0.42%)</title><rect x="733.1" y="257" width="5.0" height="15.0" fill="rgb(216,39,34)" rx="2" ry="2" />
<text text-anchor="" x="736.11" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (13 samples, 0.55%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (13 samples, 0.55%)</title><rect x="203.2" y="417" width="6.5" height="15.0" fill="rgb(251,27,49)" rx="2" ry="2" />
<text text-anchor="" x="206.16" y="427.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReference::~WeakReference (1 samples, 0.04%)</title><rect x="1089.4" y="337" width="0.5" height="15.0" fill="rgb(210,37,38)" rx="2" ry="2" />
<text text-anchor="" x="1092.41" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator new (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (4 samples, 0.17%)</title><rect x="621.5" y="401" width="2.0" height="15.0" fill="rgb(233,186,18)" rx="2" ry="2" />
<text text-anchor="" x="624.52" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>free (3 samples, 0.13%)</title><rect x="966.3" y="321" width="1.5" height="15.0" fill="rgb(239,57,1)" rx="2" ry="2" />
<text text-anchor="" x="969.31" y="331.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>stop_one_cpu (4 samples, 0.17%)</title><rect x="12.5" y="225" width="2.0" height="15.0" fill="rgb(209,46,33)" rx="2" ry="2" />
<text text-anchor="" x="15.50" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__schedule (77 samples, 3.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (77 samples, 3.27%)</title><rect x="290.2" y="305" width="38.6" height="15.0" fill="rgb(226,73,37)" rx="2" ry="2" />
<text text-anchor="" x="293.24" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__s..</text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::AddRef (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (3 samples, 0.13%)</title><rect x="1091.4" y="337" width="1.5" height="15.0" fill="rgb(232,172,6)" rx="2" ry="2" />
<text text-anchor="" x="1094.42" y="347.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 0.17%)</title><rect x="15.0" y="257" width="2.0" height="15.0" fill="rgb(230,218,13)" rx="2" ry="2" />
<text text-anchor="" x="18.00" y="267.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.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>fget_light (9 samples, 0.38%)</title><rect x="174.6" y="465" width="4.5" height="15.0" fill="rgb(232,169,6)" rx="2" ry="2" />
<text text-anchor="" x="177.64" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('clear_buddies (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>clear_buddies (2 samples, 0.08%)</title><rect x="780.2" y="193" width="1.0" height="15.0" fill="rgb(220,218,42)" rx="2" ry="2" />
<text text-anchor="" x="783.15" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_curr (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (3 samples, 0.13%)</title><rect x="758.6" y="145" width="1.5" height="15.0" fill="rgb(214,78,51)" rx="2" ry="2" />
<text text-anchor="" x="761.63" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_check (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_check (1 samples, 0.04%)</title><rect x="519.9" y="353" width="0.5" height="15.0" fill="rgb(239,101,22)" rx="2" ry="2" />
<text text-anchor="" x="522.93" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_ZN4base8internal19ThreadLocalPlatform16GetValueFromSlotEj@plt (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4base8internal19ThreadLocalPlatform16GetValueFromSlotEj@plt (1 samples, 0.04%)</title><rect x="1054.9" y="209" width="0.5" height="15.0" fill="rgb(249,107,35)" rx="2" ry="2" />
<text text-anchor="" x="1057.89" y="219.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (4 samples, 0.17%)</title><rect x="641.0" y="209" width="2.0" height="15.0" fill="rgb(253,161,51)" rx="2" ry="2" />
<text text-anchor="" x="644.03" y="219.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (2 samples, 0.08%)</title><rect x="875.7" y="81" width="1.0" height="15.0" fill="rgb(207,203,45)" rx="2" ry="2" />
<text text-anchor="" x="878.73" y="91.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_page_fault (1 samples, 0.04%)</title><rect x="1159.0" y="513" width="0.5" height="15.0" fill="rgb(230,66,30)" rx="2" ry="2" />
<text text-anchor="" x="1161.97" y="523.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_comm (4 samples, 0.17%)</title><rect x="10.0" y="417" width="2.0" height="15.0" fill="rgb(217,196,13)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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::AddRef (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (1 samples, 0.04%)</title><rect x="952.8" y="305" width="0.5" height="15.0" fill="rgb(225,222,27)" rx="2" ry="2" />
<text text-anchor="" x="955.80" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::DoIdleWork (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::DoIdleWork (4 samples, 0.17%)</title><rect x="210.7" y="433" width="2.0" height="15.0" fill="rgb(252,16,22)" rx="2" ry="2" />
<text text-anchor="" x="213.67" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('verify_iovec (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>verify_iovec (2 samples, 0.08%)</title><rect x="545.5" y="289" width="1.0" height="15.0" fill="rgb(254,92,4)" rx="2" ry="2" />
<text text-anchor="" x="548.45" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('testing::TestInfo::Run (920 samples, 39.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>testing::TestInfo::Run (920 samples, 39.02%)</title><rect x="641.0" y="449" width="460.4" height="15.0" fill="rgb(249,151,3)" rx="2" ry="2" />
<text text-anchor="" x="644.03" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >testing::TestInfo::Run</text>
</g>
<g class="func_g" onmouseover="s('__schedule (88 samples, 3.73%)')" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (88 samples, 3.73%)</title><rect x="745.1" y="225" width="44.1" height="15.0" fill="rgb(223,59,54)" rx="2" ry="2" />
<text text-anchor="" x="748.12" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__sc..</text>
</g>
<g class="func_g" onmouseover="s('sys_recvmsg (64 samples, 2.71%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_recvmsg (64 samples, 2.71%)</title><rect x="520.9" y="337" width="32.1" height="15.0" fill="rgb(243,3,31)" rx="2" ry="2" />
<text text-anchor="" x="523.93" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sy..</text>
</g>
<g class="func_g" onmouseover="s('unroll_tree_refs (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>unroll_tree_refs (1 samples, 0.04%)</title><rect x="709.6" y="305" width="0.5" height="15.0" fill="rgb(217,203,34)" rx="2" ry="2" />
<text text-anchor="" x="712.59" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_cfs_shares (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (1 samples, 0.04%)</title><rect x="760.1" y="161" width="0.5" height="15.0" fill="rgb(216,165,32)" rx="2" ry="2" />
<text text-anchor="" x="763.14" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('Pickle::Pickle (12 samples, 0.51%)')" onmouseout="c()" onclick="zoom(this)">
<title>Pickle::Pickle (12 samples, 0.51%)</title><rect x="936.3" y="273" width="6.0" height="15.0" fill="rgb(247,45,11)" rx="2" ry="2" />
<text text-anchor="" x="939.28" y="283.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (1 samples, 0.04%)</title><rect x="425.9" y="257" width="0.5" height="15.0" fill="rgb(224,82,30)" rx="2" ry="2" />
<text text-anchor="" x="428.85" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_curr (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (1 samples, 0.04%)</title><rect x="327.8" y="273" width="0.5" height="15.0" fill="rgb(233,40,1)" rx="2" ry="2" />
<text text-anchor="" x="330.77" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('auditsys (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>auditsys (4 samples, 0.17%)</title><rect x="237.7" y="401" width="2.0" height="15.0" fill="rgb(216,129,31)" rx="2" ry="2" />
<text text-anchor="" x="240.69" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_event_context_sched_in (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (1 samples, 0.04%)</title><rect x="307.3" y="257" width="0.5" height="15.0" fill="rgb(232,106,32)" rx="2" ry="2" />
<text text-anchor="" x="310.25" y="267.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock@plt (1 samples, 0.04%)</title><rect x="416.3" y="161" width="0.5" height="15.0" fill="rgb(253,110,21)" rx="2" ry="2" />
<text text-anchor="" x="419.34" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('SYSC_sendto (241 samples, 10.22%)')" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_sendto (241 samples, 10.22%)</title><rect x="59.0" y="497" width="120.6" height="15.0" fill="rgb(223,195,50)" rx="2" ry="2" />
<text text-anchor="" x="62.04" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >SYSC_sendto</text>
</g>
<g class="func_g" onmouseover="s('__run_hrtimer (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__run_hrtimer (1 samples, 0.04%)</title><rect x="749.1" y="145" width="0.5" height="15.0" fill="rgb(214,79,19)" rx="2" ry="2" />
<text text-anchor="" x="752.13" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('current_kernel_time (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>current_kernel_time (2 samples, 0.08%)</title><rect x="512.9" y="337" width="1.0" height="15.0" fill="rgb(247,130,21)" rx="2" ry="2" />
<text text-anchor="" x="515.93" y="347.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_unlink (4 samples, 0.17%)</title><rect x="1006.3" y="177" width="2.0" height="15.0" fill="rgb(225,90,27)" rx="2" ry="2" />
<text text-anchor="" x="1009.34" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('hrtimer_interrupt (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (1 samples, 0.04%)</title><rect x="1088.4" y="273" width="0.5" height="15.0" fill="rgb(232,71,39)" rx="2" ry="2" />
<text text-anchor="" x="1091.41" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::WriteMessage (71 samples, 3.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::WriteMessage (71 samples, 3.01%)</title><rect x="845.7" y="145" width="35.5" height="15.0" fill="rgb(238,167,44)" rx="2" ry="2" />
<text text-anchor="" x="848.71" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >moj..</text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::Release (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (1 samples, 0.04%)</title><rect x="840.2" y="193" width="0.5" height="15.0" fill="rgb(231,168,40)" rx="2" ry="2" />
<text text-anchor="" x="843.20" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::OnLibeventNotification (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::OnLibeventNotification (2 samples, 0.08%)</title><rect x="219.2" y="433" width="1.0" height="15.0" fill="rgb(234,116,19)" rx="2" ry="2" />
<text text-anchor="" x="222.18" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rb_erase (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>rb_erase (1 samples, 0.04%)</title><rect x="320.3" y="273" width="0.5" height="15.0" fill="rgb(233,15,15)" rx="2" ry="2" />
<text text-anchor="" x="323.26" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (4 samples, 0.17%)</title><rect x="191.7" y="225" width="2.0" height="15.0" fill="rgb(231,125,15)" rx="2" ry="2" />
<text text-anchor="" x="194.65" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::AsyncHandleWaiter::Context::MessageWasReceived (13 samples, 0.55%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::AsyncHandleWaiter::Context::MessageWasReceived (13 samples, 0.55%)</title><rect x="1048.4" y="209" width="6.5" height="15.0" fill="rgb(253,11,12)" rx="2" ry="2" />
<text text-anchor="" x="1051.38" y="219.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.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (3 samples, 0.13%)</title><rect x="414.3" y="161" width="1.5" height="15.0" fill="rgb(207,111,52)" rx="2" ry="2" />
<text text-anchor="" x="417.34" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('memset (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>memset (2 samples, 0.08%)</title><rect x="852.7" y="129" width="1.0" height="15.0" fill="rgb(215,147,34)" rx="2" ry="2" />
<text text-anchor="" x="855.71" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('cpuacct_charge (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>cpuacct_charge (1 samples, 0.04%)</title><rect x="759.6" y="129" width="0.5" height="15.0" fill="rgb(221,145,37)" rx="2" ry="2" />
<text text-anchor="" x="762.64" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call (1 samples, 0.04%)</title><rect x="710.6" y="321" width="0.5" height="15.0" fill="rgb(226,65,30)" rx="2" ry="2" />
<text text-anchor="" x="713.59" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::WriteMessage (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::WriteMessage (5 samples, 0.21%)</title><rect x="417.3" y="177" width="2.5" height="15.0" fill="rgb(235,44,13)" rx="2" ry="2" />
<text text-anchor="" x="420.35" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Dispatcher::WriteMessage (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Dispatcher::WriteMessage (5 samples, 0.21%)</title><rect x="427.4" y="273" width="2.5" height="15.0" fill="rgb(254,177,7)" rx="2" ry="2" />
<text text-anchor="" x="430.35" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_entity (10 samples, 0.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (10 samples, 0.42%)</title><rect x="299.2" y="241" width="5.0" height="15.0" fill="rgb(235,121,19)" rx="2" ry="2" />
<text text-anchor="" x="302.25" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::OnReadMessage (40 samples, 1.70%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::OnReadMessage (40 samples, 1.70%)</title><rect x="576.5" y="321" width="20.0" height="15.0" fill="rgb(219,128,42)" rx="2" ry="2" />
<text text-anchor="" x="579.48" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call (2 samples, 0.08%)</title><rect x="27.5" y="513" width="1.0" height="15.0" fill="rgb(241,130,35)" rx="2" ry="2" />
<text text-anchor="" x="30.51" y="523.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 (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::string::_M_replace_safe (3 samples, 0.13%)</title><rect x="915.8" y="241" width="1.5" height="15.0" fill="rgb(234,56,47)" rx="2" ry="2" />
<text text-anchor="" x="918.77" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (1 samples, 0.04%)</title><rect x="172.1" y="385" width="0.5" height="15.0" fill="rgb(208,152,7)" rx="2" ry="2" />
<text text-anchor="" x="175.14" y="395.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>epoll_wait (1 samples, 0.04%)</title><rect x="632.5" y="417" width="0.5" height="15.0" fill="rgb(215,19,27)" rx="2" ry="2" />
<text text-anchor="" x="635.53" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('hrtimer_interrupt (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (1 samples, 0.04%)</title><rect x="749.1" y="161" width="0.5" height="15.0" fill="rgb(205,208,27)" rx="2" ry="2" />
<text text-anchor="" x="752.13" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_ZdlPv@plt (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZdlPv@plt (2 samples, 0.08%)</title><rect x="344.8" y="401" width="1.0" height="15.0" fill="rgb(252,4,54)" rx="2" ry="2" />
<text text-anchor="" x="347.78" y="411.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>Pickle::WriteString (4 samples, 0.17%)</title><rect x="460.4" y="337" width="2.0" height="15.0" fill="rgb(221,220,19)" rx="2" ry="2" />
<text text-anchor="" x="463.38" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('process_measurement (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>process_measurement (1 samples, 0.04%)</title><rect x="1120.4" y="417" width="0.5" height="15.0" fill="rgb(207,147,50)" rx="2" ry="2" />
<text text-anchor="" x="1123.44" 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 (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::WriteMessage (1 samples, 0.04%)</title><rect x="377.8" y="241" width="0.5" height="15.0" fill="rgb(241,35,3)" rx="2" ry="2" />
<text text-anchor="" x="380.81" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_send_events_proc (13 samples, 0.55%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_send_events_proc (13 samples, 0.55%)</title><rect x="280.2" y="337" width="6.5" height="15.0" fill="rgb(230,15,12)" rx="2" ry="2" />
<text text-anchor="" x="283.23" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mutex_lock (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>mutex_lock (1 samples, 0.04%)</title><rect x="286.7" y="337" width="0.5" height="15.0" fill="rgb(232,107,36)" rx="2" ry="2" />
<text text-anchor="" x="289.73" y="347.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.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_write_space (9 samples, 0.38%)</title><rect x="535.4" y="177" width="4.5" height="15.0" fill="rgb(229,138,39)" rx="2" ry="2" />
<text text-anchor="" x="538.45" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::Message::HasAttachments (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::Message::HasAttachments (4 samples, 0.17%)</title><rect x="367.3" y="289" width="2.0" height="15.0" fill="rgb(241,202,23)" rx="2" ry="2" />
<text text-anchor="" x="370.30" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_free_head (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_free_head (2 samples, 0.08%)</title><rect x="531.9" y="209" width="1.0" height="15.0" fill="rgb(222,167,10)" rx="2" ry="2" />
<text text-anchor="" x="534.94" y="219.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_process_times (1 samples, 0.04%)</title><rect x="100.1" y="321" width="0.5" height="15.0" fill="rgb(248,94,41)" rx="2" ry="2" />
<text text-anchor="" x="103.08" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_recvmsg (45 samples, 1.91%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (45 samples, 1.91%)</title><rect x="522.9" y="289" width="22.6" height="15.0" fill="rgb(231,46,24)" rx="2" ry="2" />
<text text-anchor="" x="525.93" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (2 samples, 0.08%)</title><rect x="1007.3" y="161" width="1.0" height="15.0" fill="rgb(249,114,35)" rx="2" ry="2" />
<text text-anchor="" x="1010.35" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (106 samples, 4.50%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (106 samples, 4.50%)</title><rect x="976.8" y="305" width="53.1" height="15.0" fill="rgb(227,12,7)" rx="2" ry="2" />
<text text-anchor="" x="979.82" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo:..</text>
</g>
<g class="func_g" onmouseover="s('Pickle::~Pickle (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>Pickle::~Pickle (1 samples, 0.04%)</title><rect x="433.4" y="305" width="0.5" height="15.0" fill="rgb(206,207,51)" rx="2" ry="2" />
<text text-anchor="" x="436.36" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::OnReadMessage (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::OnReadMessage (3 samples, 0.13%)</title><rect x="575.0" y="321" width="1.5" height="15.0" fill="rgb(226,148,0)" rx="2" ry="2" />
<text text-anchor="" x="577.98" y="331.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>handle_mm_fault (1 samples, 0.04%)</title><rect x="12.0" y="177" width="0.5" height="15.0" fill="rgb(205,136,16)" rx="2" ry="2" />
<text text-anchor="" x="15.00" 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 (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (5 samples, 0.21%)</title><rect x="765.6" y="177" width="2.5" height="15.0" fill="rgb(237,7,5)" rx="2" ry="2" />
<text text-anchor="" x="768.64" y="187.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>setup_new_exec (4 samples, 0.17%)</title><rect x="10.0" y="449" width="2.0" height="15.0" fill="rgb(252,197,27)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_recvmsg_handler (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg_handler (1 samples, 0.04%)</title><rect x="1014.4" y="193" width="0.5" height="15.0" fill="rgb(245,5,39)" rx="2" ry="2" />
<text text-anchor="" x="1017.35" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree (3 samples, 0.13%)</title><rect x="46.5" y="497" width="1.5" height="15.0" fill="rgb(209,64,17)" rx="2" ry="2" />
<text text-anchor="" x="49.53" 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 (242 samples, 10.26%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelMojo::OnMessageReceived (242 samples, 10.26%)</title><rect x="354.8" y="353" width="121.1" height="15.0" fill="rgb(240,210,9)" rx="2" ry="2" />
<text text-anchor="" x="357.79" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IPC::ChannelMoj..</text>
</g>
<g class="func_g" onmouseover="s('all (2,358 samples, 100%)')" onmouseout="c()" onclick="zoom(this)">
<title>all (2,358 samples, 100%)</title><rect x="10.0" y="577" width="1180.0" height="15.0" fill="rgb(210,155,4)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_wfree (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_wfree (4 samples, 0.17%)</title><rect x="998.3" y="113" width="2.0" height="15.0" fill="rgb(224,62,6)" rx="2" ry="2" />
<text text-anchor="" x="1001.34" y="123.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>handle_mm_fault (1 samples, 0.04%)</title><rect x="1159.0" y="481" width="0.5" height="15.0" fill="rgb(211,176,38)" rx="2" ry="2" />
<text text-anchor="" x="1161.97" y="491.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (4 samples, 0.17%)</title><rect x="503.4" y="401" width="2.0" height="15.0" fill="rgb(229,81,28)" rx="2" ry="2" />
<text text-anchor="" x="506.42" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator delete (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator delete (2 samples, 0.08%)</title><rect x="1084.4" y="321" width="1.0" height="15.0" fill="rgb(212,228,45)" rx="2" ry="2" />
<text text-anchor="" x="1087.41" 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::Release (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (5 samples, 0.21%)</title><rect x="963.8" y="321" width="2.5" height="15.0" fill="rgb(217,168,41)" rx="2" ry="2" />
<text text-anchor="" x="966.81" y="331.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.17%)</title><rect x="12.5" y="97" width="2.0" height="15.0" fill="rgb(217,79,29)" rx="2" ry="2" />
<text text-anchor="" x="15.50" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (23 samples, 0.98%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (23 samples, 0.98%)</title><rect x="697.1" y="305" width="11.5" height="15.0" fill="rgb(209,127,53)" rx="2" ry="2" />
<text text-anchor="" x="700.08" y="315.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>setup_arg_pages (1 samples, 0.04%)</title><rect x="30.5" y="449" width="0.5" height="15.0" fill="rgb(253,160,45)" rx="2" ry="2" />
<text text-anchor="" x="33.52" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('x86_pmu_enable (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (2 samples, 0.08%)</title><rect x="765.6" y="145" width="1.0" height="15.0" fill="rgb(228,91,41)" rx="2" ry="2" />
<text text-anchor="" x="768.64" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apic_timer_interrupt (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.04%)</title><rect x="100.1" y="433" width="0.5" height="15.0" fill="rgb(214,123,31)" rx="2" ry="2" />
<text text-anchor="" x="103.08" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::WriteMessage (23 samples, 0.98%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::WriteMessage (23 samples, 0.98%)</title><rect x="864.2" y="81" width="11.5" height="15.0" fill="rgb(241,11,25)" rx="2" ry="2" />
<text text-anchor="" x="867.22" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::OnReadMessage (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::OnReadMessage (4 samples, 0.17%)</title><rect x="596.5" y="337" width="2.0" height="15.0" fill="rgb(210,11,2)" rx="2" ry="2" />
<text text-anchor="" x="599.50" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rb_insert_color (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>rb_insert_color (1 samples, 0.04%)</title><rect x="134.1" y="225" width="0.5" height="15.0" fill="rgb(213,115,23)" rx="2" ry="2" />
<text text-anchor="" x="137.11" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (1 samples, 0.04%)</title><rect x="1120.4" y="513" width="0.5" height="15.0" fill="rgb(244,54,38)" rx="2" ry="2" />
<text text-anchor="" x="1123.44" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__perf_event_task_sched_out (19 samples, 0.81%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_out (19 samples, 0.81%)</title><rect x="308.8" y="273" width="9.5" height="15.0" fill="rgb(246,181,17)" rx="2" ry="2" />
<text text-anchor="" x="311.75" y="283.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReference::~WeakReference (1 samples, 0.04%)</title><rect x="956.3" y="321" width="0.5" height="15.0" fill="rgb(231,22,47)" rx="2" ry="2" />
<text text-anchor="" x="959.30" 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 (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (2 samples, 0.08%)</title><rect x="33.5" y="497" width="1.0" height="15.0" fill="rgb(239,78,7)" rx="2" ry="2" />
<text text-anchor="" x="36.52" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_task (17 samples, 0.72%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task (17 samples, 0.72%)</title><rect x="297.7" y="273" width="8.6" height="15.0" fill="rgb(232,24,42)" rx="2" ry="2" />
<text text-anchor="" x="300.74" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__enqueue_entity (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__enqueue_entity (1 samples, 0.04%)</title><rect x="788.2" y="193" width="0.5" height="15.0" fill="rgb(241,93,38)" rx="2" ry="2" />
<text text-anchor="" x="791.16" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipeDispatcher::WriteMessageImplNoLock (74 samples, 3.14%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipeDispatcher::WriteMessageImplNoLock (74 samples, 3.14%)</title><rect x="844.7" y="161" width="37.0" height="15.0" fill="rgb(212,66,41)" rx="2" ry="2" />
<text text-anchor="" x="847.71" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >moj..</text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (14 samples, 0.59%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (14 samples, 0.59%)</title><rect x="39.5" y="497" width="7.0" height="15.0" fill="rgb(218,151,17)" rx="2" ry="2" />
<text text-anchor="" x="42.53" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::DoWork (8 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::DoWork (8 samples, 0.34%)</title><rect x="212.7" y="433" width="4.0" height="15.0" fill="rgb(227,33,39)" rx="2" ry="2" />
<text text-anchor="" x="215.67" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_free_head (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_free_head (1 samples, 0.04%)</title><rect x="996.8" y="129" width="0.5" height="15.0" fill="rgb(230,69,40)" rx="2" ry="2" />
<text text-anchor="" x="999.84" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('task_waking_fair (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>task_waking_fair (1 samples, 0.04%)</title><rect x="110.1" y="337" width="0.5" height="15.0" fill="rgb(226,14,47)" rx="2" ry="2" />
<text text-anchor="" x="113.08" y="347.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (2 samples, 0.08%)</title><rect x="215.7" y="417" width="1.0" height="15.0" fill="rgb(208,220,10)" rx="2" ry="2" />
<text text-anchor="" x="218.67" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rb_insert_color (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>rb_insert_color (1 samples, 0.04%)</title><rect x="137.1" y="241" width="0.5" height="15.0" fill="rgb(238,147,25)" rx="2" ry="2" />
<text text-anchor="" x="140.11" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sockfd_lookup_light (8 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>sockfd_lookup_light (8 samples, 0.34%)</title><rect x="1017.9" y="225" width="4.0" height="15.0" fill="rgb(254,208,15)" rx="2" ry="2" />
<text text-anchor="" x="1020.85" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_ZN3IPC11ChannelMojo17OnMessageReceivedERNS_7MessageE@plt (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZN3IPC11ChannelMojo17OnMessageReceivedERNS_7MessageE@plt (1 samples, 0.04%)</title><rect x="942.3" y="289" width="0.5" height="15.0" fill="rgb(209,49,0)" rx="2" ry="2" />
<text text-anchor="" x="945.29" 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::HasOneRef (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::HasOneRef (1 samples, 0.04%)</title><rect x="948.3" y="305" width="0.5" height="15.0" fill="rgb(224,168,22)" rx="2" ry="2" />
<text text-anchor="" x="951.30" 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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (1 samples, 0.04%)</title><rect x="370.8" y="273" width="0.5" height="15.0" fill="rgb(214,205,42)" rx="2" ry="2" />
<text text-anchor="" x="373.81" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_ZN3IPC11ChannelMojo17OnMessageReceivedERNS_7MessageE@plt (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZN3IPC11ChannelMojo17OnMessageReceivedERNS_7MessageE@plt (2 samples, 0.08%)</title><rect x="478.9" y="369" width="1.0" height="15.0" fill="rgb(244,0,45)" rx="2" ry="2" />
<text text-anchor="" x="481.90" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('MojoWriteMessage (101 samples, 4.28%)')" onmouseout="c()" onclick="zoom(this)">
<title>MojoWriteMessage (101 samples, 4.28%)</title><rect x="838.2" y="209" width="50.5" height="15.0" fill="rgb(249,179,8)" rx="2" ry="2" />
<text text-anchor="" x="841.20" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >MojoW..</text>
</g>
<g class="func_g" onmouseover="s('free@plt (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>free@plt (1 samples, 0.04%)</title><rect x="865.2" y="65" width="0.5" height="15.0" fill="rgb(218,175,26)" rx="2" ry="2" />
<text text-anchor="" x="868.22" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::WeakReferenceOwner::GetRef (8 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReferenceOwner::GetRef (8 samples, 0.34%)</title><rect x="625.0" y="417" width="4.0" height="15.0" fill="rgb(236,153,11)" rx="2" ry="2" />
<text text-anchor="" x="628.02" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mutex_lock_interruptible (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>mutex_lock_interruptible (2 samples, 0.08%)</title><rect x="1001.3" y="177" width="1.0" height="15.0" fill="rgb(250,208,37)" rx="2" ry="2" />
<text text-anchor="" x="1004.34" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('memcpy_fromiovecend (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>memcpy_fromiovecend (4 samples, 0.17%)</title><rect x="83.6" y="433" width="2.0" height="15.0" fill="rgb(207,69,42)" rx="2" ry="2" />
<text text-anchor="" x="86.56" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::WillProcessIOEvent (8 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::WillProcessIOEvent (8 samples, 0.34%)</title><rect x="487.4" y="401" width="4.0" height="15.0" fill="rgb(205,111,29)" rx="2" ry="2" />
<text text-anchor="" x="490.40" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unroll_tree_refs (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>unroll_tree_refs (1 samples, 0.04%)</title><rect x="48.0" y="497" width="0.5" height="15.0" fill="rgb(221,10,21)" rx="2" ry="2" />
<text text-anchor="" x="51.03" y="507.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:: (220 samples, 9.33%)')" onmouseout="c()" onclick="zoom(this)">
<title>non-virtual thunk to mojo::system:: (220 samples, 9.33%)</title><rect x="974.3" y="321" width="110.1" height="15.0" fill="rgb(226,110,28)" rx="2" ry="2" />
<text text-anchor="" x="977.32" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >non-virtual t..</text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::AsyncHandleWaiter::Context::MessageWasReceived (19 samples, 0.81%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::AsyncHandleWaiter::Context::MessageWasReceived (19 samples, 0.81%)</title><rect x="579.5" y="289" width="9.5" height="15.0" fill="rgb(215,13,9)" rx="2" ry="2" />
<text text-anchor="" x="582.48" y="299.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::TimeTicks::NowFromSystemTraceTime (1 samples, 0.04%)</title><rect x="911.3" y="241" width="0.5" height="15.0" fill="rgb(249,179,48)" rx="2" ry="2" />
<text text-anchor="" x="914.26" y="251.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::RunnableAdapterbool (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::InvokerIndexSequence0ul, base::internal::BindStatebase::internal::RunnableAdapterbool (2 samples, 0.08%)</title><rect x="578.0" y="305" width="1.0" height="15.0" fill="rgb(234,66,13)" rx="2" ry="2" />
<text text-anchor="" x="580.98" 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 (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_ops_list_func (5 samples, 0.21%)</title><rect x="548.5" y="289" width="2.5" height="15.0" fill="rgb(252,95,10)" rx="2" ry="2" />
<text text-anchor="" x="551.46" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_alloc_send_pskb (31 samples, 1.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_alloc_send_pskb (31 samples, 1.31%)</title><rect x="87.1" y="449" width="15.5" height="15.0" fill="rgb(224,49,8)" rx="2" ry="2" />
<text text-anchor="" x="90.07" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (10 samples, 0.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (10 samples, 0.42%)</title><rect x="12.0" y="337" width="5.0" height="15.0" fill="rgb(227,167,5)" rx="2" ry="2" />
<text text-anchor="" x="15.00" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (6 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (6 samples, 0.25%)</title><rect x="396.8" y="161" width="3.0" height="15.0" fill="rgb(250,210,29)" rx="2" ry="2" />
<text text-anchor="" x="399.83" y="171.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>mutex_unlock (1 samples, 0.04%)</title><rect x="524.9" y="273" width="0.5" height="15.0" fill="rgb(217,16,22)" rx="2" ry="2" />
<text text-anchor="" x="527.94" y="283.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 (21 samples, 0.89%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_out (21 samples, 0.89%)</title><rect x="769.1" y="193" width="10.6" height="15.0" fill="rgb(246,150,20)" rx="2" ry="2" />
<text text-anchor="" x="772.14" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pthread_enable_asynccancel (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_enable_asynccancel (3 samples, 0.13%)</title><rect x="557.0" y="369" width="1.5" height="15.0" fill="rgb(216,76,7)" rx="2" ry="2" />
<text text-anchor="" x="559.96" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (10 samples, 0.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (10 samples, 0.42%)</title><rect x="12.0" y="353" width="5.0" height="15.0" fill="rgb(249,184,5)" rx="2" ry="2" />
<text text-anchor="" x="15.00" y="363.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_disable_asynccancel (2 samples, 0.08%)</title><rect x="556.0" y="369" width="1.0" height="15.0" fill="rgb(249,99,27)" rx="2" ry="2" />
<text text-anchor="" x="558.96" y="379.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReference::~WeakReference (1 samples, 0.04%)</title><rect x="952.3" y="305" width="0.5" height="15.0" fill="rgb(214,53,2)" rx="2" ry="2" />
<text text-anchor="" x="955.30" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_epoll_wait (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (3 samples, 0.13%)</title><rect x="239.7" y="401" width="1.5" height="15.0" fill="rgb(205,130,14)" rx="2" ry="2" />
<text text-anchor="" x="242.69" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::Message::Message (17 samples, 0.72%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::Message::Message (17 samples, 0.72%)</title><rect x="894.2" y="241" width="8.6" height="15.0" fill="rgb(230,122,41)" rx="2" ry="2" />
<text text-anchor="" x="897.25" y="251.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>wait_for_completion (4 samples, 0.17%)</title><rect x="12.5" y="209" width="2.0" height="15.0" fill="rgb(240,216,42)" rx="2" ry="2" />
<text text-anchor="" x="15.50" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('auditsys (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>auditsys (4 samples, 0.17%)</title><rect x="694.1" y="321" width="2.0" height="15.0" fill="rgb(220,164,42)" rx="2" ry="2" />
<text text-anchor="" x="697.08" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (5 samples, 0.21%)</title><rect x="267.7" y="353" width="2.5" height="15.0" fill="rgb(206,127,1)" rx="2" ry="2" />
<text text-anchor="" x="270.72" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apparmor_socket_sendmsg (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_sendmsg (3 samples, 0.13%)</title><rect x="63.0" y="465" width="1.5" height="15.0" fill="rgb(217,227,21)" rx="2" ry="2" />
<text text-anchor="" x="66.04" y="475.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.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (3 samples, 0.13%)</title><rect x="607.5" y="353" width="1.5" height="15.0" fill="rgb(251,46,8)" rx="2" ry="2" />
<text text-anchor="" x="610.51" y="363.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_inodes (2 samples, 0.08%)</title><rect x="252.2" y="385" width="1.0" height="15.0" fill="rgb(212,24,15)" rx="2" ry="2" />
<text text-anchor="" x="255.21" 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::OnReadMessageForEndpoint (56 samples, 2.37%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::OnReadMessageForEndpoint (56 samples, 2.37%)</title><rect x="571.5" y="353" width="28.0" height="15.0" fill="rgb(248,17,39)" rx="2" ry="2" />
<text text-anchor="" x="574.48" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >m..</text>
</g>
<g class="func_g" onmouseover="s('__sys_recvmsg (64 samples, 2.71%)')" onmouseout="c()" onclick="zoom(this)">
<title>__sys_recvmsg (64 samples, 2.71%)</title><rect x="520.9" y="321" width="32.1" height="15.0" fill="rgb(227,188,18)" rx="2" ry="2" />
<text text-anchor="" x="523.93" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__..</text>
</g>
<g class="func_g" onmouseover="s('schedule_hrtimeout_range_clock (81 samples, 3.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (81 samples, 3.44%)</title><rect x="288.7" y="337" width="40.6" height="15.0" fill="rgb(219,193,16)" rx="2" ry="2" />
<text text-anchor="" x="291.74" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sch..</text>
</g>
<g class="func_g" onmouseover="s('__memcpy_sse2_unaligned (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_sse2_unaligned (2 samples, 0.08%)</title><rect x="848.2" y="129" width="1.0" height="15.0" fill="rgb(250,83,32)" rx="2" ry="2" />
<text text-anchor="" x="851.21" y="139.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.30%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (7 samples, 0.30%)</title><rect x="775.6" y="113" width="3.6" height="15.0" fill="rgb(254,137,18)" rx="2" ry="2" />
<text text-anchor="" x="778.65" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mem_cgroup_charge_common (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>mem_cgroup_charge_common (1 samples, 0.04%)</title><rect x="12.0" y="145" width="0.5" height="15.0" fill="rgb(253,61,33)" rx="2" ry="2" />
<text text-anchor="" x="15.00" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::ProcessNextDelayedNonNestableTask (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::ProcessNextDelayedNonNestableTask (4 samples, 0.17%)</title><rect x="210.7" y="417" width="2.0" height="15.0" fill="rgb(252,226,38)" rx="2" ry="2" />
<text text-anchor="" x="213.67" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::OnReadMessage (44 samples, 1.87%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::OnReadMessage (44 samples, 1.87%)</title><rect x="574.5" y="337" width="22.0" height="15.0" fill="rgb(234,101,54)" rx="2" ry="2" />
<text text-anchor="" x="577.48" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >m..</text>
</g>
<g class="func_g" onmouseover="s('_Znwm@plt (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>_Znwm@plt (2 samples, 0.08%)</title><rect x="927.8" y="257" width="1.0" height="15.0" fill="rgb(253,16,25)" rx="2" ry="2" />
<text text-anchor="" x="930.78" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_entry (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (2 samples, 0.08%)</title><rect x="979.8" y="257" width="1.0" height="15.0" fill="rgb(231,70,53)" rx="2" ry="2" />
<text text-anchor="" x="982.82" y="267.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_read_tsc (1 samples, 0.04%)</title><rect x="156.1" y="225" width="0.5" height="15.0" fill="rgb(240,142,4)" rx="2" ry="2" />
<text text-anchor="" x="159.12" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_curr (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (5 samples, 0.21%)</title><rect x="142.1" y="225" width="2.5" height="15.0" fill="rgb(213,37,29)" rx="2" ry="2" />
<text text-anchor="" x="145.11" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (1 samples, 0.04%)</title><rect x="51.0" y="449" width="0.5" height="15.0" fill="rgb(205,19,8)" rx="2" ry="2" />
<text text-anchor="" x="54.03" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system:: (105 samples, 4.45%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system:: (105 samples, 4.45%)</title><rect x="508.4" y="385" width="52.6" height="15.0" fill="rgb(228,95,0)" rx="2" ry="2" />
<text text-anchor="" x="511.42" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo:..</text>
</g>
<g class="func_g" onmouseover="s('sysret_check (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_check (2 samples, 0.08%)</title><rect x="52.5" y="529" width="1.0" height="15.0" fill="rgb(234,63,11)" rx="2" ry="2" />
<text text-anchor="" x="55.54" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__clock_gettime (6 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>__clock_gettime (6 samples, 0.25%)</title><rect x="907.8" y="241" width="3.0" height="15.0" fill="rgb(251,99,7)" rx="2" ry="2" />
<text text-anchor="" x="910.76" y="251.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>scheduler_tick (1 samples, 0.04%)</title><rect x="1088.4" y="193" width="0.5" height="15.0" fill="rgb(230,220,23)" rx="2" ry="2" />
<text text-anchor="" x="1091.41" y="203.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (1 samples, 0.04%)</title><rect x="811.7" y="321" width="0.5" height="15.0" fill="rgb(221,141,24)" rx="2" ry="2" />
<text text-anchor="" x="814.68" y="331.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::IncomingTaskQueue::ReloadWorkQueue (1 samples, 0.04%)</title><rect x="669.6" y="337" width="0.5" height="15.0" fill="rgb(230,15,19)" rx="2" ry="2" />
<text text-anchor="" x="672.56" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::OnReadMessage (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::OnReadMessage (1 samples, 0.04%)</title><rect x="561.0" y="385" width="0.5" height="15.0" fill="rgb(243,196,5)" rx="2" ry="2" />
<text text-anchor="" x="563.97" y="395.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (4 samples, 0.17%)</title><rect x="641.0" y="225" width="2.0" height="15.0" fill="rgb(205,134,43)" rx="2" ry="2" />
<text text-anchor="" x="644.03" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.04%)</title><rect x="537.9" y="113" width="0.5" height="15.0" fill="rgb(254,7,36)" rx="2" ry="2" />
<text text-anchor="" x="540.95" 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 (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (4 samples, 0.17%)</title><rect x="12.5" y="65" width="2.0" height="15.0" fill="rgb(235,19,15)" rx="2" ry="2" />
<text text-anchor="" x="15.50" y="75.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>kretprobe_trampoline (4 samples, 0.17%)</title><rect x="10.0" y="529" width="2.0" height="15.0" fill="rgb(226,184,30)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('std::string::_M_mutate (12 samples, 0.51%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::string::_M_mutate (12 samples, 0.51%)</title><rect x="1180.5" y="545" width="6.0" height="15.0" fill="rgb(250,65,19)" rx="2" ry="2" />
<text text-anchor="" x="1183.49" 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_in (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (3 samples, 0.13%)</title><rect x="306.8" y="273" width="1.5" height="15.0" fill="rgb(233,150,52)" rx="2" ry="2" />
<text text-anchor="" x="309.75" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('security_socket_sendmsg (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_sendmsg (1 samples, 0.04%)</title><rect x="61.0" y="481" width="0.5" height="15.0" fill="rgb(215,186,40)" rx="2" ry="2" />
<text text-anchor="" x="64.04" y="491.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 (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::AsyncHandleWaiter::Context::DidProcessIOEvent (1 samples, 0.04%)</title><rect x="341.3" y="401" width="0.5" height="15.0" fill="rgb(253,163,47)" rx="2" ry="2" />
<text text-anchor="" x="344.28" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('aa_revalidate_sk (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>aa_revalidate_sk (5 samples, 0.21%)</title><rect x="64.5" y="449" width="2.5" height="15.0" fill="rgb(212,38,41)" rx="2" ry="2" />
<text text-anchor="" x="67.55" y="459.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 (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::View::IsValid (3 samples, 0.13%)</title><rect x="616.0" y="369" width="1.5" height="15.0" fill="rgb(221,38,47)" rx="2" ry="2" />
<text text-anchor="" x="619.01" 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 (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (3 samples, 0.13%)</title><rect x="34.5" y="513" width="1.5" height="15.0" fill="rgb(205,150,1)" rx="2" ry="2" />
<text text-anchor="" x="37.52" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_cfs_shares (13 samples, 0.55%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (13 samples, 0.55%)</title><rect x="138.1" y="241" width="6.5" height="15.0" fill="rgb(234,156,48)" rx="2" ry="2" />
<text text-anchor="" x="141.11" y="251.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>rb_erase (2 samples, 0.08%)</title><rect x="781.2" y="193" width="1.0" height="15.0" fill="rgb(235,189,44)" rx="2" ry="2" />
<text text-anchor="" x="784.15" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('check_preempt_wakeup (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>check_preempt_wakeup (3 samples, 0.13%)</title><rect x="165.1" y="289" width="1.5" height="15.0" fill="rgb(225,228,10)" rx="2" ry="2" />
<text text-anchor="" x="168.13" 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 (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (2 samples, 0.08%)</title><rect x="114.1" y="321" width="1.0" height="15.0" fill="rgb(251,134,6)" rx="2" ry="2" />
<text text-anchor="" x="117.09" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessageInTransit::MessageInTransit (10 samples, 0.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::MessageInTransit (10 samples, 0.42%)</title><rect x="854.7" y="129" width="5.0" height="15.0" fill="rgb(212,167,31)" rx="2" ry="2" />
<text text-anchor="" x="857.72" y="139.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (4 samples, 0.17%)</title><rect x="12.5" y="129" width="2.0" height="15.0" fill="rgb(226,124,47)" rx="2" ry="2" />
<text text-anchor="" x="15.50" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('current_kernel_time (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>current_kernel_time (1 samples, 0.04%)</title><rect x="512.4" y="321" width="0.5" height="15.0" fill="rgb(213,162,26)" rx="2" ry="2" />
<text text-anchor="" x="515.43" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (2 samples, 0.08%)</title><rect x="1065.4" y="257" width="1.0" height="15.0" fill="rgb(215,22,24)" rx="2" ry="2" />
<text text-anchor="" x="1068.39" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('MojoWriteMessage (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>MojoWriteMessage (5 samples, 0.21%)</title><rect x="889.2" y="225" width="2.5" height="15.0" fill="rgb(252,118,6)" rx="2" ry="2" />
<text text-anchor="" x="892.25" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::IncomingTaskQueue::ReloadWorkQueue (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::IncomingTaskQueue::ReloadWorkQueue (4 samples, 0.17%)</title><rect x="673.1" y="353" width="2.0" height="15.0" fill="rgb(213,151,45)" rx="2" ry="2" />
<text text-anchor="" x="676.06" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('epoll_wait (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>epoll_wait (2 samples, 0.08%)</title><rect x="1095.9" y="337" width="1.0" height="15.0" fill="rgb(210,114,34)" rx="2" ry="2" />
<text text-anchor="" x="1098.92" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irq (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irq (1 samples, 0.04%)</title><rect x="748.6" y="209" width="0.5" height="15.0" fill="rgb(231,18,37)" rx="2" ry="2" />
<text text-anchor="" x="751.63" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apic_timer_interrupt (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.04%)</title><rect x="1088.4" y="321" width="0.5" height="15.0" fill="rgb(251,223,29)" rx="2" ry="2" />
<text text-anchor="" x="1091.41" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('aa_revalidate_sk (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>aa_revalidate_sk (4 samples, 0.17%)</title><rect x="525.4" y="257" width="2.0" height="15.0" fill="rgb(225,60,30)" rx="2" ry="2" />
<text text-anchor="" x="528.44" y="267.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelMojo::Send (2 samples, 0.08%)</title><rect x="357.3" y="337" width="1.0" height="15.0" fill="rgb(207,9,13)" rx="2" ry="2" />
<text text-anchor="" x="360.29" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::WeakReferenceOwner::GetRef (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReferenceOwner::GetRef (1 samples, 0.04%)</title><rect x="946.8" y="305" width="0.5" height="15.0" fill="rgb(210,152,48)" rx="2" ry="2" />
<text text-anchor="" x="949.79" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ctx_sched_out (13 samples, 0.55%)')" onmouseout="c()" onclick="zoom(this)">
<title>ctx_sched_out (13 samples, 0.55%)</title><rect x="772.6" y="177" width="6.6" height="15.0" fill="rgb(225,225,52)" rx="2" ry="2" />
<text text-anchor="" x="775.65" y="187.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.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_enable_asynccancel (5 samples, 0.21%)</title><rect x="335.3" y="417" width="2.5" height="15.0" fill="rgb(239,180,48)" rx="2" ry="2" />
<text text-anchor="" x="338.28" 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 (20 samples, 0.85%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_task_sched_out (20 samples, 0.85%)</title><rect x="308.3" y="289" width="10.0" height="15.0" fill="rgb(237,68,23)" rx="2" ry="2" />
<text text-anchor="" x="311.25" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mmap64 (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>mmap64 (1 samples, 0.04%)</title><rect x="1120.4" y="529" width="0.5" height="15.0" fill="rgb(217,101,22)" rx="2" ry="2" />
<text text-anchor="" x="1123.44" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_wall_time (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_wall_time (1 samples, 0.04%)</title><rect x="749.1" y="65" width="0.5" height="15.0" fill="rgb(246,104,32)" rx="2" ry="2" />
<text text-anchor="" x="752.13" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::embedder::PlatformChannelRecvmsg (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::embedder::PlatformChannelRecvmsg (5 samples, 0.21%)</title><rect x="558.5" y="369" width="2.5" height="15.0" fill="rgb(239,9,33)" rx="2" ry="2" />
<text text-anchor="" x="561.46" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_ops_test (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_ops_test (1 samples, 0.04%)</title><rect x="190.2" y="481" width="0.5" height="15.0" fill="rgb(239,90,28)" rx="2" ry="2" />
<text text-anchor="" x="193.15" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ep_poll (138 samples, 5.85%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (138 samples, 5.85%)</title><rect x="260.2" y="369" width="69.1" height="15.0" fill="rgb(219,207,35)" rx="2" ry="2" />
<text text-anchor="" x="263.21" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ep_poll</text>
</g>
<g class="func_g" onmouseover="s('free (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>free (1 samples, 0.04%)</title><rect x="893.2" y="225" width="0.5" height="15.0" fill="rgb(219,127,25)" rx="2" ry="2" />
<text text-anchor="" x="896.25" y="235.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 (7 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_rq_clock.part.63 (7 samples, 0.30%)</title><rect x="154.1" y="273" width="3.5" height="15.0" fill="rgb(213,95,53)" rx="2" ry="2" />
<text text-anchor="" x="157.12" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (10 samples, 0.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (10 samples, 0.42%)</title><rect x="12.0" y="481" width="5.0" height="15.0" fill="rgb(217,114,43)" rx="2" ry="2" />
<text text-anchor="" x="15.00" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('main (1,818 samples, 77.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>main (1,818 samples, 77.10%)</title><rect x="191.7" y="529" width="909.7" height="15.0" fill="rgb(222,181,14)" rx="2" ry="2" />
<text text-anchor="" x="194.65" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >main</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::OnReadMessage (47 samples, 1.99%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::OnReadMessage (47 samples, 1.99%)</title><rect x="1041.9" y="257" width="23.5" height="15.0" fill="rgb(209,63,3)" rx="2" ry="2" />
<text text-anchor="" x="1044.87" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >m..</text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (1 samples, 0.04%)</title><rect x="419.8" y="177" width="0.5" height="15.0" fill="rgb(211,225,14)" rx="2" ry="2" />
<text text-anchor="" x="422.85" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__kmalloc_reserve.isra.26 (7 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_reserve.isra.26 (7 samples, 0.30%)</title><rect x="92.6" y="417" width="3.5" height="15.0" fill="rgb(219,171,0)" rx="2" ry="2" />
<text text-anchor="" x="95.57" y="427.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (1 samples, 0.04%)</title><rect x="1100.9" y="369" width="0.5" height="15.0" fill="rgb(230,138,18)" rx="2" ry="2" />
<text text-anchor="" x="1103.92" 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 (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (3 samples, 0.13%)</title><rect x="537.4" y="145" width="1.5" height="15.0" fill="rgb(247,98,34)" rx="2" ry="2" />
<text text-anchor="" x="540.45" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('PickleIterator::ReadUInt32 (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>PickleIterator::ReadUInt32 (1 samples, 0.04%)</title><rect x="466.4" y="337" width="0.5" height="15.0" fill="rgb(246,28,16)" rx="2" ry="2" />
<text text-anchor="" x="469.39" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::PlatformThreadLocalStorage::GetTLSValue (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::PlatformThreadLocalStorage::GetTLSValue (1 samples, 0.04%)</title><rect x="591.0" y="289" width="0.5" height="15.0" fill="rgb(211,205,41)" rx="2" ry="2" />
<text text-anchor="" x="593.99" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ObserverListBasebase::SystemMonitor::DevicesChangedObserver::Iterator::~Iterator (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>ObserverListBasebase::SystemMonitor::DevicesChangedObserver::Iterator::~Iterator (1 samples, 0.04%)</title><rect x="945.3" y="305" width="0.5" height="15.0" fill="rgb(205,143,13)" rx="2" ry="2" />
<text text-anchor="" x="948.29" y="315.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_tail (4 samples, 0.17%)</title><rect x="15.0" y="273" width="2.0" height="15.0" fill="rgb(245,203,32)" rx="2" ry="2" />
<text text-anchor="" x="18.00" y="283.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (2 samples, 0.08%)</title><rect x="499.9" y="401" width="1.0" height="15.0" fill="rgb(235,36,32)" rx="2" ry="2" />
<text text-anchor="" x="502.92" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::AddRef (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (1 samples, 0.04%)</title><rect x="629.0" y="417" width="0.5" height="15.0" fill="rgb(206,5,16)" rx="2" ry="2" />
<text text-anchor="" x="632.02" y="427.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.04%)</title><rect x="749.1" y="193" width="0.5" height="15.0" fill="rgb(223,88,42)" rx="2" ry="2" />
<text text-anchor="" x="752.13" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_signal (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_signal (1 samples, 0.04%)</title><rect x="254.2" y="401" width="0.5" height="15.0" fill="rgb(243,62,0)" rx="2" ry="2" />
<text text-anchor="" x="257.21" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::test::ChannelReflectorListener::OnMessageReceived (204 samples, 8.65%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::test::ChannelReflectorListener::OnMessageReceived (204 samples, 8.65%)</title><rect x="358.3" y="337" width="102.1" height="15.0" fill="rgb(238,130,43)" rx="2" ry="2" />
<text text-anchor="" x="361.30" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IPC::test::C..</text>
</g>
<g class="func_g" onmouseover="s('[unknown] (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (3 samples, 0.13%)</title><rect x="447.4" y="305" width="1.5" height="15.0" fill="rgb(222,181,17)" rx="2" ry="2" />
<text text-anchor="" x="450.37" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::DidProcessIOEvent (278 samples, 11.79%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::DidProcessIOEvent (278 samples, 11.79%)</title><rect x="812.2" y="321" width="139.1" height="15.0" fill="rgb(214,108,38)" rx="2" ry="2" />
<text text-anchor="" x="815.18" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::MessagePump..</text>
</g>
<g class="func_g" onmouseover="s('std::vectorunsigned char, std::allocatorunsigned char ::_M_default_append (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::vectorunsigned char, std::allocatorunsigned char ::_M_default_append (1 samples, 0.04%)</title><rect x="1063.4" y="209" width="0.5" height="15.0" fill="rgb(239,222,20)" rx="2" ry="2" />
<text text-anchor="" x="1066.39" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::OnReadMessage (36 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::OnReadMessage (36 samples, 1.53%)</title><rect x="1045.9" y="241" width="18.0" height="15.0" fill="rgb(221,149,8)" rx="2" ry="2" />
<text text-anchor="" x="1048.88" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__mem_cgroup_commit_charge (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__mem_cgroup_commit_charge (1 samples, 0.04%)</title><rect x="12.0" y="129" width="0.5" height="15.0" fill="rgb(205,44,35)" rx="2" ry="2" />
<text text-anchor="" x="15.00" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('security_socket_recvmsg (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_recvmsg (1 samples, 0.04%)</title><rect x="522.4" y="289" width="0.5" height="15.0" fill="rgb(229,223,1)" rx="2" ry="2" />
<text text-anchor="" x="525.43" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_sync_key (134 samples, 5.68%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (134 samples, 5.68%)</title><rect x="107.1" y="433" width="67.0" height="15.0" fill="rgb(221,149,42)" rx="2" ry="2" />
<text text-anchor="" x="110.08" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__wake_..</text>
</g>
<g class="func_g" onmouseover="s('base::internal::LockImpl::Lock (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::LockImpl::Lock (1 samples, 0.04%)</title><rect x="839.2" y="193" width="0.5" height="15.0" fill="rgb(214,96,35)" rx="2" ry="2" />
<text text-anchor="" x="842.20" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_execve_common.isra.22 (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_execve_common.isra.22 (5 samples, 0.21%)</title><rect x="12.0" y="257" width="2.5" height="15.0" fill="rgb(213,131,2)" rx="2" ry="2" />
<text text-anchor="" x="15.00" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('std::string::_Rep::_M_destroy (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::string::_Rep::_M_destroy (1 samples, 0.04%)</title><rect x="932.8" y="257" width="0.5" height="15.0" fill="rgb(238,53,51)" rx="2" ry="2" />
<text text-anchor="" x="935.78" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('path_put (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>path_put (1 samples, 0.04%)</title><rect x="250.7" y="369" width="0.5" height="15.0" fill="rgb(224,174,39)" rx="2" ry="2" />
<text text-anchor="" x="253.70" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (22 samples, 0.93%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (22 samples, 0.93%)</title><rect x="241.2" y="385" width="11.0" height="15.0" fill="rgb(252,133,3)" rx="2" ry="2" />
<text text-anchor="" x="244.20" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_entry (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (2 samples, 0.08%)</title><rect x="511.9" y="337" width="1.0" height="15.0" fill="rgb(218,122,11)" rx="2" ry="2" />
<text text-anchor="" x="514.93" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::MessagePipeReader::Send (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::MessagePipeReader::Send (1 samples, 0.04%)</title><rect x="906.3" y="241" width="0.5" height="15.0" fill="rgb(205,99,18)" rx="2" ry="2" />
<text text-anchor="" x="909.26" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('Pickle::WriteString (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>Pickle::WriteString (1 samples, 0.04%)</title><rect x="919.8" y="257" width="0.5" height="15.0" fill="rgb(254,194,53)" rx="2" ry="2" />
<text text-anchor="" x="922.77" y="267.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReference::~WeakReference (1 samples, 0.04%)</title><rect x="624.5" y="417" width="0.5" height="15.0" fill="rgb(233,150,36)" rx="2" ry="2" />
<text text-anchor="" x="627.52" y="427.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_string (2 samples, 0.08%)</title><rect x="82.6" y="433" width="1.0" height="15.0" fill="rgb(222,80,42)" rx="2" ry="2" />
<text text-anchor="" x="85.56" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free@plt (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>free@plt (1 samples, 0.04%)</title><rect x="893.7" y="225" width="0.5" height="15.0" fill="rgb(223,131,20)" rx="2" ry="2" />
<text text-anchor="" x="896.75" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::trace_event::TraceLog::GetInstance (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::trace_event::TraceLog::GetInstance (4 samples, 0.17%)</title><rect x="441.9" y="305" width="2.0" height="15.0" fill="rgb(227,77,15)" rx="2" ry="2" />
<text text-anchor="" x="444.87" y="315.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 (7 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::ReadBuffer::GetBuffer (7 samples, 0.30%)</title><rect x="1080.9" y="305" width="3.5" height="15.0" fill="rgb(218,118,47)" rx="2" ry="2" />
<text text-anchor="" x="1083.91" y="315.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.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_data (3 samples, 0.13%)</title><rect x="995.8" y="145" width="1.5" height="15.0" fill="rgb(252,215,9)" rx="2" ry="2" />
<text text-anchor="" x="998.84" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tracked_objects::ThreadData::Now (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>tracked_objects::ThreadData::Now (1 samples, 0.04%)</title><rect x="1100.9" y="385" width="0.5" height="15.0" fill="rgb(205,106,5)" rx="2" ry="2" />
<text text-anchor="" x="1103.92" 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 IPC::ChannelMojo::OnMessageReceived (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>non-virtual thunk to IPC::ChannelMojo::OnMessageReceived (2 samples, 0.08%)</title><rect x="480.4" y="369" width="1.0" height="15.0" fill="rgb(206,87,33)" rx="2" ry="2" />
<text text-anchor="" x="483.40" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessageInTransit::SerializeAndCloseDispatchers (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::SerializeAndCloseDispatchers (1 samples, 0.04%)</title><rect x="879.7" y="113" width="0.5" height="15.0" fill="rgb(216,52,22)" rx="2" ry="2" />
<text text-anchor="" x="882.74" 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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>mutex_unlock (1 samples, 0.04%)</title><rect x="740.6" y="273" width="0.5" height="15.0" fill="rgb(211,21,3)" rx="2" ry="2" />
<text text-anchor="" x="743.62" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('Pickle::~Pickle (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>Pickle::~Pickle (2 samples, 0.08%)</title><rect x="891.7" y="225" width="1.0" height="15.0" fill="rgb(205,47,29)" rx="2" ry="2" />
<text text-anchor="" x="894.75" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_cfs_shares (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (1 samples, 0.04%)</title><rect x="760.6" y="177" width="0.5" height="15.0" fill="rgb(218,17,39)" rx="2" ry="2" />
<text text-anchor="" x="763.64" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_rq_clock.part.63 (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_rq_clock.part.63 (1 samples, 0.04%)</title><rect x="763.1" y="193" width="0.5" height="15.0" fill="rgb(252,186,50)" rx="2" ry="2" />
<text text-anchor="" x="766.14" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::OnReadMessageForEndpoint (14 samples, 0.59%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::OnReadMessageForEndpoint (14 samples, 0.59%)</title><rect x="609.0" y="369" width="7.0" height="15.0" fill="rgb(231,99,46)" rx="2" ry="2" />
<text text-anchor="" x="612.01" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::Message::Message (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::Message::Message (5 samples, 0.21%)</title><rect x="350.8" y="369" width="2.5" height="15.0" fill="rgb(208,74,10)" rx="2" ry="2" />
<text text-anchor="" x="353.79" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('security_socket_sendmsg (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_sendmsg (5 samples, 0.21%)</title><rect x="64.5" y="465" width="2.5" height="15.0" fill="rgb(208,132,8)" rx="2" ry="2" />
<text text-anchor="" x="67.55" y="475.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.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>Pickle::Pickle (3 samples, 0.13%)</title><rect x="896.3" y="225" width="1.5" height="15.0" fill="rgb(224,138,15)" rx="2" ry="2" />
<text text-anchor="" x="899.25" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator delete (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator delete (5 samples, 0.21%)</title><rect x="411.3" y="145" width="2.5" height="15.0" fill="rgb(249,8,1)" rx="2" ry="2" />
<text text-anchor="" x="414.34" y="155.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::current (2 samples, 0.08%)</title><rect x="590.0" y="289" width="1.0" height="15.0" fill="rgb(206,67,6)" rx="2" ry="2" />
<text text-anchor="" x="592.99" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('___sys_recvmsg (50 samples, 2.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>___sys_recvmsg (50 samples, 2.12%)</title><rect x="983.8" y="225" width="25.0" height="15.0" fill="rgb(211,53,42)" rx="2" ry="2" />
<text text-anchor="" x="986.83" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::OnLibeventNotification (571 samples, 24.22%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::OnLibeventNotification (571 samples, 24.22%)</title><rect x="337.8" y="417" width="285.7" height="15.0" fill="rgb(233,70,19)" rx="2" ry="2" />
<text text-anchor="" x="340.78" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::MessagePumpLibevent::OnLibeventN..</text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::DoDelayedWork (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::DoDelayedWork (2 samples, 0.08%)</title><rect x="209.7" y="433" width="1.0" height="15.0" fill="rgb(218,78,12)" rx="2" ry="2" />
<text text-anchor="" x="212.67" y="443.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_from_iovec (1 samples, 0.04%)</title><rect x="67.0" y="465" width="0.5" height="15.0" fill="rgb(205,73,10)" rx="2" ry="2" />
<text text-anchor="" x="70.05" y="475.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (1 samples, 0.04%)</title><rect x="749.1" y="177" width="0.5" height="15.0" fill="rgb(241,67,17)" rx="2" ry="2" />
<text text-anchor="" x="752.13" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('Pickle::Pickle (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>Pickle::Pickle (2 samples, 0.08%)</title><rect x="444.4" y="321" width="1.0" height="15.0" fill="rgb(243,77,37)" rx="2" ry="2" />
<text text-anchor="" x="447.37" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_ops_test (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_ops_test (4 samples, 0.17%)</title><rect x="1011.3" y="193" width="2.1" height="15.0" fill="rgb(238,16,52)" rx="2" ry="2" />
<text text-anchor="" x="1014.35" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('realloc (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>realloc (1 samples, 0.04%)</title><rect x="1180.0" y="545" width="0.5" height="15.0" fill="rgb(250,11,9)" rx="2" ry="2" />
<text text-anchor="" x="1182.99" 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 (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (5 samples, 0.21%)</title><rect x="725.1" y="273" width="2.5" height="15.0" fill="rgb(223,124,19)" rx="2" ry="2" />
<text text-anchor="" x="728.11" y="283.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::embedder::PlatformChannelRecvmsg (1 samples, 0.04%)</title><rect x="507.9" y="385" width="0.5" height="15.0" fill="rgb(240,205,26)" rx="2" ry="2" />
<text text-anchor="" x="510.92" y="395.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (1 samples, 0.04%)</title><rect x="100.1" y="401" width="0.5" height="15.0" fill="rgb(247,133,50)" rx="2" ry="2" />
<text text-anchor="" x="103.08" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.04%)</title><rect x="538.9" y="145" width="0.5" height="15.0" fill="rgb(219,174,49)" rx="2" ry="2" />
<text text-anchor="" x="541.95" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('memset@plt (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>memset@plt (1 samples, 0.04%)</title><rect x="853.7" y="129" width="0.5" height="15.0" fill="rgb(246,61,48)" rx="2" ry="2" />
<text text-anchor="" x="856.72" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_sendto (266 samples, 11.28%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendto (266 samples, 11.28%)</title><rect x="58.5" y="513" width="133.2" height="15.0" fill="rgb(227,106,34)" rx="2" ry="2" />
<text text-anchor="" x="61.54" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys_sendto</text>
</g>
<g class="func_g" onmouseover="s('skb_release_all (12 samples, 0.51%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_all (12 samples, 0.51%)</title><rect x="995.3" y="161" width="6.0" height="15.0" fill="rgb(250,160,22)" rx="2" ry="2" />
<text text-anchor="" x="998.34" y="171.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZNKSs7compareEPKc@plt (1 samples, 0.04%)</title><rect x="468.4" y="337" width="0.5" height="15.0" fill="rgb(243,129,9)" rx="2" ry="2" />
<text text-anchor="" x="471.39" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (1 samples, 0.04%)</title><rect x="695.6" y="289" width="0.5" height="15.0" fill="rgb(221,156,28)" rx="2" ry="2" />
<text text-anchor="" x="698.58" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('PickleIterator::ReadString (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>PickleIterator::ReadString (1 samples, 0.04%)</title><rect x="445.9" y="321" width="0.5" height="15.0" fill="rgb(212,63,37)" rx="2" ry="2" />
<text text-anchor="" x="448.87" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::trace_event::TraceEventSyntheticDelayClock::~TraceEventSyntheticDelayClock (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::trace_event::TraceEventSyntheticDelayClock::~TraceEventSyntheticDelayClock (1 samples, 0.04%)</title><rect x="490.4" y="385" width="0.5" height="15.0" fill="rgb(247,112,42)" rx="2" ry="2" />
<text text-anchor="" x="493.41" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::OnReadMessage (8 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::OnReadMessage (8 samples, 0.34%)</title><rect x="1041.9" y="241" width="4.0" height="15.0" fill="rgb(212,200,12)" rx="2" ry="2" />
<text text-anchor="" x="1044.87" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_ZdlPv@plt (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZdlPv@plt (1 samples, 0.04%)</title><rect x="951.8" y="305" width="0.5" height="15.0" fill="rgb(252,70,45)" rx="2" ry="2" />
<text text-anchor="" x="954.80" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('set_next_entity (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>set_next_entity (1 samples, 0.04%)</title><rect x="51.5" y="465" width="0.5" height="15.0" fill="rgb(239,217,11)" rx="2" ry="2" />
<text text-anchor="" x="54.54" y="475.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>place_entity (2 samples, 0.08%)</title><rect x="136.1" y="241" width="1.0" height="15.0" fill="rgb(219,179,19)" rx="2" ry="2" />
<text text-anchor="" x="139.11" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::WriteMessage (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::WriteMessage (3 samples, 0.13%)</title><rect x="877.2" y="97" width="1.5" height="15.0" fill="rgb(239,16,49)" rx="2" ry="2" />
<text text-anchor="" x="880.23" y="107.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_timer (1 samples, 0.04%)</title><rect x="1088.4" y="241" width="0.5" height="15.0" fill="rgb(215,111,35)" rx="2" ry="2" />
<text text-anchor="" x="1091.41" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mprotect_fixup (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>mprotect_fixup (1 samples, 0.04%)</title><rect x="30.5" y="433" width="0.5" height="15.0" fill="rgb(220,66,53)" rx="2" ry="2" />
<text text-anchor="" x="33.52" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('put_prev_task_fair (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>put_prev_task_fair (4 samples, 0.17%)</title><rect x="326.3" y="289" width="2.0" height="15.0" fill="rgb(240,66,37)" rx="2" ry="2" />
<text text-anchor="" x="329.27" 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::EnqueueMessage (37 samples, 1.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::EnqueueMessage (37 samples, 1.57%)</title><rect x="861.2" y="113" width="18.5" height="15.0" fill="rgb(217,207,53)" rx="2" ry="2" />
<text text-anchor="" x="864.22" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Dispatcher::WriteMessage (77 samples, 3.27%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Dispatcher::WriteMessage (77 samples, 3.27%)</title><rect x="843.2" y="177" width="38.5" height="15.0" fill="rgb(248,39,2)" rx="2" ry="2" />
<text text-anchor="" x="846.21" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >moj..</text>
</g>
<g class="func_g" onmouseover="s('IPC::Message::~Message (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::Message::~Message (1 samples, 0.04%)</title><rect x="353.3" y="369" width="0.5" height="15.0" fill="rgb(254,221,30)" rx="2" ry="2" />
<text text-anchor="" x="356.29" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree (2 samples, 0.08%)</title><rect x="531.9" y="193" width="1.0" height="15.0" fill="rgb(237,13,7)" rx="2" ry="2" />
<text text-anchor="" x="534.94" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('memcpy_fromiovecend (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>memcpy_fromiovecend (3 samples, 0.13%)</title><rect x="78.6" y="449" width="1.5" height="15.0" fill="rgb(237,65,41)" rx="2" ry="2" />
<text text-anchor="" x="81.56" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::MessagePipeReader::Send (135 samples, 5.73%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::MessagePipeReader::Send (135 samples, 5.73%)</title><rect x="365.8" y="305" width="67.6" height="15.0" fill="rgb(219,7,17)" rx="2" ry="2" />
<text text-anchor="" x="368.80" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IPC::in..</text>
</g>
<g class="func_g" onmouseover="s('std::string::_M_replace_safe (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::string::_M_replace_safe (1 samples, 0.04%)</title><rect x="27.0" y="513" width="0.5" height="15.0" fill="rgb(241,201,2)" rx="2" ry="2" />
<text text-anchor="" x="30.01" y="523.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::Message::HasAttachments (1 samples, 0.04%)</title><rect x="837.2" y="209" width="0.5" height="15.0" fill="rgb(223,4,0)" rx="2" ry="2" />
<text text-anchor="" x="840.20" y="219.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 (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::View::View (4 samples, 0.17%)</title><rect x="564.5" y="385" width="2.0" height="15.0" fill="rgb(208,66,15)" rx="2" ry="2" />
<text text-anchor="" x="567.47" y="395.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.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>epoll_dispatch (6 samples, 0.25%)</title><rect x="220.2" y="433" width="3.0" height="15.0" fill="rgb(206,15,22)" rx="2" ry="2" />
<text text-anchor="" x="223.18" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipe::WriteMessage (90 samples, 3.82%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipe::WriteMessage (90 samples, 3.82%)</title><rect x="378.8" y="225" width="45.1" height="15.0" fill="rgb(224,90,31)" rx="2" ry="2" />
<text text-anchor="" x="381.81" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo..</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessagePipeDispatcher::WriteMessageImplNoLock (95 samples, 4.03%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessagePipeDispatcher::WriteMessageImplNoLock (95 samples, 4.03%)</title><rect x="378.3" y="241" width="47.6" height="15.0" fill="rgb(249,122,8)" rx="2" ry="2" />
<text text-anchor="" x="381.31" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo..</text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (4 samples, 0.17%)</title><rect x="191.7" y="449" width="2.0" height="15.0" fill="rgb(230,17,3)" rx="2" ry="2" />
<text text-anchor="" x="194.65" y="459.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 (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::WriteBuffer::GetBuffers (2 samples, 0.08%)</title><rect x="871.2" y="49" width="1.0" height="15.0" fill="rgb(209,210,46)" rx="2" ry="2" />
<text text-anchor="" x="874.23" 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 (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock (1 samples, 0.04%)</title><rect x="62.5" y="465" width="0.5" height="15.0" fill="rgb(245,178,13)" rx="2" ry="2" />
<text text-anchor="" x="65.54" y="475.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (1 samples, 0.04%)</title><rect x="1041.4" y="257" width="0.5" height="15.0" fill="rgb(247,227,10)" rx="2" ry="2" />
<text text-anchor="" x="1044.37" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::test::ChannelReflectorListener::OnMessageReceived (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::test::ChannelReflectorListener::OnMessageReceived (3 samples, 0.13%)</title><rect x="475.9" y="353" width="1.5" height="15.0" fill="rgb(240,46,24)" rx="2" ry="2" />
<text text-anchor="" x="478.89" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_dl_map_object (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_dl_map_object (1 samples, 0.04%)</title><rect x="1120.4" y="545" width="0.5" height="15.0" fill="rgb(237,46,2)" rx="2" ry="2" />
<text text-anchor="" x="1123.44" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_stream_recvmsg (36 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_recvmsg (36 samples, 1.53%)</title><rect x="527.4" y="273" width="18.1" height="15.0" fill="rgb(239,21,16)" rx="2" ry="2" />
<text text-anchor="" x="530.44" y="283.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (1 samples, 0.04%)</title><rect x="879.2" y="97" width="0.5" height="15.0" fill="rgb(215,45,40)" rx="2" ry="2" />
<text text-anchor="" x="882.24" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('local_clock (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>local_clock (5 samples, 0.21%)</title><rect x="773.1" y="161" width="2.5" height="15.0" fill="rgb(235,120,53)" rx="2" ry="2" />
<text text-anchor="" x="776.15" y="171.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.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (3 samples, 0.13%)</title><rect x="237.7" y="385" width="1.5" height="15.0" fill="rgb(215,93,30)" rx="2" ry="2" />
<text text-anchor="" x="240.69" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('memcpy_toiovec (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>memcpy_toiovec (2 samples, 0.08%)</title><rect x="543.0" y="241" width="1.0" height="15.0" fill="rgb(231,161,33)" rx="2" ry="2" />
<text text-anchor="" x="545.95" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fput (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>fput (1 samples, 0.04%)</title><rect x="715.1" y="305" width="0.5" height="15.0" fill="rgb(212,78,42)" rx="2" ry="2" />
<text text-anchor="" x="718.10" y="315.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_handle.isra.17 (1 samples, 0.04%)</title><rect x="1088.4" y="225" width="0.5" height="15.0" fill="rgb(225,203,9)" rx="2" ry="2" />
<text text-anchor="" x="1091.41" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (4 samples, 0.17%)</title><rect x="980.8" y="257" width="2.0" height="15.0" fill="rgb(208,95,28)" rx="2" ry="2" />
<text text-anchor="" x="983.82" y="267.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.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelMojo::ReadFromMessageAttachmentSet (3 samples, 0.13%)</title><rect x="834.2" y="225" width="1.5" height="15.0" fill="rgb(242,57,28)" rx="2" ry="2" />
<text text-anchor="" x="837.20" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::AddRef (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (2 samples, 0.08%)</title><rect x="483.9" y="385" width="1.0" height="15.0" fill="rgb(234,179,3)" rx="2" ry="2" />
<text text-anchor="" x="486.90" y="395.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_string (1 samples, 0.04%)</title><rect x="521.9" y="289" width="0.5" height="15.0" fill="rgb(238,150,18)" rx="2" ry="2" />
<text text-anchor="" x="524.93" 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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (2 samples, 0.08%)</title><rect x="765.6" y="129" width="1.0" height="15.0" fill="rgb(220,148,15)" rx="2" ry="2" />
<text text-anchor="" x="768.64" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator delete (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator delete (2 samples, 0.08%)</title><rect x="874.7" y="65" width="1.0" height="15.0" fill="rgb(209,141,15)" rx="2" ry="2" />
<text text-anchor="" x="877.73" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ksize (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>ksize (4 samples, 0.17%)</title><rect x="100.6" y="433" width="2.0" height="15.0" fill="rgb(208,40,6)" rx="2" ry="2" />
<text text-anchor="" x="103.58" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_disable_all (11 samples, 0.47%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_disable_all (11 samples, 0.47%)</title><rect x="311.8" y="209" width="5.5" height="15.0" fill="rgb(212,184,43)" rx="2" ry="2" />
<text text-anchor="" x="314.76" y="219.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (2 samples, 0.08%)</title><rect x="426.4" y="257" width="1.0" height="15.0" fill="rgb(210,96,34)" rx="2" ry="2" />
<text text-anchor="" x="429.35" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('clear_buddies (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>clear_buddies (1 samples, 0.04%)</title><rect x="297.2" y="289" width="0.5" height="15.0" fill="rgb(237,51,18)" rx="2" ry="2" />
<text text-anchor="" x="300.24" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ima_calc_file_hash (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>ima_calc_file_hash (1 samples, 0.04%)</title><rect x="1120.4" y="385" width="0.5" height="15.0" fill="rgb(238,174,0)" rx="2" ry="2" />
<text text-anchor="" x="1123.44" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('testing::internal::UnitTestImpl::RunAllTests (920 samples, 39.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>testing::internal::UnitTestImpl::RunAllTests (920 samples, 39.02%)</title><rect x="641.0" y="481" width="460.4" height="15.0" fill="rgb(253,41,47)" rx="2" ry="2" />
<text text-anchor="" x="644.03" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >testing::internal::UnitTestImpl::RunAllTests</text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (267 samples, 11.32%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (267 samples, 11.32%)</title><rect x="58.0" y="529" width="133.7" height="15.0" fill="rgb(224,122,18)" rx="2" ry="2" />
<text text-anchor="" x="61.04" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >system_call_fast..</text>
</g>
<g class="func_g" onmouseover="s('std::string::assign (6 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::string::assign (6 samples, 0.25%)</title><rect x="456.4" y="321" width="3.0" height="15.0" fill="rgb(236,101,35)" rx="2" ry="2" />
<text text-anchor="" x="459.38" y="331.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (4 samples, 0.17%)</title><rect x="15.0" y="209" width="2.0" height="15.0" fill="rgb(216,214,6)" rx="2" ry="2" />
<text text-anchor="" x="18.00" y="219.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.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (3 samples, 0.13%)</title><rect x="488.9" y="385" width="1.5" height="15.0" fill="rgb(238,114,36)" rx="2" ry="2" />
<text text-anchor="" x="491.91" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock_cpu (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (2 samples, 0.08%)</title><rect x="774.6" y="145" width="1.0" height="15.0" fill="rgb(230,220,13)" rx="2" ry="2" />
<text text-anchor="" x="777.65" y="155.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.30%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (7 samples, 0.30%)</title><rect x="246.7" y="369" width="3.5" height="15.0" fill="rgb(229,198,40)" rx="2" ry="2" />
<text text-anchor="" x="249.70" y="379.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (1 samples, 0.04%)</title><rect x="50.5" y="481" width="0.5" height="15.0" fill="rgb(237,19,39)" rx="2" ry="2" />
<text text-anchor="" x="53.53" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_ZN7logging14GetMinLogLevelEv@plt (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZN7logging14GetMinLogLevelEv@plt (1 samples, 0.04%)</title><rect x="847.7" y="129" width="0.5" height="15.0" fill="rgb(223,76,52)" rx="2" ry="2" />
<text text-anchor="" x="850.71" y="139.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 (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::string::_Rep::_S_create (5 samples, 0.21%)</title><rect x="1186.5" y="545" width="2.5" height="15.0" fill="rgb(217,148,17)" rx="2" ry="2" />
<text text-anchor="" x="1189.50" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (1 samples, 0.04%)</title><rect x="762.1" y="145" width="0.5" height="15.0" fill="rgb(229,63,14)" rx="2" ry="2" />
<text text-anchor="" x="765.14" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('account_entity_dequeue (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_dequeue (1 samples, 0.04%)</title><rect x="134.6" y="241" width="0.5" height="15.0" fill="rgb(207,63,45)" rx="2" ry="2" />
<text text-anchor="" x="137.61" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_ops_test (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_ops_test (1 samples, 0.04%)</title><rect x="1014.9" y="209" width="0.5" height="15.0" fill="rgb(212,194,40)" rx="2" ry="2" />
<text text-anchor="" x="1017.85" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::OnReadMessage (31 samples, 1.31%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::OnReadMessage (31 samples, 1.31%)</title><rect x="1048.4" y="225" width="15.5" height="15.0" fill="rgb(231,6,25)" rx="2" ry="2" />
<text text-anchor="" x="1051.38" y="235.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.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call (3 samples, 0.13%)</title><rect x="17.0" y="481" width="1.5" height="15.0" fill="rgb(241,95,46)" rx="2" ry="2" />
<text text-anchor="" x="20.01" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_free_head (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_free_head (1 samples, 0.04%)</title><rect x="995.3" y="145" width="0.5" height="15.0" fill="rgb(250,72,5)" rx="2" ry="2" />
<text text-anchor="" x="998.34" y="155.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (4 samples, 0.17%)</title><rect x="191.7" y="305" width="2.0" height="15.0" fill="rgb(209,77,37)" rx="2" ry="2" />
<text text-anchor="" x="194.65" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('intel_pmu_enable_all (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.17%)</title><rect x="191.7" y="241" width="2.0" height="15.0" fill="rgb(210,50,35)" rx="2" ry="2" />
<text text-anchor="" x="194.65" y="251.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>_cond_resched (4 samples, 0.17%)</title><rect x="12.5" y="193" width="2.0" height="15.0" fill="rgb(206,190,7)" rx="2" ry="2" />
<text text-anchor="" x="15.50" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call (6 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call (6 samples, 0.25%)</title><rect x="254.7" y="401" width="3.0" height="15.0" fill="rgb(227,142,12)" rx="2" ry="2" />
<text text-anchor="" x="257.71" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_hrtimeout_range_clock (96 samples, 4.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (96 samples, 4.07%)</title><rect x="742.6" y="257" width="48.1" height="15.0" fill="rgb(216,185,25)" rx="2" ry="2" />
<text text-anchor="" x="745.62" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sche..</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::WriteBuffer::HavePlatformHandlesToSend (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::WriteBuffer::HavePlatformHandlesToSend (2 samples, 0.08%)</title><rect x="410.3" y="145" width="1.0" height="15.0" fill="rgb(254,20,10)" rx="2" ry="2" />
<text text-anchor="" x="413.34" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('hrtick_update (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>hrtick_update (5 samples, 0.21%)</title><rect x="151.6" y="273" width="2.5" height="15.0" fill="rgb(222,153,39)" rx="2" ry="2" />
<text text-anchor="" x="154.62" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_stats_wait_end (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_stats_wait_end (1 samples, 0.04%)</title><rect x="51.5" y="449" width="0.5" height="15.0" fill="rgb(238,120,50)" rx="2" ry="2" />
<text text-anchor="" x="54.54" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Dispatcher::WriteMessage (102 samples, 4.33%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Dispatcher::WriteMessage (102 samples, 4.33%)</title><rect x="374.8" y="257" width="51.1" height="15.0" fill="rgb(241,78,37)" rx="2" ry="2" />
<text text-anchor="" x="377.81" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo:..</text>
</g>
<g class="func_g" onmouseover="s('__sys_recvmsg (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__sys_recvmsg (1 samples, 0.04%)</title><rect x="520.4" y="337" width="0.5" height="15.0" fill="rgb(205,9,52)" rx="2" ry="2" />
<text text-anchor="" x="523.43" y="347.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.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (3 samples, 0.13%)</title><rect x="670.6" y="337" width="1.5" height="15.0" fill="rgb(212,106,29)" rx="2" ry="2" />
<text text-anchor="" x="673.56" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ret_from_fork (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_fork (4 samples, 0.17%)</title><rect x="15.0" y="289" width="2.0" height="15.0" fill="rgb(234,158,50)" rx="2" ry="2" />
<text text-anchor="" x="18.00" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('check_preempt_curr (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>check_preempt_curr (1 samples, 0.04%)</title><rect x="157.6" y="305" width="0.5" height="15.0" fill="rgb(233,10,41)" rx="2" ry="2" />
<text text-anchor="" x="160.63" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_disable (11 samples, 0.47%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_disable (11 samples, 0.47%)</title><rect x="311.8" y="241" width="5.5" height="15.0" fill="rgb(226,77,54)" rx="2" ry="2" />
<text text-anchor="" x="314.76" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ProxyMessagePipeEndpoint::EnqueueMessage (43 samples, 1.82%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ProxyMessagePipeEndpoint::EnqueueMessage (43 samples, 1.82%)</title><rect x="859.7" y="129" width="21.5" height="15.0" fill="rgb(232,211,40)" rx="2" ry="2" />
<text text-anchor="" x="862.72" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >m..</text>
</g>
<g class="func_g" onmouseover="s('_ZN4mojo6system16MessageInTransit4ViewC1EmPKv@plt (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4mojo6system16MessageInTransit4ViewC1EmPKv@plt (1 samples, 0.04%)</title><rect x="507.4" y="385" width="0.5" height="15.0" fill="rgb(228,124,39)" rx="2" ry="2" />
<text text-anchor="" x="510.42" y="395.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.08%)</title><rect x="765.6" y="113" width="1.0" height="15.0" fill="rgb(230,88,36)" rx="2" ry="2" />
<text text-anchor="" x="768.64" y="123.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>task_tick_fair (1 samples, 0.04%)</title><rect x="976.3" y="145" width="0.5" height="15.0" fill="rgb(211,10,11)" rx="2" ry="2" />
<text text-anchor="" x="979.32" y="155.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.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::string::_M_mutate (3 samples, 0.13%)</title><rect x="25.5" y="513" width="1.5" height="15.0" fill="rgb(217,213,53)" rx="2" ry="2" />
<text text-anchor="" x="28.51" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::ProcessNextDelayedNonNestableTask (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::ProcessNextDelayedNonNestableTask (2 samples, 0.08%)</title><rect x="666.1" y="337" width="1.0" height="15.0" fill="rgb(221,32,35)" rx="2" ry="2" />
<text text-anchor="" x="669.06" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('crypto_shash_update (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>crypto_shash_update (1 samples, 0.04%)</title><rect x="1120.4" y="369" width="0.5" height="15.0" fill="rgb(213,130,24)" rx="2" ry="2" />
<text text-anchor="" x="1123.44" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('Pickle::WriteString (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>Pickle::WriteString (1 samples, 0.04%)</title><rect x="906.8" y="241" width="0.5" height="15.0" fill="rgb(252,15,43)" rx="2" ry="2" />
<text text-anchor="" x="909.76" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('copy_msghdr_from_user (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>copy_msghdr_from_user (1 samples, 0.04%)</title><rect x="1008.8" y="225" width="0.5" height="15.0" fill="rgb(207,219,19)" rx="2" ry="2" />
<text text-anchor="" x="1011.85" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::Run (916 samples, 38.85%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::Run (916 samples, 38.85%)</title><rect x="643.0" y="401" width="458.4" height="15.0" fill="rgb(235,68,6)" rx="2" ry="2" />
<text text-anchor="" x="646.04" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::MessageLoop::Run</text>
</g>
<g class="func_g" onmouseover="s('[unknown] (19 samples, 0.81%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (19 samples, 0.81%)</title><rect x="654.0" y="337" width="9.6" height="15.0" fill="rgb(251,178,35)" rx="2" ry="2" />
<text text-anchor="" x="657.05" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('copy_strings_kernel (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>copy_strings_kernel (1 samples, 0.04%)</title><rect x="12.0" y="241" width="0.5" height="15.0" fill="rgb(248,95,48)" rx="2" ry="2" />
<text text-anchor="" x="15.00" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (1 samples, 0.04%)</title><rect x="982.3" y="241" width="0.5" height="15.0" fill="rgb(227,64,27)" rx="2" ry="2" />
<text text-anchor="" x="985.32" y="251.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>Pickle::Resize (1 samples, 0.04%)</title><rect x="896.8" y="209" width="0.5" height="15.0" fill="rgb(239,42,28)" rx="2" ry="2" />
<text text-anchor="" x="899.75" y="219.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.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (6 samples, 0.25%)</title><rect x="959.8" y="321" width="3.0" height="15.0" fill="rgb(206,48,18)" rx="2" ry="2" />
<text text-anchor="" x="962.80" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::OnReadCompleted (96 samples, 4.07%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::OnReadCompleted (96 samples, 4.07%)</title><rect x="1032.9" y="305" width="48.0" height="15.0" fill="rgb(253,98,19)" rx="2" ry="2" />
<text text-anchor="" x="1035.87" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo..</text>
</g>
<g class="func_g" onmouseover="s('put_prev_task_fair (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>put_prev_task_fair (3 samples, 0.13%)</title><rect x="787.7" y="209" width="1.5" height="15.0" fill="rgb(243,22,36)" rx="2" ry="2" />
<text text-anchor="" x="790.66" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('check_preempt_wakeup (7 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
<title>check_preempt_wakeup (7 samples, 0.30%)</title><rect x="161.1" y="273" width="3.5" height="15.0" fill="rgb(208,224,25)" rx="2" ry="2" />
<text text-anchor="" x="164.13" y="283.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>_cond_resched (4 samples, 0.17%)</title><rect x="191.7" y="353" width="2.0" height="15.0" fill="rgb(221,110,50)" rx="2" ry="2" />
<text text-anchor="" x="194.65" y="363.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_process_times (1 samples, 0.04%)</title><rect x="976.3" y="177" width="0.5" height="15.0" fill="rgb(215,6,38)" rx="2" ry="2" />
<text text-anchor="" x="979.32" y="187.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>Pickle::Resize (4 samples, 0.17%)</title><rect x="439.9" y="305" width="2.0" height="15.0" fill="rgb(217,59,21)" rx="2" ry="2" />
<text text-anchor="" x="442.86" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_ZN14PickleIterator9ReadInt64EPl@plt (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZN14PickleIterator9ReadInt64EPl@plt (1 samples, 0.04%)</title><rect x="927.3" y="257" width="0.5" height="15.0" fill="rgb(253,80,22)" rx="2" ry="2" />
<text text-anchor="" x="930.28" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('set_next_entity (8 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>set_next_entity (8 samples, 0.34%)</title><rect x="783.2" y="193" width="4.0" height="15.0" fill="rgb(207,35,28)" rx="2" ry="2" />
<text text-anchor="" x="786.16" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_copy_datagram_iovec (6 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_iovec (6 samples, 0.25%)</title><rect x="540.9" y="257" width="3.1" height="15.0" fill="rgb(238,12,14)" rx="2" ry="2" />
<text text-anchor="" x="543.95" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fput (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>fput (1 samples, 0.04%)</title><rect x="1009.3" y="225" width="0.5" height="15.0" fill="rgb(219,182,17)" rx="2" ry="2" />
<text text-anchor="" x="1012.35" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_disable (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_disable (1 samples, 0.04%)</title><rect x="317.8" y="257" width="0.5" height="15.0" fill="rgb(222,115,24)" rx="2" ry="2" />
<text text-anchor="" x="320.76" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::WillProcessIOEvent (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::WillProcessIOEvent (2 samples, 0.08%)</title><rect x="623.5" y="417" width="1.0" height="15.0" fill="rgb(239,63,11)" rx="2" ry="2" />
<text text-anchor="" x="626.52" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_ops_list_func (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_ops_list_func (2 samples, 0.08%)</title><rect x="180.1" y="497" width="1.0" height="15.0" fill="rgb(251,87,8)" rx="2" ry="2" />
<text text-anchor="" x="183.14" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (4 samples, 0.17%)</title><rect x="10.0" y="545" width="2.0" height="15.0" fill="rgb(244,170,15)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::Release (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (1 samples, 0.04%)</title><rect x="1038.9" y="273" width="0.5" height="15.0" fill="rgb(222,79,44)" rx="2" ry="2" />
<text text-anchor="" x="1041.87" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (146 samples, 6.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (146 samples, 6.19%)</title><rect x="259.7" y="401" width="73.1" height="15.0" fill="rgb(250,150,1)" rx="2" ry="2" />
<text text-anchor="" x="262.71" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >system_c..</text>
</g>
<g class="func_g" onmouseover="s('__perf_event_task_sched_in (8 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (8 samples, 0.34%)</title><rect x="764.6" y="193" width="4.0" height="15.0" fill="rgb(208,125,40)" rx="2" ry="2" />
<text text-anchor="" x="767.64" y="203.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.17%)</title><rect x="191.7" y="257" width="2.0" height="15.0" fill="rgb(224,41,47)" rx="2" ry="2" />
<text text-anchor="" x="194.65" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ttwu_stat (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_stat (5 samples, 0.21%)</title><rect x="167.6" y="321" width="2.5" height="15.0" fill="rgb(229,149,52)" rx="2" ry="2" />
<text text-anchor="" x="170.63" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('free@plt (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>free@plt (2 samples, 0.08%)</title><rect x="433.9" y="305" width="1.0" height="15.0" fill="rgb(222,23,14)" rx="2" ry="2" />
<text text-anchor="" x="436.86" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_regs_call (7 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_regs_call (7 samples, 0.30%)</title><rect x="547.5" y="305" width="3.5" height="15.0" fill="rgb(254,78,10)" rx="2" ry="2" />
<text text-anchor="" x="550.46" 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 (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (4 samples, 0.17%)</title><rect x="15.0" y="241" width="2.0" height="15.0" fill="rgb(241,118,4)" rx="2" ry="2" />
<text text-anchor="" x="18.00" y="251.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.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>Pickle::Pickle (3 samples, 0.13%)</title><rect x="477.4" y="353" width="1.5" height="15.0" fill="rgb(221,176,48)" rx="2" ry="2" />
<text text-anchor="" x="480.40" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::AddRef (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (2 samples, 0.08%)</title><rect x="569.5" y="353" width="1.0" height="15.0" fill="rgb(224,212,13)" rx="2" ry="2" />
<text text-anchor="" x="572.47" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ttwu_do_wakeup (17 samples, 0.72%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_wakeup (17 samples, 0.72%)</title><rect x="158.1" y="305" width="8.5" height="15.0" fill="rgb(205,25,41)" rx="2" ry="2" />
<text text-anchor="" x="161.13" y="315.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (4 samples, 0.17%)</title><rect x="641.0" y="193" width="2.0" height="15.0" fill="rgb(215,70,40)" rx="2" ry="2" />
<text text-anchor="" x="644.03" y="203.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.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>unroll_tree_refs (3 samples, 0.13%)</title><rect x="707.1" y="289" width="1.5" height="15.0" fill="rgb(235,95,43)" rx="2" ry="2" />
<text text-anchor="" x="710.09" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_lookup_ip (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_lookup_ip (1 samples, 0.04%)</title><rect x="549.0" y="257" width="0.5" height="15.0" fill="rgb(242,158,5)" rx="2" ry="2" />
<text text-anchor="" x="551.96" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('std::vectorunsigned char, std::allocatorunsigned char ::_M_default_append (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::vectorunsigned char, std::allocatorunsigned char ::_M_default_append (4 samples, 0.17%)</title><rect x="1052.9" y="193" width="2.0" height="15.0" fill="rgb(231,115,39)" rx="2" ry="2" />
<text text-anchor="" x="1055.88" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('PickleIterator::ReadUInt64 (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>PickleIterator::ReadUInt64 (5 samples, 0.21%)</title><rect x="924.8" y="257" width="2.5" height="15.0" fill="rgb(243,224,0)" rx="2" ry="2" />
<text text-anchor="" x="927.78" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('apparmor_socket_recvmsg (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_recvmsg (2 samples, 0.08%)</title><rect x="523.9" y="273" width="1.0" height="15.0" fill="rgb(212,175,46)" rx="2" ry="2" />
<text text-anchor="" x="526.94" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (1 samples, 0.04%)</title><rect x="62.0" y="465" width="0.5" height="15.0" fill="rgb(206,166,11)" rx="2" ry="2" />
<text text-anchor="" x="65.04" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::EnqueueMessageNoLock (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::EnqueueMessageNoLock (1 samples, 0.04%)</title><rect x="407.3" y="129" width="0.5" height="15.0" fill="rgb(209,79,49)" rx="2" ry="2" />
<text text-anchor="" x="410.34" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('consume_skb (14 samples, 0.59%)')" onmouseout="c()" onclick="zoom(this)">
<title>consume_skb (14 samples, 0.59%)</title><rect x="994.3" y="177" width="7.0" height="15.0" fill="rgb(215,143,31)" rx="2" ry="2" />
<text text-anchor="" x="997.33" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_enable (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (1 samples, 0.04%)</title><rect x="307.3" y="241" width="0.5" height="15.0" fill="rgb(214,199,52)" rx="2" ry="2" />
<text text-anchor="" x="310.25" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('task_waking_fair (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>task_waking_fair (1 samples, 0.04%)</title><rect x="118.6" y="321" width="0.5" height="15.0" fill="rgb(227,148,6)" rx="2" ry="2" />
<text text-anchor="" x="121.59" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (7 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (7 samples, 0.30%)</title><rect x="273.2" y="337" width="3.5" height="15.0" fill="rgb(214,80,18)" rx="2" ry="2" />
<text text-anchor="" x="276.22" 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::HasOneRef (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::HasOneRef (5 samples, 0.21%)</title><rect x="497.4" y="401" width="2.5" height="15.0" fill="rgb(229,211,14)" rx="2" ry="2" />
<text text-anchor="" x="500.41" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::subtle::RefCountedThreadSafeBase::Release (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (1 samples, 0.04%)</title><rect x="953.3" y="305" width="0.5" height="15.0" fill="rgb(242,116,54)" rx="2" ry="2" />
<text text-anchor="" x="956.30" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_ZN6PickleD2Ev@plt (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZN6PickleD2Ev@plt (1 samples, 0.04%)</title><rect x="892.7" y="225" width="0.5" height="15.0" fill="rgb(240,47,19)" rx="2" ry="2" />
<text text-anchor="" x="895.75" y="235.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (4 samples, 0.17%)</title><rect x="191.7" y="273" width="2.0" height="15.0" fill="rgb(210,145,20)" rx="2" ry="2" />
<text text-anchor="" x="194.65" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (82 samples, 3.48%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (82 samples, 3.48%)</title><rect x="511.9" y="369" width="41.1" height="15.0" fill="rgb(250,134,20)" rx="2" ry="2" />
<text text-anchor="" x="514.93" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[un..</text>
</g>
<g class="func_g" onmouseover="s('finish_task_switch (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 0.17%)</title><rect x="12.5" y="161" width="2.0" height="15.0" fill="rgb(253,158,33)" rx="2" ry="2" />
<text text-anchor="" x="15.50" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::TimeTicks::NowFromSystemTraceTime (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::TimeTicks::NowFromSystemTraceTime (5 samples, 0.21%)</title><rect x="928.8" y="257" width="2.5" height="15.0" fill="rgb(238,43,49)" rx="2" ry="2" />
<text text-anchor="" x="931.78" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_mid_memalign (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>_mid_memalign (3 samples, 0.13%)</title><rect x="389.3" y="193" width="1.5" height="15.0" fill="rgb(222,19,8)" rx="2" ry="2" />
<text text-anchor="" x="392.32" y="203.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>set_task_comm (4 samples, 0.17%)</title><rect x="10.0" y="433" width="2.0" height="15.0" fill="rgb(227,188,38)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="443.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (4 samples, 0.17%)</title><rect x="641.0" y="369" width="2.0" height="15.0" fill="rgb(237,42,33)" rx="2" ry="2" />
<text text-anchor="" x="644.03" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ttwu_stat (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_stat (2 samples, 0.08%)</title><rect x="170.1" y="337" width="1.0" height="15.0" fill="rgb(232,178,40)" rx="2" ry="2" />
<text text-anchor="" x="173.14" y="347.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 (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReference::is_valid (5 samples, 0.21%)</title><rect x="953.8" y="321" width="2.5" height="15.0" fill="rgb(246,140,41)" rx="2" ry="2" />
<text text-anchor="" x="956.80" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('try_to_wake_up (119 samples, 5.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (119 samples, 5.05%)</title><rect x="110.6" y="337" width="59.5" height="15.0" fill="rgb(240,227,5)" rx="2" ry="2" />
<text text-anchor="" x="113.59" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >try_to..</text>
</g>
<g class="func_g" onmouseover="s('audit_filter_syscall (12 samples, 0.51%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (12 samples, 0.51%)</title><rect x="699.6" y="289" width="6.0" height="15.0" fill="rgb(249,185,53)" rx="2" ry="2" />
<text text-anchor="" x="702.58" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_check (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_check (2 samples, 0.08%)</title><rect x="253.2" y="401" width="1.0" height="15.0" fill="rgb(215,81,29)" rx="2" ry="2" />
<text text-anchor="" x="256.21" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (2 samples, 0.08%)</title><rect x="732.1" y="257" width="1.0" height="15.0" fill="rgb(251,122,46)" rx="2" ry="2" />
<text text-anchor="" x="735.11" y="267.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.51%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_wfree (12 samples, 0.51%)</title><rect x="533.9" y="193" width="6.0" height="15.0" fill="rgb(248,126,44)" rx="2" ry="2" />
<text text-anchor="" x="536.94" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ima_file_mmap (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>ima_file_mmap (1 samples, 0.04%)</title><rect x="1120.4" y="433" width="0.5" height="15.0" fill="rgb(218,160,23)" rx="2" ry="2" />
<text text-anchor="" x="1123.44" y="443.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_mid_memalign (1 samples, 0.04%)</title><rect x="858.2" y="113" width="0.5" height="15.0" fill="rgb(217,0,14)" rx="2" ry="2" />
<text text-anchor="" x="861.22" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_execve_common.isra.22 (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_execve_common.isra.22 (4 samples, 0.17%)</title><rect x="10.0" y="497" width="2.0" height="15.0" fill="rgb(233,166,1)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator new (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (3 samples, 0.13%)</title><rect x="1178.5" y="545" width="1.5" height="15.0" fill="rgb(206,201,22)" rx="2" ry="2" />
<text text-anchor="" x="1181.49" y="555.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.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::OnReadMessage (3 samples, 0.13%)</title><rect x="1066.9" y="273" width="1.5" height="15.0" fill="rgb(238,77,36)" rx="2" ry="2" />
<text text-anchor="" x="1069.90" 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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (4 samples, 0.17%)</title><rect x="191.7" y="289" width="2.0" height="15.0" fill="rgb(223,201,27)" rx="2" ry="2" />
<text text-anchor="" x="194.65" y="299.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (2 samples, 0.08%)</title><rect x="1068.4" y="273" width="1.0" height="15.0" fill="rgb(227,96,53)" rx="2" ry="2" />
<text text-anchor="" x="1071.40" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::EnqueueMessageNoLock (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::EnqueueMessageNoLock (1 samples, 0.04%)</title><rect x="408.8" y="145" width="0.5" height="15.0" fill="rgb(217,159,5)" rx="2" ry="2" />
<text text-anchor="" x="411.84" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('PickleIterator::ReadString (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>PickleIterator::ReadString (1 samples, 0.04%)</title><rect x="907.3" y="241" width="0.5" height="15.0" fill="rgb(240,191,36)" rx="2" ry="2" />
<text text-anchor="" x="910.26" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('copy_user_generic_string (7 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_string (7 samples, 0.30%)</title><rect x="984.8" y="209" width="3.5" height="15.0" fill="rgb(249,96,15)" rx="2" ry="2" />
<text text-anchor="" x="987.83" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_sendto (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendto (3 samples, 0.13%)</title><rect x="36.0" y="529" width="1.5" height="15.0" fill="rgb(224,13,50)" rx="2" ry="2" />
<text text-anchor="" x="39.02" y="539.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>verify_iovec (1 samples, 0.04%)</title><rect x="1008.3" y="209" width="0.5" height="15.0" fill="rgb(249,140,18)" rx="2" ry="2" />
<text text-anchor="" x="1011.35" y="219.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.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>sockfd_lookup_light (9 samples, 0.38%)</title><rect x="174.6" y="481" width="4.5" height="15.0" fill="rgb(226,192,52)" rx="2" ry="2" />
<text text-anchor="" x="177.64" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_careful (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_careful (5 samples, 0.21%)</title><rect x="50.0" y="529" width="2.5" height="15.0" fill="rgb(236,14,25)" rx="2" ry="2" />
<text text-anchor="" x="53.03" y="539.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.04%)</title><rect x="1088.4" y="305" width="0.5" height="15.0" fill="rgb(239,12,30)" rx="2" ry="2" />
<text text-anchor="" x="1091.41" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_sendmsg (226 samples, 9.58%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (226 samples, 9.58%)</title><rect x="61.5" y="481" width="113.1" height="15.0" fill="rgb(251,6,44)" rx="2" ry="2" />
<text text-anchor="" x="64.54" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sock_sendmsg</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::MessageInTransit::SerializeAndCloseDispatchers (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::SerializeAndCloseDispatchers (1 samples, 0.04%)</title><rect x="416.8" y="177" width="0.5" height="15.0" fill="rgb(220,192,48)" rx="2" ry="2" />
<text text-anchor="" x="419.84" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__clock_gettime (22 samples, 0.93%)')" onmouseout="c()" onclick="zoom(this)">
<title>__clock_gettime (22 samples, 0.93%)</title><rect x="198.7" y="433" width="11.0" height="15.0" fill="rgb(248,158,37)" rx="2" ry="2" />
<text text-anchor="" x="201.66" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_audit (12 samples, 0.51%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_audit (12 samples, 0.51%)</title><rect x="513.9" y="353" width="6.0" height="15.0" fill="rgb(206,103,30)" rx="2" ry="2" />
<text text-anchor="" x="516.93" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (4 samples, 0.17%)</title><rect x="529.4" y="257" width="2.0" height="15.0" fill="rgb(233,186,37)" rx="2" ry="2" />
<text text-anchor="" x="532.44" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_graph_call (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_graph_call (1 samples, 0.04%)</title><rect x="547.0" y="305" width="0.5" height="15.0" fill="rgb(240,97,48)" rx="2" ry="2" />
<text text-anchor="" x="549.96" y="315.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_sched_setaffinity (4 samples, 0.17%)</title><rect x="641.0" y="353" width="2.0" height="15.0" fill="rgb(217,190,41)" rx="2" ry="2" />
<text text-anchor="" x="644.03" 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::WriteMessage (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Core::WriteMessage (1 samples, 0.04%)</title><rect x="888.7" y="209" width="0.5" height="15.0" fill="rgb(220,104,46)" rx="2" ry="2" />
<text text-anchor="" x="891.74" y="219.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_out (1 samples, 0.04%)</title><rect x="51.0" y="465" width="0.5" height="15.0" fill="rgb(234,203,16)" rx="2" ry="2" />
<text text-anchor="" x="54.03" y="475.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 (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::trace_event::TraceLog::GetInstance (5 samples, 0.21%)</title><rect x="449.9" y="321" width="2.5" height="15.0" fill="rgb(241,119,0)" rx="2" ry="2" />
<text text-anchor="" x="452.87" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (2 samples, 0.08%)</title><rect x="171.1" y="385" width="1.0" height="15.0" fill="rgb(246,187,33)" rx="2" ry="2" />
<text text-anchor="" x="174.14" 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::OnWriteCompletedNoLock (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::OnWriteCompletedNoLock (2 samples, 0.08%)</title><rect x="409.3" y="145" width="1.0" height="15.0" fill="rgb(253,57,47)" rx="2" ry="2" />
<text text-anchor="" x="412.34" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (2 samples, 0.08%)</title><rect x="76.1" y="449" width="1.0" height="15.0" fill="rgb(252,109,1)" rx="2" ry="2" />
<text text-anchor="" x="79.06" y="459.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_process_times (1 samples, 0.04%)</title><rect x="1088.4" y="209" width="0.5" height="15.0" fill="rgb(231,160,47)" rx="2" ry="2" />
<text text-anchor="" x="1091.41" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_execve (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_execve (5 samples, 0.21%)</title><rect x="12.0" y="273" width="2.5" height="15.0" fill="rgb(228,107,17)" rx="2" ry="2" />
<text text-anchor="" x="15.00" y="283.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelMojo::Send (1 samples, 0.04%)</title><rect x="827.7" y="257" width="0.5" height="15.0" fill="rgb(211,10,37)" rx="2" ry="2" />
<text text-anchor="" x="830.69" y="267.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_setaffinity@@GLIBC_2.3.4 (4 samples, 0.17%)</title><rect x="191.7" y="465" width="2.0" height="15.0" fill="rgb(240,118,27)" rx="2" ry="2" />
<text text-anchor="" x="194.65" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::OnLibeventNotification (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::OnLibeventNotification (2 samples, 0.08%)</title><rect x="672.1" y="353" width="1.0" height="15.0" fill="rgb(249,205,27)" rx="2" ry="2" />
<text text-anchor="" x="675.06" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (1 samples, 0.04%)</title><rect x="109.6" y="337" width="0.5" height="15.0" fill="rgb(240,61,35)" rx="2" ry="2" />
<text text-anchor="" x="112.58" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_mmap (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_mmap (1 samples, 0.04%)</title><rect x="1120.4" y="497" width="0.5" height="15.0" fill="rgb(208,228,23)" rx="2" ry="2" />
<text text-anchor="" x="1123.44" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::MessagePipeReader::MessageWasArrived (236 samples, 10.01%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::MessagePipeReader::MessageWasArrived (236 samples, 10.01%)</title><rect x="824.2" y="289" width="118.1" height="15.0" fill="rgb(227,196,34)" rx="2" ry="2" />
<text text-anchor="" x="827.19" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IPC::internal:..</text>
</g>
<g class="func_g" onmouseover="s('clear_buddies (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>clear_buddies (1 samples, 0.04%)</title><rect x="749.6" y="209" width="0.5" height="15.0" fill="rgb(234,182,43)" rx="2" ry="2" />
<text text-anchor="" x="752.63" y="219.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::View::IsValid (1 samples, 0.04%)</title><rect x="1031.9" y="305" width="0.5" height="15.0" fill="rgb(235,32,6)" rx="2" ry="2" />
<text text-anchor="" x="1034.87" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (40 samples, 1.70%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (40 samples, 1.70%)</title><rect x="12.0" y="545" width="20.0" height="15.0" fill="rgb(254,3,34)" rx="2" ry="2" />
<text text-anchor="" x="15.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 (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::TimeTicks::NowFromSystemTraceTime (2 samples, 0.08%)</title><rect x="448.9" y="321" width="1.0" height="15.0" fill="rgb(236,155,40)" rx="2" ry="2" />
<text text-anchor="" x="451.87" y="331.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.59%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_destruct_scm (14 samples, 0.59%)</title><rect x="532.9" y="209" width="7.0" height="15.0" fill="rgb(244,88,0)" rx="2" ry="2" />
<text text-anchor="" x="535.94" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (2 samples, 0.08%)</title><rect x="544.5" y="241" width="1.0" height="15.0" fill="rgb(240,82,26)" rx="2" ry="2" />
<text text-anchor="" x="547.45" 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::AddRef (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (4 samples, 0.17%)</title><rect x="495.4" y="401" width="2.0" height="15.0" fill="rgb(231,204,6)" rx="2" ry="2" />
<text text-anchor="" x="498.41" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_ZNSs4_Rep9_S_createEmmRKSaIcE@plt (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZNSs4_Rep9_S_createEmmRKSaIcE@plt (2 samples, 0.08%)</title><rect x="32.0" y="545" width="1.0" height="15.0" fill="rgb(244,3,42)" rx="2" ry="2" />
<text text-anchor="" x="35.02" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule (80 samples, 3.39%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule (80 samples, 3.39%)</title><rect x="289.2" y="321" width="40.1" height="15.0" fill="rgb(228,198,26)" rx="2" ry="2" />
<text text-anchor="" x="292.24" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sch..</text>
</g>
<g class="func_g" onmouseover="s('___sys_recvmsg (50 samples, 2.12%)')" onmouseout="c()" onclick="zoom(this)">
<title>___sys_recvmsg (50 samples, 2.12%)</title><rect x="521.4" y="305" width="25.1" height="15.0" fill="rgb(240,227,46)" rx="2" ry="2" />
<text text-anchor="" x="524.43" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s('free (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>free (1 samples, 0.04%)</title><rect x="864.7" y="65" width="0.5" height="15.0" fill="rgb(241,207,20)" rx="2" ry="2" />
<text text-anchor="" x="867.72" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__libc_recvmsg (6 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_recvmsg (6 samples, 0.25%)</title><rect x="1021.9" y="289" width="3.0" height="15.0" fill="rgb(232,203,24)" rx="2" ry="2" />
<text text-anchor="" x="1024.86" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::OnReadMessage (82 samples, 3.48%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::OnReadMessage (82 samples, 3.48%)</title><rect x="568.0" y="369" width="41.0" height="15.0" fill="rgb(210,217,2)" rx="2" ry="2" />
<text text-anchor="" x="570.97" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >moj..</text>
</g>
<g class="func_g" onmouseover="s('free (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>free (1 samples, 0.04%)</title><rect x="500.9" y="401" width="0.5" height="15.0" fill="rgb(233,8,40)" rx="2" ry="2" />
<text text-anchor="" x="503.92" y="411.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pm_relax (1 samples, 0.04%)</title><rect x="729.1" y="257" width="0.5" height="15.0" fill="rgb(250,35,42)" rx="2" ry="2" />
<text text-anchor="" x="732.11" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_ZdlPv@plt (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZdlPv@plt (1 samples, 0.04%)</title><rect x="811.2" y="321" width="0.5" height="15.0" fill="rgb(219,54,46)" rx="2" ry="2" />
<text text-anchor="" x="814.18" y="331.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::string::compare (1 samples, 0.04%)</title><rect x="472.4" y="337" width="0.5" height="15.0" fill="rgb(235,68,24)" rx="2" ry="2" />
<text text-anchor="" x="475.39" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('set_next_buddy (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>set_next_buddy (1 samples, 0.04%)</title><rect x="304.2" y="241" width="0.5" height="15.0" fill="rgb(249,90,26)" rx="2" ry="2" />
<text text-anchor="" x="307.25" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_cfs_shares (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (5 samples, 0.21%)</title><rect x="148.1" y="257" width="2.5" height="15.0" fill="rgb(243,8,28)" rx="2" ry="2" />
<text text-anchor="" x="151.12" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__clock_gettime (36 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>__clock_gettime (36 samples, 1.53%)</title><rect x="645.5" y="353" width="18.1" height="15.0" fill="rgb(216,219,41)" rx="2" ry="2" />
<text text-anchor="" x="648.54" 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 (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_enqueue (1 samples, 0.04%)</title><rect x="125.6" y="257" width="0.5" height="15.0" fill="rgb(254,73,17)" rx="2" ry="2" />
<text text-anchor="" x="128.60" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::OnReadCompleted (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::OnReadCompleted (3 samples, 0.13%)</title><rect x="972.8" y="321" width="1.5" height="15.0" fill="rgb(234,10,42)" rx="2" ry="2" />
<text text-anchor="" x="975.82" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('std::vectorunsigned char, std::allocatorunsigned char ::_M_default_append (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::vectorunsigned char, std::allocatorunsigned char ::_M_default_append (3 samples, 0.13%)</title><rect x="595.0" y="289" width="1.5" height="15.0" fill="rgb(215,206,29)" rx="2" ry="2" />
<text text-anchor="" x="598.00" 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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::AddRef (2 samples, 0.08%)</title><rect x="947.3" y="305" width="1.0" height="15.0" fill="rgb(236,193,8)" rx="2" ry="2" />
<text text-anchor="" x="950.29" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('testing::UnitTest::Run (920 samples, 39.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>testing::UnitTest::Run (920 samples, 39.02%)</title><rect x="641.0" y="497" width="460.4" height="15.0" fill="rgb(219,192,39)" rx="2" ry="2" />
<text text-anchor="" x="644.03" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >testing::UnitTest::Run</text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (65 samples, 2.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (65 samples, 2.76%)</title><rect x="520.4" y="353" width="32.6" height="15.0" fill="rgb(210,97,34)" rx="2" ry="2" />
<text text-anchor="" x="523.43" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sy..</text>
</g>
<g class="func_g" onmouseover="s('mutex_lock_interruptible (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>mutex_lock_interruptible (2 samples, 0.08%)</title><rect x="539.9" y="257" width="1.0" height="15.0" fill="rgb(215,25,33)" rx="2" ry="2" />
<text text-anchor="" x="542.95" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (10 samples, 0.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (10 samples, 0.42%)</title><rect x="12.0" y="433" width="5.0" height="15.0" fill="rgb(240,111,10)" rx="2" ry="2" />
<text text-anchor="" x="15.00" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ObserverListBasebase::SystemMonitor::DevicesChangedObserver::Iterator::~Iterator (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>ObserverListBasebase::SystemMonitor::DevicesChangedObserver::Iterator::~Iterator (1 samples, 0.04%)</title><rect x="951.3" y="305" width="0.5" height="15.0" fill="rgb(245,157,15)" rx="2" ry="2" />
<text text-anchor="" x="954.30" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_cfs_shares (6 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (6 samples, 0.25%)</title><rect x="300.7" y="225" width="3.0" height="15.0" fill="rgb(207,145,14)" rx="2" ry="2" />
<text text-anchor="" x="303.75" y="235.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (4 samples, 0.17%)</title><rect x="10.0" y="337" width="2.0" height="15.0" fill="rgb(232,167,50)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (10 samples, 0.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (10 samples, 0.42%)</title><rect x="12.0" y="417" width="5.0" height="15.0" fill="rgb(232,0,27)" rx="2" ry="2" />
<text text-anchor="" x="15.00" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::test::PerformanceChannelListener::OnMessageReceived (183 samples, 7.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::test::PerformanceChannelListener::OnMessageReceived (183 samples, 7.76%)</title><rect x="828.2" y="257" width="91.6" height="15.0" fill="rgb(219,68,42)" rx="2" ry="2" />
<text text-anchor="" x="831.19" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IPC::test:..</text>
</g>
<g class="func_g" onmouseover="s('sock_recvmsg (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (1 samples, 0.04%)</title><rect x="1017.4" y="225" width="0.5" height="15.0" fill="rgb(253,135,25)" rx="2" ry="2" />
<text text-anchor="" x="1020.35" y="235.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 (6 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::AsyncHandleWaiter::Context::WillProcessIOEvent (6 samples, 0.25%)</title><rect x="808.2" y="321" width="3.0" height="15.0" fill="rgb(248,105,1)" rx="2" ry="2" />
<text text-anchor="" x="811.18" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__kmalloc_node_track_caller (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_node_track_caller (5 samples, 0.21%)</title><rect x="93.1" y="401" width="2.5" height="15.0" fill="rgb(224,46,11)" rx="2" ry="2" />
<text text-anchor="" x="96.07" 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::MessageWasArrived (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::MessagePipeReader::MessageWasArrived (2 samples, 0.08%)</title><rect x="481.9" y="385" width="1.0" height="15.0" fill="rgb(226,87,28)" rx="2" ry="2" />
<text text-anchor="" x="484.90" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (2 samples, 0.08%)</title><rect x="1006.3" y="161" width="1.0" height="15.0" fill="rgb(213,71,44)" rx="2" ry="2" />
<text text-anchor="" x="1009.34" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('auditsys (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>auditsys (2 samples, 0.08%)</title><rect x="979.8" y="273" width="1.0" height="15.0" fill="rgb(237,11,25)" rx="2" ry="2" />
<text text-anchor="" x="982.82" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (10 samples, 0.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (10 samples, 0.42%)</title><rect x="12.0" y="465" width="5.0" height="15.0" fill="rgb(231,135,3)" rx="2" ry="2" />
<text text-anchor="" x="15.00" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rb_next (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>rb_next (2 samples, 0.08%)</title><rect x="782.2" y="193" width="1.0" height="15.0" fill="rgb(244,32,3)" rx="2" ry="2" />
<text text-anchor="" x="785.15" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::ChannelMojo::OnMessageReceived (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelMojo::OnMessageReceived (3 samples, 0.13%)</title><rect x="349.3" y="369" width="1.5" height="15.0" fill="rgb(236,199,35)" rx="2" ry="2" />
<text text-anchor="" x="352.29" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_sched_clock (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (2 samples, 0.08%)</title><rect x="156.6" y="225" width="1.0" height="15.0" fill="rgb(206,96,49)" rx="2" ry="2" />
<text text-anchor="" x="159.62" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_audit (24 samples, 1.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_audit (24 samples, 1.02%)</title><rect x="241.2" y="401" width="12.0" height="15.0" fill="rgb(222,209,43)" rx="2" ry="2" />
<text text-anchor="" x="244.20" y="411.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>kretprobe_trampoline (1 samples, 0.04%)</title><rect x="30.5" y="529" width="0.5" height="15.0" fill="rgb(237,42,54)" rx="2" ry="2" />
<text text-anchor="" x="33.52" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fput (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>fput (1 samples, 0.04%)</title><rect x="546.5" y="305" width="0.5" height="15.0" fill="rgb(253,192,30)" rx="2" ry="2" />
<text text-anchor="" x="549.45" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_audit (26 samples, 1.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_audit (26 samples, 1.10%)</title><rect x="697.1" y="321" width="13.0" height="15.0" fill="rgb(246,149,24)" rx="2" ry="2" />
<text text-anchor="" x="700.08" y="331.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::OnWriteCompletedNoLock (1 samples, 0.04%)</title><rect x="863.7" y="81" width="0.5" height="15.0" fill="rgb(212,1,7)" rx="2" ry="2" />
<text text-anchor="" x="866.72" y="91.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_setaffinity (4 samples, 0.17%)</title><rect x="191.7" y="417" width="2.0" height="15.0" fill="rgb(237,111,40)" rx="2" ry="2" />
<text text-anchor="" x="194.65" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__get_user_pages (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__get_user_pages (1 samples, 0.04%)</title><rect x="12.0" y="193" width="0.5" height="15.0" fill="rgb(218,125,20)" rx="2" ry="2" />
<text text-anchor="" x="15.00" y="203.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>mutex_unlock (1 samples, 0.04%)</title><rect x="288.2" y="353" width="0.5" height="15.0" fill="rgb(223,154,5)" rx="2" ry="2" />
<text text-anchor="" x="291.24" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_enable (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (2 samples, 0.08%)</title><rect x="765.6" y="161" width="1.0" height="15.0" fill="rgb(238,7,27)" rx="2" ry="2" />
<text text-anchor="" x="768.64" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__libc_start_main (1,818 samples, 77.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_start_main (1,818 samples, 77.10%)</title><rect x="191.7" y="545" width="909.7" height="15.0" fill="rgb(252,185,29)" rx="2" ry="2" />
<text text-anchor="" x="194.65" y="555.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::IPCChannelPerfTestBase::RunTestChannelPingPong (920 samples, 39.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::test::IPCChannelPerfTestBase::RunTestChannelPingPong (920 samples, 39.02%)</title><rect x="641.0" y="417" width="460.4" height="15.0" fill="rgb(211,47,21)" rx="2" ry="2" />
<text text-anchor="" x="644.03" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IPC::test::IPCChannelPerfTestBase::RunTestChannelPingPong</text>
</g>
<g class="func_g" onmouseover="s('_ZNSt6vectorIN4mojo6system10RawChannel11WriteBuffer6BufferESaIS4_EE19_M_emplace_back_auxIJRKS4_EEEvDpOT_@plt (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZNSt6vectorIN4mojo6system10RawChannel11WriteBuffer6BufferESaIS4_EE19_M_emplace_back_auxIJRKS4_EEEvDpOT_@plt (1 samples, 0.04%)</title><rect x="406.8" y="129" width="0.5" height="15.0" fill="rgb(244,41,36)" rx="2" ry="2" />
<text text-anchor="" x="409.84" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sysret_signal (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_signal (1 samples, 0.04%)</title><rect x="710.1" y="321" width="0.5" height="15.0" fill="rgb(211,74,13)" rx="2" ry="2" />
<text text-anchor="" x="713.09" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::ChannelMojo::Send (120 samples, 5.09%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelMojo::Send (120 samples, 5.09%)</title><rect x="834.2" y="241" width="60.0" height="15.0" fill="rgb(229,56,11)" rx="2" ry="2" />
<text text-anchor="" x="837.20" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IPC::C..</text>
</g>
<g class="func_g" onmouseover="s('audit_filter_inodes (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_inodes (1 samples, 0.04%)</title><rect x="708.6" y="305" width="0.5" height="15.0" fill="rgb(232,164,9)" rx="2" ry="2" />
<text text-anchor="" x="711.59" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_int_malloc (40 samples, 1.70%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_malloc (40 samples, 1.70%)</title><rect x="1139.5" y="545" width="20.0" height="15.0" fill="rgb(221,86,31)" rx="2" ry="2" />
<text text-anchor="" x="1142.46" y="555.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_kprobe (2 samples, 0.08%)</title><rect x="550.0" y="257" width="1.0" height="15.0" fill="rgb(251,143,8)" rx="2" ry="2" />
<text text-anchor="" x="552.96" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::DoIdleWork (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::DoIdleWork (2 samples, 0.08%)</title><rect x="666.1" y="353" width="1.0" height="15.0" fill="rgb(245,138,18)" rx="2" ry="2" />
<text text-anchor="" x="669.06" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ttwu_do_wakeup (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_wakeup (2 samples, 0.08%)</title><rect x="166.6" y="321" width="1.0" height="15.0" fill="rgb(241,164,45)" rx="2" ry="2" />
<text text-anchor="" x="169.63" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.04%)</title><rect x="109.1" y="337" width="0.5" height="15.0" fill="rgb(247,4,21)" rx="2" ry="2" />
<text text-anchor="" x="112.08" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__clock_gettime (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>__clock_gettime (5 samples, 0.21%)</title><rect x="446.4" y="321" width="2.5" height="15.0" fill="rgb(205,216,40)" rx="2" ry="2" />
<text text-anchor="" x="449.37" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_ops_list_func (18 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_ops_list_func (18 samples, 0.76%)</title><rect x="181.1" y="481" width="9.1" height="15.0" fill="rgb(231,55,30)" rx="2" ry="2" />
<text text-anchor="" x="184.15" y="491.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_read_tsc (1 samples, 0.04%)</title><rect x="305.8" y="193" width="0.5" height="15.0" fill="rgb(241,50,5)" rx="2" ry="2" />
<text text-anchor="" x="308.75" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('get_kprobe (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>get_kprobe (4 samples, 0.17%)</title><rect x="185.6" y="449" width="2.1" height="15.0" fill="rgb(250,167,27)" rx="2" ry="2" />
<text text-anchor="" x="188.65" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::current (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::current (3 samples, 0.13%)</title><rect x="579.5" y="273" width="1.5" height="15.0" fill="rgb(217,150,7)" rx="2" ry="2" />
<text text-anchor="" x="582.48" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('account_entity_dequeue (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_dequeue (1 samples, 0.04%)</title><rect x="298.7" y="241" width="0.5" height="15.0" fill="rgb(212,103,8)" rx="2" ry="2" />
<text text-anchor="" x="301.74" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kprobe_ftrace_handler (10 samples, 0.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>kprobe_ftrace_handler (10 samples, 0.42%)</title><rect x="184.1" y="465" width="5.1" height="15.0" fill="rgb(230,32,40)" rx="2" ry="2" />
<text text-anchor="" x="187.15" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('load_elf_binary (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>load_elf_binary (1 samples, 0.04%)</title><rect x="30.5" y="465" width="0.5" height="15.0" fill="rgb(239,21,1)" rx="2" ry="2" />
<text text-anchor="" x="33.52" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::current (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::current (4 samples, 0.17%)</title><rect x="1048.9" y="193" width="2.0" height="15.0" fill="rgb(220,60,40)" rx="2" ry="2" />
<text text-anchor="" x="1051.88" y="203.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_regs_caller (2 samples, 0.08%)</title><rect x="190.7" y="497" width="1.0" height="15.0" fill="rgb(233,174,46)" rx="2" ry="2" />
<text text-anchor="" x="193.65" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_ops_test (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_ops_test (4 samples, 0.17%)</title><rect x="182.1" y="465" width="2.0" height="15.0" fill="rgb(222,154,23)" rx="2" ry="2" />
<text text-anchor="" x="185.15" 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 (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (1 samples, 0.04%)</title><rect x="422.8" y="193" width="0.6" height="15.0" fill="rgb(222,130,23)" rx="2" ry="2" />
<text text-anchor="" x="425.85" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_ZNK4base8internal13WeakReference8is_validEv@plt (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK4base8internal13WeakReference8is_validEv@plt (1 samples, 0.04%)</title><rect x="344.3" y="401" width="0.5" height="15.0" fill="rgb(223,103,2)" rx="2" ry="2" />
<text text-anchor="" x="347.28" 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 (269 samples, 11.41%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::AsyncHandleWaiter::Context::DidProcessIOEvent (269 samples, 11.41%)</title><rect x="347.3" y="385" width="134.6" height="15.0" fill="rgb(222,192,18)" rx="2" ry="2" />
<text text-anchor="" x="350.29" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IPC::internal::As..</text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_disable (7 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_disable (7 samples, 0.30%)</title><rect x="775.6" y="161" width="3.6" height="15.0" fill="rgb(220,183,5)" rx="2" ry="2" />
<text text-anchor="" x="778.65" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('PickleIterator::ReadString (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>PickleIterator::ReadString (1 samples, 0.04%)</title><rect x="923.8" y="257" width="0.5" height="15.0" fill="rgb(250,76,19)" rx="2" ry="2" />
<text text-anchor="" x="926.77" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('update_curr (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (1 samples, 0.04%)</title><rect x="303.7" y="225" width="0.5" height="15.0" fill="rgb(206,168,7)" rx="2" ry="2" />
<text text-anchor="" x="306.75" y="235.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 (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::trace_event::TraceLog::GetInstance (3 samples, 0.13%)</title><rect x="901.3" y="225" width="1.5" height="15.0" fill="rgb(237,12,10)" rx="2" ry="2" />
<text text-anchor="" x="904.26" y="235.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::View::IsValid (2 samples, 0.08%)</title><rect x="563.5" y="385" width="1.0" height="15.0" fill="rgb(245,109,39)" rx="2" ry="2" />
<text text-anchor="" x="566.47" y="395.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.93%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (22 samples, 0.93%)</title><rect x="37.5" y="513" width="11.0" height="15.0" fill="rgb(223,167,4)" rx="2" ry="2" />
<text text-anchor="" x="40.52" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('testing::Test::Run (920 samples, 39.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>testing::Test::Run (920 samples, 39.02%)</title><rect x="641.0" y="433" width="460.4" height="15.0" fill="rgb(247,212,37)" rx="2" ry="2" />
<text text-anchor="" x="644.03" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >testing::Test::Run</text>
</g>
<g class="func_g" onmouseover="s('update_cfs_rq_blocked_load (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_rq_blocked_load (1 samples, 0.04%)</title><rect x="137.6" y="241" width="0.5" height="15.0" fill="rgb(232,154,24)" rx="2" ry="2" />
<text text-anchor="" x="140.61" y="251.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReference::is_valid (2 samples, 0.08%)</title><rect x="945.8" y="305" width="1.0" height="15.0" fill="rgb(237,136,21)" rx="2" ry="2" />
<text text-anchor="" x="948.79" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_cond_resched (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>_cond_resched (2 samples, 0.08%)</title><rect x="729.6" y="257" width="1.0" height="15.0" fill="rgb(227,177,26)" rx="2" ry="2" />
<text text-anchor="" x="732.61" 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.04%)')" 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.04%)</title><rect x="407.8" y="113" width="0.5" height="15.0" fill="rgb(230,176,19)" rx="2" ry="2" />
<text text-anchor="" x="410.84" y="123.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_task_sched_out (1 samples, 0.04%)</title><rect x="51.0" y="481" width="0.5" height="15.0" fill="rgb(246,117,4)" rx="2" ry="2" />
<text text-anchor="" x="54.03" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_after_swapgs (8 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_after_swapgs (8 samples, 0.34%)</title><rect x="711.1" y="321" width="4.0" height="15.0" fill="rgb(237,13,50)" rx="2" ry="2" />
<text text-anchor="" x="714.09" y="331.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.17%)</title><rect x="641.0" y="177" width="2.0" height="15.0" fill="rgb(251,8,1)" rx="2" ry="2" />
<text text-anchor="" x="644.03" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.04%)</title><rect x="77.1" y="449" width="0.5" height="15.0" fill="rgb(241,42,47)" rx="2" ry="2" />
<text text-anchor="" x="80.06" 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 (55 samples, 2.33%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::OnReadMessageForEndpoint (55 samples, 2.33%)</title><rect x="1039.4" y="273" width="27.5" height="15.0" fill="rgb(241,60,6)" rx="2" ry="2" />
<text text-anchor="" x="1042.37" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >m..</text>
</g>
<g class="func_g" onmouseover="s('base::internal::WeakReferenceOwner::GetRef (6 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReferenceOwner::GetRef (6 samples, 0.25%)</title><rect x="956.8" y="321" width="3.0" height="15.0" fill="rgb(225,112,19)" rx="2" ry="2" />
<text text-anchor="" x="959.80" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_sched_clock (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (1 samples, 0.04%)</title><rect x="761.6" y="145" width="0.5" height="15.0" fill="rgb(231,124,27)" rx="2" ry="2" />
<text text-anchor="" x="764.64" y="155.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_timer (1 samples, 0.04%)</title><rect x="976.3" y="209" width="0.5" height="15.0" fill="rgb(245,210,47)" rx="2" ry="2" />
<text text-anchor="" x="979.32" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_common (131 samples, 5.56%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (131 samples, 5.56%)</title><rect x="107.1" y="417" width="65.5" height="15.0" fill="rgb(235,181,44)" rx="2" ry="2" />
<text text-anchor="" x="110.08" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__wake_..</text>
</g>
<g class="func_g" onmouseover="s('sock_recvmsg (40 samples, 1.70%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (40 samples, 1.70%)</title><rect x="988.3" y="209" width="20.0" height="15.0" fill="rgb(251,70,50)" rx="2" ry="2" />
<text text-anchor="" x="991.33" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__run_hrtimer (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__run_hrtimer (1 samples, 0.04%)</title><rect x="100.1" y="369" width="0.5" height="15.0" fill="rgb(224,0,39)" rx="2" ry="2" />
<text text-anchor="" x="103.08" y="379.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::current (2 samples, 0.08%)</title><rect x="1058.4" y="209" width="1.0" height="15.0" fill="rgb(221,213,33)" rx="2" ry="2" />
<text text-anchor="" x="1061.39" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__libc_disable_asynccancel (8 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_disable_asynccancel (8 samples, 0.34%)</title><rect x="798.2" y="337" width="4.0" height="15.0" fill="rgb(253,9,29)" rx="2" ry="2" />
<text text-anchor="" x="801.17" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::ChannelMojo::Send (144 samples, 6.11%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelMojo::Send (144 samples, 6.11%)</title><rect x="362.8" y="321" width="72.1" height="15.0" fill="rgb(215,110,41)" rx="2" ry="2" />
<text text-anchor="" x="365.80" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IPC::Cha..</text>
</g>
<g class="func_g" onmouseover="s('ObserverListBasebase::SystemMonitor::DevicesChangedObserver::Iterator::~Iterator (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>ObserverListBasebase::SystemMonitor::DevicesChangedObserver::Iterator::~Iterator (1 samples, 0.04%)</title><rect x="343.8" y="401" width="0.5" height="15.0" fill="rgb(222,119,48)" rx="2" ry="2" />
<text text-anchor="" x="346.78" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('do_execve_common.isra.22 (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>do_execve_common.isra.22 (1 samples, 0.04%)</title><rect x="30.5" y="497" width="0.5" height="15.0" fill="rgb(235,179,51)" rx="2" ry="2" />
<text text-anchor="" x="33.52" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__kmalloc_node_track_caller (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_node_track_caller (1 samples, 0.04%)</title><rect x="92.1" y="417" width="0.5" height="15.0" fill="rgb(254,110,16)" rx="2" ry="2" />
<text text-anchor="" x="95.07" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_sched_clock (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (1 samples, 0.04%)</title><rect x="304.7" y="225" width="0.6" height="15.0" fill="rgb(249,209,31)" rx="2" ry="2" />
<text text-anchor="" x="307.75" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ProxyMessagePipeEndpoint::EnqueueMessage (63 samples, 2.67%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ProxyMessagePipeEndpoint::EnqueueMessage (63 samples, 2.67%)</title><rect x="392.3" y="209" width="31.6" height="15.0" fill="rgb(248,171,3)" rx="2" ry="2" />
<text text-anchor="" x="395.32" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mo..</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::LocalMessagePipeEndpoint::OnReadMessage (35 samples, 1.48%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::LocalMessagePipeEndpoint::OnReadMessage (35 samples, 1.48%)</title><rect x="579.0" y="305" width="17.5" height="15.0" fill="rgb(206,200,1)" rx="2" ry="2" />
<text text-anchor="" x="581.98" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_mmap_pgoff (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_mmap_pgoff (1 samples, 0.04%)</title><rect x="1120.4" y="481" width="0.5" height="15.0" fill="rgb(253,14,46)" rx="2" ry="2" />
<text text-anchor="" x="1123.44" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Channel::OnReadMessage (69 samples, 2.93%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Channel::OnReadMessage (69 samples, 2.93%)</title><rect x="1037.4" y="289" width="34.5" height="15.0" fill="rgb(243,207,33)" rx="2" ry="2" />
<text text-anchor="" x="1040.37" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mo..</text>
</g>
<g class="func_g" onmouseover="s('pthread_getspecific@plt (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_getspecific@plt (2 samples, 0.08%)</title><rect x="1062.4" y="209" width="1.0" height="15.0" fill="rgb(230,188,30)" rx="2" ry="2" />
<text text-anchor="" x="1065.39" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('hrtimer_interrupt (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (1 samples, 0.04%)</title><rect x="100.1" y="385" width="0.5" height="15.0" fill="rgb(250,182,12)" rx="2" ry="2" />
<text text-anchor="" x="103.08" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::MessagePipeReader::Send (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::MessagePipeReader::Send (1 samples, 0.04%)</title><rect x="443.9" y="321" width="0.5" height="15.0" fill="rgb(249,175,23)" rx="2" ry="2" />
<text text-anchor="" x="446.87" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('path_put (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>path_put (1 samples, 0.04%)</title><rect x="706.6" y="289" width="0.5" height="15.0" fill="rgb(212,111,7)" rx="2" ry="2" />
<text text-anchor="" x="709.59" y="299.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.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_data (3 samples, 0.13%)</title><rect x="531.4" y="225" width="1.5" height="15.0" fill="rgb(210,15,53)" rx="2" ry="2" />
<text text-anchor="" x="534.44" y="235.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 (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::View::View (1 samples, 0.04%)</title><rect x="1032.4" y="305" width="0.5" height="15.0" fill="rgb(207,35,39)" rx="2" ry="2" />
<text text-anchor="" x="1035.37" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('testing::TestCase::Run (920 samples, 39.02%)')" onmouseout="c()" onclick="zoom(this)">
<title>testing::TestCase::Run (920 samples, 39.02%)</title><rect x="641.0" y="465" width="460.4" height="15.0" fill="rgb(216,103,14)" rx="2" ry="2" />
<text text-anchor="" x="644.03" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >testing::TestCase::Run</text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock@plt (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock@plt (3 samples, 0.13%)</title><rect x="606.0" y="353" width="1.5" height="15.0" fill="rgb(231,31,54)" rx="2" ry="2" />
<text text-anchor="" x="609.01" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_common (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (2 samples, 0.08%)</title><rect x="999.3" y="65" width="1.0" height="15.0" fill="rgb(237,20,18)" rx="2" ry="2" />
<text text-anchor="" x="1002.34" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rcu_check_callbacks (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>rcu_check_callbacks (1 samples, 0.04%)</title><rect x="100.1" y="305" width="0.5" height="15.0" fill="rgb(209,59,33)" rx="2" ry="2" />
<text text-anchor="" x="103.08" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::OnReadCompleted (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::OnReadCompleted (4 samples, 0.17%)</title><rect x="505.4" y="401" width="2.0" height="15.0" fill="rgb(216,147,54)" rx="2" ry="2" />
<text text-anchor="" x="508.42" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::WriteMessage (29 samples, 1.23%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::WriteMessage (29 samples, 1.23%)</title><rect x="399.8" y="161" width="14.5" height="15.0" fill="rgb(227,130,50)" rx="2" ry="2" />
<text text-anchor="" x="402.83" y="171.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 (33 samples, 1.40%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_scan_ready_list.isra.9 (33 samples, 1.40%)</title><rect x="270.7" y="353" width="16.5" height="15.0" fill="rgb(215,14,25)" rx="2" ry="2" />
<text text-anchor="" x="273.72" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_regs_caller (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_regs_caller (3 samples, 0.13%)</title><rect x="1015.9" y="225" width="1.5" height="15.0" fill="rgb(234,123,11)" rx="2" ry="2" />
<text text-anchor="" x="1018.85" y="235.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (4 samples, 0.17%)</title><rect x="12.5" y="145" width="2.0" height="15.0" fill="rgb(240,181,34)" rx="2" ry="2" />
<text text-anchor="" x="15.50" y="155.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.04%)</title><rect x="100.1" y="417" width="0.5" height="15.0" fill="rgb(235,176,48)" rx="2" ry="2" />
<text text-anchor="" x="103.08" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (6 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (6 samples, 0.25%)</title><rect x="115.1" y="321" width="3.0" height="15.0" fill="rgb(244,18,27)" rx="2" ry="2" />
<text text-anchor="" x="118.09" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (1 samples, 0.04%)</title><rect x="761.1" y="161" width="0.5" height="15.0" fill="rgb(217,117,5)" rx="2" ry="2" />
<text text-anchor="" x="764.14" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree (1 samples, 0.04%)</title><rect x="250.2" y="369" width="0.5" height="15.0" fill="rgb(222,220,42)" rx="2" ry="2" />
<text text-anchor="" x="253.20" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::DoDelayedWork (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::DoDelayedWork (5 samples, 0.21%)</title><rect x="663.6" y="353" width="2.5" height="15.0" fill="rgb(209,26,7)" rx="2" ry="2" />
<text text-anchor="" x="666.55" y="363.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::AlignedAlloc (2 samples, 0.08%)</title><rect x="390.8" y="193" width="1.0" height="15.0" fill="rgb(206,114,50)" rx="2" ry="2" />
<text text-anchor="" x="393.82" y="203.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.81%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_regs_call (19 samples, 0.81%)</title><rect x="181.1" y="497" width="9.6" height="15.0" fill="rgb(208,177,37)" rx="2" ry="2" />
<text text-anchor="" x="184.15" 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 (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (2 samples, 0.08%)</title><rect x="882.2" y="177" width="1.0" height="15.0" fill="rgb(254,93,34)" rx="2" ry="2" />
<text text-anchor="" x="885.24" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::RunLoop::Run (915 samples, 38.80%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::RunLoop::Run (915 samples, 38.80%)</title><rect x="643.0" y="385" width="457.9" height="15.0" fill="rgb(230,18,13)" rx="2" ry="2" />
<text text-anchor="" x="646.04" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::RunLoop::Run</text>
</g>
<g class="func_g" onmouseover="s('load_elf_binary (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>load_elf_binary (4 samples, 0.17%)</title><rect x="10.0" y="465" width="2.0" height="15.0" fill="rgb(252,225,34)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ksize (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>ksize (2 samples, 0.08%)</title><rect x="98.1" y="417" width="1.0" height="15.0" fill="rgb(223,48,16)" rx="2" ry="2" />
<text text-anchor="" x="101.07" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_user (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_user (5 samples, 0.21%)</title><rect x="50.0" y="513" width="2.5" height="15.0" fill="rgb(211,27,8)" rx="2" ry="2" />
<text text-anchor="" x="53.03" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_fastpath (166 samples, 7.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_fastpath (166 samples, 7.04%)</title><rect x="715.1" y="321" width="83.1" height="15.0" fill="rgb(232,191,48)" rx="2" ry="2" />
<text text-anchor="" x="718.10" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >system_ca..</text>
</g>
<g class="func_g" onmouseover="s('[unknown] (10 samples, 0.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (10 samples, 0.42%)</title><rect x="12.0" y="369" width="5.0" height="15.0" fill="rgb(224,140,11)" rx="2" ry="2" />
<text text-anchor="" x="15.00" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rb_next (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>rb_next (1 samples, 0.04%)</title><rect x="785.2" y="177" width="0.5" height="15.0" fill="rgb(215,88,51)" rx="2" ry="2" />
<text text-anchor="" x="788.16" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_poll (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_poll (2 samples, 0.08%)</title><rect x="285.7" y="321" width="1.0" height="15.0" fill="rgb(250,35,39)" rx="2" ry="2" />
<text text-anchor="" x="288.73" y="331.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 (259 samples, 10.98%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::AsyncHandleWaiter::Context::DidProcessIOEvent (259 samples, 10.98%)</title><rect x="814.7" y="305" width="129.6" height="15.0" fill="rgb(247,33,54)" rx="2" ry="2" />
<text text-anchor="" x="817.68" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IPC::internal::A..</text>
</g>
<g class="func_g" onmouseover="s('vm_mmap_pgoff (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>vm_mmap_pgoff (1 samples, 0.04%)</title><rect x="1120.4" y="465" width="0.5" height="15.0" fill="rgb(252,157,32)" rx="2" ry="2" />
<text text-anchor="" x="1123.44" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('search_binary_handler (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>search_binary_handler (1 samples, 0.04%)</title><rect x="30.5" y="481" width="0.5" height="15.0" fill="rgb(229,78,51)" rx="2" ry="2" />
<text text-anchor="" x="33.52" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('current_kernel_time (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>current_kernel_time (1 samples, 0.04%)</title><rect x="980.3" y="241" width="0.5" height="15.0" fill="rgb(254,186,22)" rx="2" ry="2" />
<text text-anchor="" x="983.32" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('tick_do_update_jiffies64 (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_do_update_jiffies64 (1 samples, 0.04%)</title><rect x="749.1" y="97" width="0.5" height="15.0" fill="rgb(254,153,30)" rx="2" ry="2" />
<text text-anchor="" x="752.13" 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::Release (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (3 samples, 0.13%)</title><rect x="573.0" y="337" width="1.5" height="15.0" fill="rgb(232,30,23)" rx="2" ry="2" />
<text text-anchor="" x="575.98" y="347.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task (1 samples, 0.04%)</title><rect x="306.3" y="289" width="0.5" height="15.0" fill="rgb(252,131,11)" rx="2" ry="2" />
<text text-anchor="" x="309.25" y="299.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.04%)')" 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.04%)</title><rect x="872.2" y="49" width="0.5" height="15.0" fill="rgb(220,138,4)" rx="2" ry="2" />
<text text-anchor="" x="875.23" y="59.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.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>unroll_tree_refs (3 samples, 0.13%)</title><rect x="48.5" y="513" width="1.5" height="15.0" fill="rgb(235,223,24)" rx="2" ry="2" />
<text text-anchor="" x="51.53" y="523.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (2 samples, 0.08%)</title><rect x="402.8" y="145" width="1.0" height="15.0" fill="rgb(233,94,37)" rx="2" ry="2" />
<text text-anchor="" x="405.83" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('unix_stream_sendmsg (211 samples, 8.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_sendmsg (211 samples, 8.95%)</title><rect x="69.1" y="465" width="105.5" height="15.0" fill="rgb(205,88,30)" rx="2" ry="2" />
<text text-anchor="" x="72.05" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >unix_stream_..</text>
</g>
<g class="func_g" onmouseover="s('IPC::ChannelMojo::OnMessageReceived (223 samples, 9.46%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelMojo::OnMessageReceived (223 samples, 9.46%)</title><rect x="824.7" y="273" width="111.6" height="15.0" fill="rgb(218,78,15)" rx="2" ry="2" />
<text text-anchor="" x="827.69" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IPC::ChannelM..</text>
</g>
<g class="func_g" onmouseover="s('mojo::system::RawChannel::OnReadCompleted (102 samples, 4.33%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::OnReadCompleted (102 samples, 4.33%)</title><rect x="566.5" y="385" width="51.0" height="15.0" fill="rgb(253,195,6)" rx="2" ry="2" />
<text text-anchor="" x="569.47" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mojo:..</text>
</g>
<g class="func_g" onmouseover="s('__memcpy_sse2_unaligned (11 samples, 0.47%)')" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_sse2_unaligned (11 samples, 0.47%)</title><rect x="20.0" y="513" width="5.5" height="15.0" fill="rgb(222,227,48)" rx="2" ry="2" />
<text text-anchor="" x="23.01" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::Message::Message (18 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::Message::Message (18 samples, 0.76%)</title><rect x="434.9" y="321" width="9.0" height="15.0" fill="rgb(228,165,16)" rx="2" ry="2" />
<text text-anchor="" x="437.86" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree (1 samples, 0.04%)</title><rect x="996.8" y="113" width="0.5" height="15.0" fill="rgb(205,54,54)" rx="2" ry="2" />
<text text-anchor="" x="999.84" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::Dispatcher::WriteMessage (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::Dispatcher::WriteMessage (4 samples, 0.17%)</title><rect x="883.2" y="193" width="2.0" height="15.0" fill="rgb(231,16,43)" rx="2" ry="2" />
<text text-anchor="" x="886.24" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('event_base_loop (833 samples, 35.33%)')" onmouseout="c()" onclick="zoom(this)">
<title>event_base_loop (833 samples, 35.33%)</title><rect x="223.2" y="433" width="416.8" height="15.0" fill="rgb(220,197,45)" rx="2" ry="2" />
<text text-anchor="" x="226.18" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >event_base_loop</text>
</g>
<g class="func_g" onmouseover="s('__libc_recvmsg (6 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>__libc_recvmsg (6 samples, 0.25%)</title><rect x="553.0" y="369" width="3.0" height="15.0" fill="rgb(254,186,40)" rx="2" ry="2" />
<text text-anchor="" x="555.96" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree (2 samples, 0.08%)</title><rect x="705.6" y="289" width="1.0" height="15.0" fill="rgb(205,94,44)" rx="2" ry="2" />
<text text-anchor="" x="708.59" y="299.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.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_after_swapgs (3 samples, 0.13%)</title><rect x="18.5" y="481" width="1.5" height="15.0" fill="rgb(254,86,26)" rx="2" ry="2" />
<text text-anchor="" x="21.51" y="491.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::subtle::RefCountedThreadSafeBase::Release (4 samples, 0.17%)</title><rect x="484.9" y="385" width="2.0" height="15.0" fill="rgb(233,62,53)" rx="2" ry="2" />
<text text-anchor="" x="487.90" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('perf_pmu_disable (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_disable (1 samples, 0.04%)</title><rect x="779.2" y="177" width="0.5" height="15.0" fill="rgb(233,118,51)" rx="2" ry="2" />
<text text-anchor="" x="782.15" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_ops_list_func (9 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_ops_list_func (9 samples, 0.38%)</title><rect x="1010.3" y="209" width="4.6" height="15.0" fill="rgb(207,21,54)" rx="2" ry="2" />
<text text-anchor="" x="1013.35" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.04%)</title><rect x="749.1" y="49" width="0.5" height="15.0" fill="rgb(238,108,21)" rx="2" ry="2" />
<text text-anchor="" x="752.13" y="59.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (1 samples, 0.04%)</title><rect x="415.8" y="161" width="0.5" height="15.0" fill="rgb(250,152,49)" rx="2" ry="2" />
<text text-anchor="" x="418.84" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('fget_light (10 samples, 0.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>fget_light (10 samples, 0.42%)</title><rect x="790.7" y="289" width="5.0" height="15.0" fill="rgb(249,179,0)" rx="2" ry="2" />
<text text-anchor="" x="793.66" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule_hrtimeout_range (81 samples, 3.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (81 samples, 3.44%)</title><rect x="288.7" y="353" width="40.6" height="15.0" fill="rgb(214,2,47)" rx="2" ry="2" />
<text text-anchor="" x="291.74" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sch..</text>
</g>
<g class="func_g" onmouseover="s('IPC::ChannelMojo::ReadFromMessageAttachmentSet (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelMojo::ReadFromMessageAttachmentSet (1 samples, 0.04%)</title><rect x="836.7" y="209" width="0.5" height="15.0" fill="rgb(221,66,47)" rx="2" ry="2" />
<text text-anchor="" x="839.70" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mutex_lock (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>mutex_lock (2 samples, 0.08%)</title><rect x="287.2" y="353" width="1.0" height="15.0" fill="rgb(237,44,38)" rx="2" ry="2" />
<text text-anchor="" x="290.23" y="363.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (2 samples, 0.08%)</title><rect x="598.5" y="337" width="1.0" height="15.0" fill="rgb(242,43,31)" rx="2" ry="2" />
<text text-anchor="" x="601.50" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::WillProcessIOEvent (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::WillProcessIOEvent (5 samples, 0.21%)</title><rect x="951.3" y="321" width="2.5" height="15.0" fill="rgb(252,124,16)" rx="2" ry="2" />
<text text-anchor="" x="954.30" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__pm_relax (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pm_relax (2 samples, 0.08%)</title><rect x="272.2" y="337" width="1.0" height="15.0" fill="rgb(229,87,19)" rx="2" ry="2" />
<text text-anchor="" x="275.22" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::DoIdleWork (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::DoIdleWork (1 samples, 0.04%)</title><rect x="643.0" y="369" width="0.5" height="15.0" fill="rgb(206,166,42)" rx="2" ry="2" />
<text text-anchor="" x="646.04" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('system_call_after_swapgs (7 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
<title>system_call_after_swapgs (7 samples, 0.30%)</title><rect x="54.5" y="529" width="3.5" height="15.0" fill="rgb(239,114,54)" rx="2" ry="2" />
<text text-anchor="" x="57.54" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__sys_recvmsg (76 samples, 3.22%)')" onmouseout="c()" onclick="zoom(this)">
<title>__sys_recvmsg (76 samples, 3.22%)</title><rect x="983.8" y="241" width="38.1" height="15.0" fill="rgb(214,14,11)" rx="2" ry="2" />
<text text-anchor="" x="986.83" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__s..</text>
</g>
<g class="func_g" onmouseover="s('sys_epoll_wait (165 samples, 7.00%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (165 samples, 7.00%)</title><rect x="715.6" y="305" width="82.6" height="15.0" fill="rgb(236,23,8)" rx="2" ry="2" />
<text text-anchor="" x="718.60" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys_epoll..</text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (3 samples, 0.13%)</title><rect x="730.6" y="257" width="1.5" height="15.0" fill="rgb(227,185,51)" rx="2" ry="2" />
<text text-anchor="" x="733.61" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock_cpu (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (2 samples, 0.08%)</title><rect x="761.6" y="161" width="1.0" height="15.0" fill="rgb(216,16,34)" rx="2" ry="2" />
<text text-anchor="" x="764.64" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::ChannelEndpoint::EnqueueMessage (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::ChannelEndpoint::EnqueueMessage (1 samples, 0.04%)</title><rect x="387.3" y="209" width="0.5" height="15.0" fill="rgb(222,156,47)" rx="2" ry="2" />
<text text-anchor="" x="390.32" y="219.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (1 samples, 0.04%)</title><rect x="1159.0" y="529" width="0.5" height="15.0" fill="rgb(231,224,27)" rx="2" ry="2" />
<text text-anchor="" x="1161.97" y="539.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_rotate_start.isra.39 (1 samples, 0.04%)</title><rect x="307.8" y="257" width="0.5" height="15.0" fill="rgb(223,194,4)" rx="2" ry="2" />
<text text-anchor="" x="310.75" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (10 samples, 0.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (10 samples, 0.42%)</title><rect x="12.0" y="321" width="5.0" height="15.0" fill="rgb(230,114,21)" rx="2" ry="2" />
<text text-anchor="" x="15.00" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sock_sendmsg_handler (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg_handler (3 samples, 0.13%)</title><rect x="187.7" y="449" width="1.5" height="15.0" fill="rgb(233,16,6)" rx="2" ry="2" />
<text text-anchor="" x="190.65" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sockfd_lookup_light (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>sockfd_lookup_light (4 samples, 0.17%)</title><rect x="551.0" y="305" width="2.0" height="15.0" fill="rgb(249,118,34)" rx="2" ry="2" />
<text text-anchor="" x="553.96" y="315.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.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (3 samples, 0.13%)</title><rect x="694.6" y="305" width="1.5" height="15.0" fill="rgb(225,171,19)" rx="2" ry="2" />
<text text-anchor="" x="697.58" y="315.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (1 samples, 0.04%)</title><rect x="173.6" y="417" width="0.5" height="15.0" fill="rgb(212,2,21)" rx="2" ry="2" />
<text text-anchor="" x="176.64" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (10 samples, 0.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (10 samples, 0.42%)</title><rect x="12.0" y="305" width="5.0" height="15.0" fill="rgb(209,139,17)" rx="2" ry="2" />
<text text-anchor="" x="15.00" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_fair (16 samples, 0.68%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_fair (16 samples, 0.68%)</title><rect x="779.7" y="209" width="8.0" height="15.0" fill="rgb(226,77,3)" rx="2" ry="2" />
<text text-anchor="" x="782.65" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_getspecific@plt (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_getspecific@plt (2 samples, 0.08%)</title><rect x="594.0" y="289" width="1.0" height="15.0" fill="rgb(247,18,41)" rx="2" ry="2" />
<text text-anchor="" x="596.99" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_ops_test (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_ops_test (1 samples, 0.04%)</title><rect x="549.0" y="273" width="0.5" height="15.0" fill="rgb(236,124,4)" rx="2" ry="2" />
<text text-anchor="" x="551.96" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('mojo::system::HandleTable::GetDispatcher (7 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::HandleTable::GetDispatcher (7 samples, 0.30%)</title><rect x="885.2" y="193" width="3.5" height="15.0" fill="rgb(228,115,4)" rx="2" ry="2" />
<text text-anchor="" x="888.24" y="203.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.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>epoll_dispatch (6 samples, 0.25%)</title><rect x="1092.9" y="337" width="3.0" height="15.0" fill="rgb(206,19,16)" rx="2" ry="2" />
<text text-anchor="" x="1095.92" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (1 samples, 0.04%)</title><rect x="772.1" y="177" width="0.5" height="15.0" fill="rgb(247,99,28)" rx="2" ry="2" />
<text text-anchor="" x="775.15" y="187.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>void mojo::system::internal::CheckUserPointerWithCount1ul, 1ul (1 samples, 0.04%)</title><rect x="859.2" y="113" width="0.5" height="15.0" fill="rgb(209,155,37)" rx="2" ry="2" />
<text text-anchor="" x="862.22" y="123.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_out (1 samples, 0.04%)</title><rect x="295.7" y="289" width="0.5" height="15.0" fill="rgb(250,58,15)" rx="2" ry="2" />
<text text-anchor="" x="298.74" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kfree (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>kfree (1 samples, 0.04%)</title><rect x="996.3" y="129" width="0.5" height="15.0" fill="rgb(252,67,35)" rx="2" ry="2" />
<text text-anchor="" x="999.34" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (2 samples, 0.08%)</title><rect x="999.3" y="33" width="1.0" height="15.0" fill="rgb(218,53,21)" rx="2" ry="2" />
<text text-anchor="" x="1002.34" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_entity (10 samples, 0.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (10 samples, 0.42%)</title><rect x="755.1" y="161" width="5.0" height="15.0" fill="rgb(218,123,34)" rx="2" ry="2" />
<text text-anchor="" x="758.13" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('event_base_loop (844 samples, 35.79%)')" onmouseout="c()" onclick="zoom(this)">
<title>event_base_loop (844 samples, 35.79%)</title><rect x="678.6" y="353" width="422.3" height="15.0" fill="rgb(231,16,14)" rx="2" ry="2" />
<text text-anchor="" x="681.57" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >event_base_loop</text>
</g>
<g class="func_g" onmouseover="s('update_curr (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (1 samples, 0.04%)</title><rect x="303.2" y="209" width="0.5" height="15.0" fill="rgb(237,177,18)" rx="2" ry="2" />
<text text-anchor="" x="306.25" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__audit_syscall_exit (10 samples, 0.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (10 samples, 0.42%)</title><rect x="513.9" y="337" width="5.0" height="15.0" fill="rgb(228,195,46)" rx="2" ry="2" />
<text text-anchor="" x="516.93" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_lookup_ip (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_lookup_ip (1 samples, 0.04%)</title><rect x="1012.8" y="177" width="0.6" height="15.0" fill="rgb(237,80,18)" rx="2" ry="2" />
<text text-anchor="" x="1015.85" y="187.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>logging::GetMinLogLevel (4 samples, 0.17%)</title><rect x="850.2" y="129" width="2.0" height="15.0" fill="rgb(207,30,54)" rx="2" ry="2" />
<text text-anchor="" x="853.21" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_unlink (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_unlink (3 samples, 0.13%)</title><rect x="544.0" y="257" width="1.5" height="15.0" fill="rgb(238,183,31)" rx="2" ry="2" />
<text text-anchor="" x="546.95" y="267.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (2 samples, 0.08%)</title><rect x="482.9" y="385" width="1.0" height="15.0" fill="rgb(208,41,40)" rx="2" ry="2" />
<text text-anchor="" x="485.90" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_sched_clock (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (3 samples, 0.13%)</title><rect x="154.6" y="241" width="1.5" height="15.0" fill="rgb(210,67,18)" rx="2" ry="2" />
<text text-anchor="" x="157.62" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.04%)</title><rect x="172.6" y="417" width="0.5" height="15.0" fill="rgb(250,62,40)" rx="2" ry="2" />
<text text-anchor="" x="175.64" y="427.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>maybe_add_creds (1 samples, 0.04%)</title><rect x="78.1" y="449" width="0.5" height="15.0" fill="rgb(249,27,47)" rx="2" ry="2" />
<text text-anchor="" x="81.06" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('ftrace_lookup_ip (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_lookup_ip (4 samples, 0.17%)</title><rect x="182.1" y="449" width="2.0" height="15.0" fill="rgb(237,88,15)" rx="2" ry="2" />
<text text-anchor="" x="185.15" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('memset (10 samples, 0.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>memset (10 samples, 0.42%)</title><rect x="581.0" y="273" width="5.0" height="15.0" fill="rgb(234,0,5)" rx="2" ry="2" />
<text text-anchor="" x="583.98" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator delete (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator delete (1 samples, 0.04%)</title><rect x="931.3" y="257" width="0.5" height="15.0" fill="rgb(234,54,21)" rx="2" ry="2" />
<text text-anchor="" x="934.28" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (16 samples, 0.68%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (16 samples, 0.68%)</title><rect x="12.0" y="497" width="8.0" height="15.0" fill="rgb(210,191,2)" rx="2" ry="2" />
<text text-anchor="" x="15.00" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('malloc (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>malloc (4 samples, 0.17%)</title><rect x="501.4" y="401" width="2.0" height="15.0" fill="rgb(218,161,11)" rx="2" ry="2" />
<text text-anchor="" x="504.42" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('non-virtual thunk to IPC::ChannelMojo::OnMessageReceived (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>non-virtual thunk to IPC::ChannelMojo::OnMessageReceived (2 samples, 0.08%)</title><rect x="943.3" y="289" width="1.0" height="15.0" fill="rgb(213,148,35)" rx="2" ry="2" />
<text text-anchor="" x="946.29" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::RunLoop::Run (894 samples, 37.91%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::RunLoop::Run (894 samples, 37.91%)</title><rect x="193.7" y="465" width="447.3" height="15.0" fill="rgb(244,112,30)" rx="2" ry="2" />
<text text-anchor="" x="196.66" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::RunLoop::Run</text>
</g>
<g class="func_g" onmouseover="s('enqueue_task_fair (64 samples, 2.71%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (64 samples, 2.71%)</title><rect x="119.6" y="273" width="32.0" height="15.0" fill="rgb(224,142,42)" rx="2" ry="2" />
<text text-anchor="" x="122.59" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >en..</text>
</g>
<g class="func_g" onmouseover="s('pthread_getspecific (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_getspecific (5 samples, 0.21%)</title><rect x="591.5" y="289" width="2.5" height="15.0" fill="rgb(207,22,21)" rx="2" ry="2" />
<text text-anchor="" x="594.49" y="299.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>sock_poll (4 samples, 0.17%)</title><rect x="736.1" y="241" width="2.0" height="15.0" fill="rgb(216,228,25)" rx="2" ry="2" />
<text text-anchor="" x="739.12" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('deactivate_task (17 samples, 0.72%)')" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (17 samples, 0.72%)</title><rect x="297.7" y="289" width="8.6" height="15.0" fill="rgb(219,190,27)" rx="2" ry="2" />
<text text-anchor="" x="300.74" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::internal::WeakReferenceOwner::GetRef (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::internal::WeakReferenceOwner::GetRef (3 samples, 0.13%)</title><rect x="1089.9" y="337" width="1.5" height="15.0" fill="rgb(220,6,19)" rx="2" ry="2" />
<text text-anchor="" x="1092.92" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_release_all (17 samples, 0.72%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_all (17 samples, 0.72%)</title><rect x="531.4" y="241" width="8.5" height="15.0" fill="rgb(210,57,54)" rx="2" ry="2" />
<text text-anchor="" x="534.44" y="251.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_timer (1 samples, 0.04%)</title><rect x="749.1" y="129" width="0.5" height="15.0" fill="rgb(217,146,2)" rx="2" ry="2" />
<text text-anchor="" x="752.13" y="139.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.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (3 samples, 0.13%)</title><rect x="1085.4" y="321" width="1.5" height="15.0" fill="rgb(231,5,13)" rx="2" ry="2" />
<text text-anchor="" x="1088.41" y="331.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.17%)</title><rect x="15.0" y="193" width="2.0" height="15.0" fill="rgb(231,25,48)" rx="2" ry="2" />
<text text-anchor="" x="18.00" y="203.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.30%)')" onmouseout="c()" onclick="zoom(this)">
<title>fget_light (7 samples, 0.30%)</title><rect x="1018.4" y="209" width="3.5" height="15.0" fill="rgb(238,73,31)" rx="2" ry="2" />
<text text-anchor="" x="1021.35" y="219.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__pm_relax (1 samples, 0.04%)</title><rect x="719.6" y="273" width="0.5" height="15.0" fill="rgb(235,225,50)" rx="2" ry="2" />
<text text-anchor="" x="722.60" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessageLoop::DoWork (10 samples, 0.42%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessageLoop::DoWork (10 samples, 0.42%)</title><rect x="667.1" y="353" width="5.0" height="15.0" fill="rgb(232,98,30)" rx="2" ry="2" />
<text text-anchor="" x="670.06" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_write_msr_safe (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (4 samples, 0.17%)</title><rect x="641.0" y="145" width="2.0" height="15.0" fill="rgb(231,207,51)" rx="2" ry="2" />
<text text-anchor="" x="644.03" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('schedule (91 samples, 3.86%)')" onmouseout="c()" onclick="zoom(this)">
<title>schedule (91 samples, 3.86%)</title><rect x="745.1" y="241" width="45.6" height="15.0" fill="rgb(239,226,3)" rx="2" ry="2" />
<text text-anchor="" x="748.12" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sche..</text>
</g>
<g class="func_g" onmouseover="s('fget_light (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>fget_light (4 samples, 0.17%)</title><rect x="329.8" y="369" width="2.0" height="15.0" fill="rgb(229,75,53)" rx="2" ry="2" />
<text text-anchor="" x="332.77" y="379.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>kprobe_ftrace_handler (2 samples, 0.08%)</title><rect x="1013.4" y="193" width="1.0" height="15.0" fill="rgb(247,228,50)" rx="2" ry="2" />
<text text-anchor="" x="1016.35" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (85 samples, 3.60%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (85 samples, 3.60%)</title><rect x="979.3" y="289" width="42.6" height="15.0" fill="rgb(210,30,21)" rx="2" ry="2" />
<text text-anchor="" x="982.32" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s('IPC::internal::MessagePipeReader::Send (107 samples, 4.54%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::MessagePipeReader::Send (107 samples, 4.54%)</title><rect x="835.7" y="225" width="53.5" height="15.0" fill="rgb(210,123,48)" rx="2" ry="2" />
<text text-anchor="" x="838.70" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IPC::..</text>
</g>
<g class="func_g" onmouseover="s('PickleIterator::PickleIterator (8 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>PickleIterator::PickleIterator (8 samples, 0.34%)</title><rect x="462.4" y="337" width="4.0" height="15.0" fill="rgb(235,219,42)" rx="2" ry="2" />
<text text-anchor="" x="465.38" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('void Pickle::WriteBytesStatic4ul (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>void Pickle::WriteBytesStatic4ul (2 samples, 0.08%)</title><rect x="918.8" y="241" width="1.0" height="15.0" fill="rgb(224,88,37)" rx="2" ry="2" />
<text text-anchor="" x="921.77" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_mutex_lock@plt (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock@plt (2 samples, 0.08%)</title><rect x="1069.4" y="273" width="1.0" height="15.0" fill="rgb(248,111,4)" rx="2" ry="2" />
<text text-anchor="" x="1072.40" y="283.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_timer (1 samples, 0.04%)</title><rect x="100.1" y="353" width="0.5" height="15.0" fill="rgb(243,113,3)" rx="2" ry="2" />
<text text-anchor="" x="103.08" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('crypto_sha1_update (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>crypto_sha1_update (1 samples, 0.04%)</title><rect x="1120.4" y="353" width="0.5" height="15.0" fill="rgb(226,181,43)" rx="2" ry="2" />
<text text-anchor="" x="1123.44" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pick_next_task_fair (16 samples, 0.68%)')" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_fair (16 samples, 0.68%)</title><rect x="318.3" y="289" width="8.0" height="15.0" fill="rgb(252,170,54)" rx="2" ry="2" />
<text text-anchor="" x="321.26" y="299.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>wait_for_completion (4 samples, 0.17%)</title><rect x="191.7" y="369" width="2.0" height="15.0" fill="rgb(252,22,53)" rx="2" ry="2" />
<text text-anchor="" x="194.65" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::MessagePumpLibevent::OnLibeventNotification (564 samples, 23.92%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::MessagePumpLibevent::OnLibeventNotification (564 samples, 23.92%)</title><rect x="804.7" y="337" width="282.2" height="15.0" fill="rgb(252,70,18)" rx="2" ry="2" />
<text text-anchor="" x="807.67" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >base::MessagePumpLibevent::OnLibevent..</text>
</g>
<g class="func_g" onmouseover="s('strlen (6 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>strlen (6 samples, 0.25%)</title><rect x="472.9" y="337" width="3.0" height="15.0" fill="rgb(206,147,9)" rx="2" ry="2" />
<text text-anchor="" x="475.89" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('cpuacct_charge (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>cpuacct_charge (1 samples, 0.04%)</title><rect x="303.7" y="209" width="0.5" height="15.0" fill="rgb(220,188,34)" rx="2" ry="2" />
<text text-anchor="" x="306.75" y="219.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 (6 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::View::IsValid (6 samples, 0.25%)</title><rect x="1077.9" y="289" width="3.0" height="15.0" fill="rgb(237,12,30)" rx="2" ry="2" />
<text text-anchor="" x="1080.91" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('deactivate_task (27 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (27 samples, 1.15%)</title><rect x="750.1" y="209" width="13.5" height="15.0" fill="rgb(254,164,52)" rx="2" ry="2" />
<text text-anchor="" x="753.13" y="219.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.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (3 samples, 0.13%)</title><rect x="1070.4" y="273" width="1.5" height="15.0" fill="rgb(253,121,47)" rx="2" ry="2" />
<text text-anchor="" x="1073.40" y="283.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::ChannelMojo::ReadFromMessageAttachmentSet (2 samples, 0.08%)</title><rect x="364.8" y="305" width="1.0" height="15.0" fill="rgb(227,165,52)" rx="2" ry="2" />
<text text-anchor="" x="367.80" y="315.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (2 samples, 0.08%)</title><rect x="214.7" y="417" width="1.0" height="15.0" fill="rgb(236,126,37)" rx="2" ry="2" />
<text text-anchor="" x="217.67" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_recvmsg (76 samples, 3.22%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_recvmsg (76 samples, 3.22%)</title><rect x="983.8" y="257" width="38.1" height="15.0" fill="rgb(247,27,28)" rx="2" ry="2" />
<text text-anchor="" x="986.83" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys..</text>
</g>
<g class="func_g" onmouseover="s('std::vectorunsigned char, std::allocatorunsigned char ::_M_default_append (6 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>std::vectorunsigned char, std::allocatorunsigned char ::_M_default_append (6 samples, 0.25%)</title><rect x="586.0" y="273" width="3.0" height="15.0" fill="rgb(207,157,51)" rx="2" ry="2" />
<text text-anchor="" x="588.99" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sys_epoll_wait (146 samples, 6.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (146 samples, 6.19%)</title><rect x="259.7" y="385" width="73.1" height="15.0" fill="rgb(246,78,6)" rx="2" ry="2" />
<text text-anchor="" x="262.71" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys_epol..</text>
</g>
<g class="func_g" onmouseover="s('non-virtual thunk to mojo::system:: (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>non-virtual thunk to mojo::system:: (5 samples, 0.21%)</title><rect x="1098.4" y="337" width="2.5" height="15.0" fill="rgb(210,12,2)" rx="2" ry="2" />
<text text-anchor="" x="1101.42" y="347.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 (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::internal::AsyncHandleWaiter::Context::DidProcessIOEvent (1 samples, 0.04%)</title><rect x="807.7" y="321" width="0.5" height="15.0" fill="rgb(254,169,0)" rx="2" ry="2" />
<text text-anchor="" x="810.68" y="331.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.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::MessageInTransit::MessageInTransit (2 samples, 0.08%)</title><rect x="844.7" y="145" width="1.0" height="15.0" fill="rgb(228,183,9)" rx="2" ry="2" />
<text text-anchor="" x="847.71" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_task (25 samples, 1.06%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task (25 samples, 1.06%)</title><rect x="750.1" y="193" width="12.5" height="15.0" fill="rgb(221,40,11)" rx="2" ry="2" />
<text text-anchor="" x="753.13" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('native_sched_clock (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (2 samples, 0.08%)</title><rect x="305.3" y="209" width="1.0" height="15.0" fill="rgb(246,18,32)" rx="2" ry="2" />
<text text-anchor="" x="308.25" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock_cpu (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (3 samples, 0.13%)</title><rect x="304.7" y="241" width="1.6" height="15.0" fill="rgb(206,22,21)" rx="2" ry="2" />
<text text-anchor="" x="307.75" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__alloc_skb (19 samples, 0.81%)')" onmouseout="c()" onclick="zoom(this)">
<title>__alloc_skb (19 samples, 0.81%)</title><rect x="89.6" y="433" width="9.5" height="15.0" fill="rgb(235,61,52)" rx="2" ry="2" />
<text text-anchor="" x="92.57" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('operator delete (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator delete (1 samples, 0.04%)</title><rect x="621.0" y="401" width="0.5" height="15.0" fill="rgb(252,47,34)" rx="2" ry="2" />
<text text-anchor="" x="624.02" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('auditsys (6 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>auditsys (6 samples, 0.25%)</title><rect x="33.0" y="529" width="3.0" height="15.0" fill="rgb(251,165,34)" rx="2" ry="2" />
<text text-anchor="" x="36.02" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('enqueue_entity (44 samples, 1.87%)')" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (44 samples, 1.87%)</title><rect x="126.1" y="257" width="22.0" height="15.0" fill="rgb(229,123,41)" rx="2" ry="2" />
<text text-anchor="" x="129.10" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >e..</text>
</g>
<g class="func_g" onmouseover="s('ftrace_lookup_ip (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>ftrace_lookup_ip (1 samples, 0.04%)</title><rect x="181.6" y="465" width="0.5" height="15.0" fill="rgb(210,153,51)" rx="2" ry="2" />
<text text-anchor="" x="184.65" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('default_wake_function (125 samples, 5.30%)')" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (125 samples, 5.30%)</title><rect x="108.6" y="353" width="62.5" height="15.0" fill="rgb(211,224,29)" rx="2" ry="2" />
<text text-anchor="" x="111.58" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >defaul..</text>
</g>
<g class="func_g" onmouseover="s('audit_filter_inodes (4 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_inodes (4 samples, 0.17%)</title><rect x="244.7" y="369" width="2.0" height="15.0" fill="rgb(240,110,48)" rx="2" ry="2" />
<text text-anchor="" x="247.70" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_copy_from_user (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_copy_from_user (1 samples, 0.04%)</title><rect x="984.3" y="209" width="0.5" height="15.0" fill="rgb(216,199,32)" rx="2" ry="2" />
<text text-anchor="" x="987.33" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('base::AlignedAlloc (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>base::AlignedAlloc (5 samples, 0.21%)</title><rect x="380.3" y="209" width="2.5" height="15.0" fill="rgb(219,9,42)" rx="2" ry="2" />
<text text-anchor="" x="383.31" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (3 samples, 0.13%)</title><rect x="156.1" y="241" width="1.5" height="15.0" fill="rgb(231,164,14)" rx="2" ry="2" />
<text text-anchor="" x="159.12" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('[unknown] (37 samples, 1.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (37 samples, 1.57%)</title><rect x="12.0" y="529" width="18.5" height="15.0" fill="rgb(205,148,30)" rx="2" ry="2" />
<text text-anchor="" x="15.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::RawChannel::WriteBuffer::HavePlatformHandlesToSend (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>mojo::system::RawChannel::WriteBuffer::HavePlatformHandlesToSend (1 samples, 0.04%)</title><rect x="874.2" y="65" width="0.5" height="15.0" fill="rgb(231,17,14)" rx="2" ry="2" />
<text text-anchor="" x="877.23" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dequeue_task_fair (15 samples, 0.64%)')" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (15 samples, 0.64%)</title><rect x="753.1" y="177" width="7.5" height="15.0" fill="rgb(206,205,39)" rx="2" ry="2" />
<text text-anchor="" x="756.13" y="187.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>stop_one_cpu (4 samples, 0.17%)</title><rect x="191.7" y="385" width="2.0" height="15.0" fill="rgb(238,223,22)" rx="2" ry="2" />
<text text-anchor="" x="194.65" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('PickleIterator::ReadUInt64 (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>PickleIterator::ReadUInt64 (1 samples, 0.04%)</title><rect x="466.9" y="337" width="0.5" height="15.0" fill="rgb(227,78,6)" rx="2" ry="2" />
<text text-anchor="" x="469.89" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('put_prev_task_fair (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>put_prev_task_fair (1 samples, 0.04%)</title><rect x="52.0" y="481" width="0.5" height="15.0" fill="rgb(209,7,42)" rx="2" ry="2" />
<text text-anchor="" x="55.04" y="491.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__sys_recvmsg (1 samples, 0.04%)</title><rect x="983.3" y="257" width="0.5" height="15.0" fill="rgb(245,93,36)" rx="2" ry="2" />
<text text-anchor="" x="986.32" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('rb_next (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>rb_next (1 samples, 0.04%)</title><rect x="324.3" y="257" width="0.5" height="15.0" fill="rgb(235,157,4)" rx="2" ry="2" />
<text text-anchor="" x="327.27" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (1 samples, 0.04%)</title><rect x="270.2" y="353" width="0.5" height="15.0" fill="rgb(227,112,36)" rx="2" ry="2" />
<text text-anchor="" x="273.22" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (1 samples, 0.04%)</title><rect x="118.1" y="321" width="0.5" height="15.0" fill="rgb(242,153,31)" rx="2" ry="2" />
<text text-anchor="" x="121.09" y="331.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__do_page_fault (1 samples, 0.04%)</title><rect x="1159.0" y="497" width="0.5" height="15.0" fill="rgb(218,13,30)" rx="2" ry="2" />
<text text-anchor="" x="1161.97" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('kmem_cache_free (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_free (2 samples, 0.08%)</title><rect x="994.3" y="145" width="1.0" height="15.0" fill="rgb(225,228,20)" rx="2" ry="2" />
<text text-anchor="" x="997.33" y="155.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>__posix_memalign (1 samples, 0.04%)</title><rect x="388.8" y="193" width="0.5" height="15.0" fill="rgb(231,181,39)" rx="2" ry="2" />
<text text-anchor="" x="391.82" y="203.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.17%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_setaffinity@@GLIBC_2.3.4 (4 samples, 0.17%)</title><rect x="641.0" y="385" width="2.0" height="15.0" fill="rgb(223,55,34)" rx="2" ry="2" />
<text text-anchor="" x="644.03" y="395.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.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>operator new (1 samples, 0.04%)</title><rect x="486.9" y="385" width="0.5" height="15.0" fill="rgb(221,34,52)" rx="2" ry="2" />
<text text-anchor="" x="489.90" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_release_head_state (6 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_head_state (6 samples, 0.25%)</title><rect x="997.3" y="145" width="3.0" height="15.0" fill="rgb(226,155,25)" rx="2" ry="2" />
<text text-anchor="" x="1000.34" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('pthread_getspecific (6 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)">
<title>pthread_getspecific (6 samples, 0.25%)</title><rect x="1059.4" y="209" width="3.0" height="15.0" fill="rgb(207,25,45)" rx="2" ry="2" />
<text text-anchor="" x="1062.39" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('IPC::Message::TraceMessageBegin (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>IPC::Message::TraceMessageBegin (1 samples, 0.04%)</title><rect x="837.7" y="209" width="0.5" height="15.0" fill="rgb(218,22,30)" rx="2" ry="2" />
<text text-anchor="" x="840.70" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (1 samples, 0.04%)</title><rect x="174.1" y="433" width="0.5" height="15.0" fill="rgb(222,110,22)" rx="2" ry="2" />
<text text-anchor="" x="177.14" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('skb_queue_tail (3 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
<title>skb_queue_tail (3 samples, 0.13%)</title><rect x="85.6" y="449" width="1.5" height="15.0" fill="rgb(244,63,42)" rx="2" ry="2" />
<text text-anchor="" x="88.56" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('malloc (7 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
<title>malloc (7 samples, 0.30%)</title><rect x="967.8" y="321" width="3.5" height="15.0" fill="rgb(225,18,13)" rx="2" ry="2" />
<text text-anchor="" x="970.81" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sched_clock_cpu (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (2 samples, 0.08%)</title><rect x="310.8" y="225" width="1.0" height="15.0" fill="rgb(216,74,52)" rx="2" ry="2" />
<text text-anchor="" x="313.75" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('__wake_up_common (127 samples, 5.39%)')" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (127 samples, 5.39%)</title><rect x="107.6" y="369" width="63.5" height="15.0" fill="rgb(212,181,2)" rx="2" ry="2" />
<text text-anchor="" x="110.58" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__wake..</text>
</g>
<g class="func_g" onmouseover="s('sysret_audit (5 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)">
<title>sysret_audit (5 samples, 0.21%)</title><rect x="980.8" y="273" width="2.5" height="15.0" fill="rgb(208,73,11)" rx="2" ry="2" />
<text text-anchor="" x="983.82" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('event_base_loop (2 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)">
<title>event_base_loop (2 samples, 0.08%)</title><rect x="640.0" y="449" width="1.0" height="15.0" fill="rgb(229,182,13)" rx="2" ry="2" />
<text text-anchor="" x="643.03" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('dput (1 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)">
<title>dput (1 samples, 0.04%)</title><rect x="250.7" y="353" width="0.5" height="15.0" fill="rgb(220,171,52)" rx="2" ry="2" />
<text text-anchor="" x="253.70" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
</svg>
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
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