HomeSort by relevance Sort by last modified time
    Searched full:threads (Results 26 - 50 of 2617) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/dbus/test/name-test/
.gitignore 8 test-threads-init
  /external/linux-tools-perf/python/
twatch.py 20 threads = perf.thread_map()
25 evsel.open(cpus = cpus, threads = threads);
26 evlist = perf.evlist(cpus, threads)
  /external/linux-tools-perf/util/
values.h 7 int threads; member in struct:perf_read_values
  /external/valgrind/main/drd/tests/
linuxthreads_det.stderr.exp-linuxthreads 3 the newer NPTL (Native POSIX Threads Library). Please try to rerun DRD
pth_barrier_reinit.c 2 * threads standard. See also http://www.opengroup.org/onlinepubs/000095399/functions/pthread_barrier_init.html.
pth_detached.c 1 /* Test whether detached threads are handled properly. */
53 // Create count1 detached threads by setting the "detached" property via
60 // Create count2 detached threads by letting the threads detach themselves.
71 // Wait until all detached threads have written their output to stdout.
  /external/valgrind/main/none/tests/
thread-exits.stdout.exp 2 creating threads...
  /external/bluetooth/glib/docs/reference/glib/tmpl/
thread_pools.sgml 5 pools of threads to execute work concurrently
12 high. In such cases reusing already started threads seems like a good
19 advantage is, that the threads can be shared between the different
34 To get the current number of running threads you call
37 maximal number of threads for a thread pool, you use
42 Finally you can control the number of unused threads, that are kept
46 g_thread_pool_set_max_unused_threads(). All currently unused threads
72 @func: the function to execute in the threads of this pool
73 @user_data: the user data for the threads of this pool
74 @exclusive: are all threads exclusive to this poo
    [all...]
  /external/bluetooth/glib/glib/
gthreadpool.h 54 * means, that the threads shouldn't be shared and that they will be
64 * (when the maximal number of threads is reached for that pool) or now
71 /* Set the number of threads, which can run concurrently for that pool, -1
79 /* Get the number of threads assigned to that pool. This number doesn't
80 * necessarily represent the number of working threads in that pool */
88 * but after all threads in the pool are ready processing items. immediate
89 * does however not mean, that threads are killed. */
94 /* Set the maximal number of unused threads before threads will be stopped by
100 /* Stop all currently unused threads, but leave the limit untouched *
    [all...]
  /external/valgrind/main/memcheck/tests/
err_disable4.c 2 /* Check that recycling thread slots doesn't cause new threads to
6 1. Create N threads, disable error reporting in them, and get them
8 were vacated by threads with error reporting disabled. There
9 should be N complaints about threads exiting with errors
12 2. Create N new threads and get them to wait at a barrier.
17 4. Join with the N threads.
71 fprintf(stderr, "\n-------- Letting %d threads exit "
82 // create N threads to do child_fn_1 ...
100 fprintf(stderr, "\n-------- Letting %d threads make an error "
105 // create N threads to do child_fn_2 ..
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/xnet/provider/jsse/
FileClientSessionCacheTest.java 35 Thread[] threads = new Thread[10]; local
37 for (int i = 0; i < threads.length; i++) {
39 threads[i] = new Thread() {
48 for (Thread thread : threads) {
51 for (Thread thread : threads) {
  /external/clang/www/timing-data/2009-06-26/
sketch.txt 25 'threads':"8",
38 'threads':"8",
51 'threads':"8",
64 'threads':"8",
77 'threads':"8",
90 'threads':"8",
103 'threads':"8",
116 'threads':"8",
129 'threads':"8",
142 'threads':"8"
    [all...]
176.gcc.txt 25 'threads':"8",
38 'threads':"8",
51 'threads':"8",
64 'threads':"8",
77 'threads':"8",
90 'threads':"8",
103 'threads':"8",
116 'threads':"8",
129 'threads':"8",
142 'threads':"8"
    [all...]
  /external/bluetooth/glib/tests/
thread-test.c 109 #define THREADS 10
194 GThread *threads[THREADS]; local
199 for (i = 0; i < THREADS; i++)
201 threads[i] = g_thread_create (test_g_static_private_thread,
206 while (test_g_static_private_ready != THREADS)
215 for (i = 0; i < THREADS; i++)
216 g_assert (GPOINTER_TO_INT (g_thread_join (threads[i])) == i * 3);
284 GThread *threads[THREADS]; local
347 GThread *threads[G_ONCE_THREADS]; local
    [all...]
  /packages/apps/Mms/tests/src/com/android/mms/
RecyclerTest.java 26 import android.provider.Telephony.Threads;
43 * Bang on the recycler and test it getting called simultaneously from two different threads
51 * Bang on the recycler and test it getting called simultaneously from two different threads
68 Threads.CONTENT_URI.buildUpon().appendQueryParameter("simple", "true").build();
70 Threads._ID, Threads.DATE, Threads.MESSAGE_COUNT, Threads.RECIPIENT_IDS,
71 Threads.SNIPPET, Threads.SNIPPET_CHARSET, Threads.READ, Threads.ERROR
241 ArrayList<Thread> threads = new ArrayList<Thread>(THREAD_COUNT); local
    [all...]
  /external/chromium/chrome/browser/resources/gpu_internals/
timeline_model.js 9 * tokens are converted into a hierarchy of processes, threads,
92 this.threads = {};
97 if (!this.threads[tid])
98 this.threads[tid] = new TimelineThread(this, tid);
99 return this.threads[tid];
127 * the TimelineModel as processes, threads, and slices.
205 var threads = this.getAllThreads();
206 for (var tI = 0; tI < threads.length; tI++) {
207 var thread = threads[tI];
218 var threads = this.getAllThreads()
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/thread/amigaos/
SDL_thread.c 32 /* The array of threads currently active in the application
51 clean up threads here. If any threads are still running after this call,
62 SDL_Thread **threads; local
65 If the very first threads are created simultaneously, then
77 /* Expand the list of threads, if necessary */
83 threads=(SDL_Thread **)SDL_malloc((SDL_maxthreads+ARRAY_CHUNKSIZE)*
84 (sizeof *threads));
85 if ( threads == NULL ) {
89 SDL_memcpy(threads, SDL_Threads, SDL_numthreads*(sizeof *threads))
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/i686-linux/bits/
gthr.h 0 /* Threads compatibility routines for libgcc2. */
33 /* If this file is compiled with threads support, it must
35 to indicate that threads support is present. Also it has define
40 The threads interface must define the following types:
46 The threads interface must define the following macros:
63 The threads interface must define the following static functions:
83 The following are supported in POSIX threads only. They are required to
134 Currently supported threads packages are
135 TPF threads with -D__tpf__
136 POSIX/Unix98 threads with -D_PTHREAD
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/i686-linux/bits/
gthr.h 0 /* Threads compatibility routines for libgcc2. */
33 /* If this file is compiled with threads support, it must
35 to indicate that threads support is present. Also it has define
40 The threads interface must define the following types:
46 The threads interface must define the following macros:
63 The threads interface must define the following static functions:
83 The following are supported in POSIX threads only. They are required to
134 Currently supported threads packages are
135 TPF threads with -D__tpf__
136 POSIX/Unix98 threads with -D_PTHREAD
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/x86_64-linux/bits/
gthr.h 0 /* Threads compatibility routines for libgcc2. */
33 /* If this file is compiled with threads support, it must
35 to indicate that threads support is present. Also it has define
40 The threads interface must define the following types:
46 The threads interface must define the following macros:
63 The threads interface must define the following static functions:
83 The following are supported in POSIX threads only. They are required to
134 Currently supported threads packages are
135 TPF threads with -D__tpf__
136 POSIX/Unix98 threads with -D_PTHREAD
    [all...]
  /prebuilts/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/libs/armeabi/include/bits/
gthr.h 0 /* Threads compatibility routines for libgcc2. */
33 /* If this file is compiled with threads support, it must
35 to indicate that threads support is present. Also it has define
40 The threads interface must define the following types:
46 The threads interface must define the following macros:
63 The threads interface must define the following static functions:
83 The following are supported in POSIX threads only. They are required to
134 Currently supported threads packages are
135 TPF threads with -D__tpf__
136 POSIX/Unix98 threads with -D_PTHREAD
    [all...]
  /prebuilts/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/libs/armeabi-v7a/include/bits/
gthr.h 0 /* Threads compatibility routines for libgcc2. */
33 /* If this file is compiled with threads support, it must
35 to indicate that threads support is present. Also it has define
40 The threads interface must define the following types:
46 The threads interface must define the following macros:
63 The threads interface must define the following static functions:
83 The following are supported in POSIX threads only. They are required to
134 Currently supported threads packages are
135 TPF threads with -D__tpf__
136 POSIX/Unix98 threads with -D_PTHREAD
    [all...]
  /prebuilts/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/libs/armeabi/include/bits/
gthr.h 0 /* Threads compatibility routines for libgcc2. */
33 /* If this file is compiled with threads support, it must
35 to indicate that threads support is present. Also it has define
40 The threads interface must define the following types:
46 The threads interface must define the following macros:
63 The threads interface must define the following static functions:
83 The following are supported in POSIX threads only. They are required to
134 Currently supported threads packages are
135 TPF threads with -D__tpf__
136 POSIX/Unix98 threads with -D_PTHREAD
    [all...]
  /prebuilts/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/libs/armeabi-v7a/include/bits/
gthr.h 0 /* Threads compatibility routines for libgcc2. */
33 /* If this file is compiled with threads support, it must
35 to indicate that threads support is present. Also it has define
40 The threads interface must define the following types:
46 The threads interface must define the following macros:
63 The threads interface must define the following static functions:
83 The following are supported in POSIX threads only. They are required to
134 Currently supported threads packages are
135 TPF threads with -D__tpf__
136 POSIX/Unix98 threads with -D_PTHREAD
    [all...]
  /prebuilts/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/libs/x86/include/bits/
gthr.h 0 /* Threads compatibility routines for libgcc2. */
33 /* If this file is compiled with threads support, it must
35 to indicate that threads support is present. Also it has define
40 The threads interface must define the following types:
46 The threads interface must define the following macros:
63 The threads interface must define the following static functions:
83 The following are supported in POSIX threads only. They are required to
134 Currently supported threads packages are
135 TPF threads with -D__tpf__
136 POSIX/Unix98 threads with -D_PTHREAD
    [all...]

Completed in 536 milliseconds

12 3 4 5 6 7 8 91011>>