clang: lib/StaticAnalyzer/Checkers/UnixAPIChecker.cpp File Reference (original) (raw)
Go to the source code of this file.
◆ REGISTER_CHECKER
| #define REGISTER_CHECKER | ( | | CHECKERNAME | ) | | ------------------------- | - | | ----------- | - |
Value:
void ento::register##CHECKERNAME(CheckerManager &mgr) { \
} \
\
bool ento::shouldRegister##CHECKERNAME(const CheckerManager &mgr) { \
return true; \
}
CHECKER * registerChecker(AT &&... Args)
Used to register checkers.
Definition at line 624 of file UnixAPIChecker.cpp.
◆ OpenVariant
Enumerator | |
---|---|
Open | The standard open() call: int open(const char *path, int oflag, ...);. |
OpenAt | The variant taking a directory file descriptor and a relative path: int openat(int fd, const char *path, int oflag, ...);. |
Definition at line 33 of file UnixAPIChecker.cpp.