Home
last modified time | relevance | path

Searched refs:pts_eos (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/processor-trace/libipt/test/src/
H A Dptunit-query.c498 ptu_int_eq(errcode, pts_eos); in indir()
722 ptu_int_eq(errcode, pts_eos); in cond()
890 ptu_int_eq(errcode, pts_eos); in event_small_size()
914 ptu_int_eq(errcode, pts_eos); in event_big_size()
1011 ptu_int_eq(errcode, pts_eos); in event_disabled()
1073 ptu_int_eq(errcode, pts_eos); in event_async_disabled()
1194 ptu_int_eq(errcode, pts_eos); in event_async_branch()
1267 ptu_int_eq(errcode, pts_eos); in event_paging()
1332 ptu_int_eq(errcode, pts_eos); in event_async_paging()
1379 ptu_int_eq(errcode, pts_eos); in event_async_paging_suppressed()
[all …]
/freebsd/contrib/processor-trace/libipt/src/
H A Dpt_insn_decoder.c87 if ((status & pts_eos) && !decoder->process_event) in pt_insn_status()
88 flags |= pts_eos; in pt_insn_status()
1305 if (decoder->status & pts_eos) in pt_insn_next()
H A Dpt_block_decoder.c69 if ((status & pts_eos) && !decoder->process_event) in pt_blk_status()
70 flags |= pts_eos; in pt_blk_status()
2592 if (decoder->status & pts_eos) in pt_blk_proceed()
H A Dpt_query_decoder.c235 flags |= pts_eos; in pt_qry_status_flags()
/freebsd/contrib/processor-trace/libipt/include/
H A Dintel-pt.h1096 pts_eos = 1 << 2 enumerator
H A Dintel-pt.h.in1096 pts_eos = 1 << 2 enumerator
2170 * Returns pts_eos to indicate the end of the trace stream. Subsequent calls
2171 * to pt_insn_next() will continue to return pts_eos until trace is required
2450 * Returns pts_eos to indicate the end of the trace stream. Subsequent calls
2451 * to pt_block_next() will continue to return pts_eos until trace is required
/freebsd/contrib/llvm-project/lldb/source/Plugins/Trace/intel-pt/
H A DLibiptDecoder.cpp23 return status & pts_eos; in IsEndOfStream()