HomeSort by relevance Sort by last modified time
    Searched refs:threadIds (Results 1 - 5 of 5) sorted by null

  /libcore/dalvik/src/main/java/dalvik/system/profiler/
SamplingProfiler.java 114 private final Map<Thread, Integer> threadIds = new HashMap<Thread, Integer>();
395 Integer threadId = threadIds.get(thread);
457 Integer old = threadIds.put(thread, threadId);
482 Integer threadId = threadIds.remove(thread);
  /packages/apps/Mms/src/com/android/mms/ui/
ConversationList.java 714 ArrayList<Long> threadIds = null;
716 threadIds = new ArrayList<Long>();
717 threadIds.add(threadId);
719 confirmDeleteThreads(threadIds, handler);
726 * @param threadIds list of threadIds to delete or null for all threads
729 public static void confirmDeleteThreads(Collection<Long> threadIds, AsyncQueryHandler handler) {
730 Conversation.startQueryHaveLockedMessages(handler, threadIds,
739 * @param threadIds the thread IDs to be deleted (pass null for all threads)
744 Collection<Long> threadIds,
    [all...]
MessageUtils.java 717 final Collection<Long> threadIds,
726 if (threadIds != null) {
729 selectionArgs = new String[threadIds.size()];
732 for (long threadId : threadIds) {
    [all...]
ComposeMessageActivity.java     [all...]
  /packages/apps/Mms/src/com/android/mms/data/
Conversation.java 757 * @param threadIds Collection of thread IDs of the conversations to be deleted
760 Collection<Long> threadIds) {
772 for (long threadId : threadIds) {
853 * @param threadIds A list of threads to search. null means all threads
857 Collection<Long> threadIds,
863 if (threadIds != null) {
867 for (long threadId : threadIds) {
    [all...]

Completed in 620 milliseconds