HomeSort by relevance Sort by last modified time
    Searched defs:threadId (Results 1 - 25 of 44) sorted by null

1 2

  /dalvik/vm/alloc/
Visit.cpp 55 u4 threadId, RootType type, void *arg)
61 (*visitor)(entry, threadId, type, arg);
69 u4 threadId, RootType type, void *arg)
75 (*visitor)(*it, threadId, type, arg);
87 u4 threadId = thread->threadId;
111 (*visitor)(&fp[i], threadId, ROOT_JAVA_FRAME, arg);
145 (*visitor)(&fp[i], threadId, ROOT_JAVA_FRAME, arg);
164 u4 threadId;
168 threadId = thread->threadId
    [all...]
  /dalvik/vm/native/
org_apache_harmony_dalvik_ddmc_DdmVmInternal.cpp 88 * public static StackTraceElement[] getStackTraceById(int threadId)
91 * NULL on failure, e.g. if the threadId couldn't be found.
97 u4 threadId = args[0];
100 trace = dvmDdmGetStackTraceById(threadId);
java_lang_VMThread.cpp 171 int threadId = -1;
177 threadId = thread->threadId;
180 dvmDdmSendThreadNameChange(threadId, nameStr);
182 //LOGI("UPDATE: threadid=%d now '%s'", threadId, str);
  /external/webrtc/src/system_wrappers/source/
trace_linux.cc 53 WebRtc_UWord64 threadId = (WebRtc_UWord64)pthread_self();
54 sprintf(traceMessage, "%10llu; ", threadId);
  /frameworks/base/core/java/android/ddm/
DdmHandleThread.java 116 * 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) {
162 out.putInt(threadId);
    [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
NoConfirmationSendService.java 70 // Using invalid threadId 0 here. When the message is inserted into the db, the
71 // provider looks up the threadId based on the recipient(s).
72 long threadId = 0;
74 message, threadId);
79 smsMessageSender.sendMessage(threadId);
81 Log.e(TAG, "Failed to send SMS message, threadId=" + threadId, e);
  /dalvik/vm/jdwp/
JdwpEvent.h 40 ObjectId threadId;
71 ObjectId threadId;
JdwpEvent.cpp 106 ObjectId threadId; /* ThreadOnly */
208 dvmDbgConfigureStep(pMod->step.threadId, size, depth);
266 dvmDbgUnconfigureStep(pMod->step.threadId);
476 if (pMod->threadOnly.threadId != basket->threadId)
512 if (pMod->step.threadId != basket->threadId)
649 * Call this with a threadId of zero if you just want to wait for the
655 void dvmJdwpSetWaitForEventThread(JdwpState* state, ObjectId threadId)
668 state->eventThreadId, threadId);
    [all...]
  /packages/apps/Mms/tests/src/com/android/mms/
InterceptSendSms.java 136 final long threadId = intent.getLongExtra(WorkingMessage.EXTRA_SMS_THREAD_ID, 0);
140 assertTrue(threadId > 0);
RecyclerTest.java 161 Long threadId = 0L;
167 if (((threadId == null) || (threadId == 0)) && (address != null)) {
177 threadId = values.getAsLong(Sms.THREAD_ID);
178 Recycler.getSmsRecycler().deleteOldMessagesByThreadId(context, threadId);
  /dalvik/vm/
AllocTracker.cpp 55 u2 threadId; /* simple thread ID; could be recycled */
209 pRec->threadId = self->threadId;
239 (2b) threadId
405 set2BE(&ptr[4], pRec->threadId);
621 pRec->threadId, pRec->size, pRec->clazz->descriptor);
Thread.cpp 289 * We need to assign the threadId early so we can lock/notify
475 LOGI("threadid=%d ODD: want thread-suspend lock (%s:%s),"
477 self->threadId, who, getSuspendCauseStr(why));
487 LOGE("threadid=%d: couldn't get thread-suspend lock (%s:%s),"
489 self->threadId, who, getSuspendCauseStr(why));
532 int threadId = 0;
538 threadId = self->threadId;
551 LOGW("threadid=%d: non-daemon id=%d still running at shutdown?!",
552 threadId, target->threadId)
    [all...]
Sync.cpp 165 return owner ? owner->threadId : 0;
177 u4 threadId = lockOwner(obj);
179 if (threadId == 0)
181 return dvmGetThreadByThreadId(threadId);
193 return thread->threadId == lockOwner(obj);
836 assert(LW_LOCK_OWNER(obj->lock) == self->threadId);
863 u4 thin, newThin, threadId;
867 threadId = self->threadId;
876 if (LW_LOCK_OWNER(thin) == threadId) {
    [all...]
  /frameworks/base/core/java/com/google/android/mms/util/
PduCache.java 101 long threadId = entry.getThreadId();
102 HashSet<Uri> thread = mThreads.get(threadId);
105 mThreads.put(threadId, thread);
220 private void purgeByThreadId(long threadId) {
222 Log.v(TAG, "Purge cache in thread: " + threadId);
225 HashSet<Uri> thread = mThreads.remove(threadId);
  /libcore/dalvik/src/main/java/dalvik/system/profiler/
HprofData.java 54 public final int threadId;
59 public static ThreadEvent start(int objectId, int threadId, String threadName,
61 return new ThreadEvent(ThreadEventType.START, objectId, threadId,
65 public static ThreadEvent end(int threadId) {
66 return new ThreadEvent(ThreadEventType.END, threadId);
69 private ThreadEvent(ThreadEventType type, int objectId, int threadId,
76 this.threadId = threadId;
82 private ThreadEvent(ThreadEventType type, int threadId) {
85 this.threadId = threadId
    [all...]
SamplingProfiler.java 395 Integer threadId = threadIds.get(thread);
396 if (threadId == null) {
399 mutableStackTrace.threadId = threadId;
408 = new HprofData.StackTrace(nextStackTraceId++, threadId, stackFramesCopy);
456 int threadId = nextThreadId++;
457 Integer old = threadIds.put(thread, threadId);
470 = HprofData.ThreadEvent.start(nextObjectId++, threadId,
482 Integer threadId = threadIds.remove(thread);
483 if (threadId == null)
    [all...]
BinaryHprofReader.java 320 int threadId = in.readInt();
330 System.out.println("\tthreadId=" + threadId);
338 = HprofData.ThreadEvent.start(objectId, threadId,
344 int threadId = in.readInt();
346 System.out.println("\tthreadId=" + threadId);
348 HprofData.ThreadEvent event = HprofData.ThreadEvent.end(threadId);
376 int threadId = in.readInt();
380 System.out.println("\tthreadId=" + threadId);
405 = new HprofData.StackTrace(stackTraceId, threadId, stackFrames);
  /packages/apps/Mms/src/com/android/mms/transaction/
PushReceiver.java 83 long threadId = -1;
89 threadId = findThreadId(mContext, pdu, type);
90 if (threadId == -1) {
99 values.put(Mms.THREAD_ID, threadId);
RetryScheduler.java 182 long threadId = -1;
186 threadId = c.getLong(0);
193 if (threadId != -1) {
195 MessagingNotification.notifyDownloadFailed(mContext, threadId);
  /packages/apps/Mms/src/com/android/mms/util/
DraftCache.java 49 void onDraftChanged(long threadId, boolean hasDraft);
102 long threadId = cursor.getLong(COLUMN_DRAFT_THREAD_ID);
103 newDraftSet.add(threadId);
105 log("rebuildCache: add tid=" + threadId);
133 for (long threadId : added) {
134 l.onDraftChanged(threadId, true);
136 for (long threadId : removed) {
137 l.onDraftChanged(threadId, false);
146 public synchronized void setDraftState(long threadId, boolean hasDraft) {
147 if (threadId <= 0)
    [all...]
Recycler.java 84 long threadId = getThreadId(cursor);
85 deleteMessagesForThread(context, threadId, limit);
92 public void deleteOldMessagesByThreadId(Context context, long threadId) {
95 " threadId: " + threadId);
101 deleteMessagesForThread(context, threadId, getMessageLimit(context));
126 abstract protected void deleteMessagesForThread(Context context, long threadId, int keep);
191 protected void deleteMessagesForThread(Context context, long threadId, int keep) {
199 ContentUris.withAppendedId(Sms.Conversations.CONTENT_URI, threadId),
222 ContentUris.withAppendedId(Sms.Conversations.CONTENT_URI, threadId),
    [all...]
  /dalvik/tools/dmtracedump/
CreateTestTrace.c 65 int threadId;
121 unsigned int time = 0, threadId;
148 int threadId = strtoul(cp, &cp, 0);
149 if (maxThreadId < threadId)
150 maxThreadId = threadId;
186 * default values for the time and threadId.
189 threadId = 1;
194 threadId = strtoul(cp, &cp, 0);
199 if (callStack[threadId].frames == NULL) {
202 callStack[threadId].frames = stk
    [all...]
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
HandleThread.java 100 int threadId, nameLen;
103 threadId = data.getInt();
107 Log.v("ddm-thread", "THCR: " + threadId + " '" + name + "'");
109 client.getClientData().addThread(threadId, name);
117 int threadId;
119 threadId = data.getInt();
120 Log.v("ddm-thread", "THDE: " + threadId);
122 client.getClientData().removeThread(threadId);
134 * (4b) threadId (matches value from THCR)
161 int threadId, status, tid, utime, stime
    [all...]
  /device/moto/stingray/whisper/
Whisper_AccyMain.c 286 pthread_t threadId;
297 threadId = pthread_self();
298 status = pthread_getschedparam(threadId, &currentPolicy, &sched);
308 status = pthread_setschedparam(threadId, currentPolicy, &sched);
  /frameworks/base/core/jni/
AndroidRuntime.cpp     [all...]

Completed in 396 milliseconds

1 2