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

/frameworks/base/core/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.java102 long threadId = entry.getThreadId();
103 HashSet<Uri> thread = mThreads.get(threadId);
106 mThreads.put(threadId, thread);
221 private void purgeByThreadId(long threadId) { argument
223 Log.v(TAG, "Purge cache in thread: " + threadId);
226 HashSet<Uri> thread = mThreads.remove(threadId);
/frameworks/base/core/java/android/ddm/
H A DDdmHandleThread.java117 * This is done by threadId, which isn't great since those are
120 * However, we're using the short threadId in THST messages, so we
126 int threadId;
128 threadId = in.getInt();
130 //Log.d("ddm-thread", "Stack list request " + threadId);
132 StackTraceElement[] trace = DdmVmInternal.getStackTraceById(threadId);
136 return createStackChunk(trace, threadId);
143 * We include the threadId in the response so the other side doesn't have
146 private Chunk createStackChunk(StackTraceElement[] trace, int threadId) { argument
163 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/base/libs/utils/
H A DThreads.cpp112 android_thread_id_t *threadId)
147 if (threadId != NULL) {
148 *threadId = (android_thread_id_t)thread; // XXX: this is not portable
228 android_thread_id_t *threadId)
230 return doCreateThread( fn, userData, threadId);
263 android_thread_id_t *threadId)
266 threadPriority, threadStackSize, threadId);
107 androidCreateRawThreadEtc(android_thread_func_t entryFunction, void *userData, const char* threadName, int32_t threadPriority, size_t threadStackSize, android_thread_id_t *threadId) argument
258 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.cpp1112 android_thread_id_t* threadId)
1124 threadName, threadPriority, threadStackSize, threadId);
1106 javaCreateThreadEtc( 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/java/android/provider/
H A DTelephony.java231 * @param threadId the thread_id of the message
236 Long date, boolean read, boolean deliveryReport, long threadId) {
249 if (threadId != -1L) {
250 values.put(THREAD_ID, threadId);
454 boolean deliveryReport, long threadId) {
456 subject, date, true, deliveryReport, threadId);
234 addMessageToUri(ContentResolver resolver, Uri uri, String address, String body, String subject, Long date, boolean read, boolean deliveryReport, long threadId) argument
452 addMessage(ContentResolver resolver, String address, String body, String subject, Long date, boolean deliveryReport, long threadId) argument

Completed in 272 milliseconds