Home
last modified time | relevance | path

Searched refs:threads (Results 1 – 5 of 5) sorted by relevance

/dalvik/tests/051-thread/src/
DMain.java26 MyThread[] threads = new MyThread[512]; in main() local
28 threads[i] = new MyThread(); in main()
31 for (MyThread thread : threads) { in main()
34 for (MyThread thread : threads) { in main()
/dalvik/tests/078-polymorphic-virtual/
Dinfo.txt2 calless invoked 10,000,000 times each in three threads.
/dalvik/tests/033-class-init-deadlock/
Dexpected.txt4 Deadlock test interrupting threads.
/dalvik/vm/test/
DAtomicTest.cpp269 pthread_t threads[THREAD_COUNT]; in dvmTestAtomicSpeed() local
284 if (pthread_create(&threads[i], NULL, startRoutine, arg) != 0) { in dvmTestAtomicSpeed()
305 if (pthread_join(threads[i], &retval) != 0) { in dvmTestAtomicSpeed()
/dalvik/tools/dmtracedump/
DTraceDump.c187 ThreadEntry* threads; member
573 free(pKeys->threads); in freeDataKeys()
735 pKeys->threads = (ThreadEntry*) malloc(sizeof(ThreadEntry) * count); in parseThreads()
736 if (pKeys->threads == NULL) in parseThreads()
750 pKeys->threads[i].threadId = atoi(data); in parseThreads()
751 pKeys->threads[i].threadName = data + tab +1; in parseThreads()
906 qsort(pKeys->threads, pKeys->numThreads, sizeof(pKeys->threads[0]), in sortThreadList()
998 pKeys->threads[i].threadId, pKeys->threads[i].threadName); in parseKeys()