OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CuAssert_Line
(Results
1 - 2
of
2
) sorted by null
/external/selinux/libsepol/cil/test/unit/
CuTest.h
83
void
CuAssert_Line
(CuTest* tc, const char* file, int line, const char* message, int condition);
100
#define CuAssert(tc, ms, cond)
CuAssert_Line
((tc), __FILE__, __LINE__, (ms), (cond))
101
#define CuAssertTrue(tc, cond)
CuAssert_Line
((tc), __FILE__, __LINE__, "assert failed", (cond))
112
#define CuAssertPtrNotNull(tc,p)
CuAssert_Line
((tc),__FILE__,__LINE__,"null pointer unexpected",(p != NULL))
113
#define CuAssertPtrNotNullMsg(tc,msg,p)
CuAssert_Line
((tc),__FILE__,__LINE__,(msg),(p != NULL))
CuTest.c
197
void
CuAssert_Line
(CuTest* tc, const char* file, int line, const char* message, int condition)
Completed in 3218 milliseconds