Lines Matching refs:Command

1582 using CommandMap = std::unordered_map<Command::Type, CommandFunction>;
1832 Command::Type cmd_type = Command::ParseType(params.cmdname); in PerformBlockImageUpdate()
1833 if (cmd_type == Command::Type::LAST) { in PerformBlockImageUpdate()
1850 cmd_type != Command::Type::NEW) { in PerformBlockImageUpdate()
1858 if (cmd_type == Command::Type::COMPUTE_HASH_TREE && failure_type == kNoCause) { in PerformBlockImageUpdate()
1869 if ((cmd_type == Command::Type::MOVE || cmd_type == Command::Type::BSDIFF || in PerformBlockImageUpdate()
1870 cmd_type == Command::Type::IMGDIFF) && in PerformBlockImageUpdate()
2020 { Command::Type::ABORT, PerformCommandAbort }, in BlockImageVerifyFn()
2021 { Command::Type::BSDIFF, PerformCommandDiff }, in BlockImageVerifyFn()
2022 { Command::Type::COMPUTE_HASH_TREE, PerformCommandComputeHashTree }, in BlockImageVerifyFn()
2023 { Command::Type::ERASE, nullptr }, in BlockImageVerifyFn()
2024 { Command::Type::FREE, PerformCommandFree }, in BlockImageVerifyFn()
2025 { Command::Type::IMGDIFF, PerformCommandDiff }, in BlockImageVerifyFn()
2026 { Command::Type::MOVE, PerformCommandMove }, in BlockImageVerifyFn()
2027 { Command::Type::NEW, nullptr }, in BlockImageVerifyFn()
2028 { Command::Type::STASH, PerformCommandStash }, in BlockImageVerifyFn()
2029 { Command::Type::ZERO, nullptr }, in BlockImageVerifyFn()
2032 CHECK_EQ(static_cast<size_t>(Command::Type::LAST), command_map.size()); in BlockImageVerifyFn()
2042 { Command::Type::ABORT, PerformCommandAbort }, in BlockImageUpdateFn()
2043 { Command::Type::BSDIFF, PerformCommandDiff }, in BlockImageUpdateFn()
2044 { Command::Type::COMPUTE_HASH_TREE, PerformCommandComputeHashTree }, in BlockImageUpdateFn()
2045 { Command::Type::ERASE, PerformCommandErase }, in BlockImageUpdateFn()
2046 { Command::Type::FREE, PerformCommandFree }, in BlockImageUpdateFn()
2047 { Command::Type::IMGDIFF, PerformCommandDiff }, in BlockImageUpdateFn()
2048 { Command::Type::MOVE, PerformCommandMove }, in BlockImageUpdateFn()
2049 { Command::Type::NEW, PerformCommandNew }, in BlockImageUpdateFn()
2050 { Command::Type::STASH, PerformCommandStash }, in BlockImageUpdateFn()
2051 { Command::Type::ZERO, PerformCommandZero }, in BlockImageUpdateFn()
2054 CHECK_EQ(static_cast<size_t>(Command::Type::LAST), command_map.size()); in BlockImageUpdateFn()