HomeSort by relevance Sort by last modified time
    Searched refs:bootClassPath (Results 1 - 21 of 21) 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 180 ClassPathEntry* bootClassPath;
    [all...]
Init.cpp 104 dvmFprintf(stderr, " -Xbootclasspath:bootclasspath\n");
831 /* set bootclasspath */
835 dvmFprintf(stderr, "Missing bootclasspath path list\n");
846 dvmFprintf(stderr, "Missing appending bootclasspath path list\n");
852 dvmFprintf(stderr, "Can't append to bootclasspath path list\n");
863 dvmFprintf(stderr, "Missing prepending bootclasspath path list\n");
869 dvmFprintf(stderr, "Can't prepend to bootclasspath path list\n");
    [all...]
  /external/smali/baksmali/src/main/java/org/jf/baksmali/
baksmali.java 56 public static String bootClassPath;
61 String[] classPathDirs, String bootClassPath, String extraBootClassPath,
75 baksmali.bootClassPath = bootClassPath;
86 if (dexFile.isOdex() && bootClassPath == null) {
98 if (bootClassPath != null) {
99 bootClassPathArray = bootClassPath.split(":");
main.java 125 String bootClassPath = null;
211 bootClassPath = bcp;
297 if (bootClassPath == null) {
298 bootClassPath = "core.jar:ext.jar:framework.jar:android.policy.jar:services.jar";
309 bootClassPathDirsArray, bootClassPath, extraBootClassPathEntries.toString(),
417 Option classPathOption = OptionBuilder.withLongOpt("bootclasspath")
418 .withDescription("the bootclasspath jars to use, for analysis. Defaults to " +
420 ":, it will be appended to the default bootclasspath instead of replacing it")
422 .withArgName("BOOTCLASSPATH")
425 Option classPathDirOption = OptionBuilder.withLongOpt("bootclasspath-dir"
    [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 ALOGE("DexOptZ: BOOTCLASSPATH not set");
230 * The scenario would be a bootclasspath with something like
238 ALOGV("DexOptZ: found '%s' in bootclasspath, cutting off at %d",
244 ALOGD("DexOptZ: truncated BOOTCLASSPATH to '%s'", bcp)
    [all...]
  /libcore/libart/src/main/java/dalvik/system/
VMRuntime.java 58 public native String bootClassPath();
  /libcore/libdvm/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);
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
ClassPath.java 85 String[] bootClassPath = new String[odexDependencies.getDependencyCount()];
86 for (int i=0; i<bootClassPath.length; i++) {
107 bootClassPath[i] = dependency;
111 theClassPath.initClassPath(classPathDirs, bootClassPath, extraBootClassPathEntries, dexFilePath, dexFile,
118 * @param bootClassPath A list of the boot class path entries to search for and load
123 public static void InitializeClassPath(String[] classPathDirs, String[] bootClassPath,
131 theClassPath.initClassPath(classPathDirs, bootClassPath, extraBootClassPathEntries, dexFilePath, dexFile,
139 private void initClassPath(String[] classPathDirs, String[] bootClassPath, String[] extraBootClassPathEntries,
144 if (bootClassPath != null) {
145 for (String bootClassPathEntry: bootClassPath) {
    [all...]
  /dalvik/vm/native/
dalvik_system_VMRuntime.cpp 402 for (ClassPathEntry* cpe = gDvm.bootClassPath; cpe->kind != kCpeLastEntry; cpe++) {
416 for (ClassPathEntry* cpe = gDvm.bootClassPath; cpe->kind != kCpeLastEntry; cpe++) {
475 for (ClassPathEntry* cpe = gDvm.bootClassPath; cpe->kind != kCpeLastEntry; cpe++) {
553 { "bootClassPath", "()Ljava/lang/String;",
dalvik_system_DexFile.cpp 194 if (dvmClassPathContains(gDvm.bootClassPath, sourceName)) {
197 "Re-opening BOOTCLASSPATH DEX files is not allowed");
  /art/runtime/native/
dalvik_system_VMRuntime.cc 201 NATIVE_METHOD(VMRuntime, bootClassPath, "()Ljava/lang/String;"),
  /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...]
  /libcore/luni/src/main/java/java/lang/
System.java 262 p.put("java.boot.class.path", runtime.bootClassPath());
  /dalvik/vm/oo/
Class.cpp 407 * Call this after the bootclasspath string has been finalized.
413 ALOGE("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 ALOGE("Non-absolute bootclasspath entry '%s'", cp);
740 ALOGE("No valid entries found in bootclasspath '%s'", pathStr)
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
jdi.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.jdt.launching_3.5.100.v20100526.jar 
  /frameworks/base/services/java/com/android/server/pm/
PackageManagerService.java     [all...]
  /prebuilts/tools/common/m2/internal/com/google/code/findbugs/findbugs/2.0.1/
findbugs-2.0.1.jar 

Completed in 409 milliseconds