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

/frameworks/opt/mms/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/support/volley/src/com/android/volley/
H A DVolleyLog.java105 public synchronized void add(String name, long threadId) { argument
110 mMarkers.add(new Marker(name, threadId, SystemClock.elapsedRealtime()));
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityInteractionClient.java120 final long threadId = Thread.currentThread().getId();
121 return getInstanceForThread(threadId);
130 * @return The client for a given <code>threadId</code>.
132 public static AccessibilityInteractionClient getInstanceForThread(long threadId) { argument
134 AccessibilityInteractionClient client = sClients.get(threadId);
137 sClients.put(threadId, client);
/frameworks/native/libs/utils/
H A DThreads.cpp141 android_thread_id_t *threadId)
185 if (threadId != NULL) {
186 *threadId = (android_thread_id_t)thread; // XXX: this is not portable
273 android_thread_id_t *threadId)
275 return doCreateThread( fn, userData, threadId);
308 android_thread_id_t *threadId)
311 threadPriority, threadStackSize, threadId);
136 androidCreateRawThreadEtc(android_thread_func_t entryFunction, void *userData, const char* threadName, int32_t threadPriority, size_t threadStackSize, android_thread_id_t *threadId) argument
303 androidCreateThreadEtc(android_thread_func_t entryFunction, void *userData, const char* threadName, int32_t threadPriority, size_t threadStackSize, android_thread_id_t *threadId) argument
/frameworks/base/core/jni/
H A DAndroidRuntime.cpp1021 android_thread_id_t* threadId)
1033 threadName, threadPriority, threadStackSize, threadId);
1045 android_thread_id_t threadId = 0; local
1047 ANDROID_PRIORITY_DEFAULT, 0, &threadId);
1048 return threadId;
1015 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.java237 * @param threadId the thread_id of the message
242 Long date, boolean read, boolean deliveryReport, long threadId) {
255 if (threadId != -1L) {
256 values.put(THREAD_ID, threadId);
460 boolean deliveryReport, long threadId) {
462 subject, date, true, deliveryReport, threadId);
240 addMessageToUri(ContentResolver resolver, Uri uri, String address, String body, String subject, Long date, boolean read, boolean deliveryReport, long threadId) argument
458 addMessage(ContentResolver resolver, String address, String body, String subject, Long date, boolean deliveryReport, long threadId) argument

Completed in 4631 milliseconds