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

/art/dex2oat/
H A Ddex2oat_test.cc249 std::unique_ptr<ScratchFile> sf; local
251 sf.reset(new ScratchFile());
252 copy.push_back(android::base::StringPrintf("--swap-fd=%d", sf->GetFd()));
/art/runtime/entrypoints/quick/
H A Dquick_trampoline_entrypoints.cc645 uint32_t shorty_len, ShadowFrame* sf, size_t first_arg_reg) :
646 QuickArgumentVisitor(sp, is_static, shorty, shorty_len), sf_(sf), cur_reg_(first_arg_reg) {}
644 BuildQuickShadowFrameVisitor(ArtMethod** sp, bool is_static, const char* shorty, uint32_t shorty_len, ShadowFrame* sf, size_t first_arg_reg) argument
/art/runtime/
H A Dstack.h132 static void DeleteDeoptimizedFrame(ShadowFrame* sf) { argument
133 sf->~ShadowFrame(); // Explicitly destruct.
134 uint8_t* memory = reinterpret_cast<uint8_t*>(sf);
H A Dthread.h950 void PushStackedShadowFrame(ShadowFrame* sf, StackedShadowFrameType type);
1698 ScopedStackedShadowFramePusher(Thread* self, ShadowFrame* sf, StackedShadowFrameType type) argument
1700 self_->PushStackedShadowFrame(sf, type);
H A Dthread.cc256 void Thread::PushStackedShadowFrame(ShadowFrame* sf, StackedShadowFrameType type) { argument
258 sf, type, tlsPtr_.stacked_shadow_frame_record);

Completed in 1778 milliseconds