OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:threadIds
(Results
1 - 4
of
4
) 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/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
...]
/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
...]
ComposeMessageActivity.java
[
all
...]
Completed in 4084 milliseconds