HomeSort by relevance Sort by last modified time
    Searched full:threadid (Results 101 - 125 of 303) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/qemu/distrib/sdl-1.2.12/src/thread/
SDL_thread_c.h 54 Uint32 threadid; member in struct:SDL_Thread
SDL_thread.c 158 if ( this_thread == SDL_Threads[i]->threadid ) {
191 args->info->threadid = SDL_ThreadID();
284 id = thread->threadid;
  /external/webkit/Source/WebCore/platform/graphics/chromium/cc/
CCThread.h 59 WTF::ThreadIdentifier threadID() const { return m_threadID; }
  /frameworks/base/opengl/tests/testPauseResume/
README 23 W/dalvikvm( 1466): threadid=8: thread exiting with uncaught exception (group=0x4001d7f0)
  /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);
SmsReceiverService.java 248 int threadId = c.getInt(SEND_COLUMN_THREAD_ID);
255 address, msgText, threadId, status == Sms.STATUS_PENDING,
263 ", threadId: " + threadId);
533 Long threadId = values.getAsLong(Sms.THREAD_ID);
559 if (((threadId == null) || (threadId == 0)) && (address != null)) {
560 threadId = Threads.getOrCreateThreadId(context, address);
561 values.put(Sms.THREAD_ID, threadId);
569 Recycler.getSmsRecycler().deleteOldMessagesByThreadId(getApplicationContext(), threadId);
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/thread/amigaos/
SDL_thread.c 143 if ( this_thread == SDL_Threads[i]->threadid ) {
176 args->info->threadid = SDL_ThreadID();
264 id = thread->threadid;
  /external/valgrind/main/coregrind/
pub_core_libcproc.h 83 extern void VG_(do_atfork_pre) ( ThreadId tid );
84 extern void VG_(do_atfork_parent) ( ThreadId tid );
85 extern void VG_(do_atfork_child) ( ThreadId tid );
  /external/webrtc/src/system_wrappers/source/
thread_linux.cc 121 bool ThreadLinux::Start(unsigned int& threadID)
123 bool ThreadLinux::Start(unsigned int& /*threadID*/)
155 threadID = static_cast<unsigned int>(_thread);
  /packages/apps/Mms/tests/src/com/android/mms/
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/
Debugger.cpp 75 ThreadId we pass to the debugger is the ObjectId for the java/lang/Thread
227 dvmThreadSelf()->threadId);
    [all...]
  /external/v8/src/
isolate.cc 57 Atomic32 ThreadId::highest_thread_id_ = 0;
59 int ThreadId::AllocateThreadId() {
64 int ThreadId::GetCurrentThreadId() {
287 ThreadId thread_id) {
288 ASSERT(!thread_id.Equals(ThreadId::Invalid()));
302 ThreadId thread_id = ThreadId::Current();
367 ThreadId thread_id) {
390 ThreadId thread_id) {
855 ThreadId::Current()))
    [all...]
  /dalvik/vm/compiler/codegen/arm/Thumb2/
Gen.cpp 219 * r3 -> self->threadId
250 loadWordDisp(cUnit, r6SELF, offsetof(Thread, threadId), r3); // Get threadId
254 // Is lock unheld on lock or held by us (==threadId) on unlock?
306 loadWordDisp(cUnit, r6SELF, offsetof(Thread, threadId), r3); // Get threadId
307 // Is lock unheld on lock or held by us (==threadId) on unlock?
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
ClientData.java 527 synchronized void addThread(int threadId, String threadName) {
528 ThreadInfo attr = new ThreadInfo(threadId, threadName);
529 mThreadMap.put(threadId, attr);
535 synchronized void removeThread(int threadId) {
536 mThreadMap.remove(threadId);
552 synchronized ThreadInfo getThread(int threadId) {
553 return mThreadMap.get(threadId);
  /external/valgrind/main/coregrind/m_syswrap/
syswrap-generic.c 72 Bool ML_(valid_client_addr)(Addr start, SizeT size, ThreadId tid,
252 UWord flags, ThreadId tid )
578 void ML_(record_fd_open_with_given_name)(ThreadId tid, Int fd, char *pathname)
612 void ML_(record_fd_open_named)(ThreadId tid, Int fd)
625 void ML_(record_fd_open_nameless)(ThreadId tid, Int fd)
836 void pre_mem_read_sendmsg ( ThreadId tid, Bool read,
846 void pre_mem_write_recvmsg ( ThreadId tid, Bool read,
859 void post_mem_write_recvmsg ( ThreadId tid, Bool read,
868 ThreadId tid,
870 void (*foreach_func)( ThreadId, Bool, Char *, Addr, SizeT )
    [all...]
priv_syswrap-aix5.h 45 extern Addr ML_(allocstack)(ThreadId tid);
54 extern Bool ML_(aix5_force_thread_into_pthread_exit)( ThreadId );
61 void ML_(aix5_set_threadstate_for_emergency_exit)(ThreadId tid, HChar* why);
  /external/valgrind/main/helgrind/
hg_main.c 92 // FIXME put referencing ThreadId into Thread and get
164 ThreadId map_threads_maybe_reverse_lookup_SLOW ( Thread* thr ); /*fwds*/
230 ThreadId tid;
286 ThreadId tid;
574 // FIXME: this assumes that the first real ThreadId is 1
600 /*--- map_threads :: array[core-ThreadId] of Thread* ---*/
604 static Thread* map_threads_maybe_lookup ( ThreadId coretid )
613 static inline Thread* map_threads_lookup ( ThreadId coretid )
624 static ThreadId map_threads_maybe_reverse_lookup_SLOW ( Thread* thr )
626 ThreadId tid
    [all...]
hg_lock_n_thread.h 69 core's ThreadId associated with this Thread whilst it is alive.
70 Once the thread finishes, the ThreadId is set to
73 The core may later re-use the same ThreadId for what is a logically
82 ThreadId coretid;
  /dalvik/vm/jdwp/
Jdwp.h 42 typedef u8 ObjectId; /* any object (threadID, stringID, arrayID, etc) */
159 void dvmJdwpSetWaitForEventThread(JdwpState* state, ObjectId threadId);
217 bool dvmJdwpPostThreadChange(JdwpState* state, ObjectId threadId, bool start);
  /libcore/dalvik/src/main/java/dalvik/system/profiler/
BinaryHprofWriter.java 117 out.writeInt(e.threadId);
129 out.writeInt(e.threadId);
202 out.writeInt(stackTrace.threadId);
  /external/chromium/sdch/open-vcdiff/src/solaris/
libstdc++.la 12 # http://forum.java.sun.com/thread.jspa?threadID=5073150
  /external/protobuf/src/solaris/
libstdc++.la 12 # http://forum.java.sun.com/thread.jspa?threadID=5073150
  /external/valgrind/main/coregrind/m_sigframe/
sigframe-arm-linux.c 75 ThreadId tid = tst->tid;
112 static void synth_ucontext( ThreadId tid, const vki_siginfo_t *si,
190 void VG_(sigframe_create)( ThreadId tid,
261 void VG_(sigframe_destroy)( ThreadId tid, Bool isRT )
  /external/webkit/Source/WebKit/chromium/tests/
CCThreadTest.cpp 59 EXPECT_EQ(thread->threadID(), target.hitThreadID);

Completed in 1306 milliseconds

1 2 3 45 6 7 8 91011>>