| 91 | void ArgFlow::setFilePathString() { IsFilePathString = true; } |
| 92 | |
| 93 | void ArgFlow::setStruct(StructType *ST) { |
| 94 | if (STInfo) |
| 95 | return; |
| 96 | |
| 97 | STInfo = std::make_shared<StructInfo>(ST); |
| 98 | |
| 99 | // If Struct is a field in struct(nested struct), |
| 100 | // the depth(from Argument) is increased |
| 101 | if (FDInfo) |
| 102 | Depth++; |
| 103 | } |
| 104 | |
| 105 | void ArgFlow::setIsVariableLenArray(bool Value) { IsVariableLenArray = Value; } |
| 106 |
no outgoing calls
no test coverage detected