HomeSort by relevance Sort by last modified time
    Searched refs:Thread (Results 26 - 50 of 5550) sorted by null

12 3 4 5 6 7 8 91011>>

  /art/test/1930-monitor-info/src/art/
Suspension.java 20 // Suspends a thread using jvmti.
21 public native static void suspend(Thread thr);
23 // Resumes a thread using jvmti.
24 public native static void resume(Thread thr);
26 public native static boolean isSuspended(Thread thr);
28 public native static int[] suspendList(Thread... threads);
29 public native static int[] resumeList(Thread... threads);
  /art/test/1931-monitor-events/src/art/
Suspension.java 20 // Suspends a thread using jvmti.
21 public native static void suspend(Thread thr);
23 // Resumes a thread using jvmti.
24 public native static void resume(Thread thr);
26 public native static boolean isSuspended(Thread thr);
28 public native static int[] suspendList(Thread... threads);
29 public native static int[] resumeList(Thread... threads);
  /art/test/1932-monitor-events-misc/src/art/
Suspension.java 20 // Suspends a thread using jvmti.
21 public native static void suspend(Thread thr);
23 // Resumes a thread using jvmti.
24 public native static void resume(Thread thr);
26 public native static boolean isSuspended(Thread thr);
28 public native static int[] suspendList(Thread... threads);
29 public native static int[] resumeList(Thread... threads);
  /art/test/1933-monitor-current-contended/src/art/
Suspension.java 20 // Suspends a thread using jvmti.
21 public native static void suspend(Thread thr);
23 // Resumes a thread using jvmti.
24 public native static void resume(Thread thr);
26 public native static boolean isSuspended(Thread thr);
28 public native static int[] suspendList(Thread... threads);
29 public native static int[] resumeList(Thread... threads);
  /art/test/1934-jvmti-signal-thread/src/art/
Suspension.java 20 // Suspends a thread using jvmti.
21 public native static void suspend(Thread thr);
23 // Resumes a thread using jvmti.
24 public native static void resume(Thread thr);
26 public native static boolean isSuspended(Thread thr);
28 public native static int[] suspendList(Thread... threads);
29 public native static int[] resumeList(Thread... threads);
Threads.java 20 public static native void interruptThread(Thread t);
21 public static native void stopThread(Thread t, Throwable thr);
  /art/test/1935-get-set-current-frame-jit/src/art/
Suspension.java 20 // Suspends a thread using jvmti.
21 public native static void suspend(Thread thr);
23 // Resumes a thread using jvmti.
24 public native static void resume(Thread thr);
26 public native static boolean isSuspended(Thread thr);
28 public native static int[] suspendList(Thread... threads);
29 public native static int[] resumeList(Thread... threads);
  /art/test/1939-proxy-frames/src/art/
Suspension.java 20 // Suspends a thread using jvmti.
21 public native static void suspend(Thread thr);
23 // Resumes a thread using jvmti.
24 public native static void resume(Thread thr);
26 public native static boolean isSuspended(Thread thr);
28 public native static int[] suspendList(Thread... threads);
29 public native static int[] resumeList(Thread... threads);
  /art/test/1942-suspend-raw-monitor-exit/src/art/
Suspension.java 20 // Suspends a thread using jvmti.
21 public native static void suspend(Thread thr);
23 // Resumes a thread using jvmti.
24 public native static void resume(Thread thr);
26 public native static boolean isSuspended(Thread thr);
28 public native static int[] suspendList(Thread... threads);
29 public native static int[] resumeList(Thread... threads);
  /art/test/1943-suspend-raw-monitor-wait/src/art/
Suspension.java 20 // Suspends a thread using jvmti.
21 public native static void suspend(Thread thr);
23 // Resumes a thread using jvmti.
24 public native static void resume(Thread thr);
26 public native static boolean isSuspended(Thread thr);
28 public native static int[] suspendList(Thread... threads);
29 public native static int[] resumeList(Thread... threads);
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-pe/
tlssec32.d 2 Entry 9 0000.000 000000.. Thread Storage Directory \[\.tls\]
tlssec64.d 2 Entry 9 0000000000003000 00000028 Thread Storage Directory \[\.tls\]
  /external/valgrind/helgrind/tests/
tc04_free_lock.stderr.exp 2 ---Thread-Announcement------------------------------------------
4 Thread #x is the program's root thread
8 Thread #x: Exiting thread still holds 2 locks
  /external/valgrind/gdbserver_tests/
mcbreak.stdout.exp 1 pid .... Thread .... first
2 pid .... Thread .... second
3 pid .... Thread .... third
4 pid .... Thread .... fourth
5 pid .... Thread .... after next: inferior call pushed from mcbreak.stdinB.gdb
6 pid .... Thread .... called from level
8 pid .... Thread .... called from main
  /art/test/144-static-field-sigquit/src/
Main.java 20 Thread thread1 = new Thread(new SigQuit());
21 Thread thread2 = new Thread(new SynchronizedUse());
25 Thread.sleep(2000);
  /hardware/intel/common/wrs_omxil_core/utils/src/
thread.cpp 2 * thread.cpp, thread class
20 #include <thread.h>
22 Thread::Thread()
31 Thread::Thread(RunnableInterface *r)
40 Thread::~Thread()
47 int Thread::Start(void
    [all...]
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
ShutdownHookRegistrar.java 24 * <p>See {@link Runtime#addShutdownHook(Thread)}.
26 void addShutdownHook(Thread hook);
28 * Removes a shutdown hook that was previously registered via {@link #addShutdownHook(Thread)}.
30 * <p>See {@link Runtime#removeShutdownHook(Thread)}.
32 boolean removeShutdownHook(Thread hook);
  /external/compiler-rt/test/tsan/
thread_leak4.c 4 void *Thread(void *x) {
5 sleep(100); // leave the thread "running"
11 pthread_create(&t, 0, Thread, 0);
17 // CHECK-NOT: WARNING: ThreadSanitizer: thread leak
  /external/deqp/framework/delibs/decpp/
deThread.cpp 21 * \brief Thread base class.
35 * \brief Thread constructor.
37 Thread::Thread (void)
44 * \brief Destroy thread.
46 * If the thread is currently running, OS is instructed to destroy it
49 Thread::~Thread (void)
56 * \brief Set thread priority.
62 * Sets priority for the thread start(). setPriority() has no effec
    [all...]
  /external/testng/src/test/java/test/ant/
MultipleThreadTest.java 12 * Tests that more than one thread is used for running tests
17 public static Set<Thread> _threads;
21 _threads=Collections.synchronizedSet(new HashSet<Thread>());
26 _threads.add(Thread.currentThread());
31 _threads.add(Thread.currentThread());
36 _threads.add(Thread.currentThread());
41 _threads.add(Thread.currentThread());
46 _threads.add(Thread.currentThread());
51 _threads.add(Thread.currentThread());
56 _threads.add(Thread.currentThread());
    [all...]
  /art/runtime/
monitor_linux.cc 21 void Monitor::LogContentionEvent(Thread*, uint32_t, uint32_t, ArtMethod*, uint32_t) {
thread-current-inl.h 20 #include "thread.h"
30 inline Thread* Thread::Current() {
31 // We rely on Thread::Current returning null for a detached thread, so it's not obvious
37 void* thread = __get_tls()[TLS_SLOT_ART_THREAD_SELF]; local
39 void* thread = pthread_getspecific(Thread::pthread_key_self_);
41 return reinterpret_cast<Thread*>(thread);
    [all...]
  /art/test/148-multithread-gc-annotations/src/
Main.java 20 Thread annoThread = new Thread(new AnnotationThread(), "Annotation thread");
21 Thread gcThread = new Thread(new MovingGCThread(), "Moving GC thread");
  /art/test/1927-exception-event/src/art/
Exceptions.java 29 public static native void enableExceptionCatchEvent(Thread thr);
30 public static native void enableExceptionEvent(Thread thr);
31 public static native void disableExceptionCatchEvent(Thread thr);
32 public static native void disableExceptionEvent(Thread thr);
  /art/test/1928-exception-event-exception/src/art/
Exceptions.java 29 public static native void enableExceptionCatchEvent(Thread thr);
30 public static native void enableExceptionEvent(Thread thr);
31 public static native void disableExceptionCatchEvent(Thread thr);
32 public static native void disableExceptionEvent(Thread thr);

Completed in 1237 milliseconds

12 3 4 5 6 7 8 91011>>