Searched defs:IMA_STATUS (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/lib/libima/common/
H A Dima.h218 * Constants and macros declarations related to IMA_STATUS
223 typedef IMA_UINT IMA_STATUS; typedef
228 #define IMA_SUCCESS(status) (((IMA_STATUS)(status) & \
229 (IMA_STATUS)IMA_STATUS_ERROR) == 0 ? IMA_TRUE : IMA_FALSE)
230 #define IMA_ERROR(status) (((IMA_STATUS)(status) & \
231 (IMA_STATUS)IMA_STATUS_ERROR) == 0x8000000 ? IMA_TRUE : IMA_FALSE)
233 #define MAKE_IMA_STATUS(x) ((IMA_STATUS)(x))
234 #define MAKE_IMA_ERROR(x) ((IMA_STATUS)(IMA_STATUS_ERROR | (x)))
235 #define GET_SYSTEM_ERROR(x) (((IMA_STATUS)(x) & 0x0000FFFF))
297 } IMA_STATUS; typedef in typeref:enum:__anon3311
[all...]

Completed in 66 milliseconds