Searched refs:crc (Results 1 - 5 of 5) sorted by relevance

/dalvik/vm/analysis/
H A DDexPrepare.h94 u4 modWhen, u4 crc, bool isBootstrap, bool* pNewFile, bool createIfMissing);
109 u4 crc, bool expectVerify, bool expectOpt);
118 const char* fileName, u4 modWhen, u4 crc, bool isBootstrap);
124 const char* fileName, u4 modWhen, u4 crc, bool isBootstrap);
H A DDexPrepare.cpp57 static int writeDependencies(int fd, u4 modWhen, u4 crc);
130 u4 modWhen, u4 crc, bool isBootstrap, bool* pNewFile, bool createIfMissing)
247 if (!dvmCheckOptHeaderAndDependencies(fd, true, modWhen, crc,
335 * "fileName" is only used for debug output. "modWhen" and "crc" are stored
352 const char* fileName, u4 modWhen, u4 crc, bool isBootstrap)
438 sprintf(values[8], "%d", (int) crc);
528 const char* fileName, u4 modWhen, u4 crc, bool isBootstrap)
676 if (writeDependencies(fd, modWhen, crc) != 0) {
1162 * If "sourceAvail" is "true", this will verify that "modWhen" and "crc"
1171 u4 crc, boo
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
1170 dvmCheckOptHeaderAndDependencies(int fd, bool sourceAvail, u4 modWhen, u4 crc, bool expectVerify, bool expectOpt) argument
1361 writeDependencies(int fd, u4 modWhen, u4 crc) argument
[all...]
/dalvik/dexopt/
H A DOptMain.cpp424 u4 crc, modWhen; local
455 GET_ARG(crc, strtoul, "bad crc");
458 ALOGV("Args: fd=%d off=%ld len=%ld name='%s' mod=%#x crc=%#x flg=%d (argc=%d)",
459 fd, offset, length, debugFileName, modWhen, crc, flags, argc);
522 modWhen, crc, (flags & DEXOPT_IS_BOOTSTRAP) != 0))
/dalvik/libdex/
H A DZipArchive.h178 u4 dexComputeCrc32(u4 crc, const void* buf, size_t len);
/dalvik/vm/
H A DJni.cpp149 u4 crc = dvmInitCrc32(); local
151 crc = dvmComputeCrc32(crc, low, self->interpStackStart - low);
152 self->stackCrc = crc;
169 u4 crc = dvmInitCrc32(); local
170 crc = dvmComputeCrc32(crc, low, self->interpStackStart - low);
171 if (crc != stackCrc) {
179 ALOGW("JNI: bad stack CRC (%08x vs %08x)", crc, stackCrc);

Completed in 489 milliseconds