HomeSort by relevance Sort by last modified time
    Searched defs:thread (Results 526 - 550 of 684) sorted by null

<<2122232425262728

  /external/linux-tools-perf/perf-3.12.0/tools/perf/
builtin-kvm.c 9 #include "util/thread.h"
536 struct vcpu_event_record *per_vcpu_record(struct thread *thread,
541 if (!thread->priv && kvm_entry_event(evsel)) {
551 thread->priv = vcpu_record;
554 return thread->priv;
558 struct thread *thread,
565 vcpu_record = per_vcpu_record(thread, evsel, sample);
811 struct thread *thread local
    [all...]
builtin-sched.c 9 #include "util/thread.h"
43 pthread_t thread; member in struct:task_desc
89 struct thread *thread; member in struct:work_atoms
138 struct thread *curr_thread[MAX_CPUS];
542 err = pthread_create(&task->thread, &attr, thread_func, parms);
735 struct thread *child, *parent;
743 pr_debug("thread does not exist on fork event: child %p, parent %p\n",
783 thread_atoms_search(struct rb_root *root, struct thread *thread,
993 struct thread *thread = machine__findnew_thread(machine, 0, pid); local
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/ui/browsers/
hists.c 1216 static struct thread *hist_browser__selected_thread(struct hist_browser *browser)
1218 return browser->he_selection->thread;
1227 const struct thread *thread = hists->thread_filter; local
1255 if (thread)
1257 ", Thread: %s(%d)",
1258 (thread->comm_set ? thread->comm : ""),
1259 thread->tid);
1420 const struct thread *thread = NULL; local
    [all...]
  /external/lldb/source/Core/
Debugger.cpp 51 #include "lldb/Target/Thread.h"
102 #define DEFAULT_THREAD_FORMAT "thread #${thread.index}: tid = ${thread.id%tid}"\
106 "{, name = '${thread.name}'}"\
107 "{, queue = '${thread.queue}'}"\
108 "{, stop reason = ${thread.stop-reason}}"\
109 "{\\nReturn value: ${thread.return-value}}"\
132 { "thread-format", OptionValue::eTypeString , true, 0 , DEFAULT_THREAD_FORMAT, NULL, "The default thread format string to use when displaying thread information." }
1932 Thread *thread = exe_ctx->GetThreadPtr(); local
    [all...]
  /external/lldb/source/Plugins/ABI/MacOSX-i386/
ABIMacOSX_i386.cpp 24 #include "lldb/Target/Thread.h"
249 ABIMacOSX_i386::PrepareTrivialCall (Thread &thread,
260 RegisterContext *reg_ctx = thread.GetRegisterContext().get();
413 ABIMacOSX_i386::PrepareNormalCall (Thread &thread,
419 ExecutionContext exe_ctx (thread.shared_from_this());
420 RegisterContext *reg_ctx = thread.GetRegisterContext().get();
609 ABIMacOSX_i386::GetArgumentValues (Thread &thread,
685 Thread *thread = frame_sp->GetThread().get(); local
    [all...]
  /external/lldb/source/Plugins/ABI/SysV-x86_64/
ABISysV_x86_64.cpp 29 #include "lldb/Target/Thread.h"
302 ABISysV_x86_64::PrepareTrivialCall (Thread &thread,
319 thread.GetID(),
350 RegisterContext *reg_ctx = thread.GetRegisterContext().get();
454 Thread &thread,
464 scalar = thread.GetRegisterContext()->ReadRegisterAsUnsigned(argument_register_ids[current_argument_register], 0);
473 if (thread.GetProcess()->ReadScalarIntegerFromMemory(current_stack_argument, byte_size, is_signed, scalar, error))
484 ABISysV_x86_64::GetArgumentValues (Thread &thread
576 Thread *thread = frame_sp->GetThread().get(); local
    [all...]
  /external/lldb/source/Target/
Thread.cpp 1 //===-- Thread.cpp ----------------------------------------------*- C++ -*-===//
29 #include "lldb/Target/Thread.h"
52 Thread::GetGlobalProperties()
64 { "trace-thread", OptionValue::eTypeBoolean, false, false, NULL, NULL, "If true, this thread will single-step and log execution." },
83 // is part of a new lldb_private::Thread instance. It will copy all current
93 // When gettings the value for a key from the thread options, we will always
94 // try and grab the setting from the current thread if there is one. Else we just
98 Thread *thread = exe_ctx->GetThreadPtr() local
1667 Thread *thread = frame_sp->GetThread().get(); local
    [all...]
  /external/lldb/test/
lldbtest.py 101 STEP_OUT_SUCCEEDED = "Thread step-out succeeded"
1585 def thread(self): member in class:TestBase
    [all...]
  /external/lldb/tools/debugserver/source/
DNB.cpp 48 // A Thread safe singleton to get a process map pointer.
168 pthread_t thread = THREAD_NULL; local
169 ::pthread_create (&thread, NULL, waitpid_thread, (void *)(intptr_t)pid);
170 if (thread != THREAD_NULL)
172 ::pthread_detach (thread);
251 // Spawn a thread to reap our child inferior process...
692 // Process and Thread state information
706 // Process and Thread state information
828 // Below we add a default thread plan just in case one wasn't
832 // No thread plans were given, so the default it to run all thread
    [all...]
  /external/lzma/CPP/7zip/UI/Common/
Bench.cpp 36 #include "../../../Windows/Thread.h"
467 NWindows::CThread thread[2]; member in struct:CEncoderInfo
532 return thread[0].Create(EncodeThreadFunction, this);
548 return thread[index].Create(DecodeThreadFunction, &decoder);
752 encoders[i].thread[0].Wait();
814 encoder.thread[j].Wait();
829 if (::GetThreadTimes(encoders[i].thread[j], &creationTime, &exitTime, &kernelTime, &userTime) != 0)
886 NWindows::CThread Thread;
894 Thread.Wait();
895 Thread.Close();
    [all...]
  /frameworks/base/services/core/java/com/android/server/am/
ProcessRecord.java 61 IApplicationThread thread; // the actual proc... may be null only if field in class:ProcessRecord
226 pw.print(prefix); pw.print("thread="); pw.println(thread);
401 if (thread == null) {
423 thread = _thread;
427 thread = null;
470 if (deathRecipient != null && thread != null) {
471 thread.asBinder().unlinkToDeath(deathRecipient, 0);
ActivityStackSupervisor.java     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_socket.py 38 import thread namespace
41 thread = None variable
96 are caught and transferred to the main thread to alert
100 functions that rely on the client thread during setup,
115 it wants the client thread to proceed. This is useful if the
117 dependent upon the client thread during its setup routine."""
131 self.client_thread = thread.start_new_thread(
164 thread.exit()
201 # Indicate explicitly we're ready for the client thread to
728 @unittest.skipUnless(thread, 'Threading required for this test.'
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_socket.py 38 import thread namespace
41 thread = None variable
96 are caught and transferred to the main thread to alert
100 functions that rely on the client thread during setup,
115 it wants the client thread to proceed. This is useful if the
117 dependent upon the client thread during its setup routine."""
131 self.client_thread = thread.start_new_thread(
164 thread.exit()
201 # Indicate explicitly we're ready for the client thread to
728 @unittest.skipUnless(thread, 'Threading required for this test.'
    [all...]
  /system/core/adb/
sysdeps_win32.c 1479 HANDLE thread; member in struct:WaitForAllParam
    [all...]
  /system/core/sdcard/
sdcard.c 1753 pthread_t thread; local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.jobs_3.5.1.R36x_v20100824.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.core.jobs_3.5.300.v20130429-1813.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.core.jobs_3.5.300.v20130429-1813.jar 
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarProvider2.java 262 // Client apps can load more data in a background thread.
364 * thread's handler, indicating that these are requests to send an update
546 // We don't ever unregister this because this thread always wants
548 // thread is killed then the whole process will be killed and the
575 Thread thread = new PostInitializeThread(); local
576 thread.start();
579 private class PostInitializeThread extends Thread {
604 * This creates a background thread to check the timezone and update
609 Thread thread = new TimezoneCheckerThread() local
4965 Thread thread = new AccountsUpdatedThread(accounts); local
    [all...]
  /art/runtime/
thread.cc 19 #include "thread.h"
67 #include "thread-inl.h"
76 bool Thread::is_started_ = false;
77 pthread_key_t Thread::pthread_key_self_;
78 ConditionVariable* Thread::resume_cond_ = nullptr;
79 const size_t Thread::kStackOverflowImplicitCheckSize = GetStackOverflowReservedBytes(kRuntimeISA);
81 static const char* kThreadNameDuringStartup = "<native thread without managed peer>";
83 void Thread::InitCardTable() {
94 void Thread::InitTlsEntryPoints() {
106 void Thread::ResetQuickAllocEntryPointsForThread()
943 const Thread* thread; member in struct:art::StackDumpVisitor
    [all...]
  /external/blktrace/
blktrace.c 7 * Rewrite to have a single thread per CPU (managing all devices on that CPU)
104 * and it will signal the processing thread using the dp_cond,
119 * For piped output to stdout we will have each tracer thread (one per dev)
122 * The main thread will then collect trace buffers from each of lists in turn.
125 * can then signal the main thread using <dp_cond,dp_mutex> and
127 * signal. When dp_entries is 0, the main thread will wait for that condition
158 * Each thread doing work on a (client) side of blktrace will have one
161 * thread.
167 pthread_t thread; member in struct:tracer
299 * tracer threads add entries, the main thread takes them off and processe
    [all...]
  /external/chromium_org/content/renderer/pepper/
pepper_plugin_instance_impl.cc 2418 RenderThreadImpl* thread = RenderThreadImpl::current(); local
2424 RenderThreadImpl* thread = RenderThreadImpl::current(); local
    [all...]
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/md/
_win16.h 62 /* --- Common User-Thread/Native-Thread Definitions --------------------- */
130 PRInt32 errcode; /* preserved errno for this thread */
131 CATCHBUF context; /* thread context for Throw() */
441 NSPR_API(void) _PR_NativeDestroyThread(PRThread *thread); variable
442 NSPR_API(void) _PR_UserDestroyThread(PRThread *thread); variable
446 ** If thread emulation is used, then setjmp/longjmp stores the register
447 ** state of each thread.
463 #define _MD_GET_SP(thread) ((thread)->md.SP
    [all...]
  /external/deqp/modules/egl/
teglGLES2SharingThreadedTests.cpp 204 // EGL thread with thread specifig state
205 class EGLThread : public tcu::ThreadUtil::Thread
237 : tcu::ThreadUtil::Thread (seed)
284 void init (EGLThread& thread, bool serverSync);
285 bool waitReady (EGLThread& thread);
316 void FenceSync::init (EGLThread& thread, bool serverSync)
318 m_display = thread.runtimeContext->display;
325 thread.newMessage() << "Begin -- eglCreateSyncKHR(" << ((size_t)m_display) << ", EGL_SYNC_FENCE_KHR, NULL)" << tcu::ThreadUtil::Message::End;
326 m_sync = thread.eglExtensions.createSync(m_display, EGL_SYNC_FENCE_KHR, NULL)
726 EGLThread& thread = *(dynamic_cast<EGLThread*>(&t)); local
768 EGLThread& thread = *(dynamic_cast<EGLThread*>(&t)); local
1892 EGLThread& thread = *(dynamic_cast<EGLThread*>(&t)); local
1953 EGLThread& thread = *(dynamic_cast<EGLThread*>(&t)); local
1990 EGLThread& thread = *(dynamic_cast<EGLThread*>(&t)); local
    [all...]

Completed in 2244 milliseconds

<<2122232425262728