HomeSort by relevance Sort by last modified time
    Searched refs:IRTSegmentState (Results 1 - 6 of 6) sorted by null

  /art/runtime/
indirect_reference_table.h 144 struct IRTSegmentState {
149 static constexpr IRTSegmentState kIRTFirstSegment = { 0 };
248 IndirectRef Add(IRTSegmentState previous_state, ObjPtr<mirror::Object> obj)
275 bool Remove(IRTSegmentState previous_state, IndirectRef iref);
306 IRTSegmentState GetSegmentState() const {
310 void SetSegmentState(IRTSegmentState new_state);
380 void RecoverHoles(IRTSegmentState from);
390 IRTSegmentState segment_state_;
407 IRTSegmentState last_known_previous_state_;
jni_env_ext.h 71 IRTSegmentState local_ref_cookie;
79 std::vector<IRTSegmentState> stacked_local_ref_cookies;
155 IRTSegmentState saved_local_ref_cookie_;
indirect_reference_table_test.cc 75 const IRTSegmentState cookie = kIRTFirstSegment;
305 const IRTSegmentState cookie0 = kIRTFirstSegment;
316 const IRTSegmentState cookie1 = irt.GetSegmentState();
336 const IRTSegmentState cookie0 = kIRTFirstSegment;
343 const IRTSegmentState cookie1 = irt.GetSegmentState();
372 const IRTSegmentState cookie0 = kIRTFirstSegment;
379 const IRTSegmentState cookie1 = irt.GetSegmentState();
387 const IRTSegmentState cookie2 = irt.GetSegmentState();
411 const IRTSegmentState cookie0 = kIRTFirstSegment;
418 const IRTSegmentState cookie1 = irt.GetSegmentState()
    [all...]
indirect_reference_table.cc 142 // the implicitly stack-stored state, the IRTSegmentState, is only the top index.
176 void IndirectReferenceTable::RecoverHoles(IRTSegmentState prev_state) {
200 IRTSegmentState prev_state,
201 IRTSegmentState cur_state) {
239 IndirectRef IndirectReferenceTable::Add(IRTSegmentState previous_state,
335 bool IndirectReferenceTable::Remove(IRTSegmentState previous_state, IndirectRef iref) {
467 void IndirectReferenceTable::SetSegmentState(IRTSegmentState new_state) {
jni_internal_test.cc     [all...]
  /art/runtime/entrypoints/quick/
quick_jni_entrypoints.cc 27 static_assert(sizeof(IRTSegmentState) == sizeof(uint32_t), "IRTSegmentState size unexpected");
28 static_assert(std::is_trivial<IRTSegmentState>::value, "IRTSegmentState not trivial");
125 env->local_ref_cookie = bit_cast<IRTSegmentState>(saved_local_ref_cookie);

Completed in 400 milliseconds