HomeSort by relevance Sort by last modified time
    Searched refs:thread_t (Results 1 - 25 of 43) sorted by null

1 2

  /external/bluetooth/bluedroid/osi/include/
thread.h 23 typedef struct thread_t thread_t; typedef in typeref:struct:thread_t
31 thread_t *thread_new(const char *name);
36 void thread_free(thread_t *thread);
42 bool thread_post(thread_t *thread, thread_fn func, void *context);
47 void thread_stop(thread_t *thread);
50 const char *thread_name(const thread_t *thread);
  /external/lldb/scripts/Python/interface/
SBHostOS.i 22 static lldb::thread_t
29 ThreadCancel (lldb::thread_t thread,
33 ThreadDetach (lldb::thread_t thread,
36 ThreadJoin (lldb::thread_t thread,
  /external/bluetooth/bluedroid/osi/test/
thread_test.cpp 9 thread_t *thread = thread_new("test_thread");
15 thread_t *thread = thread_new("test_thread");
20 thread_t *thread = thread_new("test_name");
26 thread_t *thread = thread_new("0123456789abcdef");
32 thread_t *thread = thread_new("0123456789abcdefg");
  /external/lldb/include/lldb/API/
SBHostOS.h 31 static lldb::thread_t
38 ThreadCancel (lldb::thread_t thread,
42 ThreadDetach (lldb::thread_t thread,
45 ThreadJoin (lldb::thread_t thread,
  /external/lldb/include/lldb/
lldb-types.h 27 // lldb::thread_t The native thread type for spawned threads on the system
47 typedef pthread_t thread_t; // Host thread type typedef in namespace:lldb
57 const lldb::thread_t lldb_invalid_host_thread_const = { NULL, 0 } ;
63 #define LLDB_INVALID_HOST_THREAD ((lldb::thread_t)NULL)
  /external/lldb/source/API/
SBHostOS.cpp 41 lldb::thread_t
68 SBHostOS::ThreadCancel (lldb::thread_t thread, SBError *error_ptr)
74 SBHostOS::ThreadDetach (lldb::thread_t thread, SBError *error_ptr)
80 SBHostOS::ThreadJoin (lldb::thread_t thread, void **result, SBError *error_ptr)
  /external/lldb/tools/debugserver/source/MacOSX/
MachThread.h 39 MachThread (MachProcess *process, uint64_t unique_thread_id = 0, thread_t mach_port_number = 0);
48 thread_t MachPortNumber() const { return m_mach_port_number; }
49 thread_t InferiorThreadID() const;
53 static bool MachPortNumberIsValid(thread_t thread); // The mach port # for this thread in debugserver namespace
111 static uint64_t GetGloballyUniqueThreadIDForMachPortID (thread_t mach_port_id);
114 static bool GetBasicInfo(thread_t threadID, struct thread_basic_info *basic_info);
124 thread_t m_mach_port_number; // The mach port # for this thread in debugserver namesp.
MachThreadList.h 59 MachThreadSP GetThreadByMachPortNumber (thread_t mach_port_number) const;
60 nub_thread_t GetThreadIDByMachPortNumber (thread_t mach_port_number) const;
61 thread_t GetMachPortNumberByThreadID (nub_thread_t globally_unique_id) const;
69 // const_iterator FindThreadByID (thread_t tid) const;
MachException.h 52 thread_t thread_port;
125 thread_t thread_port; // Set to THREAD_NULL for any thread
MachThread.cpp 27 MachThread::MachThread (MachProcess *process, uint64_t unique_thread_id, thread_t mach_port_num) :
212 thread_t
219 thread_t inferior_tid = INVALID_NUB_THREAD;
281 MachThread::GetBasicInfo(thread_t thread, struct thread_basic_info *basicInfoPtr)
302 MachThread::MachPortNumberIsValid(thread_t thread)
697 MachThread::GetGloballyUniqueThreadIDForMachPortID (thread_t mach_port_id)
MachThreadList.cpp 76 thread_t mach_port_number = GetMachPortNumberByThreadID (tid);
117 MachThreadList::GetThreadByMachPortNumber (thread_t mach_port_number) const
134 MachThreadList::GetThreadIDByMachPortNumber (thread_t mach_port_number) const
149 thread_t
293 const thread_t mach_port_num = thread_list[idx];
324 vm_size_t thread_list_size = (vm_size_t) (thread_list_count * sizeof (thread_t));
  /external/bluetooth/bluedroid/osi/src/
thread.c 34 struct thread_t { struct
43 thread_t *thread;
58 thread_t *thread_new(const char *name) {
62 thread_t *ret = calloc(1, sizeof(thread_t));
98 void thread_free(thread_t *thread) {
109 bool thread_post(thread_t *thread, thread_fn func, void *context) {
130 void thread_stop(thread_t *thread) {
135 const char *thread_name(const thread_t *thread) {
144 thread_t *thread = start->thread
    [all...]
  /external/lldb/include/lldb/Host/
Host.h 79 static lldb::thread_t
228 static lldb::thread_t
249 static lldb::thread_t
256 ThreadCancel (lldb::thread_t thread,
260 ThreadDetach (lldb::thread_t thread,
263 ThreadJoin (lldb::thread_t thread,
  /development/ndk/platforms/android-3/include/
thread_db.h 65 typedef pthread_t thread_t; typedef
102 thread_t ti_tid; // pthread's id for the thread
  /development/ndk/platforms/android-9/include/
thread_db.h 67 typedef pthread_t thread_t; typedef
105 thread_t ti_tid; // pthread's id for the thread
  /external/lldb/source/Plugins/Process/gdb-remote/
GDBRemoteCommunicationServer.h 68 lldb::thread_t m_async_thread;
  /external/lldb/tools/darwin-threads/
examine-threads.c 119 get_thread_basic_info (thread_t thread)
140 get_thread_identifier_info (thread_t thread)
162 inferior_namespace_mach_port_num (task_t task, thread_t examine_threads_port, thread_t *inferior_port)
205 get_current_pc (thread_t thread, int *wordsize)
271 thread_t thread;
425 thread_t mach_port_inferior_namespace;
  /external/lldb/source/Plugins/Process/FreeBSD/
ProcessMonitor.h 199 lldb::thread_t m_operation_thread;
200 lldb::thread_t m_monitor_thread;
  /external/lldb/source/Plugins/Process/Linux/
ProcessMonitor.h 191 lldb::thread_t m_operation_thread;
192 lldb::thread_t m_monitor_thread;
  /external/lldb/include/lldb/Core/
Communication.h 351 lldb::thread_t m_read_thread; ///< The read thread handle in case we need to cancel the thread.
  /external/lldb/tools/driver/
IOChannel.h 134 lldb::thread_t m_read_thread;
  /external/lldb/source/Host/common/
Host.cpp 81 lldb::thread_t
90 lldb::thread_t thread = LLDB_INVALID_HOST_THREAD;
467 lldb::thread_t
470 return lldb::thread_t(pthread_self());
581 lldb::thread_t
590 lldb::thread_t thread = LLDB_INVALID_HOST_THREAD;
610 Host::ThreadCancel (lldb::thread_t thread, Error *error)
619 Host::ThreadDetach (lldb::thread_t thread, Error *error)
628 Host::ThreadJoin (lldb::thread_t thread, thread_result_t *thread_result_ptr, Error *error)
    [all...]
  /external/bison/lib/glthread/
lock.c 539 lock->owner = (thread_t) 0;
547 thread_t self = thr_self ();
574 lock->owner = (thread_t) 0;
584 if (lock->owner != (thread_t) 0)
  /external/lldb/source/Plugins/Process/MacOSX-Kernel/
ProcessKDP.h 250 lldb::thread_t m_async_thread;
  /external/libcxxabi/include/
libunwind.h 124 extern int unw_init_remote_thread(unw_cursor_t *, unw_addr_space_t, thread_t *);
132 * thread_t*);

Completed in 1069 milliseconds

1 2