Searched defs:commandLine (Results 1 - 25 of 29) sorted by relevance

12

/external/deqp/framework/delibs/decpp/
H A DdeProcess.cpp43 void Process::start (const char* commandLine, const char* workingDirectory) argument
45 if (!deProcess_start(m_process, commandLine, workingDirectory))
/external/deqp/framework/delibs/deutil/
H A DdeCommandLine.c39 deCommandLine* deCommandLine_parse (const char* commandLine) argument
56 DE_ASSERT(commandLine);
59 buf = (char*)deCalloc((int)strlen(commandLine)+1);
71 while (commandLine[pos] != 0)
73 char c = commandLine[pos++];
78 c = commandLine[pos++];
112 DE_ASSERT(commandLine[pos] == 0);
H A DdeProcess.c108 static void execProcess (const char* commandLine, const char* workingDirectory, int statusPipe) argument
110 deCommandLine* cmdLine = deCommandLine_parse(commandLine);
215 deBool deProcess_start (deProcess* process, const char* commandLine, const char* workingDirectory) argument
293 execProcess(commandLine, workingDirectory, statusPipe[1]);
625 deBool deProcess_start (deProcess* process, const char* commandLine, const char* workingDirectory) argument
699 if (!CreateProcess(DE_NULL, (LPTSTR)commandLine, DE_NULL, DE_NULL, TRUE /* inherit handles */, 0, DE_NULL, workingDirectory, &startInfo, &process->procInfo))
/external/chromium_org/third_party/skia/platform_tools/nacl/src/
H A Dnacl_interface.cpp30 void SkStringToProgramArgs(const SkString commandLine, int* argc, char*** argv) { argument
32 const char* commandChars = commandLine.c_str();
67 void RunProgram(const SkString& commandLine) { argument
70 SkStringToProgramArgs(commandLine, &argc, &argv);
/external/skia/platform_tools/nacl/src/
H A Dnacl_interface.cpp30 void SkStringToProgramArgs(const SkString commandLine, int* argc, char*** argv) { argument
32 const char* commandChars = commandLine.c_str();
67 void RunProgram(const SkString& commandLine) { argument
70 SkStringToProgramArgs(commandLine, &argc, &argv);
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
H A DChildProcessConnection.java71 * @param commandLine (optional) command line for the child process. If omitted, then
74 void start(String[] commandLine); argument
78 * @param commandLine (optional) will be ignored if the command line was already sent in start()
85 String[] commandLine,
84 setupConnection( String[] commandLine, FileDescriptorInfo[] filesToBeMapped, IChildProcessCallback processCallback, ConnectionCallback connectionCallback, Bundle sharedRelros) argument
H A DChildProcessConnectionImpl.java79 ConnectionParams(String[] commandLine, FileDescriptorInfo[] filesToBeMapped, argument
81 mCommandLine = commandLine;
114 boolean bind(String[] commandLine) { argument
118 if (commandLine != null) {
119 intent.putExtra(EXTRA_COMMAND_LINE, commandLine);
228 public void start(String[] commandLine) { argument
235 if (!mInitialBinding.bind(commandLine)) {
249 String[] commandLine,
265 commandLine, filesToBeMapped, processCallback, sharedRelros);
248 setupConnection( String[] commandLine, FileDescriptorInfo[] filesToBeMapped, IChildProcessCallback processCallback, ConnectionCallback connectionCallback, Bundle sharedRelros) argument
H A DChildProcessLauncher.java204 String[] commandLine, boolean inSandbox) {
209 connection.start(commandLine);
311 private static String getSwitchValue(final String[] commandLine, String switchKey) { argument
312 if (commandLine == null || switchKey == null) {
317 for (String command : commandLine) {
332 * @param commandLine The child process command line argv.
342 final String[] commandLine,
359 String processType = getSwitchValue(commandLine, SWITCH_PROCESS_TYPE);
376 allocatedConnection = allocateBoundConnection(context, commandLine, inSandbox);
388 triggerConnectionSetup(allocatedConnection, commandLine, childProcessI
203 allocateBoundConnection(Context context, String[] commandLine, boolean inSandbox) argument
340 start( Context context, final String[] commandLine, int childProcessId, int[] fileIds, int[] fileFds, boolean[] fileAutoClose, long clientContext) argument
394 triggerConnectionSetup( final ChildProcessConnection connection, String[] commandLine, int childProcessId, FileDescriptorInfo[] filesToBeMapped, int callbackType, final long clientContext) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/compiler-runner/src/org/chromium/devtools/compiler/
H A DRunner.java232 return descriptor.commandLine.split(" +");
244 private final String commandLine; field in class:Runner.CompilerInstanceDescriptor
246 public CompilerInstanceDescriptor(String moduleName, String commandLine) { argument
248 this.commandLine = commandLine;
/external/chromium_org/third_party/closure_compiler/runner/src/org/chromium/closure/compiler/
H A DRunner.java241 return descriptor.commandLine.split(" +");
253 private final String commandLine; field in class:Runner.CompilerInstanceDescriptor
255 public CompilerInstanceDescriptor(String moduleName, String commandLine) { argument
257 this.commandLine = commandLine;
/external/chromium_org/base/android/java/src/org/chromium/base/
H A DCommandLine.java100 CommandLine commandLine = sCommandLine.get();
101 assert commandLine != null;
102 return commandLine;
192 CommandLine commandLine = sCommandLine.get();
193 if (commandLine != null) {
194 assert !commandLine.isNativeImplementation();
195 return ((JavaCommandLine) commandLine).getCommandLineArguments();
200 private static void setInstance(CommandLine commandLine) { argument
201 CommandLine oldCommandLine = sCommandLine.getAndSet(commandLine);
/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
H A DBindingManagerImplTest.java97 public void start(String[] commandLine) { throw new UnsupportedOperationException(); } argument
100 public void setupConnection(String[] commandLine, FileDescriptorInfo[] filesToBeMapped, argument
/external/deqp/framework/egl/
H A DegluUtil.cpp312 WindowParams::Visibility parseWindowVisibility (const tcu::CommandLine& commandLine) argument
314 return getWindowVisibility(commandLine.getVisibility());
/external/qemu/distrib/sdl-1.2.15/src/main/macos/
H A DSDL_main.c367 char *commandLine; local
569 commandLine = (char*) malloc (appNameText[0] + prefs.command_line[0] + 2);
570 if ( commandLine == NULL ) {
581 SDL_memcpy(commandLine, appNameText + 1, appNameText[0]);
582 commandLine[appNameText[0]] = ' ';
583 SDL_memcpy(commandLine + appNameText[0] + 1, prefs.command_line + 1, prefs.command_line[0]);
584 commandLine[ appNameText[0] + 1 + prefs.command_line[0] ] = '\0';
587 nargs = ParseCommandLine (commandLine, NULL);
592 ParseCommandLine (commandLine, args);
597 free (commandLine);
[all...]
/external/smali/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/external/glide/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/external/chromium_org/tools/win/ChromeDebug/LowLevel/
H A DTypes.cs161 private UNICODE_STRING commandLine; field in struct:ChromeDebug.LowLevel.LowLevelTypes.RTL_USER_PROCESS_PARAMETERS
164 public UNICODE_STRING CommandLine { get { return commandLine; } }
/external/deqp/execserver/
H A DxsWin32TestProcess.cpp492 void Process::start (const char* commandLine, const char* workingDirectory) argument
541 if (!CreateProcess(DE_NULL, (LPTSTR)commandLine, DE_NULL, DE_NULL, TRUE /* inherit handles */, 0, DE_NULL, workingDirectory, &startInfo, &m_procInfo))
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/compiler-runner/
H A Dclosure-runner.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/chromium/ org/chromium/devtools/ org/chromium/devtools/compiler/ ...
/external/chromium_org/third_party/closure_compiler/runner/
H A Drunner.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/chromium/ org/chromium/closure/ org/chromium/closure/compiler/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-nodeps.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/jarjar/lib/
H A Dapache-ant-1.9.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
H A Dfindbugs.jarMETA-INF/ META-INF/MANIFEST.MF default.xsl edu/ edu/umd/ edu/umd/cs/ edu/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.jdt.launching_3.5.100.v20100526.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 2478 milliseconds

12