| 413 | } |
| 414 | |
| 415 | static FConsoleCommand *FindNameInHashTable (FConsoleCommand **table, const char *name, size_t namelen) |
| 416 | { |
| 417 | FConsoleCommand *dummy; |
| 418 | |
| 419 | return ScanChainForName (table[MakeKey (name, namelen) % FConsoleCommand::HASH_SIZE], name, namelen, &dummy); |
| 420 | } |
| 421 | |
| 422 | bool FConsoleCommand::AddToHash (FConsoleCommand **table) |
| 423 | { |
no test coverage detected