| 37 | bool Function::isDecompilerDefined() const { return _linkType == DECOMPILER_DEFINED; } |
| 38 | bool Function::isUserDefined() const { return _linkType == USER_DEFINED; } |
| 39 | bool Function::isStaticallyLinked() const { return _linkType == STATICALLY_LINKED; } |
| 40 | bool Function::isDynamicallyLinked() const { return _linkType == DYNAMICALLY_LINKED; } |
| 41 | bool Function::isSyscall() const { return _linkType == SYSCALL; } |
| 42 | bool Function::isIdiom() const { return _linkType == IDIOM; } |
no outgoing calls
no test coverage detected