OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:java_path
(Results
1 - 7
of
7
) sorted by null
/external/v8/src/inspector/build/
compile-scripts.py
82
java_path
= which('java')
83
if not
java_path
:
84
java_path
= which('java.exe')
86
if not
java_path
:
91
java_version_out, _ = popen([
java_path
, '-version']).communicate()
100
exec_command = [
java_path
, '-Xms1024m', '-server',
112
print 'Java executable: %s%s' % (
java_path
, '' if has_server_jvm else ' (no server JVM)')
/libcore/ojluni/src/main/native/
System.c
217
char*
java_path
= malloc(strlen("java.library.path=") + strlen(library_path) + 1);
local
218
strcpy(
java_path
, "java.library.path=");
219
strcat(
java_path
, library_path);
220
jstring java_path_str = (*env)->NewStringUTF(env,
java_path
);
221
free((void*)
java_path
);
/frameworks/base/core/jni/
android_content_res_ApkAssets.cpp
34
static jlong NativeLoad(JNIEnv* env, jclass /*clazz*/, jstring
java_path
, jboolean system,
36
ScopedUtfChars path(env,
java_path
);
/external/toolchain-utils/automation/clients/helper/
android.py
203
java_path
= '/usr/lib/jvm/java-6-sun/bin'
206
'PATH=%s:$PATH' %
java_path
)
/build/make/tools/releasetools/
common.py
51
self.
java_path
= "java" # Use the one on the path by default.
784
cmd = ([OPTIONS.
java_path
] + OPTIONS.java_args +
[
all
...]
sign_target_files_apks
526
cmd = ([OPTIONS.
java_path
] + OPTIONS.java_args +
sign_target_files_apks.py
526
cmd = ([OPTIONS.
java_path
] + OPTIONS.java_args +
Completed in 852 milliseconds