Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Trace/intel-pt/
H A DCommandObjectTraceStartIntelPT.cpp35 int64_t thread_buffer_size; in SetOptionValue() local
36 if (option_arg.empty() || option_arg.getAsInteger(0, thread_buffer_size) || in SetOptionValue()
37 thread_buffer_size < 0) in SetOptionValue()
41 m_thread_buffer_size = thread_buffer_size; in SetOptionValue()
101 int64_t thread_buffer_size; in SetOptionValue() local
102 if (option_arg.empty() || option_arg.getAsInteger(0, thread_buffer_size) || in SetOptionValue()
103 thread_buffer_size < 0) in SetOptionValue()
107 m_thread_buffer_size = thread_buffer_size; in SetOptionValue()
H A DTraceIntelPT.cpp271 Error TraceIntelPT::Start(size_t thread_buffer_size, in Start() argument
275 request.threadBufferSize = thread_buffer_size; in Start()
284 size_t thread_buffer_size = kDefaultThreadBufferSize; in Start() local
291 dict->GetValueForKeyAsInteger("threadBufferSize", thread_buffer_size); in Start()
302 return Start(thread_buffer_size, process_buffer_size_limit, enable_tsc, in Start()
307 size_t thread_buffer_size, bool enable_tsc, in Start() argument
310 request.threadBufferSize = thread_buffer_size; in Start()
322 size_t thread_buffer_size = kDefaultThreadBufferSize; in Start() local
328 dict->GetValueForKeyAsInteger("threadBufferSize", thread_buffer_size); in Start()
337 return Start(tids, thread_buffer_size, enable_tsc, psb_period); in Start()
H A DTraceIntelPT.h102 llvm::Error Start(size_t thread_buffer_size, size_t total_buffer_size_limit,
129 llvm::Error Start(llvm::ArrayRef<lldb::tid_t> tids, size_t thread_buffer_size,
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_basic_flags.inc22 XRAY_FLAG(int, thread_buffer_size, 1024,
H A Dxray_flags.inc36 "thread_buffer_size instead.")
H A Dxray_basic_logging.cpp414 F.thread_buffer_size = flags()->xray_naive_log_thread_buffer_size; in basicLoggingInit()
418 GlobalOptions.ThreadBufferSize = F.thread_buffer_size; in basicLoggingInit()