HomeSort by relevance Sort by last modified time
    Searched refs:thread_index (Results 1 - 21 of 21) sorted by null

  /external/lldb/test/functionalities/stop-hook/multiple_threads/
main.cpp 44 uint32_t thread_index = *((uint32_t *)arg); // Break here to test that the stop-hook mechanism works for multiple threads. local
45 printf ("%s (thread index = %u) startng...\n", __FUNCTION__, thread_index);
53 printf ("%s (thread = %u) doing a usleep (%d)...\n", __FUNCTION__, thread_index, usec);
61 printf ("%s (thread = %u) after usleep access_pool returns %d (count=%d)...\n", __FUNCTION__, thread_index, val, count);
63 printf ("%s (thread index = %u) exiting...\n", __FUNCTION__, thread_index);
  /external/lldb/test/functionalities/watchpoint/multiple_threads/
main.cpp 46 uint32_t thread_index = *((uint32_t *)arg); // Break here in order to allow the thread local
48 printf ("%s (thread index = %u) startng...\n", __FUNCTION__, thread_index);
56 printf ("%s (thread = %u) doing a usleep (%d)...\n", __FUNCTION__, thread_index, usec);
64 printf ("%s (thread = %u) after usleep access_pool returns %d (count=%d)...\n", __FUNCTION__, thread_index, val, count);
66 printf ("%s (thread index = %u) exiting...\n", __FUNCTION__, thread_index);
  /external/lldb/test/functionalities/watchpoint/hello_watchlocation/
main.cpp 52 uint32_t thread_index = *((uint32_t *)arg); local
53 printf ("%s (thread index = %u) startng...\n", __FUNCTION__, thread_index);
61 printf ("%s (thread = %u) doing a usleep (%d)...\n", __FUNCTION__, thread_index, usec);
69 printf ("%s (thread = %u) after usleep access_pool returns %d (count=%d)...\n", __FUNCTION__, thread_index, val, count);
71 printf ("%s (thread index = %u) exiting...\n", __FUNCTION__, thread_index);
  /external/lldb/test/functionalities/watchpoint/watchpoint_set_command/
main.cpp 60 uint32_t thread_index = *((uint32_t *)arg); local
61 printf ("%s (thread index = %u) startng...\n", __FUNCTION__, thread_index);
69 printf ("%s (thread = %u) doing a usleep (%d)...\n", __FUNCTION__, thread_index, usec);
77 printf ("%s (thread = %u) after usleep access_pool returns %d (count=%d)...\n", __FUNCTION__, thread_index, val, count);
79 printf ("%s (thread index = %u) exiting...\n", __FUNCTION__, thread_index);
  /external/lldb/test/python_api/watchpoint/watchlocation/
main.cpp 50 uint32_t thread_index = *((uint32_t *)arg); local
51 printf ("%s (thread index = %u) startng...\n", __FUNCTION__, thread_index);
59 printf ("%s (thread = %u) doing a usleep (%d)...\n", __FUNCTION__, thread_index, usec);
67 printf ("%s (thread = %u) after usleep access_pool returns %d (count=%d)...\n", __FUNCTION__, thread_index, val, count);
69 printf ("%s (thread index = %u) exiting...\n", __FUNCTION__, thread_index);
  /external/lldb/test/python_api/lldbutil/iter/
main.cpp 56 uint32_t thread_index = *((uint32_t *)arg); local
57 uint32_t thread_mask = (1u << (thread_index));
58 printf ("%s (thread index = %u) startng...\n", __FUNCTION__, thread_index);
64 printf ("%s (thread = %u) doing a usleep (%d)...\n", __FUNCTION__, thread_index, usec);
66 printf ("%s (thread = %u) after usleep ...\n", __FUNCTION__, thread_index); // Set break point at this line.
68 printf ("%s (thread index = %u) exiting...\n", __FUNCTION__, thread_index);
  /external/lldb/test/python_api/lldbutil/process/
main.cpp 56 uint32_t thread_index = *((uint32_t *)arg); local
57 uint32_t thread_mask = (1u << (thread_index));
58 printf ("%s (thread index = %u) startng...\n", __FUNCTION__, thread_index);
64 printf ("%s (thread = %u) doing a usleep (%d)...\n", __FUNCTION__, thread_index, usec);
66 printf ("%s (thread = %u) after usleep ...\n", __FUNCTION__, thread_index); // Set break point at this line.
68 printf ("%s (thread index = %u) exiting...\n", __FUNCTION__, thread_index);
  /external/lldb/test/python_api/module_section/
main.cpp 56 uint32_t thread_index = *((uint32_t *)arg); local
57 uint32_t thread_mask = (1u << (thread_index));
58 printf ("%s (thread index = %u) startng...\n", __FUNCTION__, thread_index);
64 printf ("%s (thread = %u) doing a usleep (%d)...\n", __FUNCTION__, thread_index, usec);
66 printf ("%s (thread = %u) after usleep ...\n", __FUNCTION__, thread_index); // Set break point at this line.
68 printf ("%s (thread index = %u) exiting...\n", __FUNCTION__, thread_index);
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_stoptheworld_test.cc 98 volatile uptr thread_index; member in struct:__sanitizer::AdvancedCallbackArgument
105 : thread_index(0),
115 &callback_argument->thread_index, 1);
126 __sync_fetch_and_add(&callback_argument->thread_index,
127 kThreadCount - callback_argument->thread_index);
175 while (__sync_fetch_and_add(&argument.thread_index, 0) < kStopWorldAfter)
182 while (__sync_fetch_and_add(&argument.thread_index, 0) < kThreadCount)
  /external/chromium_org/cc/resources/
picture_pile_impl.h 30 PicturePileImpl* GetCloneForDrawingOnThread(unsigned thread_index) const;
126 const PicturePileImpl* other, unsigned thread_index);
128 PicturePileImpl(const PicturePileImpl* other, unsigned thread_index);
picture_pile_base.h 30 PicturePileBase(const PicturePileBase* other, unsigned thread_index);
70 PictureInfo CloneForThread(int thread_index) const;
picture_pile_impl.cc 45 const PicturePileImpl* other, unsigned thread_index) {
46 return make_scoped_refptr(new PicturePileImpl(other, thread_index));
60 const PicturePileImpl* other, unsigned thread_index)
61 : PicturePileBase(other, thread_index),
69 unsigned thread_index) const {
70 CHECK_GT(clones_for_drawing_.clones_.size(), thread_index);
71 return clones_for_drawing_.clones_[thread_index].get();
picture_pile_base.cc 72 unsigned thread_index)
88 picture_map_[it->first] = it->second.CloneForThread(thread_index);
305 int thread_index) const {
308 info.picture_ = picture_->GetCloneForDrawingOnThread(thread_index);
picture.cc 194 Picture* Picture::GetCloneForDrawingOnThread(unsigned thread_index) {
202 CHECK_GE(clones_.size(), thread_index);
203 return thread_index == clones_.size() ? this : clones_[thread_index].get();
picture.h 71 Picture* GetCloneForDrawingOnThread(unsigned thread_index);
  /external/lldb/tools/lldb-perf/lib/
TestCase.cpp 177 for (auto thread_index = 0; thread_index < m_process.GetNumThreads(); thread_index++)
179 SBThread thread(m_process.GetThreadAtIndex(thread_index));
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_rast.c 505 task->query->count[task->thread_index] += task->vis_counter;
809 debug_printf("thread %d waiting for work\n", task->thread_index);
815 if (task->thread_index == 0) {
831 debug_printf("thread %d doing work\n", task->thread_index);
841 if (task->thread_index == 0) {
847 debug_printf("thread %d done working\n", task->thread_index);
899 task->thread_index = i;
lp_rast_priv.h 95 unsigned thread_index; member in struct:lp_rasterizer_task
198 task->color_tiles[buf] = lp_swizzled_cbuf[task->thread_index][buf];
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_rast.c 505 task->query->count[task->thread_index] += task->vis_counter;
809 debug_printf("thread %d waiting for work\n", task->thread_index);
815 if (task->thread_index == 0) {
831 debug_printf("thread %d doing work\n", task->thread_index);
841 if (task->thread_index == 0) {
847 debug_printf("thread %d done working\n", task->thread_index);
899 task->thread_index = i;
lp_rast_priv.h 95 unsigned thread_index; member in struct:lp_rasterizer_task
198 task->color_tiles[buf] = lp_swizzled_cbuf[task->thread_index][buf];
  /external/lldb/source/Target/
Process.cpp     [all...]

Completed in 227 milliseconds