HomeSort by relevance Sort by last modified time
    Searched refs:bootClassPath (Results 1 - 12 of 12) sorted by null

  /dalvik/vm/
Init.h 40 int dvmPrepForDexOpt(const char* bootClassPath, DexOptimizerMode dexOptMode,
JarFile.cpp 94 /* Always treat elements of the bootclasspath as up-to-date.
98 if (dvmClassPathContains(gDvm.bootClassPath, fileName)) {
Globals.h 173 ClassPathEntry* bootClassPath;
Init.cpp 93 dvmFprintf(stderr, " -Xbootclasspath:bootclasspath\n");
702 /* set bootclasspath */
706 dvmFprintf(stderr, "Missing bootclasspath path list\n");
717 dvmFprintf(stderr, "Missing appending bootclasspath path list\n");
723 dvmFprintf(stderr, "Can't append to bootclasspath path list\n");
734 dvmFprintf(stderr, "Missing prepending bootclasspath path list\n");
740 dvmFprintf(stderr, "Can't prepend to bootclasspath path list\n");
    [all...]
  /dalvik/dexopt/
OptMain.cpp 28 * class path is in BOOTCLASSPATH, etc).
33 * There are some fragile aspects around bootclasspath entries, owing
35 * instead of strictly doing what it was told. If optimizing bootclasspath
58 const char* debugFileName, bool isBootstrap, const char* bootClassPath,
176 if (dvmPrepForDexOpt(bootClassPath, dexOptMode, verifyMode,
215 const char* bcp = getenv("BOOTCLASSPATH");
217 LOGE("DexOptZ: BOOTCLASSPATH not set");
230 * The scenario would be a bootclasspath with something like
238 LOGV("DexOptZ: found '%s' in bootclasspath, cutting off at %d",
244 LOGD("DexOptZ: truncated BOOTCLASSPATH to '%s'", bcp)
    [all...]
  /libcore/dalvik/src/main/java/dalvik/system/
VMRuntime.java 58 public native String bootClassPath();
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
SystemTest.java 189 String bootClassPath = System.getProperty("org.apache.harmony.boot.class.path");
191 if (bootClassPath == null) {
192 bootClassPath = System.getProperty("sun.boot.class.path");
195 if (bootClassPath != null
196 && (bootClassPath.indexOf(File.pathSeparator + File.pathSeparator) >= 0)) {
197 fail("Boot class path contains extra path separator: " + bootClassPath);
  /dalvik/vm/analysis/
DexPrepare.cpp 365 * This could happen if something in our bootclasspath, which we thought
463 for (cpe = gDvm.bootClassPath; cpe->ptr != NULL; cpe++) {
    [all...]
  /dalvik/vm/native/
dalvik_system_DexFile.cpp 194 if (dvmClassPathContains(gDvm.bootClassPath, sourceName)) {
197 "Re-opening BOOTCLASSPATH DEX files is not allowed");
  /libcore/luni/src/main/java/java/lang/
System.java 272 p.put("java.boot.class.path", runtime.bootClassPath());
  /dalvik/vm/oo/
Class.cpp 407 * Call this after the bootclasspath string has been finalized.
413 LOGE("ERROR: must specify non-'.' bootclasspath");
456 assert(gDvm.bootClassPath == NULL);
459 if (gDvm.bootClassPath == NULL)
486 freeCpeArray(gDvm.bootClassPath);
487 gDvm.bootClassPath = NULL;
534 dumpClassPath(gDvm.bootClassPath);
690 gDvm.bootClassPath = cpe;
703 LOGE("Non-absolute bootclasspath entry '%s'", cp);
740 LOGE("No valid entries found in bootclasspath '%s'", pathStr)
    [all...]
  /frameworks/base/services/java/com/android/server/pm/
PackageManagerService.java     [all...]

Completed in 192 milliseconds