Home | History | Annotate | Download | only in analysis

Lines Matching refs:cpe

462         ClassPathEntry* cpe;
463 for (cpe = gDvm.bootClassPath; cpe->ptr != NULL; cpe++) {
464 argv[curArg++] = cpe->fileName;
1103 static const char* getCacheFileName(const ClassPathEntry* cpe)
1105 switch (cpe->kind) {
1107 return dvmGetJarFileCacheFileName((JarFile*) cpe->ptr);
1109 return dvmGetRawDexFileCacheFileName((RawDexFile*) cpe->ptr);
1111 ALOGE("DexOpt: unexpected cpe kind %d", cpe->kind);
1120 static const u1* getSignature(const ClassPathEntry* cpe)
1124 switch (cpe->kind) {
1126 pDvmDex = dvmGetJarFileDex((JarFile*) cpe->ptr);
1129 pDvmDex = dvmGetRawDexFileDex((RawDexFile*) cpe->ptr);
1132 ALOGE("unexpected cpe kind %d", cpe->kind);
1296 ClassPathEntry* cpe;
1301 for (cpe = gDvm.bootClassPath; cpe->ptr != NULL; cpe++) {
1303 dvmPathToAbsolutePortion(getCacheFileName(cpe));
1306 const u1* signature = getSignature(cpe);
1366 ClassPathEntry* cpe;
1374 for (cpe = gDvm.bootClassPath; cpe->ptr != NULL; cpe++) {
1376 dvmPathToAbsolutePortion(getCacheFileName(cpe));
1399 for (cpe = gDvm.bootClassPath; cpe->ptr != NULL; cpe++) {
1401 dvmPathToAbsolutePortion(getCacheFileName(cpe));
1404 const u1* signature = getSignature(cpe);