Searched refs:thread (Results 101 - 125 of 1503) sorted by relevance

1234567891011>>

/external/valgrind/main/drd/tests/
H A Dsem_as_mutex.stderr.exp2 Conflicting load by thread 1 at 0x........ size 8
6 Other segment start (thread 2)
7 (thread finished, call stack no longer available)
8 Other segment end (thread 2)
9 (thread finished, call stack no longer available)
11 Conflicting store by thread 1 at 0x........ size 8
15 Other segment start (thread 2)
16 (thread finished, call stack no longer available)
17 Other segment end (thread 2)
18 (thread finishe
[all...]
H A Dsem_open.stderr.exp2 Conflicting load by thread 1 at 0x........ size 8
6 Other segment start (thread 2)
7 (thread finished, call stack no longer available)
8 Other segment end (thread 2)
9 (thread finished, call stack no longer available)
11 Conflicting store by thread 1 at 0x........ size 8
15 Other segment start (thread 2)
16 (thread finished, call stack no longer available)
17 Other segment end (thread 2)
18 (thread finishe
[all...]
H A Dsem_as_mutex3.stderr.exp2 Conflicting load by thread 1 at 0x........ size 8
6 Other segment start (thread 2)
7 (thread finished, call stack no longer available)
8 Other segment end (thread 2)
9 (thread finished, call stack no longer available)
H A Dsem_open3.stderr.exp2 Conflicting load by thread 1 at 0x........ size 8
6 Other segment start (thread 2)
7 (thread finished, call stack no longer available)
8 Other segment end (thread 2)
9 (thread finished, call stack no longer available)
/external/chromium_org/mojo/system/
H A Dwaiter_unittest.cc102 // Awake immediately after thread start.
104 WaitingThread thread(10 * test::EpsilonTimeout().InMicroseconds());
105 thread.Start();
106 thread.waiter()->Awake(MOJO_RESULT_OK, 1);
107 thread.WaitUntilDone(&result, &context, &elapsed);
113 // Awake before after thread start.
115 WaitingThread thread(10 * test::EpsilonTimeout().InMicroseconds());
116 thread.waiter()->Awake(MOJO_RESULT_CANCELLED, 2);
117 thread.Start();
118 thread
[all...]
/external/chromium-trace/trace-viewer/src/tracing/importer/linux_perf/
H A Dirq_parser.js57 var thread = this.importer.getOrCreatePseudoThread("irqs cpu " + cpuNumber);
58 thread.lastEntryTs = ts;
59 thread.irqName = name;
71 var thread = this.importer.getOrCreatePseudoThread("irqs cpu " + cpuNumber);
73 if (thread.lastEntryTs !== undefined) {
74 var duration = ts - thread.lastEntryTs;
76 '', thread.irqName,
78 thread.lastEntryTs, { ret: ret },
80 thread.thread
[all...]
/external/qemu/distrib/sdl-1.2.15/src/thread/riscos/
H A DSDL_systhread.c31 int SDL_SYS_CreateThread(SDL_Thread *thread, void *args) argument
47 void SDL_SYS_WaitThread(SDL_Thread *thread) argument
52 void SDL_SYS_KillThread(SDL_Thread *thread) argument
79 int SDL_SYS_CreateThread(SDL_Thread *thread, void *args) argument
83 /* Set the thread attributes */
90 /* Create the thread and go! */
91 if ( pthread_create(&thread->handle, &type, RunThread, args) != 0 ) {
92 SDL_SetError("Not enough resources to create thread");
110 /* Mask asynchronous signals for this thread */
130 void SDL_SYS_WaitThread(SDL_Thread *thread) argument
135 SDL_SYS_KillThread(SDL_Thread *thread) argument
[all...]
/external/chromium_org/tools/telemetry/telemetry/timeline/
H A Dinspector_importer.py7 import telemetry.timeline.thread as timeline_thread
36 thread = render_process.GetOrCreateThread(raw_event.get('thread', 0))
37 InspectorTimelineImporter.AddRawEventToThreadRecursive(thread, raw_event)
43 def AddRawEventToThreadRecursive(thread, raw_inspector_event):
58 thread, 'inspector',
66 thread, child)
70 thread.PushSlice(pending_slice)
75 thread = timeline_thread.Thread(None, 0)
77 thread, raw_inspector_even
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dthread.c6 #include "thread.h"
10 struct thread *thread__new(pid_t pid, pid_t tid)
12 struct thread *self = zalloc(sizeof(*self));
27 void thread__delete(struct thread *self)
34 int thread__set_comm(struct thread *self, const char *comm)
48 int thread__comm_len(struct thread *self)
59 size_t thread__fprintf(struct thread *thread, FILE *fp) argument
61 return fprintf(fp, "Thread %d %s\n", thread->tid, thread
[all...]
H A Dunwind.h19 struct thread *thread,
28 struct thread *thread __maybe_unused,
/external/lldb/source/Target/
H A DThreadSpec.cpp61 ThreadSpec::TIDMatches (Thread &thread) const
66 lldb::tid_t thread_id = thread.GetID();
70 ThreadSpec::IndexMatches (Thread &thread) const
74 uint32_t index = thread.GetIndexID();
78 ThreadSpec::NameMatches (Thread &thread) const
83 const char *name = thread.GetName();
87 ThreadSpec::QueueNameMatches (Thread &thread) const
92 const char *queue_name = thread.GetQueueName();
97 ThreadSpec::ThreadPassesBasicTests (Thread &thread) const
103 if (!TIDMatches(thread))
[all...]
/external/chromium_org/third_party/webrtc/base/
H A Dthread_unittest.cc17 #include "webrtc/base/thread.h"
119 // A thread that does nothing when it runs and signals an event
162 // Create the messaging client on its own thread.
168 // Create the socket client on its own thread.
200 // Test that setting thread names doesn't cause a malfunction.
204 Thread *thread; local
205 thread = new Thread();
206 EXPECT_TRUE(thread->Start());
207 thread->Stop();
208 delete thread;
226 Thread *thread; local
262 Thread thread; local
282 AutoThread thread; local
291 InvokeSet(Thread* thread, bool* out) argument
307 AutoThread thread; local
315 InvokeSet(Thread* thread, bool* out) argument
320 SetAndInvokeSet(bool* out, Thread* thread, bool* out_inner) argument
357 AsyncInvokeIntCallback(AsyncInvoker* invoker, Thread* thread) argument
364 SetExpectedThreadForIntCallback(Thread* thread) argument
383 Thread thread; local
394 Thread thread; local
406 Thread thread; local
423 Thread thread; local
438 Thread thread; local
515 Thread* thread = new ComThread(); local
[all...]
/external/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.member/
H A Dget_id.pass.cpp10 // <thread>
12 // class thread
16 #include <thread>
46 std::thread t0((G()));
47 std::thread::id id0 = t0.get_id();
48 std::thread t1;
49 std::thread::id id1 = t1.get_id();
51 assert(t1.get_id() == std::thread::id());
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dpthread_kill.c49 pthread_kill (pthread_t thread, int sig) argument
54 * specified thread. If sig is zero, error checking is
56 * function can be used to check for a valid thread ID.
59 * thread reference to an instances of pthread_t
65 * specified thread. If sig is zero, error checking is
67 * function can be used to check for a valid thread ID.
70 * ESRCH the thread is not a valid thread ID,
84 tp = (ptw32_thread_t *) thread.p;
87 || thread
[all...]
H A Dptw32_threadDestroy.c43 ptw32_threadDestroy (pthread_t thread) argument
45 ptw32_thread_t * tp = (ptw32_thread_t *) thread.p;
51 * Copy thread state so that the thread can be atomically NULLed.
57 * This also sets the thread to PThreadStateInitial (invalid).
59 ptw32_threadReusePush (thread);
/external/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.assign/
H A Dcopy.fail.cpp10 // <thread>
12 // class thread
14 // thread& operator=(thread&& t);
16 #include <thread>
47 std::thread t0(G());
48 std::thread t1;
/external/clang/test/CodeGen/
H A D2003-11-27-ConstructorCast.c13 struct thread_struct thread = (struct thread_struct) { {{0}} }; local
H A D2003-11-27-UnionCtorInitialization.c15 struct thread_struct thread = (struct thread_struct) { {{0}} }; local
/external/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.id/
H A Dlt.pass.cpp10 // <thread>
12 // class thread::id
14 // bool operator< (thread::id x, thread::id y);
15 // bool operator<=(thread::id x, thread::id y);
16 // bool operator> (thread::id x, thread::id y);
17 // bool operator>=(thread::id x, thread
[all...]
/external/qemu/distrib/sdl-1.2.15/test/
H A Dtesterror.c22 /* Set the child thread error string */
29 printf("Child thread error string: %s\n", SDL_GetError());
35 SDL_Thread *thread; local
43 /* Set the error value for the main thread */
47 thread = SDL_CreateThread(ThreadFunc, "#1");
48 if ( thread == NULL ) {
49 fprintf(stderr, "Couldn't create thread: %s\n", SDL_GetError());
53 printf("Waiting for thread #1\n");
55 SDL_WaitThread(thread, NULL);
57 printf("Main thread erro
[all...]
H A Dtesthread.c22 printf("Started thread %s: My thread id is %u\n",
42 SDL_Thread *thread; local
51 thread = SDL_CreateThread(ThreadFunc, "#1");
52 if ( thread == NULL ) {
53 fprintf(stderr, "Couldn't create thread: %s\n", SDL_GetError());
57 printf("Waiting for thread #1\n");
59 SDL_WaitThread(thread, NULL);
62 thread = SDL_CreateThread(ThreadFunc, "#2");
63 if ( thread
[all...]
/external/deqp/framework/delibs/dethread/win32/
H A DdeThreadWin32.c21 * \brief Win32 implementation of thread management.
73 HANDLE thread = 0; local
81 thread = CreateThread(DE_NULL, 0, startThread, entry, 0, DE_NULL);
82 if (!thread)
89 SetThreadPriority(thread, mapPriority(attributes->priority));
91 return (deThread)thread;
94 deBool deThread_join (deThread thread) argument
96 HANDLE handle = (HANDLE)thread;
102 void deThread_destroy (deThread thread) argument
104 HANDLE handle = (HANDLE)thread;
[all...]
/external/qemu/distrib/sdl-1.2.15/src/thread/beos/
H A DSDL_systhread.c24 /* BeOS thread management routines for SDL */
62 int SDL_SYS_CreateThread(SDL_Thread *thread, void *args) argument
64 /* Create the thread and go! */
65 thread->handle=spawn_thread(RunThread, "SDL", B_NORMAL_PRIORITY, args);
66 if ( (thread->handle == B_NO_MORE_THREADS) ||
67 (thread->handle == B_NO_MEMORY) ) {
68 SDL_SetError("Not enough resources to create thread");
71 resume_thread(thread->handle);
77 /* Mask asynchronous signals for this thread */
86 void SDL_SYS_WaitThread(SDL_Thread *thread) argument
93 SDL_SYS_KillThread(SDL_Thread *thread) argument
[all...]
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DThreadFactoryBuilderTest.java58 Thread thread = threadFactory.newThread(monitoredRunnable);
59 checkThreadPoolName(thread, 1);
63 assertEquals(defaultThread.isDaemon(), thread.isDaemon());
64 assertEquals(defaultThread.getPriority(), thread.getPriority());
65 assertSame(defaultThread.getThreadGroup(), thread.getThreadGroup());
67 thread.getUncaughtExceptionHandler());
70 thread.start();
71 thread.join();
74 // Creating a new thread from the same ThreadFactory will have the same
75 // pool ID but a thread I
92 checkThreadPoolName(Thread thread, int threadId) argument
[all...]
/external/chromium_org/base/threading/
H A Dsimple_thread_unittest.cc56 // have all threads outstanding until we hit our expected thread pool size.
85 DelegateSimpleThread thread(&runner, "int_setter");
86 EXPECT_FALSE(thread.HasBeenStarted());
87 EXPECT_FALSE(thread.HasBeenJoined());
90 thread.Start();
91 EXPECT_TRUE(thread.HasBeenStarted());
92 EXPECT_FALSE(thread.HasBeenJoined());
94 thread.Join();
95 EXPECT_TRUE(thread.HasBeenStarted());
96 EXPECT_TRUE(thread
[all...]

Completed in 586 milliseconds

1234567891011>>