Home
last modified time | relevance | path

Searched refs:command (Results 1 – 25 of 33) sorted by relevance

12

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
DRenderScriptProcessor.java186 String[] command = new String[15];
188 command[index++] = quote(sdkOsPath + SdkConstants.OS_SDK_PLATFORM_TOOLS_FOLDER
190 command[index++] = "-I"; //$NON-NLS-1$
191 command[index++] = quote(getBuildToolInfo().getPath(BuildToolInfo.PathId.ANDROID_RS_CLANG));
192 command[index++] = "-I"; //$NON-NLS-1$
193 command[index++] = quote(getBuildToolInfo().getPath(BuildToolInfo.PathId.ANDROID_RS));
194 command[index++] = "-p"; //$NON-NLS-1$
195 command[index++] = quote(genFolder.getLocation().toOSString());
196 command[index++] = "-o"; //$NON-NLS-1$
197 command[index++] = quote(rawFolder.getLocation().toOSString());
[all …]
DBuildHelper.java487 List<String> command = new ArrayList<String>(); in runProguard() local
488 command.add(AdtPlugin.getOsAbsoluteProguard()); in runProguard()
491 command.add("-include"); //$NON-NLS-1$ in runProguard()
492 command.add(quotePath(configFile.getAbsolutePath())); in runProguard()
495 command.add("-injars"); //$NON-NLS-1$ in runProguard()
501 command.add(quoteWinArg(sb.toString())); in runProguard()
503 command.add("-outjars"); //$NON-NLS-1$ in runProguard()
504 command.add(quotePath(obfuscatedJar.getAbsolutePath())); in runProguard()
506 command.add("-libraryjars"); //$NON-NLS-1$ in runProguard()
515 command.add(quoteWinArg(sb.toString())); in runProguard()
[all …]
DAidlProcessor.java243 private boolean execAidl(BaseBuilder builder, IProject project, String[] command, IFile file, in execAidl() argument
249 for (String c : command) { in execAidl()
257 Process p = Runtime.getRuntime().exec(command); in execAidl()
298 String msg = String.format(Messages.AIDL_Exec_Error_s, command[0]); in execAidl()
304 String msg = String.format(Messages.AIDL_Exec_Error_s, command[0]); in execAidl()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
DAndroidNature.java193 ICommand command = desc.newCommand(); in configureResourceManagerBuilder() local
194 command.setBuilderName(ResourceManagerBuilder.ID); in configureResourceManagerBuilder()
195 newCommands[0] = command; in configureResourceManagerBuilder()
239 ICommand command = desc.newCommand(); in configurePreBuilder() local
240 command.setBuilderName(PreCompilerBuilder.ID); in configurePreBuilder()
241 newCommands[index] = command; in configurePreBuilder()
265 ICommand command = desc.newCommand(); in configureApkBuilder() local
266 command.setBuilderName(PostCompilerBuilder.ID); in configureApkBuilder()
267 newCommands[commands.length] = command; in configureApkBuilder()
DProjectHelper.java956 for (ICommand command : commands) { in compileInReleaseMode()
957 String name = command.getBuilderName(); in compileInReleaseMode()
961 if (command.getArguments() != null) { in compileInReleaseMode()
962 newArgs.putAll(command.getArguments()); in compileInReleaseMode()
971 command.getArguments(), monitor); in compileInReleaseMode()
976 command.getArguments(), monitor); in compileInReleaseMode()
/sdk/emulator/opengl/shared/OpenglOsUtils/
DosProcessUnix.cpp39 static char **buildArgList(const char *command) in buildArgList() argument
44 char *tmpcmd = strdup(command); in buildArgList()
94 static pid_t start_process(const char *command,const char *startDir) in start_process() argument
115 char **argv = buildArgList(command); in start_process()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
DActivityLaunchAction.java48 String command = "am start" //$NON-NLS-1$ in doLaunchAction() local
67 device.executeShellCommand(command, new AMReceiver(info, device, mLaunchController)); in doLaunchAction()
85 AdtPlugin.log(e, "No command output when running: '%1$s' on device %2$s", command, in doLaunchAction()
Dmessages.properties42 RemoteAdtTestRunner_RunAdbCommandRejectedException_s=Adb rejected command: %s
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/
DVersionLoader.java40 private static int loadVersion(IDevice device, String command) { in loadVersion() argument
53 out.write(command); in loadVersion()
DViewManager.java42 private static void sendCommand(String command, IDevice device, Window window, String params) { in sendCommand() argument
53 out.write(command + " " + window.encode() + " " + params); in sendCommand()
/sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/launch/
DGdbServerTask.java68 String command = String.format("run-as %s lib/gdbserver +%s --attach %d", in run() local
71 mDevice.executeShellCommand(command, mOutputReceiver, 0); in run()
DNdkGdbLaunchDelegate.java232 String command = String.format("am start -n %s/%s", manifestData.getPackage(), //$NON-NLS-1$ in doLaunch() local
237 device.executeShellCommand(command, receiver); in doLaunch()
479 String command = String.format("run-as %s /system/bin/sh -c pwd", app); //$NON-NLS-1$ in getAppDirectory() local
483 device.executeShellCommand(command, receiver); in getAppDirectory()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/export/
DExportWizard.java552 String[] command = new String[5]; in zipAlign() local
553 command[0] = zipAlignPath; in zipAlign()
554 command[1] = "-f"; //$NON-NLS-1$ in zipAlign()
555 command[2] = "4"; //$NON-NLS-1$ in zipAlign()
556 command[3] = source.getAbsolutePath(); in zipAlign()
557 command[4] = destination.getAbsolutePath(); in zipAlign()
559 Process process = Runtime.getRuntime().exec(command); in zipAlign()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
DAndroidXmlAutoEditStrategy.java345 private void copyPreviousLineIndentation(IDocument doc, DocumentCommand command) in copyPreviousLineIndentation() argument
348 if (command.offset == -1 || doc.getLength() == 0) { in copyPreviousLineIndentation()
352 int lineStart = findLineStart(doc, command.offset); in copyPreviousLineIndentation()
353 int textStart = findTextStart(doc, lineStart, command.offset); in copyPreviousLineIndentation()
355 StringBuilder sb = new StringBuilder(command.text); in copyPreviousLineIndentation()
360 command.text = sb.toString(); in copyPreviousLineIndentation()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/actions/
DDexDumpAction.java160 String[] command = new String[2]; in runDexDump() local
161 command[0] = dexDumpFile.getAbsolutePath(); in runDexDump()
162 command[1] = classesDexFile.getAbsolutePath(); in runDexDump()
165 final Process process = Runtime.getRuntime().exec(command); in runDexDump()
DSdkManagerAction.java189 String command[] = new String[] { in openExternalSdkManager()
193 Process process = Runtime.getRuntime().exec(command); in openExternalSdkManager()
/sdk/emulator/opengl/tests/event_injector/
Demulator-console.h43 void emulatorConsole_send( EmulatorConsole* console, const char* command );
Demulator-console.c281 emulatorConsole_send( EmulatorConsole* con, const char* command ) in emulatorConsole_send() argument
283 int cmdlen = strlen(command); in emulatorConsole_send()
291 msg = msg_alloc(command, cmdlen); in emulatorConsole_send()
/sdk/apkbuilder/
Dreadme.txt1 The apkbuilder command line tool is deprecated, and is not maintained anymore.
/sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/build/
DNdkCommandLauncher.java119 private String findWindowsExecutableExtension(IPath command) { in findWindowsExecutableExtension() argument
121 File exeFile = command.addFileExtension(e).toFile(); in findWindowsExecutableExtension()
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/wizards/templates/
DTemplateHandlerTest.java866 List<String> command = new ArrayList<String>(); in ensureNoBuildErrors() local
867 command.add(AdtPlugin.getOsSdkToolsFolder() + "android" + in ensureNoBuildErrors()
869 command.add("update"); in ensureNoBuildErrors()
870 command.add("project"); in ensureNoBuildErrors()
871 command.add("-p"); in ensureNoBuildErrors()
872 command.add(projectDir.getPath()); in ensureNoBuildErrors()
875 Process process = Runtime.getRuntime().exec(command.toArray(new String[command.size()])); in ensureNoBuildErrors()
/sdk/emulator/opengl/
DREADME9 EGL/GLES command stream used between the guest and the host during emulation.
33 host, and implement the decoding of the command stream, translation of
53 end of all command streams.
/sdk/docs/
Dhowto_use_cupcake_sdk.txt57 Unzip the SDK somewhere. We'll call that directory "SDK" in command-line
222 command given above to read the rest.
231 these operations. For right now, please use the command line interface.
247 To learn about available targets in your SDK, use this command:
259 command line.
299 D- Invoking an AVD from the command-line
302 To use this AVD in the emulator from the command-line, type:
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/welcome/
DAdtStartup.java198 String[] command = new String[] { in getSdkPathFromWindowsRegistry() local
204 process = Runtime.getRuntime().exec(command); in getSdkPathFromWindowsRegistry()
/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/
DDeviceView.java264 String[] command = new String[3]; in open() local
265 command[0] = DdmsPlugin.getHprofConverter(); in open()
266 command[1] = path; in open()
267 command[2] = tempPath; in open()
269 Process p = Runtime.getRuntime().exec(command); in open()

12