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

1 2 34 5 6 7 8 91011>>

  /prebuilts/ndk/android-ndk-r7/platforms/android-14/arch-arm/usr/include/linux/
percpu_counter.h 17 #include <linux/threads.h>
  /prebuilts/ndk/android-ndk-r7/platforms/android-14/arch-x86/usr/include/linux/
percpu_counter.h 17 #include <linux/threads.h>
  /prebuilts/ndk/android-ndk-r7/platforms/android-3/arch-arm/usr/include/linux/
percpu_counter.h 17 #include <linux/threads.h>
  /prebuilts/ndk/android-ndk-r7/platforms/android-3/arch-x86/usr/include/linux/
percpu_counter.h 17 #include <linux/threads.h>
  /prebuilts/ndk/android-ndk-r7/platforms/android-4/arch-arm/usr/include/linux/
percpu_counter.h 17 #include <linux/threads.h>
  /prebuilts/ndk/android-ndk-r7/platforms/android-4/arch-x86/usr/include/linux/
percpu_counter.h 17 #include <linux/threads.h>
  /prebuilts/ndk/android-ndk-r7/platforms/android-5/arch-arm/usr/include/linux/
percpu_counter.h 17 #include <linux/threads.h>
  /prebuilts/ndk/android-ndk-r7/platforms/android-5/arch-x86/usr/include/linux/
percpu_counter.h 17 #include <linux/threads.h>
  /prebuilts/ndk/android-ndk-r7/platforms/android-8/arch-arm/usr/include/linux/
percpu_counter.h 17 #include <linux/threads.h>
  /prebuilts/ndk/android-ndk-r7/platforms/android-8/arch-x86/usr/include/linux/
percpu_counter.h 17 #include <linux/threads.h>
  /prebuilts/ndk/android-ndk-r7/platforms/android-9/arch-arm/usr/include/linux/
percpu_counter.h 17 #include <linux/threads.h>
  /prebuilts/ndk/android-ndk-r7/platforms/android-9/arch-x86/usr/include/linux/
percpu_counter.h 17 #include <linux/threads.h>
  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
MmsSmsDatabaseHelper.java 40 import android.provider.Telephony.Threads;
54 " UPDATE threads SET read = " +
58 " AND " + Sms.THREAD_ID + " = threads._id)" +
62 " WHERE threads._id = new." + Sms.THREAD_ID + "; ";
65 " UPDATE threads SET message_count = " +
66 " (SELECT COUNT(sms._id) FROM sms LEFT JOIN threads " +
67 " ON threads._id = " + Sms.THREAD_ID +
70 " (SELECT COUNT(pdu._id) FROM pdu LEFT JOIN threads " +
71 " ON threads._id = " + Mms.THREAD_ID +
75 " WHERE threads._id = new.thread_id; "
    [all...]
  /external/guava/guava/src/com/google/common/util/concurrent/
ThreadFactoryBuilder.java 30 * <li> whether threads should be marked as {@linkplain Thread#setDaemon daemon}
31 * threads
58 * Sets the naming format to use when naming threads ({@link Thread#setName})
74 * Sets daemon or not for new threads created with this ThreadFactory.
76 * @param daemon whether or not new Threads created with this ThreadFactory
77 * will be daemon threads
86 * Sets the priority for new threads created with this ThreadFactory.
88 * @param priority the priority for new Threads created with this
104 * Sets the {@link UncaughtExceptionHandler} for new threads created with this
108 * Threads created with this ThreadFactor
    [all...]
  /external/valgrind/main/gdbserver_tests/
mcinfcallWSRU.vgtest 1 # test inferior calls when some threads are in Runnable or Yielding mode,
2 # some threads are in WaitSys.
4 # We would like to have two threads running (i.e. -S-SB-B-)
  /frameworks/base/core/java/android/database/sqlite/
SQLiteMisuseException.java 21 * threads in the application use it at the same time.
23 * from multiple threads, like so:
27 * FIX this by NEVER sharing the same SQLiteStatement object between threads.
  /libcore/luni/src/main/java/java/util/concurrent/
ThreadPoolExecutor.java 14 * one of possibly several pooled threads, normally configured
21 * including threads, consumed when executing a collection of tasks.
48 * than corePoolSize threads are running, a new thread is created to
49 * handle the request, even if other worker threads are idle. If
51 * threads running, a new thread will be created only if the queue is
62 * <dd> By default, even core threads are initially created and
65 * #prestartAllCoreThreads}. You probably want to prestart threads if
68 * <dt>Creating new threads</dt>
70 * <dd>New threads are created using a {@link ThreadFactory}. If not
72 * used, that creates threads to all be in the same {@lin
    [all...]
  /external/webrtc/src/system_wrappers/interface/
event_wrapper.h 32 // Releases threads who are calling Wait() and has started waiting. Please
44 // by a Set() call depending on if other threads are waiting and if so on
46 // preventing more threads from being released. If multiple threads
48 // be released. It is possible that multiple (random) threads are released
  /external/qemu/distrib/sdl-1.2.12/src/thread/
SDL_thread.c 32 /* The array of threads currently active in the application
55 clean up threads here. If any threads are still running after this call,
73 If the very first threads are created simultaneously, then
85 /* Expand the list of threads, if necessary */
91 SDL_Thread **threads; local
92 threads = (SDL_Thread **)SDL_realloc(SDL_Threads,
93 (SDL_maxthreads+ARRAY_CHUNKSIZE)*(sizeof *threads));
94 if ( threads == NULL ) {
99 SDL_Threads = threads;
    [all...]
  /external/oprofile/module/x86/
cpu_type.c 25 * p4_threads - determines the number of logical processor threads in a die
27 * returns number of threads in p4 die (1 for non-HT processors)
35 /* This it a Pentium 4 with HT, find number of threads */
79 int enabled, threads, i;
85 threads = p4_threads();
86 if (threads == 1) return 0;
90 while (i < threads) {
  /external/llvm/examples/ParallelJIT/
ParallelJIT.cpp 13 // separate threads. It requires the pthreads library.
14 // The three threads are created and then block waiting on a condition variable.
15 // Once all threads are blocked on the conditional variable, the main thread
16 // wakes them up. This complicated work is performed so that all three threads
148 // All threads will stop here until another thread calls releaseThreads
159 // There are enough threads blocked that we can release all of them
160 std::cout << "Unblocking threads from block()" << std::endl;
175 // If there are num or more threads blocked, it will signal them all
176 // Otherwise, this thread blocks until there are enough OTHER threads
184 std::cout << "Unblocking threads from releaseThreads()" << std::endl
    [all...]
  /system/core/toolbox/
schedtop.c 46 struct thread_table threads; variable in typeref:struct:thread_table
103 info = get_item(&threads);
152 commit_item(&threads);
180 for (j = 0; j < threads.active; j++)
181 if (tid == threads.data[j].tid)
183 if (j == threads.active)
185 else if (!(flags & FLAG_HIDE_IDLE) || threads.data[j].run_count - last_threads.data[i].run_count)
187 NS_TO_S_D(threads.data[j].exec_time - last_threads.data[i].exec_time),
188 NS_TO_S_D(threads.data[j].delay_time - last_threads.data[i].delay_time),
189 threads.data[j].run_count - last_threads.data[i].run_count
    [all...]
  /external/bluetooth/glib/gobject/tests/
threadtests.c 68 g_thread_yield(); // let concurrent threads corrupt the unsafe_call_counter state
120 /* first, syncronize with other threads,
140 GThread *threads[3] = { NULL, }; local
141 /* pause newly created threads */
143 /* create threads */
144 threads[0] = g_thread_create (tester_init_thread, (gpointer) my_tester0_get_type(), TRUE, NULL);
145 threads[1] = g_thread_create (tester_init_thread, (gpointer) my_tester1_get_type(), TRUE, NULL);
146 threads[2] = g_thread_create (tester_init_thread, (gpointer) my_tester2_get_type(), TRUE, NULL);
147 /* execute threads */
153 g_usleep (50 * 1000); /* wait for threads to complete *
    [all...]
  /external/linux-tools-perf/util/
values.c 13 die("failed to allocate read_values threads arrays");
14 values->threads = 0;
33 for (i = 0; i < values->threads; i++)
53 die("failed to enlarge read_values threads arrays");
61 for (i = 0; i < values->threads; i++)
65 if (values->threads == values->threads_max)
68 i = values->threads++;
90 for (i = 0; i < values->threads; i++) {
143 for (i = 0; i < values->threads; i++) {
164 for (i = 0; i < values->threads; i++)
    [all...]
  /external/v8/test/cctest/
test-lockers.cc 192 static void StartJoinAndDeleteThreads(const i::List<JoinableThread*>& threads) {
193 for (int i = 0; i < threads.length(); i++) {
194 threads[i]->Start();
196 for (int i = 0; i < threads.length(); i++) {
197 threads[i]->Join();
199 for (int i = 0; i < threads.length(); i++) {
200 delete threads[i];
205 // Run many threads all locking on the same isolate
212 i::List<JoinableThread*> threads(kNThreads);
215 threads.Add(new IsolateLockingThreadWithLocalContext(isolate))
    [all...]

Completed in 737 milliseconds

1 2 34 5 6 7 8 91011>>