Home
last modified time | relevance | path

Searched refs:cmdLine (Results 1 – 25 of 86) sorted by relevance

1234

/external/deqp/framework/delibs/deutil/
DdeCommandLine.c119 deCommandLine* cmdLine = (deCommandLine*)deCalloc(sizeof(deCommandLine)); in deCommandLine_parse() local
121 …if (!cmdLine || !(cmdLine->args = (char**)deCalloc(sizeof(char*)*(size_t)CharPtrArray_getNumElemen… in deCommandLine_parse()
123 deFree(cmdLine); in deCommandLine_parse()
129 cmdLine->numArgs = CharPtrArray_getNumElements(args); in deCommandLine_parse()
130 cmdLine->argBuf = buf; in deCommandLine_parse()
132 for (argNdx = 0; argNdx < cmdLine->numArgs; argNdx++) in deCommandLine_parse()
133 cmdLine->args[argNdx] = CharPtrArray_get(args, argNdx); in deCommandLine_parse()
136 return cmdLine; in deCommandLine_parse()
140 void deCommandLine_destroy (deCommandLine* cmdLine) in deCommandLine_destroy() argument
142 deFree(cmdLine->argBuf); in deCommandLine_destroy()
[all …]
/external/deqp/framework/delibs/decpp/
DdeCommandLine.cpp355 CommandLine cmdLine; in selfTest() local
356 const bool parseOk = parser.parse(0, DE_NULL, &cmdLine, err); in selfTest()
364 CommandLine cmdLine; in selfTest() local
365 const bool parseOk = parser.parse(DE_LENGTH_OF_ARRAY(args), &args[0], &cmdLine, err); in selfTest()
374 CommandLine cmdLine; in selfTest() local
375 const bool parseOk = parser.parse(DE_LENGTH_OF_ARRAY(args), &args[0], &cmdLine, err); in selfTest()
384 CommandLine cmdLine; in selfTest() local
385 const bool parseOk = parser.parse(DE_LENGTH_OF_ARRAY(args), &args[0], &cmdLine, err); in selfTest()
388 DE_TEST_ASSERT(cmdLine.getArgs().size() == DE_LENGTH_OF_ARRAY(args)); in selfTest()
391 DE_TEST_ASSERT(cmdLine.getArgs()[ndx] == args[ndx]); in selfTest()
[all …]
/external/deqp/executor/tools/
DxeCommandLineExecutor.cpp142 bool parseCommandLine (CommandLine& cmdLine, int argc, const char* const* argv) in parseCommandLine() argument
177 cmdLine.runMode = RUNMODE_START_SERVER; in parseCommandLine()
178 cmdLine.serverBinOrAddress = opts.getOption<opt::StartServer>(); in parseCommandLine()
182 cmdLine.runMode = RUNMODE_CONNECT; in parseCommandLine()
183 cmdLine.serverBinOrAddress = opts.getOption<opt::Host>(); in parseCommandLine()
188 cmdLine.inFile = opts.getOption<opt::ContinueFile>(); in parseCommandLine()
190 if (cmdLine.inFile.empty()) in parseCommandLine()
197 cmdLine.port = opts.getOption<opt::Port>(); in parseCommandLine()
198 cmdLine.caseListDir = opts.getOption<opt::CaseListDir>(); in parseCommandLine()
199 cmdLine.testset = opts.getOption<opt::TestSet>(); in parseCommandLine()
[all …]
DxeExtractShaderPrograms.cpp75 static void writeShaderProgram (const CommandLine& cmdLine, const std::string& casePath, const xe::… in writeShaderProgram() argument
77 …const string basePath = string(de::FilePath::join(cmdLine.dstPath, casePath).getPath()) + "." + de… in writeShaderProgram()
106 static void extractShaderPrograms (const CommandLine& cmdLine, const std::string& casePath, const x… in extractShaderPrograms() argument
124 …writeShaderProgram(cmdLine, casePath, static_cast<const xe::ri::ShaderProgram&>(curItem), programN… in extractShaderPrograms()
141 ShaderProgramExtractHandler (const CommandLine& cmdLine) in ShaderProgramExtractHandler() argument
142 : m_cmdLine(cmdLine) in ShaderProgramExtractHandler()
181 static void extractShaderProgramsFromLogFile (const CommandLine& cmdLine) in extractShaderProgramsFromLogFile() argument
183 std::ifstream in (cmdLine.filename.c_str(), std::ifstream::binary|std::ifstream::in); in extractShaderProgramsFromLogFile()
184 ShaderProgramExtractHandler resultHandler (cmdLine); in extractShaderProgramsFromLogFile()
190 throw std::runtime_error(string("Failed to open '") + cmdLine.filename + "'"); in extractShaderProgramsFromLogFile()
[all …]
DxeMergeTestLogs.cpp148 static void mergeTestLogs (const CommandLine& cmdLine) in mergeTestLogs() argument
152 …for (vector<string>::const_iterator filename = cmdLine.srcFilenames.begin(); filename != cmdLine.s… in mergeTestLogs()
153 readLogFile(&batchResult, filename->c_str(), cmdLine.flags); in mergeTestLogs()
155 if (!cmdLine.dstFilename.empty()) in mergeTestLogs()
156 xe::writeBatchResultToFile(batchResult, cmdLine.dstFilename.c_str()); in mergeTestLogs()
168 static bool parseCommandLine (CommandLine& cmdLine, int argc, const char* const* argv) in parseCommandLine() argument
175 cmdLine.srcFilenames.push_back(arg); in parseCommandLine()
178 if (!cmdLine.dstFilename.empty()) in parseCommandLine()
180 cmdLine.dstFilename = arg+6; in parseCommandLine()
183 cmdLine.flags &= ~FLAG_USE_LAST_INFO; in parseCommandLine()
[all …]
DxeTestLogCompare.cpp264 static bool runCompare (const CommandLine& cmdLine, std::ostream& dst) in runCompare() argument
270 XE_CHECK(!cmdLine.filenames.empty()); in runCompare()
275 results.resize(cmdLine.filenames.size()); in runCompare()
279 for (int ndx = 0; ndx < (int)cmdLine.filenames.size(); ndx++) in runCompare()
281 …readers.push_back(de::SharedPtr<LogFileReader>(new LogFileReader(results[ndx], cmdLine.filenames[n… in runCompare()
285 for (int ndx = 0; ndx < (int)cmdLine.filenames.size(); ndx++) in runCompare()
290 batchNames.push_back(de::FilePath(cmdLine.filenames[ndx].c_str()).getBaseName()); in runCompare()
302 if (cmdLine.outFormat == OUTPUTFORMAT_CSV) in runCompare()
331 if (cmdLine.outMode == OUTPUTMODE_ALL || !allEqual) in runCompare()
333 if (cmdLine.outFormat == OUTPUTFORMAT_TEXT) in runCompare()
[all …]
DxeExtractValues.cpp221 static void printTaggedValues (const CommandLine& cmdLine, std::ostream& dst) in printTaggedValues() argument
223 BatchResultValues values(cmdLine.tagNames); in printTaggedValues()
225 readLogFile(values, cmdLine.filename.c_str()); in printTaggedValues()
230 if (cmdLine.statusCode) in printTaggedValues()
244 if (cmdLine.statusCode) in printTaggedValues()
260 static bool parseCommandLine (CommandLine& cmdLine, int argc, const char* const* argv) in parseCommandLine() argument
267 cmdLine.statusCode = true; in parseCommandLine()
270 if (cmdLine.filename.empty()) in parseCommandLine()
271 cmdLine.filename = arg; in parseCommandLine()
273 cmdLine.tagNames.push_back(arg); in parseCommandLine()
[all …]
DxeBatchResultToJUnit.cpp56 static void parseCommandLine (CommandLine& cmdLine, int argc, const char* const* argv) in parseCommandLine() argument
61 cmdLine.batchResultFile = argv[argc-2]; in parseCommandLine()
62 cmdLine.outputFile = argv[argc-1]; in parseCommandLine()
158 CommandLine cmdLine; in main() local
161 parseCommandLine(cmdLine, argc, argv); in main()
171 batchResultToJUnitReport(cmdLine.batchResultFile.c_str(), cmdLine.outputFile.c_str()); in main()
DxeBatchResultToXml.cpp88 static bool parseCommandLine (CommandLine& cmdLine, int argc, const char* const* argv) in parseCommandLine() argument
103 cmdLine.outputMode = opts.getOption<opt::OutMode>(); in parseCommandLine()
104 cmdLine.batchResultFile = opts.getArgs()[0]; in parseCommandLine()
105 cmdLine.outputPath = opts.getArgs()[1]; in parseCommandLine()
384 CommandLine cmdLine; in main() local
385 if (!parseCommandLine(cmdLine, argc, argv)) in main()
388 if (cmdLine.outputMode == OUTPUTMODE_SINGLE) in main()
389 batchResultToSingleXmlFile(cmdLine.batchResultFile.c_str(), cmdLine.outputPath.c_str()); in main()
391 batchResultToSeparateXmlFiles(cmdLine.batchResultFile.c_str(), cmdLine.outputPath.c_str()); in main()
/external/deqp/external/openglcts/modules/runner/
DglcTestRunnerMain.cpp49 static bool parseCommandLine(CommandLine& cmdLine, int argc, const char* const* argv) in parseCommandLine() argument
77 cmdLine.runType = runTypes[ndx].runType; in parseCommandLine()
88 cmdLine.waiverPath = value; in parseCommandLine()
93 cmdLine.dstLogDir = value; in parseCommandLine()
97 cmdLine.flags = glcts::TestRunner::PRINT_SUMMARY; in parseCommandLine()
100 cmdLine.flags = glcts::TestRunner::VERBOSE_ALL; in parseCommandLine()
122 CommandLine cmdLine; in main() local
125 if (!parseCommandLine(cmdLine, argc, argv)) in main()
135 …glcts::TestRunner runner(static_cast<tcu::Platform&>(*platform.get()), archive, cmdLine.waiverPath… in main()
136 cmdLine.dstLogDir.c_str(), cmdLine.runType, cmdLine.flags); in main()
/external/deqp/framework/opengl/
DgluRenderConfig.cpp143 void parseRenderConfig (RenderConfig* config, const tcu::CommandLine& cmdLine) in parseRenderConfig() argument
145 switch (cmdLine.getSurfaceType()) in parseRenderConfig()
156 config->windowVisibility = parseWindowVisibility(cmdLine); in parseRenderConfig()
158 if (cmdLine.getSurfaceWidth() > 0) in parseRenderConfig()
159 config->width = cmdLine.getSurfaceWidth(); in parseRenderConfig()
161 if (cmdLine.getSurfaceHeight() > 0) in parseRenderConfig()
162 config->height = cmdLine.getSurfaceHeight(); in parseRenderConfig()
164 if (cmdLine.getGLConfigName() != DE_NULL) in parseRenderConfig()
165 parseConfigBitsFromName(config, cmdLine.getGLConfigName()); in parseRenderConfig()
167 if (cmdLine.getGLConfigId() >= 0) in parseRenderConfig()
[all …]
DgluRenderContext.cpp133 RenderContext* createRenderContext (tcu::Platform& platform, const tcu::CommandLine& cmdLine, const… in createRenderContext() argument
136 const char* factoryName = cmdLine.getGLContextType(); in createRenderContext()
163 if (cmdLine.getSurfaceType() == tcu::SURFACETYPE_FBO) in createRenderContext()
167 return new FboRenderContext(*factory, config, cmdLine); in createRenderContext()
170 return factory->createContext(config, cmdLine, sharedContext); in createRenderContext()
173 RenderContext* createDefaultRenderContext (tcu::Platform& platform, const tcu::CommandLine& cmdLine in createDefaultRenderContext() argument
178 if (cmdLine.getGLContextFlags()) in createDefaultRenderContext()
179 ctxFlags = parseContextFlags(cmdLine.getGLContextFlags()); in createDefaultRenderContext()
182 parseRenderConfig(&config, cmdLine); in createDefaultRenderContext()
184 return createRenderContext(platform, cmdLine, config); in createDefaultRenderContext()
/external/deqp/execserver/tools/
DxsClient.cpp151 Client (const CommandLine& cmdLine);
161 Client::Client (const CommandLine& cmdLine) in Client() argument
162 : m_cmdLine(cmdLine) in Client()
304 CommandLine cmdLine; in runClient() local
307 cmdLine.address.setHost("127.0.0.1"); in runClient()
308 cmdLine.address.setPort(50016); in runClient()
309 cmdLine.dstFileName = "TestResults.qpa"; in runClient()
317 cmdLine.address.setPort(atoi(arg+7)); in runClient()
319 cmdLine.address.setHost(parseString(arg+7).c_str()); in runClient()
321 cmdLine.program = parseString(arg+10); in runClient()
[all …]
DxsMain.cpp55 de::cmdline::CommandLine cmdLine; in main() local
71 if (!parser.parse(argc, argv, &cmdLine, std::cerr)) in main()
80 const xs::ExecutionServer::RunMode runMode = cmdLine.getOption<opt::SingleExec>() in main()
83 const int port = cmdLine.getOption<opt::Port>(); in main()
/external/deqp/framework/platform/
DtcuMain.cpp49 tcu::CommandLine cmdLine (argc, argv); in main() local
50 tcu::DirArchive archive (cmdLine.getArchiveDir()); in main()
51 tcu::TestLog log (cmdLine.getLogFileName(), cmdLine.getLogFlags()); in main()
53 de::UniquePtr<tcu::App> app (new tcu::App(*platform, archive, log, cmdLine)); in main()
60 if (cmdLine.getRunMode() == tcu::RUNMODE_EXECUTE && in main()
/external/deqp/android/package/src/com/drawelements/deqp/testercore/
DRemoteAPI.java67 public boolean start (String testerName, String cmdLine, String caseList) { in start() argument
77 cmdLine = testerName + " " + cmdLine + " --deqp-log-filename=" + m_logFileName; in start()
80 cmdLine = cmdLine + " --deqp-caselist=" + caseList; in start()
82 cmdLine = cmdLine.replaceAll(" ", " "); in start()
83 testIntent.putExtra("cmdLine", cmdLine); in start()
/external/oj-libjdwp/src/solaris/back/
Dexec_md.c56 dbgsysExec(char *cmdLine) in dbgsysExec() argument
67 cmdLine = skipWhitespace(cmdLine); in dbgsysExec()
70 args = jvmtiAllocate((jint)strlen(cmdLine)+1); in dbgsysExec()
74 (void)strcpy(args, cmdLine); in dbgsysExec()
/external/deqp/external/vulkancts/modules/vulkan/
DvktBuildPrograms.cpp607 de::cmdline::CommandLine cmdLine; in main() local
613 if (!parser.parse(argc, argv, &cmdLine, std::cerr)) in main()
625 if (cmdLine.hasOption<opt::Cases>()) in main()
628 deqpArgv.push_back(cmdLine.getOption<opt::Cases>().c_str()); in main()
631 if (cmdLine.hasOption<opt::ShaderCacheFilename>()) in main()
634 deqpArgv.push_back(cmdLine.getOption<opt::ShaderCacheFilename>().c_str()); in main()
637 if (cmdLine.hasOption<opt::ShaderCache>()) in main()
640 if (cmdLine.getOption<opt::ShaderCache>()) in main()
646 if (cmdLine.hasOption<opt::ShaderCacheTruncate>()) in main()
649 if (cmdLine.getOption<opt::ShaderCacheTruncate>()) in main()
[all …]
DvktCustomInstancesDevices.cpp216 const auto& cmdLine = context.getTestContext().getCommandLine(); in createCustomInstanceWithExtensions() local
217 const bool validationEnabled = (cmdLine.isValidationEnabled() && allowLayers); in createCustomInstanceWithExtensions()
218 const bool printValidationErrors = cmdLine.printValidationErrors(); in createCustomInstanceWithExtensions()
287 const auto& cmdLine = context.getTestContext().getCommandLine(); in createCustomInstanceFromInfo() local
288 const bool validationEnabled = cmdLine.isValidationEnabled(); in createCustomInstanceFromInfo()
289 const bool printValidationErrors = cmdLine.printValidationErrors(); in createCustomInstanceFromInfo()
316 const auto& cmdLine = context.getTestContext().getCommandLine(); in createUncheckedInstance() local
317 const bool validationEnabled = cmdLine.isValidationEnabled(); in createUncheckedInstance()
318 const bool printValidationErrors = cmdLine.printValidationErrors(); in createUncheckedInstance()
DvktTestCase.cpp165 …eDeviceVersions(const PlatformInterface& vkp, deUint32 apiVersion, const tcu::CommandLine& cmdLine) in determineDeviceVersions() argument
179 const vk::VkPhysicalDevice choosenDevice = chooseDevice(preinterface, *preinstance, cmdLine); in determineDeviceVersions()
187 …vkp, deUint32 apiVersion, const vector<string>& enabledExtensions, const tcu::CommandLine& cmdLine) in createInstance() argument
189 const bool isValidationEnabled = cmdLine.isValidationEnabled(); in createInstance()
233 const tcu::CommandLine& cmdLine) in createDefaultDevice() argument
245 if (cmdLine.isValidationEnabled()) in createDefaultDevice()
299 … DefaultDevice (const PlatformInterface& vkPlatform, const tcu::CommandLine& cmdLine);
387 DefaultDevice::DefaultDevice (const PlatformInterface& vkPlatform, const tcu::CommandLine& cmdLine) in DefaultDevice() argument
391 , m_deviceVersions (determineDeviceVersions(vkPlatform, m_usedInstanceVersion, cmdLine)) in DefaultDevice()
395 , m_instance (createInstance(vkPlatform, m_usedApiVersion, m_instanceExtensions, cmdLine)) in DefaultDevice()
[all …]
/external/deqp/framework/common/
DtcuApp.cpp81 App::App (Platform& platform, Archive& archive, TestLog& log, const CommandLine& cmdLine) in App() argument
98 const RunMode runMode = cmdLine.getRunMode(); in App()
101 if (cmdLine.isWatchDogEnabled()) in App()
105 if (cmdLine.isCrashHandlingEnabled()) in App()
109 m_testCtx = new TestContext(m_platform, archive, log, cmdLine, m_watchDog); in App()
120 writeXmlCaselistsToFiles(*m_testRoot, *m_testCtx, cmdLine); in App()
122 writeTxtCaselistsToFiles(*m_testRoot, *m_testCtx, cmdLine); in App()
DtcuCommandLine.cpp723 CommandLine::CommandLine (const std::string& cmdLine) in CommandLine() argument
724 : m_initialCmdLine (cmdLine) in CommandLine()
726 if (!parse(cmdLine)) in CommandLine()
810 bool CommandLine::parse (const std::string& cmdLine) in parse() argument
812 deCommandLine* parsedCmdLine = deCommandLine_parse(cmdLine.c_str()); in parse()
977 CaseListFilter::CaseListFilter (const de::cmdline::CommandLine& cmdLine, const tcu::Archive& archiv… in CaseListFilter() argument
979 , m_runnerType (cmdLine.getOption<opt::RunnerType>()) in CaseListFilter()
981 if (cmdLine.hasOption<opt::CaseList>()) in CaseListFilter()
983 std::istringstream str(cmdLine.getOption<opt::CaseList>()); in CaseListFilter()
987 else if (cmdLine.hasOption<opt::CaseListFile>()) in CaseListFilter()
[all …]
/external/deqp/external/vulkancts/framework/vulkan/
DvkDeviceUtil.cpp99 …x (const InstanceInterface& vkInstance, const VkInstance instance, const tcu::CommandLine& cmdLine) in chooseDeviceIndex() argument
106 const deUint32 deviceIdFromCmdLine = cmdLine.getVKDeviceId(); in chooseDeviceIndex()
130 …e (const InstanceInterface& vkInstance, const VkInstance instance, const tcu::CommandLine& cmdLine) in chooseDevice() argument
137 const size_t deviceId = chooseDeviceIndex(vkInstance, instance, cmdLine); in chooseDevice()
/external/deqp/external/openglcts/scripts/
Dmustpass.py107 cmdLine = ""
110 cmdLine += "--deqp-gl-config-name=%s " % config.glconfig
113 cmdLine += "--deqp-screen-rotation=%s " % config.rotation
116 cmdLine += "--deqp-surface-type=%s " % config.surfacetype
119 cmdLine += "--deqp-surface-width=%s " % config.surfacewidth
122 cmdLine += "--deqp-surface-height=%s " % config.surfaceheight
125 cmdLine += "--deqp-base-seed=%s " % config.baseseed
128 cmdLine += "--deqp-gl-config-name=%s --deqp-surface-type=fbo " % config.fboconfig
130 cmdLine += "--deqp-watchdog=disable"
132 return cmdLine
/external/deqp/execserver/
DxsPosixTestProcess.cpp203 …string cmdLine = de::FilePath(name).isAbsolutePath() ? name : de::FilePath::join(workingDir, name)… in start() local
204 cmdLine += string(" --deqp-log-filename=") + logFilePath.getBaseName(); in start()
207 cmdLine += " --deqp-stdin-caselist"; in start()
210 cmdLine += string(" ") + params; in start()
217 m_process->start(cmdLine.c_str(), strlen(workingDir) > 0 ? workingDir : DE_NULL); in start()

1234