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

  /dalvik/vm/
JarFile.h 40 JarFile** ppJarFile, bool isBootstrap);
RawDexFile.h 40 RawDexFile** ppDexFile, bool isBootstrap);
RawDexFile.cpp 110 RawDexFile** ppRawDexFile, bool isBootstrap)
162 adler32, isBootstrap, &newFile, /*createIfMissing=*/true);
193 fileName, modTime, adler32, isBootstrap);
JarFile.cpp 127 /*isBootstrap=*/false, &newFile, /*createIfMissing=*/false);
185 * If "isBootstrap" is not set, the optimizer/verifier regards this DEX as
189 JarFile** ppJarFile, bool isBootstrap)
270 isBootstrap, &newFile, /*createIfMissing=*/true);
303 isBootstrap);
  /dalvik/vm/analysis/
DexPrepare.h 94 u4 modWhen, u4 crc, bool isBootstrap, bool* pNewFile, bool createIfMissing);
118 const char* fileName, u4 modWhen, u4 crc, bool isBootstrap);
124 const char* fileName, u4 modWhen, u4 crc, bool isBootstrap);
DexPrepare.cpp 130 u4 modWhen, u4 crc, bool isBootstrap, bool* pNewFile, bool createIfMissing)
167 cacheFileName, fd, isBootstrap);
230 expectVerify = !isBootstrap;
338 * The "isBootstrap" flag determines how the optimizer and verifier handle
352 const char* fileName, u4 modWhen, u4 crc, bool isBootstrap)
360 ALOGD("DexOpt: --- BEGIN '%s' (bootstrap=%d) ---", lastPart, isBootstrap);
452 if (isBootstrap)
528 const char* fileName, u4 modWhen, u4 crc, bool isBootstrap)
535 ALOGV("Continuing optimization (%s, isb=%d)", fileName, isBootstrap);
556 gDvm.optimizingBootstrapClass = isBootstrap;
    [all...]
  /dalvik/dexopt/
OptMain.cpp 58 const char* debugFileName, bool isBootstrap, const char* bootClassPath,
187 modWhen, crc32, isBootstrap))
221 bool isBootstrap = false;
245 isBootstrap = true;
248 int result = extractAndProcessZip(zipFd, cacheFd, zipName, isBootstrap,
400 * 9. flags (optimization level, isBootstrap)
  /dalvik/vm/oo/
Class.cpp 170 static ClassPathEntry* processClassPath(const char* pathStr, bool isBootstrap);
603 static bool prepareCpe(ClassPathEntry* cpe, bool isBootstrap)
622 if (dvmJarFileOpen(cpe->fileName, NULL, &pJarFile, isBootstrap) == 0) {
629 if (dvmRawDexFileOpen(cpe->fileName, NULL, &pRawDexFile, isBootstrap) == 0) {
654 static ClassPathEntry* processClassPath(const char* pathStr, bool isBootstrap)
701 if (isBootstrap &&
722 if (!prepareCpe(&tmp, isBootstrap)) {
    [all...]

Completed in 2182 milliseconds