HomeSort by relevance Sort by last modified time
    Searched refs:cmdLine (Results 51 - 75 of 178) sorted by null

1 23 4 5 6 7 8

  /external/curl/lib/
nwlib.c 68 const char *cmdLine,
85 #pragma unused(cmdLine)
  /external/deqp/framework/common/
tcuTestHierarchyIterator.hpp 110 TestHierarchyIterator (TestPackageRoot& rootNode, TestHierarchyInflater& inflater, const CommandLine& cmdLine);
tcuTestHierarchyIterator.cpp 90 const CommandLine& cmdLine)
92 , m_cmdLine (cmdLine)
tcuCommandLine.cpp 98 de::cmdline::parseType(val.c_str(), &intVal);
103 void registerOptions (de::cmdline::Parser& parser)
105 using de::cmdline::Option;
106 using de::cmdline::NamedValue;
178 void registerLegacyOptions (de::cmdline::Parser& parser)
180 using de::cmdline::Option;
665 * \param cmdLine Full command line string.
667 CommandLine::CommandLine (const std::string& cmdLine)
671 if (!parse(cmdLine))
689 const de::cmdline::CommandLine& CommandLine::getCommandLine (void) cons
    [all...]
  /external/deqp/framework/platform/ios/
tcuIOSPlatform.hh 68 glu::RenderContext* createContext (const glu::RenderConfig& config, const tcu::CommandLine& cmdLine) const;
  /development/ndk/platforms/android-4/samples/san-angeles/jni/
app-win32.c 207 LPTSTR cmdLine, int cmdShow)
216 cmdLine = cmdLine;
  /external/deqp/execserver/tools/
xsClient.cpp 150 Client (const CommandLine& cmdLine);
160 Client::Client (const CommandLine& cmdLine)
161 : m_cmdLine(cmdLine)
303 CommandLine cmdLine;
306 cmdLine.address.setHost("127.0.0.1");
307 cmdLine.address.setPort(50016);
308 cmdLine.dstFileName = "TestResults.qpa";
316 cmdLine.address.setPort(atoi(arg+7));
318 cmdLine.address.setHost(parseString(arg+7).c_str());
320 cmdLine.program = parseString(arg+10)
    [all...]
xsTest.cpp 278 string cmdLine = m_testCtx.serverPath + " --port=" + de::toString(m_testCtx.address.getPort());
282 if (!deProcess_start(serverProc, cmdLine.c_str(), DE_NULL))
  /external/deqp/framework/egl/
egluUtil.hpp 83 const NativeDisplayFactory& selectNativeDisplayFactory (const NativeDisplayFactoryRegistry& registry, const tcu::CommandLine& cmdLine);
84 const NativeWindowFactory& selectNativeWindowFactory (const NativeDisplayFactory& factory, const tcu::CommandLine& cmdLine);
85 const NativePixmapFactory& selectNativePixmapFactory (const NativeDisplayFactory& factory, const tcu::CommandLine& cmdLine);
egluUtil.cpp 465 const NativeDisplayFactory& selectNativeDisplayFactory (const NativeDisplayFactoryRegistry& registry, const tcu::CommandLine& cmdLine)
467 return selectFactory(registry, "display", cmdLine.getEGLDisplayType());
470 const NativeWindowFactory& selectNativeWindowFactory (const NativeDisplayFactory& factory, const tcu::CommandLine& cmdLine)
472 return selectFactory(factory.getNativeWindowRegistry(), "window", cmdLine.getEGLWindowType());
475 const NativePixmapFactory& selectNativePixmapFactory (const NativeDisplayFactory& factory, const tcu::CommandLine& cmdLine)
477 return selectFactory(factory.getNativePixmapRegistry(), "pixmap", cmdLine.getEGLPixmapType());
egluGLContextFactory.cpp 558 glu::RenderContext* GLContextFactory::createContext (const glu::RenderConfig& config, const tcu::CommandLine& cmdLine) const
560 const NativeDisplayFactory& displayFactory = selectNativeDisplayFactory(m_displayFactoryRegistry, cmdLine);
567 windowFactory = &selectNativeWindowFactory(displayFactory, cmdLine);
576 pixmapFactory = &selectNativePixmapFactory(displayFactory, cmdLine);
  /external/deqp/framework/delibs/deutil/
deProcess.c 111 deCommandLine* cmdLine = deCommandLine_parse(commandLine);
112 char** argList = cmdLine ? (char**)deCalloc(sizeof(char*)*((size_t)cmdLine->numArgs+1)) : DE_NULL;
114 if (!cmdLine || !argList)
122 for (argNdx = 0; argNdx < cmdLine->numArgs; argNdx++)
123 argList[argNdx] = cmdLine->args[argNdx];
  /external/deqp/scripts/
mustpass.py 124 cmdLine = ""
127 cmdLine += "--deqp-gl-config-name=%s " % config.glconfig
130 cmdLine += "--deqp-screen-rotation=%s " % config.rotation
133 cmdLine += "--deqp-surface-type=%s " % config.surfacetype
135 cmdLine += "--deqp-watchdog=enable"
137 return cmdLine
  /external/lzma/C/Util/SfxSetup/
SfxSetup.c 569 WCHAR cmdLine[MAX_PATH * 3];
571 wcscpy(cmdLine, path);
572 wcscat(cmdLine, cmdLineParams);
575 if (CreateProcessW(NULL, cmdLine, NULL, NULL, FALSE, 0, NULL, NULL, &si, &pi) == 0)
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
JUnitDeviceTest.java 130 String cmdLine = String.format("ANDROID_DATA=%s %s -cp %s %s " +
134 String cmd = AbiFormatter.formatCmdForAbi(cmdLine, mAbi.getBitness());
TestNGDeviceTest.java 126 String cmdLine = String.format("ANDROID_DATA=%s %s -cp %s %s " +
130 String cmd = AbiFormatter.formatCmdForAbi(cmdLine, mAbi.getBitness());
  /external/deqp/framework/opengl/
gluFboRenderContext.cpp 170 FboRenderContext::FboRenderContext (const ContextFactory& factory, const RenderConfig& config, const tcu::CommandLine& cmdLine)
183 m_context = factory.createContext(nativeRenderConfig, cmdLine);
gluRenderContext.hpp 221 RenderContext* createDefaultRenderContext (tcu::Platform& platform, const tcu::CommandLine& cmdLine, ApiType apiType);
gluES3PlusWrapperContext.cpp 619 ES3PlusWrapperContext::ES3PlusWrapperContext (const ContextFactory& factory, const RenderConfig& config, const tcu::CommandLine& cmdLine)
646 m_context = factory.createContext(nativeConfig, cmdLine);
  /external/deqp/execserver/
xsWin32TestProcess.cpp 671 string cmdLine = de::FilePath(name).isAbsolutePath() ? name : de::FilePath::join(workingDir, name).normalize().getPath();
672 cmdLine += string(" --deqp-log-filename=") + logFilePath.getBaseName();
675 cmdLine += " --deqp-stdin-caselist";
678 cmdLine += string(" ") + params;
685 m_process->start(cmdLine.c_str(), strlen(workingDir) > 0 ? workingDir : DE_NULL);
  /external/deqp/framework/platform/win32/
tcuWin32GLES3Platform.cpp 150 virtual glu::RenderContext* createContext (const glu::RenderConfig& config, const tcu::CommandLine& cmdLine) const;
  /external/deqp/modules/internal/
ditFrameworkTests.cpp 85 tcu::CommandLine cmdLine;
98 if (!cmdLine.parse(DE_LENGTH_OF_ARRAY(argv), argv))
112 matchGroup = cmdLine.checkTestGroupName(curCase.path);
113 matchCase = cmdLine.checkTestCaseName(curCase.path);
149 tcu::CommandLine cmdLine;
161 if (cmdLine.parse(DE_LENGTH_OF_ARRAY(argv), argv))
  /external/deqp/framework/platform/X11/
tcuX11GlxPlatform.cpp 80 const CommandLine& cmdLine) const;
211 const CommandLine& cmdLine) const
213 DE_UNREF(cmdLine);
  /external/deqp/modules/egl/
teglResizeTests.cpp 146 const CommandLine& cmdLine = m_testCtx.getCommandLine();
164 const Visibility visibility = eglu::parseWindowVisibility(cmdLine);
167 cmdLine);
  /frameworks/rs/cpu_ref/
rsCpuScriptGroup2.cpp 404 std::unique_ptr<const char> cmdLine(rsuJoinStrings(arguments.size() - 1,
410 uint32_t checksum = constructBuildChecksum(nullptr, 0, cmdLine.get(),

Completed in 5530 milliseconds

1 23 4 5 6 7 8