| 69 | void Function::setIsDecompilerDefined() { _linkType = DECOMPILER_DEFINED; } |
| 70 | void Function::setIsUserDefined() { _linkType = USER_DEFINED; } |
| 71 | void Function::setIsStaticallyLinked() const { _linkType = STATICALLY_LINKED; } |
| 72 | void Function::setIsDynamicallyLinked() const { _linkType = DYNAMICALLY_LINKED; } |
| 73 | void Function::setIsSyscall() { _linkType = SYSCALL; } |
| 74 | void Function::setIsIdiom() { _linkType = IDIOM; } |
no outgoing calls
no test coverage detected