Searched defs:isBootstrap (Results 1 - 5 of 5) sorted by relevance

/dalvik/vm/
H A DJarFile.cpp127 /*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);
188 dvmJarFileOpen(const char* fileName, const char* odexOutputName, JarFile** ppJarFile, bool isBootstrap) argument
H A DRawDexFile.cpp110 RawDexFile** ppRawDexFile, bool isBootstrap)
162 adler32, isBootstrap, &newFile, /*createIfMissing=*/true);
193 fileName, modTime, adler32, isBootstrap);
109 dvmRawDexFileOpen(const char* fileName, const char* odexOutputName, RawDexFile** ppRawDexFile, bool isBootstrap) argument
/dalvik/dexopt/
H A DOptMain.cpp58 const char* debugFileName, bool isBootstrap, const char* bootClassPath,
187 modWhen, crc32, isBootstrap))
221 bool isBootstrap = false; local
245 isBootstrap = true;
248 int result = extractAndProcessZip(zipFd, cacheFd, zipName, isBootstrap,
400 * 9. flags (optimization level, isBootstrap)
57 extractAndProcessZip(int zipFd, int cacheFd, const char* debugFileName, bool isBootstrap, const char* bootClassPath, const char* dexoptFlagStr) argument
/dalvik/vm/analysis/
H A DDexPrepare.cpp130 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;
129 dvmOpenCachedDexFile(const char* fileName, const char* cacheFileName, u4 modWhen, u4 crc, bool isBootstrap, bool* pNewFile, bool createIfMissing) argument
351 dvmOptimizeDexFile(int fd, off_t dexOffset, long dexLength, const char* fileName, u4 modWhen, u4 crc, bool isBootstrap) argument
527 dvmContinueOptimization(int fd, off_t dexOffset, long dexLength, const char* fileName, u4 modWhen, u4 crc, bool isBootstrap) argument
[all...]
/dalvik/vm/oo/
H A DClass.cpp170 static ClassPathEntry* processClassPath(const char* pathStr, bool isBootstrap);
603 static bool prepareCpe(ClassPathEntry* cpe, bool isBootstrap) argument
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) argument
701 if (isBootstrap &&
722 if (!prepareCpe(&tmp, isBootstrap)) {

Completed in 833 milliseconds