Lines Matching defs:cmd
55 return 0, "Invalid last cmd");
145 CommandNode *cmd = jobNode->firstCmd;
146 while (cmd != NULL) {
147 CommandNode *next = cmd->next;
148 free(cmd);
150 cmd = next;
492 CommandNode *cmd = GetNextCmdNode(node, NULL);
493 while (cmd != NULL && count < maxCmd) {
494 PARAM_DUMP(" command name: %s (%s) \n", GetCmdKey(cmd->cmdKeyIndex),
495 (cmd->cfgContext.type == INIT_CONTEXT_CHIPSET) ? "chipset" : "system");
496 PARAM_DUMP(" command args : %s \n", cmd->content);
497 cmd = GetNextCmdNode(node, cmd);