Searched refs:CmdLine (Results 1 – 6 of 6) sorted by relevance
1218 std::string CmdLine("foo -bar=baz qux "); in makeCmdLine() local1220 CmdLine += separator; in makeCmdLine()1221 CmdLine += " "; in makeCmdLine()1223 CmdLine += Command::ignoreRemainingArgs(); in makeCmdLine()1224 CmdLine += " quux -grault=garply"; in makeCmdLine()1226 CmdLine += " "; in makeCmdLine()1227 CmdLine += suffix; in makeCmdLine()1229 return CmdLine; in makeCmdLine()1233 std::string CmdLine; in TEST() local1238 CmdLine = DefaultCmd.toString(); in TEST()[all …]
161 CmdLine[256], in popen() local199 strcpy (CmdLine, CmdExe); in popen()200 Args = CmdLine + strlen (CmdLine) + 1; /* skip zero */ in popen()205 (unsigned char *) CmdLine, 0, &Result, in popen()
26 std::string CmdLine = Cmd.toString(); in ExecuteCommand() local27 int exit_code = system(CmdLine.c_str()); in ExecuteCommand()
42 std::string CmdLine = Cmd.toString(); in ExecuteCommand() local102 const char *CommandCStr = CmdLine.c_str(); in ExecuteCommand()
168 std::string CmdLine = Cmd.toString(); in ExecuteCommand() local169 return system(CmdLine.c_str()); in ExecuteCommand()
1898 std::unique_ptr<MemoryBuffer> CmdLine = MemoryBuffer::getMemBufferCopy( in readCheckFile() local1902 CmdLine->getBuffer().substr(Prefix.size(), PatternString.size()); in readCheckFile()1903 unsigned BufferID = SM.AddNewSourceBuffer(std::move(CmdLine), SMLoc()); in readCheckFile()