| 249 | } |
| 250 | |
| 251 | uint32_t AFCTable::FindWString(const uint32_t index, const std::wstring& value) const |
| 252 | { |
| 253 | for (auto iter : data_) |
| 254 | { |
| 255 | auto pRowData = iter.second; |
| 256 | ARK_ASSERT_RET_VAL(pRowData != nullptr, 0u); |
| 257 | |
| 258 | if (pRowData->GetWString(index) == value) |
| 259 | { |
| 260 | return iter.first; |
| 261 | } |
| 262 | } |
| 263 | |
| 264 | return 0u; |
| 265 | } |
| 266 | |
| 267 | uint32_t AFCTable::FindGUID(const uint32_t index, const AFGUID& value) const |
| 268 | { |
nothing calls this directly
no outgoing calls
no test coverage detected