Lines Matching full:command
58 // Reads a single command, returning it. A return value of NULL indicates
102 SessionCommand* command;
103 while ((command = ReadCommand()) && !errored_)
104 read_commands->push_back(command);
118 // Make sure there is enough in the buffer for the size of the next command.
123 // Still couldn't read a valid size for the command, assume write was
128 // Get the size of the command.
135 // Empty command. Shouldn't happen if write was successful, fail.
139 // Make sure buffer has the complete contents of the command.
151 SessionCommand* command =
154 memcpy(command->contents(),
160 return command;