HomeSort by relevance Sort by last modified time
    Searched defs:threadId (Results 26 - 50 of 79) sorted by null

12 3 4

  /libcore/dalvik/src/main/java/dalvik/system/profiler/
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/
RetryScheduler.java 192 long threadId = -1;
196 threadId = c.getLong(0);
203 if (threadId != -1) {
205 MessagingNotification.notifyDownloadFailed(mContext, threadId);
SmsReceiverService.java 266 int threadId = c.getInt(SEND_COLUMN_THREAD_ID);
273 address, msgText, threadId, status == Sms.STATUS_PENDING,
281 ", threadId: " + threadId);
391 long threadId = MessagingNotification.getSmsThreadId(this, messageUri);
393 Log.d(TAG, "handleSmsReceived messageUri: " + messageUri + " threadId: " + threadId);
394 MessagingNotification.blockingUpdateNewMessageIndicator(this, threadId, false);
579 Long threadId = values.getAsLong(Sms.THREAD_ID);
605 if (((threadId == null) || (threadId == 0)) && (address != null))
    [all...]
TransactionService.java 483 long threadId = MessagingNotification.getThreadId(
486 threadId,
    [all...]
MessagingNotification.java 202 * @param threadId The ID of the thread that the user is currently viewing. Pass THREAD_NONE
206 public static void setCurrentlyDisplayedThreadId(long threadId) {
208 sCurrentlyDisplayedThreadId = threadId;
291 " but playing soft sound. threadId: " + newMsgThreadId);
342 public static void blockingUpdateAllNotifications(final Context context, long threadId) {
345 threadId);
347 nonBlockingUpdateNewMessageIndicator(context, threadId, false);
393 * @param threadId thread this message belongs to
399 int attachmentType, long threadId) {
410 mThreadId = threadId;
    [all...]
  /packages/apps/Mms/src/com/android/mms/util/
Recycler.java 85 long threadId = getThreadId(cursor);
86 deleteMessagesForThread(context, threadId, limit);
93 public void deleteOldMessagesByThreadId(Context context, long threadId) {
96 " threadId: " + threadId);
102 deleteMessagesForThread(context, threadId, getMessageLimit(context));
127 abstract protected void deleteMessagesForThread(Context context, long threadId, int keep);
192 protected void deleteMessagesForThread(Context context, long threadId, int keep) {
200 ContentUris.withAppendedId(Sms.Conversations.CONTENT_URI, threadId),
223 ContentUris.withAppendedId(Sms.Conversations.CONTENT_URI, threadId),
    [all...]
  /system/core/libbacktrace/
backtrace_test.cpp 62 pthread_t threadId;
588 ASSERT_TRUE(pthread_create(&runners[i].threadId, &attr, ThreadMaxRun, &runners[i]) == 0);
605 ASSERT_TRUE(pthread_create(&dumpers[i].thread.threadId, &attr, ThreadDump, &dumpers[i]) == 0);
632 ASSERT_TRUE(pthread_create(&runner.threadId, &attr, ThreadMaxRun, &runner) == 0);
648 ASSERT_TRUE(pthread_create(&dumpers[i].thread.threadId, &attr, ThreadDump, &dumpers[i]) == 0);
  /art/runtime/jdwp/
jdwp_event.cc 200 JdwpError status = Dbg::ConfigureStep(pMod->step.threadId, size, depth);
278 Dbg::UnconfigureStep(pMod->step.threadId);
481 if (!Dbg::MatchThread(pMod->threadOnly.threadId, basket.thread)) {
521 if (!Dbg::MatchThread(pMod->step.threadId, basket.thread)) {
628 ObjectId threadId) {
636 SetWaitForEventThread(threadId);
660 * Call this with a threadId of zero if you just want to wait for the
666 void JdwpState::SetWaitForEventThread(ObjectId threadId) {
679 event_thread_id_, threadId);
684 if (waited || threadId != 0)
    [all...]
  /external/chromium_org/third_party/webrtc/modules/video_render/mac/
video_render_agl.cc 748 unsigned int threadId;
749 _screenUpdateThread->Start(threadId);
    [all...]
  /external/chromium_org/third_party/webrtc/modules/video_render/windows/
video_render_direct3d9.cc 555 unsigned int threadId;
556 _screenUpdateThread->Start(threadId);
    [all...]
  /frameworks/base/core/java/android/view/accessibility/
AccessibilityInteractionClient.java 114 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) {
128 AccessibilityInteractionClient client = sClients.get(threadId);
131 sClients.put(threadId, client);
    [all...]
  /frameworks/volley/src/com/android/volley/
Request.java 220 final long threadId = Thread.currentThread().getId();
228 mEventLog.add(tag, threadId);
235 mEventLog.add(tag, threadId);
  /external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
JavaBridgeBasicsTest.java 508 final long threadId = mTestController.waitForLongValue();
509 assertFalse(threadId == Thread.currentThread().getId());
513 assertFalse(threadId == Thread.currentThread().getId());
    [all...]