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

1 2 3 4

  /external/chromium_org/third_party/WebKit/public/platform/
WebThread.h 62 virtual PlatformThreadId threadId() const { return 0; }
  /external/chromium_org/content/child/
webthread_impl.cc 91 blink::PlatformThreadId WebThreadImpl::threadId() const {
134 blink::PlatformThreadId WebThreadImplForMessageLoop::threadId() const {
  /external/chromium_org/mojo/services/html_viewer/
webthread_impl.cc 91 blink::PlatformThreadId WebThreadImpl::threadId() const {
133 blink::PlatformThreadId WebThreadImplForMessageLoop::threadId() const {
  /external/chromium_org/third_party/angle/tests/standalone_tests/
EGLThreadTest.cpp 70 DWORD threadId;
71 HANDLE threadHandle = CreateThread(NULL, 0, EGLThreadTest::ThreadingTestEntryPoint, this, 0, &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...]
  /external/lzma/C/
Threads.c 32 unsigned threadId; /* Windows Me/98/95: threadId parameter may not be NULL in _beginthreadex/CreateThread functions */
35 CreateThread(0, 0, func, param, 0, &threadId);
37 (HANDLE)_beginthreadex(NULL, 0, func, param, 0, &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 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);
  /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...]
  /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]++;
  /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);
  /external/chromium_org/third_party/angle/src/libEGL/
Surface.cpp 258 DWORD threadId = GetWindowThreadProcessId(mWindow, &processId);
259 if (processId != GetCurrentProcessId() || threadId != GetCurrentThreadId())
  /external/webrtc/src/system_wrappers/source/
trace_impl.cc 143 WebRtc_UWord32 threadId = ThreadWrapper::GetThreadId();
145 return sprintf(traceMessage, "%10u; ", threadId);
  /frameworks/base/services/tests/servicestests/src/com/android/server/
LockSettingsStorageTests.java 121 final int threadId = i;
131 mStorage.writeKeyValue("key", "1 from thread " + threadId, 0);
133 mStorage.writeKeyValue("key", "2 from thread " + threadId, 0);
135 mStorage.writeKeyValue("key", "3 from thread " + threadId, 0);
137 mStorage.writeKeyValue("key", "4 from thread " + threadId, 0);
139 mStorage.writeKeyValue("key", "5 from thread " + threadId, 0);
165 final int threadId = i;
174 if (threadId == 50) {
  /hardware/ti/omap4-aah/libtiutils/
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);
  /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...]
  /packages/apps/Mms/src/com/android/mms/transaction/
PushReceiver.java 85 long threadId = -1;
91 threadId = findThreadId(mContext, pdu, type);
92 if (threadId == -1) {
102 values.put(Mms.THREAD_ID, 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...]
  /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...]
  /frameworks/base/tests/WebViewTests/src/com/android/webviewtests/
JavaBridgeBasicsTest.java 345 final long threadId = mTestController.waitForLongValue();
346 assertFalse(threadId == Thread.currentThread().getId());
350 assertFalse(threadId == Thread.currentThread().getId());
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
WapPushOverSms.java 322 final long threadId = getDeliveryOrReadReportThreadId(mContext, pdu);
323 if (threadId == -1) {
341 values.put(Telephony.Mms.THREAD_ID, threadId);
  /frameworks/opt/telephony/src/java/com/google/android/mms/util/
PduCache.java 103 long threadId = entry.getThreadId();
104 HashSet<Uri> thread = mThreads.get(threadId);
107 mThreads.put(threadId, thread);
238 private void purgeByThreadId(long threadId) {
240 Log.v(TAG, "Purge cache in thread: " + threadId);
243 HashSet<Uri> thread = mThreads.remove(threadId);

Completed in 979 milliseconds

1 2 3 4