blob: 08cfbc20445742decabd4df351f11278975d5cbe [file] [log] [blame]
<!-- This comment will put IE 6, 7 and 8 in quirks mode -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Kudu C++ client API: include/kudu/util/monotime.h Source File</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javaScript" src="search/search.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
</head>
<body onload='searchBox.OnSelectItem(0);'>
<!-- Generated by Doxygen 1.6.1 -->
<script type="text/javascript"><!--
var searchBox = new SearchBox("searchBox", "search",false,'Search');
--></script>
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
<li><a href="pages.html"><span>Related&nbsp;Pages</span></a></li>
<li><a href="annotated.html"><span>Classes</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<img id="MSearchSelect" src="search/search.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</div>
</li>
</ul>
</div>
<div class="tabs">
<ul>
<li><a href="files.html"><span>File&nbsp;List</span></a></li>
<li><a href="globals.html"><span>File&nbsp;Members</span></a></li>
</ul>
</div>
<h1>include/kudu/util/monotime.h</h1><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">// Licensed to the Apache Software Foundation (ASF) under one</span>
<a name="l00002"></a>00002 <span class="comment">// or more contributor license agreements. See the NOTICE file</span>
<a name="l00003"></a>00003 <span class="comment">// distributed with this work for additional information</span>
<a name="l00004"></a>00004 <span class="comment">// regarding copyright ownership. The ASF licenses this file</span>
<a name="l00005"></a>00005 <span class="comment">// to you under the Apache License, Version 2.0 (the</span>
<a name="l00006"></a>00006 <span class="comment">// &quot;License&quot;); you may not use this file except in compliance</span>
<a name="l00007"></a>00007 <span class="comment">// with the License. You may obtain a copy of the License at</span>
<a name="l00008"></a>00008 <span class="comment">//</span>
<a name="l00009"></a>00009 <span class="comment">// http://www.apache.org/licenses/LICENSE-2.0</span>
<a name="l00010"></a>00010 <span class="comment">//</span>
<a name="l00011"></a>00011 <span class="comment">// Unless required by applicable law or agreed to in writing,</span>
<a name="l00012"></a>00012 <span class="comment">// software distributed under the License is distributed on an</span>
<a name="l00013"></a>00013 <span class="comment">// &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY</span>
<a name="l00014"></a>00014 <span class="comment">// KIND, either express or implied. See the License for the</span>
<a name="l00015"></a>00015 <span class="comment">// specific language governing permissions and limitations</span>
<a name="l00016"></a>00016 <span class="comment">// under the License.</span>
<a name="l00017"></a>00017 <span class="preprocessor">#ifndef KUDU_UTIL_MONOTIME_H</span>
<a name="l00018"></a>00018 <span class="preprocessor"></span><span class="preprocessor">#define KUDU_UTIL_MONOTIME_H</span>
<a name="l00019"></a>00019 <span class="preprocessor"></span>
<a name="l00020"></a>00020 <span class="preprocessor">#include &lt;stdint.h&gt;</span>
<a name="l00021"></a>00021 <span class="preprocessor">#include &lt;string&gt;</span>
<a name="l00022"></a>00022
<a name="l00023"></a>00023 <span class="preprocessor">#ifdef KUDU_HEADERS_NO_STUBS</span>
<a name="l00024"></a>00024 <span class="preprocessor"></span><span class="preprocessor">#include &lt;gtest/gtest_prod.h&gt;</span>
<a name="l00025"></a>00025 <span class="preprocessor">#else</span>
<a name="l00026"></a>00026 <span class="preprocessor"></span><span class="comment">// This is a poor module interdependency, but the stubs are header-only and</span>
<a name="l00027"></a>00027 <span class="comment">// it&apos;s only for exported header builds, so we&apos;ll make an exception.</span>
<a name="l00028"></a>00028 <span class="preprocessor">#include &quot;kudu/client/stubs.h&quot;</span>
<a name="l00029"></a>00029 <span class="preprocessor">#endif</span>
<a name="l00030"></a>00030 <span class="preprocessor"></span>
<a name="l00031"></a>00031 <span class="preprocessor">#include &quot;kudu/util/kudu_export.h&quot;</span>
<a name="l00032"></a>00032
<a name="l00033"></a>00033 <span class="keyword">struct </span>timeval;
<a name="l00034"></a>00034 <span class="keyword">struct </span>timespec;
<a name="l00035"></a>00035
<a name="l00036"></a>00036 <span class="keyword">namespace </span>kudu {
<a name="l00037"></a>00037 <span class="keyword">class </span>MonoTime;
<a name="l00038"></a>00038
<a name="l00043"></a><a class="code" href="classkudu_1_1MonoDelta.html">00043</a> <span class="keyword">class </span>KUDU_EXPORT <a class="code" href="classkudu_1_1MonoDelta.html" title="A representation of a time interval.">MonoDelta</a> {
<a name="l00044"></a>00044 <span class="keyword">public</span>:
<a name="l00053"></a>00053 <span class="keyword">static</span> <a class="code" href="classkudu_1_1MonoDelta.html" title="A representation of a time interval.">MonoDelta</a> FromSeconds(<span class="keywordtype">double</span> seconds);
<a name="l00054"></a>00054 <span class="keyword">static</span> <a class="code" href="classkudu_1_1MonoDelta.html" title="A representation of a time interval.">MonoDelta</a> FromMilliseconds(int64_t ms);
<a name="l00055"></a>00055 <span class="keyword">static</span> <a class="code" href="classkudu_1_1MonoDelta.html" title="A representation of a time interval.">MonoDelta</a> FromMicroseconds(int64_t us);
<a name="l00056"></a>00056 <span class="keyword">static</span> <a class="code" href="classkudu_1_1MonoDelta.html" title="A representation of a time interval.">MonoDelta</a> FromNanoseconds(int64_t ns);
<a name="l00058"></a>00058
<a name="l00063"></a>00063 <a class="code" href="classkudu_1_1MonoDelta.html" title="A representation of a time interval.">MonoDelta</a>();
<a name="l00064"></a>00064
<a name="l00066"></a>00066 <span class="keywordtype">bool</span> Initialized() <span class="keyword">const</span>;
<a name="l00067"></a>00067
<a name="l00074"></a>00074 <span class="keywordtype">bool</span> LessThan(<span class="keyword">const</span> <a class="code" href="classkudu_1_1MonoDelta.html" title="A representation of a time interval.">MonoDelta</a> &amp;rhs) <span class="keyword">const</span>;
<a name="l00075"></a>00075
<a name="l00082"></a>00082 <span class="keywordtype">bool</span> MoreThan(<span class="keyword">const</span> <a class="code" href="classkudu_1_1MonoDelta.html" title="A representation of a time interval.">MonoDelta</a> &amp;rhs) <span class="keyword">const</span>;
<a name="l00083"></a>00083
<a name="l00091"></a>00091 <span class="keywordtype">bool</span> Equals(<span class="keyword">const</span> <a class="code" href="classkudu_1_1MonoDelta.html" title="A representation of a time interval.">MonoDelta</a> &amp;rhs) <span class="keyword">const</span>;
<a name="l00092"></a>00092
<a name="l00094"></a>00094 std::string ToString() <span class="keyword">const</span>;
<a name="l00095"></a>00095
<a name="l00101"></a>00101 <span class="keywordtype">double</span> ToSeconds() <span class="keyword">const</span>;
<a name="l00102"></a>00102 int64_t ToMilliseconds() <span class="keyword">const</span>;
<a name="l00103"></a>00103 int64_t ToMicroseconds() <span class="keyword">const</span>;
<a name="l00104"></a>00104 int64_t ToNanoseconds() <span class="keyword">const</span>;
<a name="l00106"></a>00106
<a name="l00112"></a>00112 <span class="keywordtype">void</span> ToTimeVal(<span class="keyword">struct</span> timeval *tv) <span class="keyword">const</span>;
<a name="l00113"></a>00113
<a name="l00119"></a>00119 <span class="keywordtype">void</span> ToTimeSpec(<span class="keyword">struct</span> timespec *ts) <span class="keyword">const</span>;
<a name="l00120"></a>00120
<a name="l00127"></a>00127 <span class="keyword">static</span> <span class="keywordtype">void</span> NanosToTimeSpec(int64_t nanos, <span class="keyword">struct</span> timespec* ts);
<a name="l00128"></a>00128
<a name="l00129"></a>00129 <span class="keyword">private</span>:
<a name="l00130"></a>00130 <span class="keyword">static</span> <span class="keyword">const</span> int64_t kUninitialized;
<a name="l00131"></a>00131
<a name="l00132"></a>00132 <span class="keyword">friend</span> <span class="keyword">class </span><a class="code" href="classkudu_1_1MonoTime.html" title="Representation of a particular point in time.">MonoTime</a>;
<a name="l00133"></a>00133 FRIEND_TEST(TestMonoTime, TestDeltaConversions);
<a name="l00134"></a>00134
<a name="l00135"></a>00135 <span class="keyword">explicit</span> <a class="code" href="classkudu_1_1MonoDelta.html" title="A representation of a time interval.">MonoDelta</a>(int64_t delta);
<a name="l00136"></a>00136 int64_t nano_delta_;
<a name="l00137"></a>00137 };
<a name="l00138"></a>00138
<a name="l00146"></a><a class="code" href="classkudu_1_1MonoTime.html">00146</a> <span class="keyword">class </span>KUDU_EXPORT <a class="code" href="classkudu_1_1MonoTime.html" title="Representation of a particular point in time.">MonoTime</a> {
<a name="l00147"></a>00147 <span class="keyword">public</span>:
<a name="l00151"></a>00151 <span class="keyword">static</span> <span class="keyword">const</span> int64_t kNanosecondsPerSecond = 1000000000L;
<a name="l00152"></a>00152 <span class="keyword">static</span> <span class="keyword">const</span> int64_t kNanosecondsPerMillisecond = 1000000L;
<a name="l00153"></a>00153 <span class="keyword">static</span> <span class="keyword">const</span> int64_t kNanosecondsPerMicrosecond = 1000L;
<a name="l00154"></a>00154
<a name="l00155"></a>00155 <span class="keyword">static</span> <span class="keyword">const</span> int64_t kMicrosecondsPerSecond = 1000000L;
<a name="l00157"></a>00157
<a name="l00161"></a>00161 <span class="keyword">static</span> <a class="code" href="classkudu_1_1MonoTime.html" title="Representation of a particular point in time.">MonoTime</a> Now();
<a name="l00162"></a>00162
<a name="l00164"></a>00164 <span class="keyword">static</span> <a class="code" href="classkudu_1_1MonoTime.html" title="Representation of a particular point in time.">MonoTime</a> Max();
<a name="l00165"></a>00165
<a name="l00167"></a>00167 <span class="keyword">static</span> <a class="code" href="classkudu_1_1MonoTime.html" title="Representation of a particular point in time.">MonoTime</a> Min();
<a name="l00168"></a>00168
<a name="l00176"></a>00176 <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classkudu_1_1MonoTime.html" title="Representation of a particular point in time.">MonoTime</a>&amp; Earliest(<span class="keyword">const</span> <a class="code" href="classkudu_1_1MonoTime.html" title="Representation of a particular point in time.">MonoTime</a>&amp; a, <span class="keyword">const</span> <a class="code" href="classkudu_1_1MonoTime.html" title="Representation of a particular point in time.">MonoTime</a>&amp; b);
<a name="l00177"></a>00177
<a name="l00180"></a>00180 <a class="code" href="classkudu_1_1MonoTime.html" title="Representation of a particular point in time.">MonoTime</a>();
<a name="l00181"></a>00181
<a name="l00183"></a>00183 <span class="keywordtype">bool</span> Initialized() <span class="keyword">const</span>;
<a name="l00184"></a>00184
<a name="l00192"></a>00192 <a class="code" href="classkudu_1_1MonoDelta.html" title="A representation of a time interval.">MonoDelta</a> GetDeltaSince(<span class="keyword">const</span> <a class="code" href="classkudu_1_1MonoTime.html" title="Representation of a particular point in time.">MonoTime</a> &amp;rhs) <span class="keyword">const</span>;
<a name="l00193"></a>00193
<a name="l00198"></a>00198 <span class="keywordtype">void</span> AddDelta(<span class="keyword">const</span> <a class="code" href="classkudu_1_1MonoDelta.html" title="A representation of a time interval.">MonoDelta</a> &amp;delta);
<a name="l00199"></a>00199
<a name="l00207"></a>00207 <span class="keywordtype">bool</span> ComesBefore(<span class="keyword">const</span> <a class="code" href="classkudu_1_1MonoTime.html" title="Representation of a particular point in time.">MonoTime</a> &amp;rhs) <span class="keyword">const</span>;
<a name="l00208"></a>00208
<a name="l00210"></a>00210 std::string ToString() <span class="keyword">const</span>;
<a name="l00211"></a>00211
<a name="l00218"></a>00218 <span class="keywordtype">bool</span> Equals(<span class="keyword">const</span> <a class="code" href="classkudu_1_1MonoTime.html" title="Representation of a particular point in time.">MonoTime</a>&amp; other) <span class="keyword">const</span>;
<a name="l00219"></a>00219
<a name="l00228"></a>00228 <a class="code" href="classkudu_1_1MonoTime.html" title="Representation of a particular point in time.">MonoTime</a>&amp; operator+=(<span class="keyword">const</span> <a class="code" href="classkudu_1_1MonoDelta.html" title="A representation of a time interval.">MonoDelta</a>&amp; delta);
<a name="l00229"></a>00229
<a name="l00235"></a>00235 <a class="code" href="classkudu_1_1MonoTime.html" title="Representation of a particular point in time.">MonoTime</a>&amp; operator-=(<span class="keyword">const</span> <a class="code" href="classkudu_1_1MonoDelta.html" title="A representation of a time interval.">MonoDelta</a>&amp; delta);
<a name="l00237"></a>00237
<a name="l00238"></a>00238 <span class="keyword">private</span>:
<a name="l00239"></a>00239 <span class="keyword">friend</span> <span class="keyword">class </span><a class="code" href="classkudu_1_1MonoDelta.html" title="A representation of a time interval.">MonoDelta</a>;
<a name="l00240"></a>00240 FRIEND_TEST(TestMonoTime, TestTimeSpec);
<a name="l00241"></a>00241 FRIEND_TEST(TestMonoTime, TestDeltaConversions);
<a name="l00242"></a>00242
<a name="l00243"></a>00243 <span class="keyword">explicit</span> <a class="code" href="classkudu_1_1MonoTime.html" title="Representation of a particular point in time.">MonoTime</a>(<span class="keyword">const</span> <span class="keyword">struct</span> timespec &amp;ts);
<a name="l00244"></a>00244 <span class="keyword">explicit</span> <a class="code" href="classkudu_1_1MonoTime.html" title="Representation of a particular point in time.">MonoTime</a>(int64_t nanos);
<a name="l00245"></a>00245 <span class="keywordtype">double</span> ToSeconds() <span class="keyword">const</span>;
<a name="l00246"></a>00246 int64_t nanos_;
<a name="l00247"></a>00247 };
<a name="l00248"></a>00248
<a name="l00259"></a>00259 <span class="keywordtype">void</span> KUDU_EXPORT SleepFor(<span class="keyword">const</span> <a class="code" href="classkudu_1_1MonoDelta.html" title="A representation of a time interval.">MonoDelta</a>&amp; delta);
<a name="l00260"></a>00260
<a name="l00270"></a>00270 <span class="keywordtype">bool</span> KUDU_EXPORT operator==(<span class="keyword">const</span> <a class="code" href="classkudu_1_1MonoDelta.html" title="A representation of a time interval.">MonoDelta</a> &amp;lhs, <span class="keyword">const</span> <a class="code" href="classkudu_1_1MonoDelta.html" title="A representation of a time interval.">MonoDelta</a> &amp;rhs);
<a name="l00271"></a>00271
<a name="l00278"></a>00278 <span class="keywordtype">bool</span> KUDU_EXPORT operator!=(<span class="keyword">const</span> <a class="code" href="classkudu_1_1MonoDelta.html" title="A representation of a time interval.">MonoDelta</a> &amp;lhs, <span class="keyword">const</span> <a class="code" href="classkudu_1_1MonoDelta.html" title="A representation of a time interval.">MonoDelta</a> &amp;rhs);
<a name="l00279"></a>00279
<a name="l00286"></a>00286 <span class="keywordtype">bool</span> KUDU_EXPORT operator&lt;(<span class="keyword">const</span> <a class="code" href="classkudu_1_1MonoDelta.html" title="A representation of a time interval.">MonoDelta</a> &amp;lhs, <span class="keyword">const</span> <a class="code" href="classkudu_1_1MonoDelta.html" title="A representation of a time interval.">MonoDelta</a> &amp;rhs);
<a name="l00287"></a>00287
<a name="l00294"></a>00294 <span class="keywordtype">bool</span> KUDU_EXPORT operator&lt;=(<span class="keyword">const</span> <a class="code" href="classkudu_1_1MonoDelta.html" title="A representation of a time interval.">MonoDelta</a> &amp;lhs, <span class="keyword">const</span> <a class="code" href="classkudu_1_1MonoDelta.html" title="A representation of a time interval.">MonoDelta</a> &amp;rhs);
<a name="l00295"></a>00295
<a name="l00302"></a>00302 <span class="keywordtype">bool</span> KUDU_EXPORT operator&gt;(<span class="keyword">const</span> <a class="code" href="classkudu_1_1MonoDelta.html" title="A representation of a time interval.">MonoDelta</a> &amp;lhs, <span class="keyword">const</span> <a class="code" href="classkudu_1_1MonoDelta.html" title="A representation of a time interval.">MonoDelta</a> &amp;rhs);
<a name="l00303"></a>00303
<a name="l00310"></a>00310 <span class="keywordtype">bool</span> KUDU_EXPORT operator&gt;=(<span class="keyword">const</span> <a class="code" href="classkudu_1_1MonoDelta.html" title="A representation of a time interval.">MonoDelta</a> &amp;lhs, <span class="keyword">const</span> <a class="code" href="classkudu_1_1MonoDelta.html" title="A representation of a time interval.">MonoDelta</a> &amp;rhs);
<a name="l00312"></a>00312
<a name="l00326"></a>00326 <span class="keywordtype">bool</span> KUDU_EXPORT operator==(<span class="keyword">const</span> <a class="code" href="classkudu_1_1MonoTime.html" title="Representation of a particular point in time.">MonoTime</a>&amp; lhs, <span class="keyword">const</span> <a class="code" href="classkudu_1_1MonoTime.html" title="Representation of a particular point in time.">MonoTime</a>&amp; rhs);
<a name="l00327"></a>00327
<a name="l00339"></a>00339 <span class="keywordtype">bool</span> KUDU_EXPORT operator!=(<span class="keyword">const</span> <a class="code" href="classkudu_1_1MonoTime.html" title="Representation of a particular point in time.">MonoTime</a>&amp; lhs, <span class="keyword">const</span> <a class="code" href="classkudu_1_1MonoTime.html" title="Representation of a particular point in time.">MonoTime</a>&amp; rhs);
<a name="l00340"></a>00340
<a name="l00347"></a>00347 <span class="keywordtype">bool</span> KUDU_EXPORT operator&lt;(<span class="keyword">const</span> <a class="code" href="classkudu_1_1MonoTime.html" title="Representation of a particular point in time.">MonoTime</a>&amp; lhs, <span class="keyword">const</span> <a class="code" href="classkudu_1_1MonoTime.html" title="Representation of a particular point in time.">MonoTime</a>&amp; rhs);
<a name="l00348"></a>00348
<a name="l00355"></a>00355 <span class="keywordtype">bool</span> KUDU_EXPORT operator&lt;=(<span class="keyword">const</span> <a class="code" href="classkudu_1_1MonoTime.html" title="Representation of a particular point in time.">MonoTime</a>&amp; lhs, <span class="keyword">const</span> <a class="code" href="classkudu_1_1MonoTime.html" title="Representation of a particular point in time.">MonoTime</a>&amp; rhs);
<a name="l00356"></a>00356
<a name="l00363"></a>00363 <span class="keywordtype">bool</span> KUDU_EXPORT operator&gt;(<span class="keyword">const</span> <a class="code" href="classkudu_1_1MonoTime.html" title="Representation of a particular point in time.">MonoTime</a>&amp; lhs, <span class="keyword">const</span> <a class="code" href="classkudu_1_1MonoTime.html" title="Representation of a particular point in time.">MonoTime</a>&amp; rhs);
<a name="l00364"></a>00364
<a name="l00371"></a>00371 <span class="keywordtype">bool</span> KUDU_EXPORT operator&gt;=(<span class="keyword">const</span> <a class="code" href="classkudu_1_1MonoTime.html" title="Representation of a particular point in time.">MonoTime</a>&amp; lhs, <span class="keyword">const</span> <a class="code" href="classkudu_1_1MonoTime.html" title="Representation of a particular point in time.">MonoTime</a>&amp; rhs);
<a name="l00373"></a>00373
<a name="l00384"></a>00384 <a class="code" href="classkudu_1_1MonoTime.html" title="Representation of a particular point in time.">MonoTime</a> KUDU_EXPORT operator+(<span class="keyword">const</span> <a class="code" href="classkudu_1_1MonoTime.html" title="Representation of a particular point in time.">MonoTime</a>&amp; t, <span class="keyword">const</span> <a class="code" href="classkudu_1_1MonoDelta.html" title="A representation of a time interval.">MonoDelta</a>&amp; delta);
<a name="l00385"></a>00385
<a name="l00393"></a>00393 <a class="code" href="classkudu_1_1MonoTime.html" title="Representation of a particular point in time.">MonoTime</a> KUDU_EXPORT operator-(<span class="keyword">const</span> <a class="code" href="classkudu_1_1MonoTime.html" title="Representation of a particular point in time.">MonoTime</a>&amp; t, <span class="keyword">const</span> <a class="code" href="classkudu_1_1MonoDelta.html" title="A representation of a time interval.">MonoDelta</a>&amp; delta);
<a name="l00394"></a>00394
<a name="l00407"></a>00407 <a class="code" href="classkudu_1_1MonoDelta.html" title="A representation of a time interval.">MonoDelta</a> KUDU_EXPORT operator-(<span class="keyword">const</span> <a class="code" href="classkudu_1_1MonoTime.html" title="Representation of a particular point in time.">MonoTime</a>&amp; t_end, <span class="keyword">const</span> <a class="code" href="classkudu_1_1MonoTime.html" title="Representation of a particular point in time.">MonoTime</a>&amp; t_begin);
<a name="l00409"></a>00409
<a name="l00410"></a>00410 } <span class="comment">// namespace kudu</span>
<a name="l00411"></a>00411
<a name="l00412"></a>00412 <span class="preprocessor">#endif</span>
</pre></div></div>
<!--- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&nbsp;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&nbsp;</span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark">&nbsp;</span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark">&nbsp;</span>Functions</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(4)"><span class="SelectionMark">&nbsp;</span>Variables</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(5)"><span class="SelectionMark">&nbsp;</span>Typedefs</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(6)"><span class="SelectionMark">&nbsp;</span>Enumerations</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(7)"><span class="SelectionMark">&nbsp;</span>Enumerator</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(8)"><span class="SelectionMark">&nbsp;</span>Defines</a></div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<!-- start footer part -->
<hr class="footer"/>
<address class="footer">
<small>Generated for Kudu version 1.0.1 on Tue Oct 11 08:52:01 2016 by Doxygen 1.6.1</small>
<br>
<small>Copyright © 2016 The Apache Software Foundation.</small>
</address>
</body>
</html>