OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:commandPath
(Results
1 - 2
of
2
) sorted by null
/sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/build/
NdkCommandLauncher.java
57
public Process execute(IPath
commandPath
, String[] args, String[] env, IPath changeToDirectory,
60
if (!
commandPath
.isAbsolute())
61
commandPath
= new Path(NdkManager.getNdkLocation()).append(
commandPath
);
65
if (sCygPath != null &&
commandPath
.toString().startsWith("/cygdrive")) { //$NON-NLS-1$
67
String path = sCygPath.getFileName(
commandPath
.toString());
68
commandPath
= new Path(path);
75
if (isWindowsExecutable(
commandPath
)) {
77
commandPath
= appendExecutableExtension(
commandPath
);
[
all
...]
/sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/discovery/
NdkDiscoveryUpdater.java
65
IPath
commandPath
= new Path("ndk-build"); //$NON-NLS-1$
71
Process proc = new NdkCommandLauncher().execute(
commandPath
, args, env,
Completed in 73 milliseconds