Lines Matching defs:command
81 std::cout << "Usage: vdevadm [-h] [--help] <command> [args]" << std::endl;
90 std::cout << " Generally supported command args:" << std::endl;
230 const char *command = argv[optind++];
231 if (command == nullptr) {
232 std::cout << "vdevadm: command required" << std::endl;
236 if (strcmp(command, "mount") == 0) {
238 } else if (strcmp(command, "unmount") == 0) {
240 } else if (strcmp(command, "clone") == 0) {
242 } else if (strcmp(command, "monitor") == 0) {
244 } else if (strcmp(command, "act") == 0) {
247 std::cout << "vdevadm: invalid command \'" << command << "\'" << std::endl;