Home | History | Annotate | Download | only in mms

Lines Matching defs:threads

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,
72 Threads.HAS_ATTACHMENT
168 values.put(Sms.THREAD_ID, Threads.getOrCreateThreadId(
195 // some threads built up. Then check to make sure all the threads are there
206 assertTrue("The threads appeared to have been wiped out",
209 Log.v(TAG, "query for threads failed with exception: " + e);
210 fail("query for threads failed with exception: " + e);
239 // Start N simultaneous threads generating messages and running the recycler
241 ArrayList<Thread> threads = new ArrayList<Thread>(THREAD_COUNT);
243 threads.add(i, new Thread(mRecyclerBang));
244 threads.get(i).start();
249 // Wait for the threads to finish
251 threads.get(i).join();