enum class OpenVariant
Declared at: clang/lib/StaticAnalyzer/Checkers/UnixAPIChecker.cpp:29
Enumerators
Name | Value | Comment |
---|---|---|
Open | 0 | The standard open() call: int open(const char *path, int oflag, ...); |
OpenAt | 1 | The variant taking a directory file descriptor and a relative path: int openat(int fd, const char *path, int oflag, ...); |