Searched defs:threadId (Results 1 - 8 of 8) sorted by relevance

/frameworks/opt/telephony/src/java/com/google/android/mms/util/
H A DPduCacheEntry.java27 public PduCacheEntry(GenericPdu pdu, int msgBox, long threadId) { argument
30 mThreadId = threadId;
H A DPduCache.java103 long threadId = entry.getThreadId();
104 HashSet<Uri> thread = mThreads.get(threadId);
107 mThreads.put(threadId, thread);
238 private void purgeByThreadId(long threadId) { argument
240 Log.v(TAG, "Purge cache in thread: " + threadId);
243 HashSet<Uri> thread = mThreads.remove(threadId);
/frameworks/base/core/java/android/ddm/
H A DDdmHandleThread.java116 * This is done by threadId, which isn't great since those are
119 * However, we're using the short threadId in THST messages, so we
125 int threadId;
127 threadId = in.getInt();
129 //Log.d("ddm-thread", "Stack list request " + threadId);
131 StackTraceElement[] trace = DdmVmInternal.getStackTraceById(threadId);
135 return createStackChunk(trace, threadId);
142 * We include the threadId in the response so the other side doesn't have
145 private Chunk createStackChunk(StackTraceElement[] trace, int threadId) { argument
162 out.putInt(threadId);
[all...]
/frameworks/base/tools/preload/
H A DProc.java86 * @param threadId thread the operation started in
90 void startOperation(int threadId, LoadedClass loadedClass, long time, argument
96 LinkedList<Operation> stack = stacks.get(threadId);
99 stacks.put(threadId, stack);
112 * @param threadId thread the operation ended in
116 Operation endOperation(int threadId, String className, argument
118 LinkedList<Operation> stack = stacks.get(threadId);
/frameworks/volley/src/com/android/volley/
H A DVolleyLog.java125 public synchronized void add(String name, long threadId) { argument
130 mMarkers.add(new Marker(name, threadId, SystemClock.elapsedRealtime()));
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityInteractionClient.java114 final long threadId = Thread.currentThread().getId();
115 return getInstanceForThread(threadId);
124 * @return The client for a given <code>threadId</code>.
126 public static AccessibilityInteractionClient getInstanceForThread(long threadId) { argument
128 AccessibilityInteractionClient client = sClients.get(threadId);
131 sClients.put(threadId, client);
/frameworks/base/core/jni/
H A DAndroidRuntime.cpp1172 android_thread_id_t* threadId)
1185 threadName, threadPriority, threadStackSize, threadId);
1197 android_thread_id_t threadId = 0; local
1199 ANDROID_PRIORITY_DEFAULT, 0, &threadId);
1200 return threadId;
1166 javaCreateThreadEtc( android_thread_func_t entryFunction, void* userData, const char* threadName, int32_t threadPriority, size_t threadStackSize, android_thread_id_t* threadId) argument
/frameworks/opt/telephony/src/java/android/provider/
H A DTelephony.java378 * @param threadId the thread_id of the message
384 Long date, boolean read, boolean deliveryReport, long threadId) {
387 date, read, deliveryReport, threadId);
401 * @param threadId the thread_id of the message
408 Long date, boolean read, boolean deliveryReport, long threadId) {
423 if (threadId != -1L) {
424 values.put(THREAD_ID, threadId);
693 boolean deliveryReport, long threadId) {
696 true, deliveryReport, threadId);
714 boolean deliveryReport, long threadId) {
382 addMessageToUri(ContentResolver resolver, Uri uri, String address, String body, String subject, Long date, boolean read, boolean deliveryReport, long threadId) argument
406 addMessageToUri(int subId, ContentResolver resolver, Uri uri, String address, String body, String subject, Long date, boolean read, boolean deliveryReport, long threadId) argument
691 addMessage(ContentResolver resolver, String address, String body, String subject, Long date, boolean deliveryReport, long threadId) argument
712 addMessage(int subId, ContentResolver resolver, String address, String body, String subject, Long date, boolean deliveryReport, long threadId) argument
[all...]

Completed in 152 milliseconds