HomeSort by: relevance | last modified time | path
    Searched refs:thread_id (Results 1 - 25 of 106) sorted by relevancy

1 2 3 4 5

  /src/external/gpl3/gdb.old/dist/gdb/python/lib/gdb/dap/
state.py 20 def set_thread(thread_id):
21 """Set the current thread to THREAD_ID."""
22 if thread_id == 0:
25 exec_and_log("thread " + str(thread_id))
frames.py 58 thread_id = thread_ids[id]
59 if thread_id != gdb.selected_thread().global_num:
60 set_thread(thread_id)
130 thread_id = gdb.selected_thread().global_num
132 if thread_id not in _iter_map:
133 _iter_map[thread_id] = _MemoizingIterator(_frame_id_generator())
134 return _iter_map[thread_id]
next.py 29 def _handle_thread_step(thread_id, single_thread, select=False):
31 set_thread(thread_id)
  /src/external/gpl3/gdb/dist/gdb/python/lib/gdb/dap/
state.py 20 def set_thread(thread_id):
21 """Set the current thread to THREAD_ID."""
22 if thread_id == 0:
25 exec_and_log("thread " + str(thread_id))
frames.py 57 thread_id = thread_ids[id]
58 if thread_id != gdb.selected_thread().global_num:
59 set_thread(thread_id)
127 thread_id = gdb.selected_thread().global_num
128 if thread_id not in _iter_map:
129 _iter_map[thread_id] = _MemoizingIterator(_frame_id_generator())
130 return _iter_map[thread_id]
next.py 29 def _handle_thread_step(thread_id, single_thread, select=False):
31 set_thread(thread_id)
  /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/src/
benchmark_api_internal.cc 7 size_t iters, int thread_id, internal::ThreadTimer* timer,
9 State st(iters, arg, thread_id, threads, timer, manager);
benchmark_api_internal.h 37 State Run(size_t iters, int thread_id, internal::ThreadTimer* timer,
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.mi/
non-stop-exit.c 38 pthread_t thread_id[NTHREADS]; local
45 pthread_create (&thread_id[i], NULL, thread_function, &args[i]);
50 pthread_join (thread_id[i], NULL);
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.mi/
non-stop-exit.c 38 pthread_t thread_id[NTHREADS]; local
45 pthread_create (&thread_id[i], NULL, thread_function, &args[i]);
50 pthread_join (thread_id[i], NULL);
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
sanitizer_stoptheworld_testlib.cc 48 pthread_t thread_id; local
49 pthread_create(&thread_id, NULL, SuspenderThread, NULL);
sanitizer_stoptheworld_test.cc 74 pthread_t thread_id; local
77 pthread_create_result = pthread_create(&thread_id, NULL, IncrementerThread,
86 ASSERT_EQ(0, pthread_join(thread_id, NULL));
  /src/external/gpl3/gcc/dist/libobjc/
thr.c 153 objc_thread_t thread_id = NULL; local
169 if ((thread_id = __gthread_objc_thread_detach ((void *)__objc_thread_detach_function,
182 return thread_id;
308 objc_thread_t thread_id; local
316 thread_id = __gthread_objc_thread_id ();
317 if (mutex->owner == thread_id)
328 mutex->owner = thread_id;
338 objc_thread_t thread_id; local
346 thread_id = __gthread_objc_thread_id ();
347 if (mutex->owner == thread_id)
370 objc_thread_t thread_id; local
458 objc_thread_t thread_id; local
    [all...]
  /src/external/gpl3/gcc.old/dist/libobjc/
thr.c 153 objc_thread_t thread_id = NULL; local
169 if ((thread_id = __gthread_objc_thread_detach ((void *)__objc_thread_detach_function,
182 return thread_id;
308 objc_thread_t thread_id; local
316 thread_id = __gthread_objc_thread_id ();
317 if (mutex->owner == thread_id)
328 mutex->owner = thread_id;
338 objc_thread_t thread_id; local
346 thread_id = __gthread_objc_thread_id ();
347 if (mutex->owner == thread_id)
370 objc_thread_t thread_id; local
458 objc_thread_t thread_id; local
    [all...]
  /src/external/mit/libuv/dist/test/
test-thread-equal.c 29 uv_thread_t *thread_id = arg; local
35 *thread_id = uv_thread_self();
benchmark-million-async.c 32 static uv_thread_t thread_id; variable
63 ASSERT(0 == uv_thread_join(&thread_id));
101 ASSERT(0 == uv_thread_create(&thread_id, thread_cb, NULL));
test-thread.c 34 uv_thread_t thread_id; member in struct:getaddrinfo_req
42 uv_thread_t thread_id; member in struct:fs_req
50 uv_thread_t thread_id; member in struct:test_thread
178 r = uv_thread_create(&threads[i].thread_id, do_work, &threads[i]);
183 r = uv_thread_join(&threads[i].thread_id);
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_debugging.cc 50 uptr AsanGetStack(uptr addr, uptr *trace, u32 size, u32 *thread_id,
59 if (thread_id) *thread_id = chunk.AllocTid();
63 if (thread_id) *thread_id = chunk.FreeTid();
132 uptr __asan_get_alloc_stack(uptr addr, uptr *trace, uptr size, u32 *thread_id) {
133 return AsanGetStack(addr, trace, size, thread_id, /* alloc_stack */ true);
137 uptr __asan_get_free_stack(uptr addr, uptr *trace, uptr size, u32 *thread_id) {
138 return AsanGetStack(addr, trace, size, thread_id, /* alloc_stack */ false);
  /src/external/gpl3/gcc/dist/libsanitizer/asan/
asan_debugging.cpp 50 uptr AsanGetStack(uptr addr, uptr *trace, u32 size, u32 *thread_id,
59 if (thread_id) *thread_id = chunk.AllocTid();
63 if (thread_id) *thread_id = chunk.FreeTid();
132 uptr __asan_get_alloc_stack(uptr addr, uptr *trace, uptr size, u32 *thread_id) {
133 return AsanGetStack(addr, trace, size, thread_id, /* alloc_stack */ true);
137 uptr __asan_get_free_stack(uptr addr, uptr *trace, uptr size, u32 *thread_id) {
138 return AsanGetStack(addr, trace, size, thread_id, /* alloc_stack */ false);
  /src/external/gpl3/gcc.old/dist/libsanitizer/asan/
asan_debugging.cpp 50 uptr AsanGetStack(uptr addr, uptr *trace, u32 size, u32 *thread_id,
59 if (thread_id) *thread_id = chunk.AllocTid();
63 if (thread_id) *thread_id = chunk.FreeTid();
132 uptr __asan_get_alloc_stack(uptr addr, uptr *trace, uptr size, u32 *thread_id) {
133 return AsanGetStack(addr, trace, size, thread_id, /* alloc_stack */ true);
137 uptr __asan_get_free_stack(uptr addr, uptr *trace, uptr size, u32 *thread_id) {
138 return AsanGetStack(addr, trace, size, thread_id, /* alloc_stack */ false);
  /src/sys/external/bsd/compiler_rt/dist/include/sanitizer/
asan_interface.h 95 int *thread_id);
101 int *thread_id);
  /src/external/gpl3/gcc.old/dist/libsanitizer/include/sanitizer/
asan_interface.h 207 /// \param[out] thread_id The thread ID of the address.
211 int *thread_id);
222 /// \param[out] thread_id The thread ID of the address.
226 int *thread_id);
  /src/crypto/external/cpl/trousers/dist/src/tcsd/
tcsd_threads.c 47 if (tm->thread_data[i].thread_id != THREAD_NULL) {
48 if ((rc = THREAD_JOIN(*(tm->thread_data[i].thread_id), NULL))) {
129 if (tm->thread_data[thread_num].thread_id == THREAD_NULL)
143 tm->thread_data[thread_num].thread_id = calloc(1, sizeof(THREAD_TYPE));
144 if (tm->thread_data[thread_num].thread_id == NULL) {
150 if ((rc = THREAD_CREATE(tm->thread_data[thread_num].thread_id,
189 LogError("worker thread %ld is exiting prematurely", (long)THREAD_ID);
195 LogError("worker thread %ld is exiting prematurely", (long)THREAD_ID);
321 LogDebug("Thread %ld exiting via shutdown signal!", THREAD_ID);
350 if ((rc = pthread_detach(*(data->thread_id)))) {
    [all...]
  /src/external/gpl3/gcc/dist/libsanitizer/include/sanitizer/
asan_interface.h 218 /// \param[out] thread_id The thread ID of the address.
222 size_t size, int *thread_id);
233 /// \param[out] thread_id The thread ID of the address.
237 size_t size, int *thread_id);
  /src/external/lgpl3/mpfr/dist/tests/
tconst_pi.c 64 pthread_t thread_id[MAX_THREAD]; local
70 error_code = pthread_create(&thread_id[i],
77 error_code = pthread_join (thread_id[i], NULL);

Completed in 39 milliseconds

1 2 3 4 5