Home | History | Annotate | Download | only in include

Lines Matching defs:int32

31 typedef int32_t int32;
44 const int32 OSCL_REQUEST_ERR_NONE = 0;
45 const int32 OSCL_REQUEST_PENDING = (-0x7fffffff);
46 const int32 OSCL_REQUEST_ERR_CANCEL = (-1);
47 const int32 OSCL_REQUEST_ERR_GENERAL = (-2);
54 explicit OsclAOStatus(int32 aStatus);
55 int32 operator=(int32 aStatus);
56 int32 operator==(int32 aStatus) const;
57 int32 operator!=(int32 aStatus) const;
58 int32 operator>=(int32 aStatus) const;
59 int32 operator<=(int32 aStatus) const;
60 int32 operator>(int32 aStatus) const;
61 int32 operator<(int32 aStatus) const;
62 int32 Value() const;
64 int32 iStatus;