Home | History | Annotate | Download | only in quick

Lines Matching defs:cookie

2024   // Adds space for the cookie. Note: may leave stack unaligned.
2026 // Reference cookie and padding
2030 // Re-layout the callee-save frame (insert a handle-scope). Then add space for the cookie.
2041 // Add space for cookie.
2313 uint32_t cookie,
2319 return reinterpret_cast<uint64_t>(JniMethodEndWithReferenceSynchronized(l, cookie, lock, self));
2321 return reinterpret_cast<uint64_t>(JniMethodEndWithReference(l, cookie, self));
2326 uint32_t cookie,
2330 JniMethodEndSynchronized(cookie, lock, self);
2334 JniMethodFastEnd(cookie, self);
2336 JniMethodEnd(cookie, self);
2388 uint32_t cookie;
2392 // Start JNI, save the cookie.
2395 cookie = JniMethodStartSynchronized(visitor.GetFirstHandleScopeJObject(), self);
2403 cookie = JniMethodFastStart(self);
2406 cookie = JniMethodStart(self);
2410 *(sp32 - 1) = cookie;
2437 artQuickGenericJniEndJNIRef(self, cookie, fast_native, nullptr, lock);
2439 artQuickGenericJniEndJNINonRef(self, cookie, fast_native, lock);
2507 uint32_t cookie = *(sp32 - 1);
2509 return GenericJniMethodEnd(self, cookie, result, result_f, called, table);