Home
last modified time | relevance | path

Searched refs:thread_info (Results 1 – 25 of 35) sorted by relevance

12

/external/libchrome/base/message_loop/
Dmessage_pump_glib.cc137 ThreadInfo* thread_info = NULL; variable
141 if (!thread_info) { in CheckThread()
142 thread_info = new ThreadInfo; in CheckThread()
143 thread_info->pump = pump; in CheckThread()
144 thread_info->thread_id = PlatformThread::CurrentId(); in CheckThread()
146 DCHECK(thread_info->thread_id == PlatformThread::CurrentId()) << in CheckThread()
153 if (thread_info && thread_info->pump == pump) { in PumpDestroyed()
154 delete thread_info; in PumpDestroyed()
155 thread_info = NULL; in PumpDestroyed()
/external/parameter-framework/asio-1.10.6/include/asio/impl/
Dhandler_alloc_hook.ipp32 typedef detail::task_io_service_thread_info thread_info;
33 typedef detail::call_stack<io_service_impl, thread_info> call_stack;
34 return thread_info::allocate(call_stack::top(), size);
44 typedef detail::task_io_service_thread_info thread_info;
45 typedef detail::call_stack<io_service_impl, thread_info> call_stack;
46 thread_info::deallocate(call_stack::top(), pointer, size);
/external/parameter-framework/asio-1.10.6/include/asio/detail/impl/
Dtask_io_service.ipp51 thread_info* this_thread_;
79 thread_info* this_thread_;
135 thread_info this_thread;
157 thread_info this_thread;
175 thread_info this_thread;
185 if (thread_info* outer_thread_info = ctx.next_by_key())
204 thread_info this_thread;
214 if (thread_info* outer_thread_info = ctx.next_by_key())
243 if (thread_info* this_thread = thread_call_stack::contains(this))
261 if (thread_info* this_thread = thread_call_stack::contains(this))
[all …]
/external/clang/tools/c-arcmt-test/
Dc-arcmt-test.c92 typedef struct thread_info { struct
96 } thread_info; argument
98 thread_info *client_data = client_data_v; in thread_runner()
110 thread_info client_data; in main()
/external/parameter-framework/asio-1.10.6/include/asio/detail/
Dtask_io_service.hpp119 typedef task_io_service_thread_info thread_info; typedef in asio::detail::task_io_service
127 thread_info& this_thread, const asio::error_code& ec);
131 thread_info& this_thread, const asio::error_code& ec);
182 typedef call_stack<task_io_service, thread_info> thread_call_stack;
/external/autotest/client/tests/aiostress/
Daio-stress.c115 struct thread_info;
123 struct thread_info *global_thread_info;
214 struct thread_info { struct
435 static void print_latency(struct thread_info *t) in print_latency()
441 static void print_completion_latency(struct thread_info *t) in print_completion_latency()
451 void finish_io(struct thread_info *t, struct io_unit *io, long result, in finish_io()
470 int read_some_events(struct thread_info *t) { in read_some_events()
502 static struct io_unit *find_iou(struct thread_info *t, struct io_oper *oper) in find_iou()
528 static int io_oper_wait(struct thread_info *t, struct io_oper *oper) {
603 static struct io_unit *build_iocb(struct thread_info *t, struct io_oper *oper)
[all …]
/external/ltp/testcases/kernel/io/ltp-aiodio/
Daio-stress.c116 struct thread_info;
124 struct thread_info *global_thread_info;
216 struct thread_info { struct
448 static void print_latency(struct thread_info *t) in print_latency()
454 static void print_completion_latency(struct thread_info *t) in print_completion_latency()
464 void finish_io(struct thread_info *t, struct io_unit *io, long result, in finish_io()
483 int read_some_events(struct thread_info *t) in read_some_events()
517 static struct io_unit *find_iou(struct thread_info *t, struct io_oper *oper) in find_iou()
543 static int io_oper_wait(struct thread_info *t, struct io_oper *oper)
620 static struct io_unit *build_iocb(struct thread_info *t, struct io_oper *oper)
[all …]
/external/python/cpython3/Lib/test/
Dtest_threadsignals.py17 USING_PTHREAD_COND = (sys.thread_info.name == 'pthread'
18 and sys.thread_info.lock == 'mutex+cond')
82 not sys.thread_info.version,
113 not sys.thread_info.version,
Dtest_sys.py357 thread_info = [] # the thread's id
363 thread_info.append(threading.get_ident())
374 self.assertEqual(len(thread_info), 1)
375 thread_id = thread_info[0]
494 info = sys.thread_info
Dtest_poplib.py530 thread_info = test_support.threading_setup()
534 test_support.threading_cleanup(*thread_info)
Dtest_ftplib.py1088 thread_info = support.threading_setup()
1092 support.threading_cleanup(*thread_info)
/external/mesa3d/src/gallium/auxiliary/hud/
Dhud_cpu.c235 struct thread_info { struct
244 struct thread_info *info = gr->query_data; in query_api_thread_busy_status() argument
294 gr->query_data = CALLOC_STRUCT(thread_info); in hud_thread_busy_install()
300 ((struct thread_info*)gr->query_data)->main_thread = main; in hud_thread_busy_install()
/external/bcc/tools/
Ddeadlock_detector.py285 def print_cycle(binary, graph, edges, thread_info, print_stack_trace_fn): argument
351 parent_pid, stack_id, parent_comm = thread_info.get(
515 thread_info = {
546 args.binary, graph, cycle, thread_info, print_stack_trace
/external/perfetto/include/perfetto/base/
Dtime.h84 thread_info(this_thread, THREAD_BASIC_INFO, in GetThreadCPUTimeNs()
/external/python/cpython2/Lib/test/
Dtest_poplib.py353 thread_info = test_support.threading_setup()
357 test_support.threading_cleanup(*thread_info)
Dtest_sys.py321 thread_info = [] # the thread's id
327 thread_info.append(thread.get_ident())
338 self.assertEqual(len(thread_info), 1)
339 thread_id = thread_info[0]
Dtest_ftplib.py871 thread_info = test_support.threading_setup()
875 test_support.threading_cleanup(*thread_info)
Dtest_socket.py1812 thread_info = test_support.threading_setup()
1814 test_support.threading_cleanup(*thread_info)
/external/libcxx/utils/google-benchmark/src/
Dtimers.cc156 if (thread_info(thread, THREAD_BASIC_INFO, (thread_info_t)&info, &count) == in ThreadCPUUsage()
/external/google-benchmark/src/
Dtimers.cc156 if (thread_info(thread, THREAD_BASIC_INFO, (thread_info_t)&info, &count) == in ThreadCPUUsage()
/external/webrtc/webrtc/examples/objc/AppRTCDemo/common/
DARDUtilities.m114 kern_return_t ret = thread_info(thread_array[i],
/external/google-breakpad/
DAndroid.bp22 "src/client/linux/dump_writer_common/thread_info.cc",
DMakefile.am132 src/client/linux/dump_writer_common/thread_info.cc \
460 src/client/linux/dump_writer_common/thread_info.o \
/external/v8/src/base/platform/
Dtime.cc36 kern_return_t kr = thread_info( in ComputeThreadTicks()
/external/clang/tools/c-index-test/
Dc-index-test.c4411 typedef struct thread_info { struct
4416 } thread_info; argument
4418 thread_info *client_data = client_data_v; in thread_runner()
4431 thread_info client_data; in main()

12