HomeSort by relevance Sort by last modified time
    Searched full:bootclasspath (Results 1 - 25 of 120) sorted by null

1 2 3 4 5

  /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...]
  /external/guava/
build.xml 25 bootclasspath="${java5bootclasspath}"
  /dalvik/tools/
dex-preopt 46 # --boot-dir=path/to/bootclasspath -- Specify the path, relative to the
51 # and must match the BOOTCLASSPATH that is eventually specified at
53 # needs to match the target product's BOOTCLASSPATH, which, as of this
283 BOOTCLASSPATH=`echo ":${bootJars}" | \
286 export BOOTCLASSPATH
291 elements=`echo "${BOOTCLASSPATH}" | sed 's/:/ /g'`
  /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/
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)) {
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...]
  /external/doclava/
build.xml 94 -bootclasspath "${javahome}/jre/lib/rt.jar"
  /libcore/luni/src/main/java/java/lang/
VMClassLoader.java 32 * We assume that the bootclasspath can't change once the VM has
  /dalvik/docs/
hello-world.html 149 E/dalvikvm(19521): ERROR: must specify non-'.' bootclasspath
169 # configure bootclasspath
171 export BOOTCLASSPATH=$bootpath/core.jar:$bootpath/ext.jar:$bootpath/framework.jar:$bootpath/android.policy.jar:$bootpath/services.jar
  /build/core/
dex_preopt.mk 6 # TODO: replace it with device's BOOTCLASSPATH
droiddoc.mk 59 # You have to set bootclasspath for javadoc manually on linux since Java 6.
164 $(addprefix -bootclasspath ,$(PRIVATE_BOOTCLASSPATH)) \
base_rules.mk 398 $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_BOOTCLASSPATH := -bootclasspath $(call java-lib-files,core)
401 $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_BOOTCLASSPATH := -bootclasspath $(call java-lib-files,android_stubs_current)
403 $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_BOOTCLASSPATH := -bootclasspath $(call java-lib-files,sdk_v$(LOCAL_SDK_VERSION))
419 $(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_BOOTCLASSPATH := -bootclasspath $(call java-lib-files,core-hostdex,$(LOCAL_IS_HOST_MODULE))
  /development/build/
Android.mk 31 $(hide) $(TARGET_JAVAC) -encoding ascii -bootclasspath "" \
  /packages/providers/CalendarProvider/tests/
EMMA_README 10 # /system/framework/emma.jar in BOOTCLASSPATH. Basic steps:
  /dalvik/vm/oo/
Class.h 23 * The classpath and bootclasspath differ in that only the latter is
25 * for an arbitrary class definition, we start with the bootclasspath,
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...]
  /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...]
  /sdk/eclipse/buildConfig/
build.properties 21 # bootclasspath - The base jars to compile against (typicaly rt.jar)
190 #bootclasspath=${java.home}/lib/rt.jar
  /dalvik/vm/native/
dalvik_system_VMRuntime.cpp 206 { "bootClassPath", "()Ljava/lang/String;",
dalvik_system_DexFile.cpp 194 if (dvmClassPathContains(gDvm.bootClassPath, sourceName)) {
197 "Re-opening BOOTCLASSPATH DEX files is not allowed");
  /frameworks/base/tools/preload/
WritePreloadedClassFile.java 71 * a) it's loaded in the bootclasspath (i.e., is a system class)
  /libcore/dalvik/src/main/java/dalvik/system/
VMRuntime.java 58 public native String bootClassPath();
  /sdk/anttasks/src/com/android/ant/
NewSetupTask.java 312 Path bootclasspath = new Path(antProject); local
315 element = bootclasspath.createPathElement();
327 element = bootclasspath.createPathElement();
334 antProject.addReference(mBootclasspathrefOut, bootclasspath);
  /libcore/luni/src/main/java/sun/misc/
Unsafe.java 44 * Only code on the bootclasspath is allowed to get at the

Completed in 1323 milliseconds

1 2 3 4 5