Searched defs:okay (Results 1 - 6 of 6) sorted by relevance

/dalvik/libdex/
H A DLeb128.cpp33 bool* okay) {
39 *okay = false;
55 bool* okay) {
61 *okay = false;
32 readAndVerifyUnsignedLeb128(const u1** pStream, const u1* limit, bool* okay) argument
54 readAndVerifySignedLeb128(const u1** pStream, const u1* limit, bool* okay) argument
H A DDexClass.cpp29 bool okay = true; local
32 while (okay && (count-- != 0)) {
33 readAndVerifyUnsignedLeb128(&pData, pLimit, &okay);
36 return okay;
41 * returns an "okay" flag (that is, false == failure). */
54 * returns an "okay" flag (that is, false == failure).
75 * returns an "okay" flag (that is, false == failure).
126 bool okay = true; local
163 for (i = 0; okay && (i < header.staticFieldsSize); i++) {
164 okay
[all...]
H A DDexSwapVerify.cpp983 bool okay = local
993 if (!okay) {
1510 bool okay; local
1512 okay = verifyFields(state, classData->header.staticFieldsSize,
1515 if (!okay) {
1523 if (!okay) {
1528 okay = verifyMethods(state, classData->header.directMethodsSize,
1531 if (!okay) {
1536 okay = verifyMethods(state, classData->header.virtualMethodsSize,
1539 if (!okay) {
1557 bool okay = verifyClassDataItem0(state, classData); local
1605 bool okay = true; local
1653 bool okay = true; local
1729 bool okay = true; local
1863 bool okay = true; local
1964 bool okay = true; local
2130 bool okay = true; local
2274 bool okay = true; local
2518 bool okay = true; local
2691 bool okay = true; local
2821 bool okay = true; local
[all...]
/dalvik/vm/analysis/
H A DDexVerify.cpp811 bool okay = true; local
837 okay &= checkRegisterIndex(meth, decInsn.vA);
845 okay &= checkWideRegisterIndex(meth, decInsn.vA);
849 okay &= checkBranchTarget(meth, insnFlags, codeOffset, false);
852 okay &= checkBranchTarget(meth, insnFlags, codeOffset, true);
904 okay &= checkRegisterIndex(meth, decInsn.vA);
905 okay &= checkRegisterIndex(meth, decInsn.vB);
914 okay &= checkWideRegisterIndex(meth, decInsn.vA);
915 okay &= checkRegisterIndex(meth, decInsn.vB);
921 okay
[all...]
/dalvik/vm/
H A DJni.cpp174 ALOGD("JNI: bad stack CRC (0x%08x) -- okay during init", stackCrc);
177 ALOGD("JNI: bad stack CRC (0x%08x) -- okay during JNI_OnLoad", stackCrc);
657 * It's okay for native code to pass us a reference that:
1483 bool okay = ensureLocalCapacity(ts.self(), capacity); local
1484 if (!okay) {
1487 return okay ? 0 : -1;
2932 * Sleep on a condition variable until it's okay to exit.
/dalvik/vm/oo/
H A DClass.cpp2508 bool okay = false; local
2824 okay = true;
2844 if (!okay) {
2854 return okay;
4590 /* unexpected during class loading, okay on first use (uncompress) */

Completed in 2487 milliseconds