Lines Matching refs:CommandBuffer
88 CommandBuffer = new char [1]; in CommandLine()
89 if (CommandBuffer == NULL) { in CommandLine()
93 CommandBuffer[0] = '\0'; in CommandLine()
113 CommandBuffer = new char [1]; in CommandLine()
114 if (CommandBuffer == NULL) { in CommandLine()
139 CommandBuffer = new char [1]; in CommandLine()
140 if (CommandBuffer == NULL) { in CommandLine()
157 BuildCommand(CCommandLine.CommandBuffer); in CommandLine()
164 delete [] CommandBuffer; in ~CommandLine()
178 strcpy (CommandBuffer, CCommandLine.CommandBuffer); in operator =()
185 BuildCommand(CommandBuffer); in operator =()
193 strcpy (CommandBuffer, CommandString); in operator =()
200 BuildCommand(CommandBuffer); in operator =()
238 delete [] CommandBuffer; in BuildCommand()
239 CommandBuffer = new char [strlen(ComShell)+strlen(WorkString)+1]; in BuildCommand()
240 if (CommandBuffer == NULL) { in BuildCommand()
244 strcpy (CommandBuffer, ComShell); in BuildCommand()
245 strcpy (&CommandBuffer[strlen(ComShell)], WorkString); in BuildCommand()
247 CommandString = CommandBuffer; in BuildCommand()