HomeSort by relevance Sort by last modified time
    Searched refs:cmdLine (Results 1 - 25 of 90) sorted by null

1 2 3 4

  /development/tools/bugreport/src/com/android/bugreport/bugreport/
ProcessInfo.java 33 public String cmdLine;
43 public ProcessInfo(int pid, String cmdLine) {
45 this.cmdLine = cmdLine;
  /external/deqp/framework/common/
tcuTestHierarchyUtil.hpp 33 void writeXmlCaselistsToFiles (TestPackageRoot& root, TestContext& testCtx, const CommandLine& cmdLine);
34 void writeTxtCaselistsToFiles (TestPackageRoot& root, TestContext& testCtx, const CommandLine& cmdLine);
tcuTestContext.cpp 35 const CommandLine& cmdLine,
40 , m_cmdLine (cmdLine)
  /external/deqp/framework/delibs/deutil/
deCommandLine.h 37 deCommandLine* deCommandLine_parse (const char* cmdLine);
38 void deCommandLine_destroy (deCommandLine* cmdLine);
deCommandLine.c 119 deCommandLine* cmdLine = (deCommandLine*)deCalloc(sizeof(deCommandLine));
121 if (!cmdLine || !(cmdLine->args = (char**)deCalloc(sizeof(char*)*(size_t)CharPtrArray_getNumElements(args))))
123 deFree(cmdLine);
129 cmdLine->numArgs = CharPtrArray_getNumElements(args);
130 cmdLine->argBuf = buf;
132 for (argNdx = 0; argNdx < cmdLine->numArgs; argNdx++)
133 cmdLine->args[argNdx] = CharPtrArray_get(args, argNdx);
136 return cmdLine;
140 void deCommandLine_destroy (deCommandLine* cmdLine)
    [all...]
  /external/deqp/framework/platform/
tcuMain.cpp 46 tcu::CommandLine cmdLine (argc, argv);
48 tcu::TestLog log (cmdLine.getLogFileName(), cmdLine.getLogFlags());
50 de::UniquePtr<tcu::App> app (new tcu::App(*platform, archive, log, cmdLine));
  /external/oj-libjdwp/src/share/back/export/
sys.h 46 int dbgsysExec(char *cmdLine);
  /external/deqp/framework/delibs/decpp/
deCommandLine.cpp 34 namespace cmdline namespace in namespace:de
355 CommandLine cmdLine;
356 const bool parseOk = parser.parse(0, DE_NULL, &cmdLine, err);
364 CommandLine cmdLine;
365 const bool parseOk = parser.parse(DE_LENGTH_OF_ARRAY(args), &args[0], &cmdLine, err);
374 CommandLine cmdLine;
375 const bool parseOk = parser.parse(DE_LENGTH_OF_ARRAY(args), &args[0], &cmdLine, err);
384 CommandLine cmdLine;
385 const bool parseOk = parser.parse(DE_LENGTH_OF_ARRAY(args), &args[0], &cmdLine, err);
388 DE_TEST_ASSERT(cmdLine.getArgs().size() == DE_LENGTH_OF_ARRAY(args))
    [all...]
  /external/deqp/external/openglcts/modules/runner/
glcTestRunnerMain.cpp 47 static bool parseCommandLine(CommandLine& cmdLine, int argc, const char* const* argv)
75 cmdLine.runType = runTypes[ndx].runType;
86 cmdLine.dstLogDir = value;
90 cmdLine.flags = glcts::TestRunner::PRINT_SUMMARY;
93 cmdLine.flags = glcts::TestRunner::VERBOSE_ALL;
114 CommandLine cmdLine;
116 if (!parseCommandLine(cmdLine, argc, argv))
126 glcts::TestRunner runner(static_cast<tcu::Platform&>(*platform.get()), archive, cmdLine.dstLogDir.c_str(),
127 cmdLine.runType, cmdLine.flags)
    [all...]
  /external/deqp/executor/tools/
xeCommandLineExecutor.cpp 87 void registerOptions (de::cmdline::Parser& parser)
89 using de::cmdline::Option;
90 using de::cmdline::NamedValue;
110 << Option<CmdLineArgs> (DE_NULL, "cmdline", "Additional command line arguments for the test binary.", "");
142 bool parseCommandLine (CommandLine& cmdLine, int argc, const char* const* argv)
144 de::cmdline::Parser parser;
145 de::cmdline::CommandLine opts;
177 cmdLine.runMode = RUNMODE_START_SERVER;
178 cmdLine.serverBinOrAddress = opts.getOption<opt::StartServer>();
182 cmdLine.runMode = RUNMODE_CONNECT
    [all...]
xeExtractShaderPrograms.cpp 68 static void writeShaderProgram (const CommandLine& cmdLine, const std::string& casePath, const xe::ri::ShaderProgram& shaderProgram, int programNdx)
70 const string basePath = string(de::FilePath::join(cmdLine.dstPath, casePath).getPath()) + "." + de::toString(programNdx);
99 static void extractShaderPrograms (const CommandLine& cmdLine, const std::string& casePath, const xe::TestCaseResult& result)
117 writeShaderProgram(cmdLine, casePath, static_cast<const xe::ri::ShaderProgram&>(curItem), programNdx);
134 ShaderProgramExtractHandler (const CommandLine& cmdLine)
135 : m_cmdLine(cmdLine)
174 static void extractShaderProgramsFromLogFile (const CommandLine& cmdLine)
176 std::ifstream in (cmdLine.filename.c_str(), std::ifstream::binary|std::ifstream::in);
177 ShaderProgramExtractHandler resultHandler (cmdLine);
183 throw std::runtime_error(string("Failed to open '") + cmdLine.filename + "'")
    [all...]
xeTestLogCompare.cpp 76 static void registerOptions (de::cmdline::Parser& parser)
78 using de::cmdline::Option;
79 using de::cmdline::NamedValue;
264 static bool runCompare (const CommandLine& cmdLine, std::ostream& dst)
270 XE_CHECK(!cmdLine.filenames.empty());
275 results.resize(cmdLine.filenames.size());
279 for (int ndx = 0; ndx < (int)cmdLine.filenames.size(); ndx++)
281 readers.push_back(de::SharedPtr<LogFileReader>(new LogFileReader(results[ndx], cmdLine.filenames[ndx].c_str())));
285 for (int ndx = 0; ndx < (int)cmdLine.filenames.size(); ndx++)
290 batchNames.push_back(de::FilePath(cmdLine.filenames[ndx].c_str()).getBaseName())
    [all...]
xeMergeTestLogs.cpp 148 static void mergeTestLogs (const CommandLine& cmdLine)
152 for (vector<string>::const_iterator filename = cmdLine.srcFilenames.begin(); filename != cmdLine.srcFilenames.end(); ++filename)
153 readLogFile(&batchResult, filename->c_str(), cmdLine.flags);
155 if (!cmdLine.dstFilename.empty())
156 xe::writeBatchResultToFile(batchResult, cmdLine.dstFilename.c_str());
168 static bool parseCommandLine (CommandLine& cmdLine, int argc, const char* const* argv)
175 cmdLine.srcFilenames.push_back(arg);
178 if (!cmdLine.dstFilename.empty())
180 cmdLine.dstFilename = arg+6
    [all...]
xeExtractValues.cpp 221 static void printTaggedValues (const CommandLine& cmdLine, std::ostream& dst)
223 BatchResultValues values(cmdLine.tagNames);
225 readLogFile(values, cmdLine.filename.c_str());
230 if (cmdLine.statusCode)
244 if (cmdLine.statusCode)
260 static bool parseCommandLine (CommandLine& cmdLine, int argc, const char* const* argv)
267 cmdLine.statusCode = true;
270 if (cmdLine.filename.empty())
271 cmdLine.filename = arg;
273 cmdLine.tagNames.push_back(arg)
    [all...]
xeBatchResultToJUnit.cpp 56 static void parseCommandLine (CommandLine& cmdLine, int argc, const char* const* argv)
61 cmdLine.batchResultFile = argv[argc-2];
62 cmdLine.outputFile = argv[argc-1];
158 CommandLine cmdLine;
161 parseCommandLine(cmdLine, argc, argv);
171 batchResultToJUnitReport(cmdLine.batchResultFile.c_str(), cmdLine.outputFile.c_str());
  /external/deqp/framework/opengl/
gluRenderConfig.cpp 143 void parseRenderConfig (RenderConfig* config, const tcu::CommandLine& cmdLine)
145 switch (cmdLine.getSurfaceType())
156 config->windowVisibility = parseWindowVisibility(cmdLine);
158 if (cmdLine.getSurfaceWidth() > 0)
159 config->width = cmdLine.getSurfaceWidth();
161 if (cmdLine.getSurfaceHeight() > 0)
162 config->height = cmdLine.getSurfaceHeight();
164 if (cmdLine.getGLConfigName() != DE_NULL)
165 parseConfigBitsFromName(config, cmdLine.getGLConfigName());
167 if (cmdLine.getGLConfigId() >= 0
    [all...]
gluContextFactory.hpp 61 * \param cmdLine Command line for extra arguments
65 virtual RenderContext* createContext (const RenderConfig& config, const tcu::CommandLine& cmdLine, const glu::RenderContext* sharedContext) const = 0;
  /external/oj-libjdwp/src/solaris/back/
exec_md.c 56 dbgsysExec(char *cmdLine)
67 cmdLine = skipWhitespace(cmdLine);
70 args = jvmtiAllocate((jint)strlen(cmdLine)+1);
74 (void)strcpy(args, cmdLine);
  /external/deqp/android/package/src/com/drawelements/deqp/testercore/
RemoteAPI.java 67 public boolean start (String testerName, String cmdLine, String caseList) {
76 // Add all data to cmdLine
77 cmdLine = testerName + " " + cmdLine + " --deqp-log-filename=" + m_logFileName;
80 cmdLine = cmdLine + " --deqp-caselist=" + caseList;
82 cmdLine = cmdLine.replaceAll(" ", " ");
83 testIntent.putExtra("cmdLine", cmdLine);
    [all...]
  /external/deqp/execserver/tools/
xsMain.cpp 42 void registerOptions (de::cmdline::Parser& parser)
44 using de::cmdline::Option;
45 using de::cmdline::NamedValue;
55 de::cmdline::CommandLine cmdLine;
68 de::cmdline::Parser parser;
71 if (!parser.parse(argc, argv, &cmdLine, std::cerr))
80 const xs::ExecutionServer::RunMode runMode = cmdLine.getOption<opt::SingleExec>()
83 const int port = cmdLine.getOption<opt::Port>();
  /external/deqp/framework/egl/
egluPlatform.hpp 88 * \param cmdLine Reserved for future use
90 virtual tcu::FunctionLibrary* createDefaultGLFunctionLibrary (glu::ApiType apiType, const tcu::CommandLine& cmdLine) const;
egluGLContextFactory.hpp 52 virtual glu::RenderContext* createContext (const glu::RenderConfig& config, const tcu::CommandLine& cmdLine, const glu::RenderContext *sharedContext) const;
  /external/deqp/framework/platform/win32/
tcuWGLContextFactory.hpp 39 virtual glu::RenderContext* createContext (const glu::RenderConfig& config, const tcu::CommandLine& cmdLine,
  /external/deqp/external/vulkancts/framework/vulkan/
vkDeviceUtil.hpp 59 const tcu::CommandLine& cmdLine);
63 const tcu::CommandLine& cmdLine);
  /development/tools/bugreport/src/com/android/bugreport/stacks/
ProcessSnapshot.java 26 public String cmdLine;
41 this.cmdLine = that.cmdLine;

Completed in 451 milliseconds

1 2 3 4