1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> 2<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> 3<title>oscl_aostatus.h Source File</title> 4<link href="doxygen.css" rel="stylesheet" type="text/css"> 5</head><body> 6<!-- Generated by Doxygen 1.2.18 --> 7<center> 8<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="modules.html">Modules</a> <a class="qindex" href="hierarchy.html">Class Hierarchy</a> <a class="qindex" href="annotated.html">Data Structures</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="functions.html">Data Fields</a> <a class="qindex" href="globals.html">Globals</a> </center> 9<hr><h1>oscl_aostatus.h</h1><a href="oscl__aostatus_8h.html">Go to the documentation of this file.</a><div class="fragment"><pre>00001 1000010 <span class="preprocessor">#ifndef OSCL_AOSTATUS_H_INCLUDED</span> 1100011 <span class="preprocessor"></span><span class="preprocessor">#define OSCL_AOSTATUS_H_INCLUDED</span> 1200012 <span class="preprocessor"></span> 1300013 <span class="preprocessor">#ifndef OSCLCONFIG_PROC_H_INCLUDED</span> 1400014 <span class="preprocessor"></span><span class="preprocessor">#include "<a class="code" href="osclconfig__proc_8h.html">osclconfig_proc.h</a>"</span> 1500015 <span class="preprocessor">#endif</span> 1600016 <span class="preprocessor"></span> 1700017 1800018 <span class="preprocessor">#ifndef OSCL_BASE_H_INCLUDED</span> 1900019 <span class="preprocessor"></span><span class="preprocessor">#include "<a class="code" href="oscl__base_8h.html">oscl_base.h</a>"</span> 2000020 <span class="preprocessor">#endif</span> 2100021 <span class="preprocessor"></span> 2200022 <span class="comment">//Request status values. These are negative so that</span> 2300023 <span class="comment">//they won't conflict with system error codes.</span> 24<a name="l00024"></a><a class="code" href="group__osclproc.html#a0">00024</a> <span class="keyword">const</span> int32 <a class="code" href="group__osclproc.html#a0">OSCL_REQUEST_ERR_NONE</a> = 0; 25<a name="l00025"></a><a class="code" href="group__osclproc.html#a1">00025</a> <span class="keyword">const</span> int32 <a class="code" href="group__osclproc.html#a1">OSCL_REQUEST_PENDING</a> = (-0x7fffffff); 26<a name="l00026"></a><a class="code" href="group__osclproc.html#a2">00026</a> <span class="keyword">const</span> int32 <a class="code" href="group__osclproc.html#a2">OSCL_REQUEST_ERR_CANCEL</a> = (-1); 27<a name="l00027"></a><a class="code" href="group__osclproc.html#a3">00027</a> <span class="keyword">const</span> int32 <a class="code" href="group__osclproc.html#a3">OSCL_REQUEST_ERR_GENERAL</a> = (-2); 2800028 2900029 3000030 <span class="comment">//Request status type</span> 31<a name="l00031"></a><a class="code" href="classOsclAOStatus.html">00031</a> <span class="keyword">class </span><a class="code" href="classOsclAOStatus.html">OsclAOStatus</a> 3200032 { 3300033 <span class="keyword">public</span>: 3400034 <a class="code" href="group__osclbase.html#a82">OSCL_INLINE</a> <a class="code" href="classOsclAOStatus.html#a0">OsclAOStatus</a>(); 3500035 <a class="code" href="group__osclbase.html#a82">OSCL_INLINE</a> <a class="code" href="classOsclAOStatus.html#a0">OsclAOStatus</a>(int32 aStatus); 3600036 <a class="code" href="group__osclbase.html#a82">OSCL_INLINE</a> int32 <a class="code" href="classOsclAOStatus.html#a2">operator=</a>(int32 aStatus); 3700037 <a class="code" href="group__osclbase.html#a82">OSCL_INLINE</a> int32 <a class="code" href="classOsclAOStatus.html#a3">operator==</a>(int32 aStatus) <span class="keyword">const</span>; 3800038 <a class="code" href="group__osclbase.html#a82">OSCL_INLINE</a> int32 <a class="code" href="classOsclAOStatus.html#a4">operator!=</a>(int32 aStatus) <span class="keyword">const</span>; 3900039 <a class="code" href="group__osclbase.html#a82">OSCL_INLINE</a> int32 <a class="code" href="classOsclAOStatus.html#a5">operator>=</a>(int32 aStatus) <span class="keyword">const</span>; 4000040 <a class="code" href="group__osclbase.html#a82">OSCL_INLINE</a> int32 <a class="code" href="classOsclAOStatus.html#a6">operator<=</a>(int32 aStatus) <span class="keyword">const</span>; 4100041 <a class="code" href="group__osclbase.html#a82">OSCL_INLINE</a> int32 <a class="code" href="classOsclAOStatus.html#a7">operator></a>(int32 aStatus) <span class="keyword">const</span>; 4200042 <a class="code" href="group__osclbase.html#a82">OSCL_INLINE</a> int32 <a class="code" href="classOsclAOStatus.html#a8">operator<</a>(int32 aStatus) <span class="keyword">const</span>; 4300043 <a class="code" href="group__osclbase.html#a82">OSCL_INLINE</a> int32 <a class="code" href="classOsclAOStatus.html#a9">Value</a>() <span class="keyword">const</span>; 4400044 <span class="keyword">private</span>: 4500045 int32 iStatus; 4600046 }; 4700047 4800048 4900049 <span class="preprocessor">#if !(OSCL_DISABLE_INLINES)</span> 5000050 <span class="preprocessor"></span><span class="preprocessor">#include "oscl_aostatus.inl"</span> 5100051 <span class="preprocessor">#endif</span> 5200052 <span class="preprocessor"></span> 5300053 5400054 <span class="preprocessor">#endif</span> 5500055 <span class="preprocessor"></span> 56</pre></div><hr size="1"><img src="pvlogo_small.jpg"><address style="align: right;"><small>OSCL API</small> 57<address style="align: left;"><small>Posting Version: OPENCORE_20090310 </small> 58</small></address> 59</body> 60</html> 61