NonReturningStatus Type
The result of non-returning function analysis.
Union cases
| Union case |
Description
|
Full Usage:
ConditionalNoRet int
Parameters:
int
|
Conditionally no-return; function does not return only if the n-th argument (starting from one) specified is non-zero.
|
Full Usage:
NoRet
|
This function will never return. For example, the "exit" function should have this property. |
Full Usage:
NotNoRet
|
Regular case: *not* no-return (i.e., this is a returning function). |
Full Usage:
UnknownNoRet
|
We don't know yet: we need further analyses. |
Instance members
| Instance member |
Description
|
Full Usage:
this.IsConditionalNoRet
Returns: bool
|
|
Full Usage:
this.IsNoRet
Returns: bool
|
|
Full Usage:
this.IsNotNoRet
Returns: bool
|
|
Full Usage:
this.IsUnknownNoRet
Returns: bool
|
|
B2R2