Home
last modified time | relevance | path

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

12

/aosp_15_r20/sdk/find_java/src/source/
H A Dfind_java_exe.cpp73 CPath javaPath("<not found>"); in testFindJava() local
74 int v = findJavaInEnvPath(&javaPath, isJdk, minVersion); in testFindJava()
75 printf(" findJavaInEnvPath: [%d] %s\n", v, javaPath.cstr()); in testFindJava()
77 javaPath.set("<not found>"); in testFindJava()
78 v = findJavaInRegistry(&javaPath, isJdk, minVersion); in testFindJava()
79 printf(" findJavaInRegistry [%d] %s\n", v, javaPath.cstr()); in testFindJava()
81 javaPath.set("<not found>"); in testFindJava()
82 v = findJavaInProgramFiles(&javaPath, isJdk, minVersion); in testFindJava()
83 printf(" findJavaInProgramFiles [%d] %s\n", v, javaPath.cstr()); in testFindJava()
167 CPath javaPath; in main() local
[all …]
H A Dfind_java_lib.cpp435 bool getJavaVersion(CPath &javaPath, CString *outVersionStr, int *outVersionInt) { in getJavaVersion() argument
448 cmd.setf("\"%s\" -version", javaPath.cstr()); in getJavaVersion()
H A Dfind_java.h42 bool getJavaVersion(CPath &javaPath, CString *outVersionStr, int *outVersionInt);
/aosp_15_r20/sdk/find_java2/FindJava2/
H A DFindJava2.cpp113 CJavaPath javaPath = javaFinder.getRegistryPath(); in _tmain() local
120 bool isReg = (p == javaPath); in _tmain()
127 if (!regPrinted && !javaPath.isEmpty()) { in _tmain()
128 const CJavaPath &p = javaPath; in _tmain()
134 if (doForceUi || javaPath.isEmpty()) { in _tmain()
141 javaPath = dlg.getSelectedPath(); in _tmain()
142 javaFinder.setRegistryPath(javaPath); in _tmain()
149 if (javaPath.isEmpty()) { in _tmain()
156 if (!javaPath.toShortPath()) { in _tmain()
160 javaPath.mPath); in _tmain()
[all …]
/aosp_15_r20/sdk/find_java2/src/
H A DWinLauncher2App.cpp118 CJavaPath javaPath = javaFinder.getRegistryPath(); in InitInstance() local
119 if (cmdLine.mDoForceUi || javaPath.isEmpty()) { in InitInstance()
120 javaPath.clear(); in InitInstance()
129 javaPath = dlg.getSelectedPath(); in InitInstance()
130 javaFinder.setRegistryPath(javaPath); in InitInstance()
138 if (!javaPath.isEmpty()) { in InitInstance()
141 msg.Append(javaPath.mPath); in InitInstance()
H A DFindJava2Dlg.cpp126 CJavaPath javaPath; in OnBnClickedButtonAdd() local
127 if (!mJavaFinder->checkJavaPath(path, &javaPath)) { in OnBnClickedButtonAdd()
129 if (javaPath.mVersion > 0) { in OnBnClickedButtonAdd()
132 javaPath.getVersion()); in OnBnClickedButtonAdd()
139 if (mPaths.find(javaPath) == mPaths.end()) { in OnBnClickedButtonAdd()
141 mPaths.insert(javaPath); in OnBnClickedButtonAdd()
146 selectPath(-1 /*index*/, &javaPath); in OnBnClickedButtonAdd()
H A DJavaFinder.cpp70 bool getJavaVersion(CPath &javaPath, CString *outVersionStr, int *outVersionInt) { in getJavaVersion() argument
83 cmd.Format(_T("\"%s\" -version"), (LPCTSTR) javaPath); in getJavaVersion()
535 CJavaPath javaPath; in getRegistryPath() local
536 if (checkJavaPath(existing, &javaPath)) { in getRegistryPath()
537 return javaPath; in getRegistryPath()
544 bool CJavaFinder::setRegistryPath(const CJavaPath &javaPath) { in setRegistryPath() argument
548 … bool ok = rk.SetStringValue(JF_REGISTRY_VALUE_PATH, javaPath.mPath, REG_SZ) == ERROR_SUCCESS && in setRegistryPath()
549 … rk.SetStringValue(JF_REGISTRY_VALUE_VERS, javaPath.getVersion(), REG_SZ) == ERROR_SUCCESS; in setRegistryPath()
H A DJavaFinder.h38 bool setRegistryPath(const CJavaPath &javaPath);
/aosp_15_r20/frameworks/base/ravenwood/runtime-jni/
H A Dravenwood_runtime.cpp87 static jobject doStat(JNIEnv* env, jstring javaPath, bool isLstat) { in doStat() argument
88 ScopedRealUtf8Chars path(env, javaPath); in doStat()
148 static jobject Linux_lstat(JNIEnv* env, jobject, jstring javaPath) { in Linux_lstat() argument
149 return doStat(env, javaPath, true); in Linux_lstat()
152 static jobject Linux_stat(JNIEnv* env, jobject, jstring javaPath) { in Linux_stat() argument
153 return doStat(env, javaPath, false); in Linux_stat()
156 static jint Linux_open(JNIEnv* env, jobject, jstring javaPath, jint flags, jint mode) { in Linux_open() argument
157 ScopedRealUtf8Chars path(env, javaPath); in Linux_open()
H A Dravenwood_initializer.cpp132 static void reloadNativeLibrary(JNIEnv* env, jclass, jstring javaPath) { in reloadNativeLibrary() argument
133 ScopedUtfChars path(env, javaPath); in reloadNativeLibrary()
/aosp_15_r20/frameworks/base/core/jni/
H A Dandroid_os_incremental_IncrementalManager.cpp39 jstring javaPath) { in nativeIsIncrementalPath() argument
40 ScopedUtfChars path(env, javaPath); in nativeIsIncrementalPath()
48 static jbyteArray nativeUnsafeGetFileSignature(JNIEnv* env, jobject clazz, jstring javaPath) { in nativeUnsafeGetFileSignature() argument
49 ScopedUtfChars path(env, javaPath); in nativeUnsafeGetFileSignature()
/aosp_15_r20/libcore/luni/src/main/native/
H A Dlibcore_io_Linux.cpp807 static jobject doStat(JNIEnv* env, jstring javaPath, bool isLstat) { in doStat() argument
808 ScopedUtfChars path(env, javaPath); in doStat()
1040 static jboolean Linux_access(JNIEnv* env, jobject, jstring javaPath, jint mode) { in Linux_access() argument
1041 ScopedUtfChars path(env, javaPath); in Linux_access()
1156 static void Linux_chmod(JNIEnv* env, jobject, jstring javaPath, jint mode) { in Linux_chmod() argument
1157 ScopedUtfChars path(env, javaPath); in Linux_chmod()
1164 static void Linux_chown(JNIEnv* env, jobject, jstring javaPath, jint uid, jint gid) { in Linux_chown() argument
1165 ScopedUtfChars path(env, javaPath); in Linux_chown()
1607 static jbyteArray Linux_getxattr(JNIEnv* env, jobject, jstring javaPath, in Linux_getxattr() argument
1609 ScopedUtfChars path(env, javaPath); in Linux_getxattr()
[all …]
/aosp_15_r20/external/jazzer-api/src/main/java/com/code_intelligence/jazzer/driver/
H A DReproducerTemplate.java63 Path javaPath = Paths.get(Opt.reproducerPath, String.format("Crash_%s.java", sha)); in dumpReproducer() local
65 Files.write(javaPath, javaSource.getBytes(StandardCharsets.UTF_8)); in dumpReproducer()
67 Log.error(String.format("Failed to write Java reproducer to %s%n", javaPath)); in dumpReproducer()
71 "reproducer_path='%s'; Java reproducer written to %s%n", Opt.reproducerPath, javaPath)); in dumpReproducer()
/aosp_15_r20/frameworks/native/opengl/tools/glgen/src/
H A DGenerateGLES.java47 String javaPath = stubRoot + ".java"; in emit() local
48 File f = new File(javaPath); in emit()
51 copy(javaPath, glStream); in emit()
H A DGenerateEGL.java48 String javaPath = stubRoot + ".java"; in emit() local
49 File f = new File(javaPath); in emit()
52 copy(javaPath, glStream); in emit()
/aosp_15_r20/external/jazzer-api/src/main/java/com/code_intelligence/jazzer/autofuzz/
H A DFuzzTarget.java264 Path javaPath = Paths.get(reproducerPath, String.format("Crash_%s.java", sha)); in dumpReproducer() local
266 Files.write(javaPath, javaSource.getBytes(StandardCharsets.UTF_8)); in dumpReproducer()
268 Log.error(String.format("Failed to write Java reproducer to %s%n", javaPath), e); in dumpReproducer()
271 "reproducer_path='%s'; Java reproducer written to %s%n", reproducerPath, javaPath)); in dumpReproducer()
/aosp_15_r20/external/vogar/src/vogar/tasks/
H A DBuildActionTask.java90 Javac javac = new Javac(run.log, run.javaPath("javac")); in compile()
122 new Command(run.log, run.javaPath("jar"), "cvfM", jar.getPath(), in compile()
/aosp_15_r20/external/robolectric/shadows/framework/src/main/java/org/robolectric/shadows/
H A DShadowArscApkAssets9.java160 String javaPath, in nativeLoad() argument
167 return nativeLoad(javaPath, system, forceSharedLib, overlay); in nativeLoad()
/aosp_15_r20/developers/samples/android/experimental/ndkSampleGen/
Dbuild.gradle78 def javaPath = "${srcPath}"
79 from(javaPath)
/aosp_15_r20/developers/build/
H A Dbuild.gradle207 def javaPath = "${srcPath}/java";
208 from(javaPath)
/aosp_15_r20/external/vogar/src/vogar/
H A DJavaVm.java46 vmCommand.add(run.javaPath(run.vmCommand)); in newVmCommandBuilder()
H A DRun.java267 public String javaPath(String tool) {
/aosp_15_r20/tools/tradefederation/core/src/com/android/tradefed/cluster/
DClusterCommandLauncher.java353 final String javaPath = String.format("%s/bin/java", javaHome); in buildJavaCommandArgs() local
354 cmdArgs.add(new File(javaPath).getAbsolutePath()); in buildJavaCommandArgs()
/aosp_15_r20/external/guice/extensions/struts2/lib/
HDjsp-2.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/ ...
/aosp_15_r20/external/conscrypt/benchmark-android/
HDvogar.jarMETA-INF/ META-INF/MANIFEST.MF vogar/ vogar/TestProperties.class TestProperties ...

12