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

1 2 3 4 5

  /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...]
  /frameworks/base/core/java/android/accessibilityservice/
IAccessibilityServiceConnection.aidl 37 IAccessibilityInteractionConnectionCallback callback, int flags, long threadId);
41 long threadId);
45 IAccessibilityInteractionConnectionCallback callback, long threadId);
48 int interactionId, IAccessibilityInteractionConnectionCallback callback, long threadId);
51 int interactionId, IAccessibilityInteractionConnectionCallback callback, long threadId);
55 IAccessibilityInteractionConnectionCallback callback, long threadId);
  /frameworks/opt/telephony/src/java/com/google/android/mms/util/
PduCacheEntry.java 27 public PduCacheEntry(GenericPdu pdu, int msgBox, long threadId) {
30 mThreadId = threadId;
  /external/deqp/framework/delibs/decpp/
deThreadSafeRingBuffer.cpp 42 Message (deUint16 threadId, deUint16 payload)
43 : data((threadId << 16) | payload)
72 deUint16 threadId = msg.getThreadId();
74 if (threadId == 0xffff)
77 DE_TEST_ASSERT(de::inBounds<int>(threadId, 0, (int)m_lastPayload.size()));
78 DE_TEST_ASSERT((m_lastPayload[threadId] == 0 && msg.getPayload() == 0) || m_lastPayload[threadId] < msg.getPayload());
80 m_lastPayload[threadId] = msg.getPayload();
81 m_payloadSum[threadId] += (deUint32)msg.getPayload();
85 deUint32 getPayloadSum (deUint16 threadId) cons
    [all...]
deBlockBuffer.cpp 43 Message (deUint16 threadId, deUint16 payload)
44 : data((threadId << 16) | payload)
84 deUint16 threadId = msg.getThreadId();
86 if (threadId == 0xffff)
101 DE_TEST_ASSERT(de::inBounds<int>(threadId, 0, (int)m_lastPayload.size()));
102 DE_TEST_ASSERT((m_lastPayload[threadId] == 0 && msg.getPayload() == 0) || m_lastPayload[threadId] < msg.getPayload());
104 m_lastPayload[threadId] = msg.getPayload();
105 m_payloadSum[threadId] += (deUint32)msg.getPayload();
111 deUint32 getPayloadSum (deUint16 threadId) cons
    [all...]
  /system/core/include/utils/
AndroidThreads.h 45 android_thread_id_t *threadId);
57 android_thread_id_t *threadId);
69 android_thread_id_t *threadId);
112 thread_id_t *threadId = 0)
115 threadPriority, threadStackSize, threadId) ? true : false;
  /hardware/ti/omap4-aah/libtiutils/
DebugUtils.cpp 79 Debug::ThreadInfo * Debug::registerThread(Data * const data, const int32_t threadId)
85 if ( android_atomic_acquire_cas(0, threadId, &threadInfo->threadId) == 0 )
DebugUtils.h 69 threadId(0), callOffset(0)
72 volatile int32_t threadId;
91 ThreadInfo * registerThread(Data * data, int32_t threadId);
261 const int32_t threadId = reinterpret_cast<int32_t>(androidGetThreadId());
266 if ( threadInfo->threadId == threadId )
274 ThreadInfo * const threadInfo = registerThread(data.get(), threadId);
304 android_atomic_acquire_store(0, &threadInfo->threadId);
  /packages/apps/Mms/src/com/android/mms/util/
DraftCache.java 52 void onDraftChanged(long threadId, boolean hasDraft);
107 long threadId = cursor.getLong(COLUMN_DRAFT_THREAD_ID);
108 newDraftSet.add(threadId);
110 log("rebuildCache: add tid=" + threadId);
147 for (long threadId : added) {
148 l.onDraftChanged(threadId, true);
150 for (long threadId : removed) {
151 l.onDraftChanged(threadId, false);
161 public void setDraftState(long threadId, boolean hasDraft) {
162 if (threadId <= 0)
    [all...]
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...]
  /external/chromium_org/third_party/WebKit/public/platform/
WebThread.h 62 virtual PlatformThreadId threadId() const { return 0; }
  /libcore/dalvik/src/main/java/org/apache/harmony/dalvik/ddmc/
DdmVmInternal.java 66 native public static StackTraceElement[] getStackTraceById(int threadId);
  /packages/apps/Mms/src/com/android/mms/data/
Conversation.java 111 private Conversation(Context context, long threadId, boolean allowQuery) {
113 Log.v(TAG, "Conversation constructor threadId: " + threadId);
116 if (!loadFromThreadId(threadId, allowQuery)) {
142 public static Conversation get(Context context, long threadId, boolean allowQuery) {
144 Log.v(TAG, "Conversation get by threadId: " + threadId);
146 Conversation conv = Cache.get(threadId);
150 conv = new Conversation(context, threadId, allowQuery);
154 LogTag.error("Tried to add duplicate Conversation to Cache (from threadId): " + conv)
    [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...]
  /packages/apps/Mms/src/com/android/mms/ui/
NoConfirmationSendService.java 87 // Using invalid threadId 0 here. When the message is inserted into the db, the
88 // provider looks up the threadId based on the recipient(s).
89 long threadId = 0;
91 message, threadId);
96 smsMessageSender.sendMessage(threadId);
98 Log.e(TAG, "Failed to send SMS message, threadId=" + threadId, e);
  /external/chromium_org/content/child/
webthread_impl.h 25 virtual blink::PlatformThreadId threadId() const = 0;
51 virtual blink::PlatformThreadId threadId() const OVERRIDE;
71 virtual blink::PlatformThreadId threadId() const OVERRIDE;
  /external/chromium_org/mojo/services/html_viewer/
webthread_impl.h 24 virtual blink::PlatformThreadId threadId() const = 0;
50 virtual blink::PlatformThreadId threadId() const;
70 virtual blink::PlatformThreadId threadId() const;
  /frameworks/base/tools/preload/
Proc.java 86 * @param threadId thread the operation started in
90 void startOperation(int threadId, LoadedClass loadedClass, long time,
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,
118 LinkedList<Operation> stack = stacks.get(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...]
  /libcore/jsr166-tests/src/test/java/jsr166/
ThreadLocalTest.java 67 int threadId = itl.get().intValue();
68 for (int j = 0; j < threadId; j++) {
69 x[threadId]++;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
WorkerManager.js 108 * @param {number} threadId
111 threadUrl: function(threadId)
113 return this._threadUrlByThreadId[threadId];
117 * @param {number} threadId
119 setSelectedThreadId: function(threadId)
121 this._selectedThreadId = threadId;
  /libcore/dalvik/src/test/java/dalvik/system/profiler/
SamplingProfilerTest.java 125 final int threadId = 1;
127 ThreadEvent start1 = ThreadEvent.start(objectId, threadId,
134 ThreadEvent end2 = ThreadEvent.end(threadId+1);
140 ThreadEvent end1 = ThreadEvent.end(threadId);
147 hprofData.addThreadEvent(ThreadEvent.end(threadId));
164 final int threadId = 2;
169 StackTrace stackTrace = new StackTrace(stackTraceId, threadId, stackFrames);
177 ThreadEvent start = ThreadEvent.start(objectId, threadId,
231 assertTrue(threadsActive.add(event.threadId));
232 assertTrue(threadsSeen.add(event.threadId));
    [all...]
  /art/runtime/jdwp/
jdwp_event.h 45 ObjectId threadId;
76 ObjectId threadId;
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
ResumeTest.java 225 long threadId = 0;
300 printErrorAndFail("\n## Can NOT get all ThreadID in debuggee! ");
305 long threadID = allThreadIDReply.getNextValueAsThreadID();
308 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
311 ("==> WARNING: Can NOT get thread name for threadID = " + threadID);
316 threadInfo.threadId = threadID;
325 if (threadInfo.threadId == 0) {
357 logWriter.println("\n==> Check for Thread: threadID =
    [all...]

Completed in 1200 milliseconds

1 2 3 4 5