Home
last modified time | relevance | path

Searched refs:next_frame (Results 1 – 6 of 6) sorted by relevance

/freebsd/crypto/openssl/ssl/quic/
H A Dquic_sf_list.c55 STREAM_FRAME *sf, *next_frame; in ossl_sframe_list_destroy() local
57 for (sf = fl->head; sf != NULL; sf = next_frame) { in ossl_sframe_list_destroy()
58 next_frame = sf->next; in ossl_sframe_list_destroy()
83 STREAM_FRAME *sf, *new_frame, *prev_frame, *next_frame; in ossl_sframe_list_insert() local
136 for (next_frame = sf; in ossl_sframe_list_insert()
137 next_frame != NULL && next_frame->range.end <= range->end;) { in ossl_sframe_list_insert()
138 STREAM_FRAME *drop_frame = next_frame; in ossl_sframe_list_insert()
140 next_frame = next_frame->next; in ossl_sframe_list_insert()
141 if (next_frame != NULL) in ossl_sframe_list_insert()
142 next_frame->prev = drop_frame->prev; in ossl_sframe_list_insert()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DStackFrameList.cpp369 void StackFrameList::SynthesizeTailCallFrames(StackFrame &next_frame) { in SynthesizeTailCallFrames() argument
375 TargetSP target_sp = next_frame.CalculateTarget(); in SynthesizeTailCallFrames()
379 lldb::RegisterContextSP next_reg_ctx_sp = next_frame.GetRegisterContext(); in SynthesizeTailCallFrames()
396 next_frame.GetSymbolContext(eSymbolContextFunction).function; in SynthesizeTailCallFrames()
407 ModuleList &images = next_frame.CalculateTarget()->GetImages(); in SynthesizeTailCallFrames()
409 exe_ctx.SetFramePtr(&next_frame); in SynthesizeTailCallFrames()
417 uint32_t concrete_frame_idx = next_frame.GetConcreteFrameIndex(); in SynthesizeTailCallFrames()
437 next_frame.SetFrameIndex(m_frames.size()); in SynthesizeTailCallFrames()
H A DRegisterContextUnwind.cpp56 const SharedPtr &next_frame, in RegisterContextUnwind() argument
80 if (IsFrameZero() || next_frame->m_frame_type == eTrapHandlerFrame || in RegisterContextUnwind()
81 next_frame->m_frame_type == eDebuggerFrame) { in RegisterContextUnwind()
717 RegisterContextUnwind::SharedPtr next_frame = GetNextFrame(); in CheckIfLoopingStack() local
718 if (next_frame) { in CheckIfLoopingStack()
720 next_frame->GetNextFrame(); in CheckIfLoopingStack()
/freebsd/sys/powerpc/powerpc/
H A Ddb_trace.c166 next_frame: in db_backtrace()
282 goto next_frame; in db_backtrace()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DStackFrameList.h111 void SynthesizeTailCallFrames(StackFrame &next_frame);
H A DRegisterContextUnwind.h30 const SharedPtr &next_frame,