Home
last modified time | relevance | path

Searched refs:spawn_thread (Results 1 – 14 of 14) sorted by relevance

/external/llvm-project/lldb/source/API/
DSBCommandInterpreterRunOptions.cpp170 void SBCommandInterpreterRunOptions::SetSpawnThread(bool spawn_thread) { in SetSpawnThread() argument
172 (bool), spawn_thread); in SetSpawnThread()
174 m_opaque_up->SetSpawnThread(spawn_thread); in SetSpawnThread()
DSBDebugger.cpp1162 bool spawn_thread) { in RunCommandInterpreter() argument
1164 auto_handle_events, spawn_thread); in RunCommandInterpreter()
1169 options.SetSpawnThread(spawn_thread); in RunCommandInterpreter()
1175 bool spawn_thread, in RunCommandInterpreter() argument
1184 auto_handle_events, spawn_thread, options, num_errors, in RunCommandInterpreter()
1189 options.SetSpawnThread(spawn_thread); in RunCommandInterpreter()
/external/llvm-project/lldb/test/API/tools/lldb-vscode/attach/
DTestVSCode_attach.py110 self.spawn_thread = threading.Thread(target=spawn_and_wait,
112 self.spawn_thread.start()
/external/llvm-project/lldb/include/lldb/API/
DSBDebugger.h304 void RunCommandInterpreter(bool auto_handle_events, bool spawn_thread);
329 void RunCommandInterpreter(bool auto_handle_events, bool spawn_thread,
/external/rust/crates/tokio/src/runtime/blocking/
Dpool.rs232 let handle = self.spawn_thread(shutdown_tx, rt, id); in spawn()
240 fn spawn_thread( in spawn_thread() method
/external/llvm-project/lldb/include/lldb/Interpreter/
DCommandInterpreter.h184 void SetSpawnThread(bool spawn_thread) { in SetSpawnThread() argument
185 m_spawn_thread = spawn_thread ? eLazyBoolYes : eLazyBoolNo; in SetSpawnThread()
/external/python/cpython2/Python/
Dthread_atheos.h111 tid = spawn_thread(name, func, NORMAL_PRIORITY, 0, arg); in PyThread_start_new_thread()
Dthread_beos.h129 tid = spawn_thread( (thread_func)func, name, in PyThread_start_new_thread()
/external/libxml2/
DtestThreads.c230 …tid[i] = spawn_thread(thread_specific_data, "xmlTestThread", B_NORMAL_PRIORITY, (void *) &threadPa… in main()
Druntest.c4130 spawn_thread(thread_specific_data, "xmlTestThread", in testThread()
/external/llvm-project/lldb/bindings/interface/
DSBDebugger.i512 bool spawn_thread,
/external/llvm-project/lldb/tools/driver/
DDriver.cpp581 const bool spawn_thread = false; in MainLoop() local
675 m_debugger.RunCommandInterpreter(handle_events, spawn_thread); in MainLoop()
/external/libusb/libusb/os/
Dhaiku_usb_backend.cpp236 fTransfersThread = spawn_thread(TransfersThread, "Transfer Worker", B_NORMAL_PRIORITY, this); in USBDeviceHandle()
/external/rust/crates/libc/src/unix/haiku/
Dnative.rs729 pub fn spawn_thread( in spawn_thread() function