HomeSort by relevance Sort by last modified time
    Searched defs:thread (Results 451 - 475 of 534) sorted by null

<<11121314151617181920>>

  /external/google-breakpad/src/google_breakpad/processor/
minidump.h 38 // minidump_format.h. For example, each thread is represented by a
41 // MinidumpThread easily by calling its thread() method.
45 // only reads the minidump's directory. The thread list is not read until
47 // thread's stack aren't read until they're needed. This strategy avoids
154 // contains CPU context such as register states. Each thread has its
158 // thread, instead of that thread's own context. The exception thread's
197 // to the thread's stack memory. MinidumpMemoryList also gives access to
260 // MinidumpThread contains information about a thread of execution
271 const MDRawThread* thread() const { return valid_ ? &thread_ : NULL; } function in class:google_breakpad::MinidumpThread
    [all...]
  /external/google-breakpad/src/tools/linux/md2core/
minidump-2-core.cc 142 typedef struct prstatus { /* Information about thread; includes CPU reg*/
209 struct Thread {
222 std::vector<Thread> threads;
252 ParseThreadRegisters(CrashedProcess::Thread* thread,
256 thread->regs.ebx = rawregs->ebx;
257 thread->regs.ecx = rawregs->ecx;
258 thread->regs.edx = rawregs->edx;
259 thread->regs.esi = rawregs->esi;
260 thread->regs.edi = rawregs->edi
407 CrashedProcess::Thread thread; local
904 const CrashedProcess::Thread& thread = crashinfo->threads[i]; local
    [all...]
  /external/googletest/googletest/src/
gtest-port.cc 349 // Static mutexes are leaked intentionally. It is not thread-safe to try
367 // caller's responsibility to ensure that the current thread holds the
373 // Does nothing if the current thread holds the mutex. Otherwise, crashes
378 << "The current thread is not holding the mutex @" << this;
446 // Possibly yields the rest of the thread's time slice to other
526 << "Failed to join the thread with error " << ::GetLastError() << ".";
529 // Maps a thread to a set of ThreadIdToThreadLocals that have values
530 // instantiated on that thread and notifies them when the thread exits. A
535 // Registers thread_local_instance as having value on the current thread
635 HANDLE thread = ::OpenThread(SYNCHRONIZE | THREAD_QUERY_INFORMATION, local
    [all...]
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
JSR166TestCase.java 62 * them. These methods are used to clear and check for thread
69 * small amounts of computation (creating a thread, calling a few
306 * harness thread, triggering a test case failure. Only the first
321 * Triggers test case failure if any thread assertions have failed,
322 * by rethrowing, in the test harness thread, any exception recorded
325 * Triggers test case failure if interrupt status is set in the main thread.
344 if (Thread.interrupted())
345 throw new AssertionFailedError("interrupt status set in main thread");
483 * Delays, via Thread.sleep, for the given millisecond delay, but
492 Thread.sleep(millis)
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/charsetdet/
TestCharsetDetector.java     [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/charsetdet/
TestCharsetDetector.java     [all...]
  /external/libchrome/base/task/sequence_manager/
sequence_manager_impl_unittest.cc 33 #include "base/threading/thread.h"
377 // achieved with cross-thread posting.
3175 std::unique_ptr<Thread> thread = std::make_unique<Thread>("test thread"); local
3237 std::unique_ptr<Thread> thread = std::make_unique<Thread>("test thread"); local
    [all...]
  /external/oj-libjdwp/src/share/back/
eventFilter.c 55 jthread thread; member in struct:ThreadFilter
84 jthread thread; member in struct:StepFilter
193 if ( filter->u.ThreadOnly.thread != NULL ) {
194 tossGlobalRef(env, &(filter->u.ThreadOnly.thread));
223 jthread thread = filter->u.Step.thread; local
224 error = stepControl_endStep(thread);
226 tossGlobalRef(env, &(filter->u.Step.thread));
303 jthread thread ; local
328 thread = evinfo->thread
380 jthread thread; local
1262 jthread thread = requestThread(node); local
1286 jthread thread; local
    [all...]
eventHelper.c 33 * Event helper thread command commandKinds
41 * Event helper thread command singleKinds
62 jthread thread; member in struct:FrameEventCommandSingle
81 jthread thread; member in struct:ReportInvokeDoneCommand
86 jthread thread; member in struct:ReportVMInitCommand
90 jthread thread; member in struct:SuspendThreadCommand
283 (void)outStream_writeObjectRef(env, out, evinfo->thread);
290 (void)outStream_writeObjectRef(env, out, evinfo->thread);
301 (void)outStream_writeObjectRef(env, out, evinfo->thread);
318 (void)outStream_writeObjectRef(env, out, evinfo->thread);
508 jthread thread = NULL; local
769 jthread thread; local
    [all...]
util.h 233 jthread thread; member in struct:__anon34627
447 jthread thread, jmethodID method, jlocation location);
  /external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/
EventRequestManagerImpl.java 261 public synchronized void addThreadFilter(ThreadReference thread) {
262 validateMirror(thread);
267 .create((ThreadReferenceImpl)thread));
542 ThreadReferenceImpl thread; field in class:EventRequestManagerImpl.StepRequestImpl
546 StepRequestImpl(ThreadReference thread, int size, int depth) {
547 this.thread = (ThreadReferenceImpl)thread;
590 request.thread().equals(thread)) {
592 "Only one step request allowed per thread");
609 public ThreadReference thread() { method in class:EventRequestManagerImpl.StepRequestImpl
    [all...]
  /external/python/cpython3/Lib/
imaplib.py 98 'THREAD': ('SELECTED',),
852 def thread(self, threading_algorithm, charset, *search_criteria): member in class:IMAP4
853 """IMAPrev1 extension THREAD command.
855 (type, [data]) = <instance>.thread(threading_algorithm, charset, search_criteria, ...)
857 name = 'THREAD'
880 if command in ('SEARCH', 'SORT', 'THREAD'):
    [all...]
  /external/python/cpython3/Modules/
faulthandler.c 71 /* The main thread always holds this lock. It is only released when
72 faulthandler_thread() is interrupted before this thread exits, or at
75 /* released by child thread when joined */
77 } thread; variable in typeref:struct:__anon37374
202 /* Get the state of the current thread: only call this function if the current
203 thread holds the GIL. Raise an exception on error. */
211 "unable to get the current thread state");
230 are thus delivered to the thread that caused the fault. Get the Python
231 thread state of the current thread
1024 long thread; local
    [all...]
timemodule.c 357 Return the clk_id of a thread's CPU time clock.");
1293 HANDLE thread; local
    [all...]
  /external/skia/dm/
DM.cpp 147 SkThreadID thread; member in struct:Running
202 if (task.thread == thisThread) {
    [all...]
  /external/skqp/dm/
DM.cpp 145 SkThreadID thread; member in struct:Running
200 if (task.thread == thisThread) {
    [all...]
  /external/stressapptest/src/
sat.cc 66 // thread.
68 // This must be uninstalled while there is only a single thread, and of course
466 FillThread *thread = new FillThread(); local
467 thread->InitThread(i, this, os_, patternlist_, &fill_status);
471 thread->SetFillPages(pages_ / fill_threads_);
472 // The last thread finishes up all the leftover pages.
476 thread->SetFillPages(pages_ - pages_ / fill_threads_ * i);
478 fill_vector.push_back(thread);
492 logprintf(0, "Thread %d failed with status %d at %.2f seconds\n",
708 cpu_freq_test_ = false; // Flag to trigger cpu frequency thread
1192 ErrorPollThread *thread = new ErrorPollThread(); local
1210 CopyThread *thread = new CopyThread(); local
1260 FileThread *thread = new FileThread(); local
1277 NetworkListenThread *thread = new NetworkListenThread(); local
1284 NetworkThread *thread = new NetworkThread(); local
1297 CheckThread *thread = new CheckThread(); local
1309 InvertThread *thread = new InvertThread(); local
1323 DiskThread *thread = new DiskThread(blocktables_[i]); local
1364 CpuStressThread *thread = new CpuStressThread(); local
1448 CpuCacheCoherencyThread *thread = local
1466 CpuFreqThread *thread = new CpuFreqThread(CpuCount(), cpu_freq_threshold_, local
1527 CheckThread *thread = new CheckThread(); local
    [all...]
  /external/v8/src/base/platform/
platform-posix.cc 88 // 0 is never a valid thread id.
682 // POSIX thread support.
685 class Thread::PlatformData {
688 pthread_t thread_; // Thread handle for pthread.
689 // Synchronizes thread creation
693 Thread::Thread(const Options& options)
704 Thread::~Thread() {
713 STATIC_ASSERT(Thread::kMaxThreadNameLength <= PTHREAD_MAX_NAMELEN_NP)
736 Thread* thread = reinterpret_cast<Thread*>(arg); local
    [all...]
  /external/v8/src/wasm/
wasm-debug.cc 104 WasmInterpreter::Thread* thread = interpreter_.GetThread(0); local
105 uint32_t activation_id = thread->StartActivation();
112 WasmInterpreter::Thread* thread = interpreter_.GetThread(0); local
113 thread->FinishActivation(activation_id);
119 WasmInterpreter::Thread* thread, Address frame_pointer) {
123 uint32_t frame_base = thread->ActivationFrameBase(activation_id);
125 ? thread->GetFrameCount(
198 WasmInterpreter::Thread* thread = interpreter_.GetThread(0); local
343 WasmInterpreter::Thread* thread = interpreter()->GetThread(0); local
354 WasmInterpreter::Thread* thread = interpreter()->GetThread(0); local
371 WasmInterpreter::Thread* thread = interpreter()->GetThread(0); local
389 WasmInterpreter::Thread* thread = interpreter()->GetThread(0); local
    [all...]
  /external/webrtc/webrtc/p2p/base/
port.h 31 #include "webrtc/base/thread.h"
118 Port(rtc::Thread* thread,
124 Port(rtc::Thread* thread,
148 // The thread on which this port performs its I/O.
149 rtc::Thread* thread() { return thread_; } function in class:cricket::Port
360 rtc::Thread* thread_;
  /external/webrtc/webrtc/video/
video_quality_test.cc 77 // Create thread pool for CPU-expensive PSNR/SSIM calculations.
97 rtc::PlatformThread* thread = local
99 thread->Start();
100 comparison_thread_pool_.push_back(thread);
105 for (rtc::PlatformThread* thread : comparison_thread_pool_) {
106 thread->Stop();
107 delete thread;
254 // Signal stats polling thread if that is still waiting and stop it now,
363 // Set event again to make sure main thread is also signaled, then we're
421 // for this thread to be done. frames_processed_ might still be lower i
    [all...]
  /cts/tests/app/src/android/app/cts/
ServiceTest.java 154 private Thread mOnServiceConnectedThread;
166 public Thread getOnServiceConnectedThread() {
172 mOnServiceConnectedThread = Thread.currentThread();
228 private Thread mOnServiceConnectedThread;
358 public Thread getOnServiceConnectedThread() {
365 mOnServiceConnectedThread = Thread.currentThread();
476 Thread.sleep(DELAY);
478 Thread.currentThread().interrupt();
502 Thread.sleep(DELAY);
504 Thread.currentThread().interrupt()
669 HandlerThread thread = new HandlerThread("ServiceTestBackgroundThread"); local
    [all...]
  /external/guice/extensions/persist/lib/
hibernate-entitymanager.jar 
  /art/runtime/gc/allocator/
rosalloc.cc 34 #include "thread-current-inl.h"
130 void* RosAlloc::AllocPages(Thread* self, size_t num_pages, uint8_t page_map_type) {
310 size_t RosAlloc::FreePages(Thread* self, void* ptr, bool already_zero) {
462 void* RosAlloc::AllocLargeObject(Thread* self, size_t size, size_t* bytes_allocated,
499 size_t RosAlloc::FreeInternal(Thread* self, void* ptr) {
543 size_t RosAlloc::Free(Thread* self, void* ptr) {
548 RosAlloc::Run* RosAlloc::AllocRun(Thread* self, size_t idx) {
562 // Take ownership of the cache lines if we are likely to be thread local run.
582 RosAlloc::Run* RosAlloc::RefillRun(Thread* self, size_t idx) {
598 inline void* RosAlloc::AllocFromCurrentRunUnlocked(Thread* self, size_t idx)
1888 Thread* thread = *it; local
    [all...]
  /art/runtime/gc/collector/
mark_sweep.cc 46 #include "thread-current-inl.h"
79 // If true, revoke the rosalloc thread-local buffers at the
85 WriterMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);
138 ReaderMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);
148 Thread* self = Thread::Current();
178 void MarkSweep::ProcessReferences(Thread* self) {
189 Thread* self = Thread::Current();
204 // Need to revoke all the thread local allocation stacks since we just swapped the allocatio
1171 mark_sweep_->GetHeap()->RevokeRosAllocThreadLocalBuffers(thread); variable
    [all...]

Completed in 1933 milliseconds

<<11121314151617181920>>