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

1 2 3 4 5 6 7 8 910

  /hardware/qcom/gps/msmcobalt/utils/platform_lib_abstractions/loc_stub/src/
loc_stub_android_runtime.cpp 36 pthread_t threadId = 0;
37 pthread_create(&threadId, NULL, (void *(*)(void*))start, arg);
38 return 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...]
  /external/testng/src/test/java/test/testng285/
BugBase.java 18 void log(long threadId) {
19 m_threadIds.add(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;
  /packages/apps/Messaging/src/com/android/messaging/mmslib/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);
109 thread_id_t *threadId = 0)
112 threadPriority, threadStackSize, threadId) ? true : false;
  /external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/util/
AppRTCUtils.java 29 private final Long threadId;
33 threadId = Thread.currentThread().getId();
38 return threadId.equals(Thread.currentThread().getId());
LooperExecutor.java 29 private long threadId;
37 threadId = Thread.currentThread().getId();
79 return (Thread.currentThread().getId() == threadId);
88 if (Thread.currentThread().getId() == threadId) {
  /frameworks/base/core/java/android/accessibilityservice/
IAccessibilityServiceConnection.aidl 40 IAccessibilityInteractionConnectionCallback callback, int flags, long threadId);
44 long threadId);
48 IAccessibilityInteractionConnectionCallback callback, long threadId);
51 int interactionId, IAccessibilityInteractionConnectionCallback callback, long threadId);
54 int interactionId, IAccessibilityInteractionConnectionCallback callback, long threadId);
58 IAccessibilityInteractionConnectionCallback callback, long threadId);
  /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 )
  /libcore/dalvik/src/main/java/org/apache/harmony/dalvik/ddmc/
DdmVmInternal.java 66 native public static StackTraceElement[] getStackTraceById(int threadId);
  /art/tools/dmtracedump/
createtesttrace.cc 63 int32_t threadId;
134 int32_t threadId = strtoul(cp, &cp, 0);
135 if (maxThreadId < threadId) maxThreadId = threadId;
159 uint32_t threadId;
174 * default values for the time and threadId.
177 threadId = 1;
181 threadId = strtoul(cp, &cp, 0);
186 if (callStack[threadId].frames == nullptr) {
188 callStack[threadId].frames = stk
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/
InvokeMethodAfterMultipleThreadSuspensionTest.java 40 protected CommandPacket buildInvokeCommand(long threadId, long classID,
43 ReplyPacket replyPacket = debuggeeWrapper.vmMirror.getThreadFrames(threadId, 0, 1);
50 long receiverId = debuggeeWrapper.vmMirror.getThisObject(threadId, topFrameId);
56 command.setNextValueAsThreadID(threadId);
InvokeMethodWithSuspensionTest.java 38 protected CommandPacket buildInvokeCommand(long threadId, long classID,
41 ReplyPacket replyPacket = debuggeeWrapper.vmMirror.getThreadFrames(threadId, 0, 1);
48 long receiverId = debuggeeWrapper.vmMirror.getThisObject(threadId, topFrameId);
54 command.setNextValueAsThreadID(threadId);
  /external/testng/src/test/java/test/thread/
BaseThreadTest.java 40 protected void logThread(long threadId) {
42 log("BaseThreadTest", "Logging thread:" + threadId);
43 m_threadIds.add(threadId);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/
JDWPProxyTestCase.java 35 private final long threadId;
39 public EventContext(long threadId, long frameId, Location location) {
40 this.threadId = threadId;
46 return threadId;
  /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);
  /packages/apps/Messaging/src/com/android/messaging/datamodel/
SyncManager.java 325 public synchronized ConversationCustomization getCustomizationForThread(final long threadId) {
327 return mCustomization.get(threadId);
406 * @param threadId The message's thread
412 final long threadId, int refSubId, final ConversationCustomization customization) {
417 String conversationId = mThreadToConversationId.get(threadId);
422 final List<String> recipients = getThreadRecipients(threadId);
429 conversationId = BugleDatabaseOperations.getOrCreateConversation(db, threadId,
436 conversationId = BugleDatabaseOperations.getOrCreateConversation(db, threadId,
442 mThreadToConversationId.put(threadId, conversationId);
454 * @param threadId
    [all...]
  /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 76 int threadId = itl.get().intValue();
77 for (int j = 0; j < threadId; j++) {
78 x[threadId]++;
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
SingleStepWithPendingExceptionTest.java 90 long threadId = debuggeeWrapper.vmMirror.waitForBreakpoint(breakpointRequestId);
93 int singleStepRequestId = setSingleStepOut(threadId);
130 private int setSingleStepOut(long threadId) {
131 ReplyPacket replyPacket = debuggeeWrapper.vmMirror.setStep(new String[0], threadId,
  /external/lzma/C/
Threads.c 34 /* Windows Me/98/95: threadId parameter may not be NULL in _beginthreadex/CreateThread functions */
38 DWORD threadId;
39 *p = CreateThread(0, 0, func, param, 0, &threadId);
43 unsigned threadId;
44 *p = (HANDLE)_beginthreadex(NULL, 0, func, param, 0, &threadId);

Completed in 1085 milliseconds

1 2 3 4 5 6 7 8 910