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.adt.ndk/src/com/android/ide/eclipse/adt/ndk/internal/build/
NdkCommandLauncher.java
31
public Process execute(IPath
commandPath
, String[] args, String[] env, IPath changeToDirectory,
34
if (!
commandPath
.isAbsolute())
35
commandPath
= new Path(NdkManager.getNdkLocation()).append(
commandPath
);
39
newargs[0] =
commandPath
.toOSString();
41
commandPath
= new Path("sh"); //$NON-NLS-1$
45
return super.execute(
commandPath
, args, env, changeToDirectory, monitor);
/sdk/eclipse/plugins/com.android.ide.eclipse.adt.ndk/src/com/android/ide/eclipse/adt/ndk/internal/discovery/
NdkDiscoveryUpdater.java
66
IPath
commandPath
= new Path("ndk-build"); //$NON-NLS-1$
72
Process proc = new NdkCommandLauncher().execute(
commandPath
, args, env,
Completed in 2236 milliseconds