/external/valgrind/main/exp-ptrcheck/ |
pc_main.c | 74 void pc_pre_thread_ll_create ( ThreadId parent, ThreadId child ) { 79 static void pc_pre_thread_first_insn ( ThreadId tid ) { 105 static void pc_pre_mem_read ( CorePart part, ThreadId tid, Char* s, 111 static void pc_pre_mem_read_asciiz ( CorePart part, ThreadId tid, 118 static void pc_pre_mem_write ( CorePart part, ThreadId tid, Char* s,
|
sg_main.h | 42 void sg_pre_thread_ll_create ( ThreadId parent, ThreadId child ); 43 void sg_pre_thread_first_insn ( ThreadId tid );
|
/external/webkit/Source/JavaScriptCore/wtf/gtk/ |
ThreadingGtk.cpp | 136 ThreadIdentifier threadID = establishIdentifierForThread(thread); 137 return threadID; 144 int waitForThreadCompletion(ThreadIdentifier threadID, void** result) 146 ASSERT(threadID); 148 GThread* thread = threadForIdentifier(threadID); 154 clearThreadForIdentifier(threadID);
|
/frameworks/base/core/java/com/google/android/mms/util/ |
PduCache.java | 101 long threadId = entry.getThreadId(); 102 HashSet<Uri> thread = mThreads.get(threadId); 105 mThreads.put(threadId, thread); 220 private void purgeByThreadId(long threadId) { 222 Log.v(TAG, "Purge cache in thread: " + threadId); 225 HashSet<Uri> thread = mThreads.remove(threadId);
|
/external/valgrind/main/coregrind/ |
pub_core_threadstate.h | 131 ThreadId parent; // parent tid (if any) 157 void (*post_mach_trap_fn)(ThreadId tid, 289 /* ThreadId == 0 (and hence vg_threads[0]) is NEVER USED. 291 ThreadId == 1 is the root thread and has the special property 294 ThreadId in this tid field, but be aware that it should 296 ThreadId tid; 336 For the main thread (threadid == 1), this mechanism doesn't 346 ThreadId == 1 (the main thread). */ 373 extern ThreadId VG_(running_tid); 384 extern ThreadState *VG_(get_ThreadState) ( ThreadId tid ) [all...] |
/external/openssl/crypto/ |
mem_dbg.c | 153 CRYPTO_THREADID threadid; member in struct:app_mem_info_st 178 CRYPTO_THREADID threadid; member in struct:mem_st 343 return CRYPTO_THREADID_cmp(&((const APP_INFO *)a_void)->threadid, 344 &((const APP_INFO *)b_void)->threadid); 352 ret = CRYPTO_THREADID_hash(&a->threadid); 366 CRYPTO_THREADID_current(&tmp.threadid); 377 if (CRYPTO_THREADID_cmp(&ret->threadid, &tmp.threadid)) 380 CRYPTO_THREADID_hash(&ret->threadid), 381 CRYPTO_THREADID_hash(&tmp.threadid)); [all...] |
/external/valgrind/main/coregrind/m_syswrap/ |
priv_syswrap-generic.h | 40 Bool ML_(valid_client_addr)(Addr start, SizeT size, ThreadId tid, 53 Bool ML_(fd_allowed)(Int fd, const Char *syscallname, ThreadId tid, Bool isNewFD); 55 extern void ML_(record_fd_open_named) (ThreadId tid, Int fd); 56 extern void ML_(record_fd_open_nameless) (ThreadId tid, Int fd); 57 extern void ML_(record_fd_open_with_given_name)(ThreadId tid, Int fd, 76 ML_(buf_and_len_pre_check) ( ThreadId tid, Addr buf_p, Addr buflen_p, 79 ML_(buf_and_len_post_check) ( ThreadId tid, SysRes res, 84 void ML_(PRE_unknown_ioctl)(ThreadId tid, UWord request, UWord arg); 86 void ML_(POST_unknown_ioctl)(ThreadId tid, UInt res, UWord request, UWord arg); 216 #define TId ThreadId [all...] |
/external/webkit/Source/JavaScriptCore/wtf/ |
ThreadingPthreads.cpp | 208 int waitForThreadCompletion(ThreadIdentifier threadID, void** result) 210 ASSERT(threadID); 212 pthread_t pthreadHandle = pthreadHandleForIdentifier(threadID); 218 LOG_ERROR("ThreadIdentifier %u was found to be deadlocked trying to quit", threadID); 223 void detachThread(ThreadIdentifier threadID) 225 ASSERT(threadID); 227 pthread_t pthreadHandle = pthreadHandleForIdentifier(threadID);
|
/external/v8/src/ |
isolate.h | 140 class ThreadId { 142 // Creates an invalid ThreadId. 143 ThreadId() : id_(kInvalidId) {} 145 // Returns ThreadId for current thread. 146 static ThreadId Current() { return ThreadId(GetCurrentThreadId()); } 148 // Returns invalid ThreadId (guaranteed not to be equal to any thread). 149 static ThreadId Invalid() { return ThreadId(kInvalidId); } 152 INLINE(bool Equals(const ThreadId& other) const) [all...] |
/external/valgrind/main/include/ |
pub_tool_tooliface.h | 69 ThreadId tid; /* tid requesting translation */ 89 // * closure->tid is the ThreadId of the thread requesting the 301 // Should the core indicate which ThreadId each error comes from? 410 Bool (*handle_client_request)(ThreadId tid, UWord* arg_block, UWord* ret) 425 void (* pre_syscall)(ThreadId tid, UInt syscallno, 427 void (*post_syscall)(ThreadId tid, UInt syscallno, 448 void* (*pmalloc) ( ThreadId tid, SizeT n ), 449 void* (*p__builtin_new) ( ThreadId tid, SizeT n ), 450 void* (*p__builtin_vec_new) ( ThreadId tid, SizeT n ), 451 void* (*pmemalign) ( ThreadId tid, SizeT align, SizeT n ) [all...] |
pub_tool_threadstate.h | 45 /* Special magic value for an invalid ThreadId. It corresponds to 48 #define VG_INVALID_THREADID ((ThreadId)(0)) 51 extern ThreadId VG_(get_running_tid) ( void );
|
/packages/apps/Mms/src/com/android/mms/transaction/ |
MessagingNotification.java | 305 long threadId = cursor.getLong(COLUMN_THREAD_ID); 310 ", first addr = " + address + ", thread_id=" + threadId); 315 R.drawable.stat_notify_mms, null, threadId, 318 threads.add(threadId); 372 long threadId = cursor.getLong(COLUMN_THREAD_ID); 378 ", first addr=" + address + ", thread_id=" + threadId); 383 null, threadId, timeMillis, cursor.getCount()); 385 threads.add(threadId); 402 long threadId, 405 Intent clickIntent = ComposeMessageActivity.createIntent(context, threadId); [all...] |
SmsSingleRecipientSender.java | 28 public SmsSingleRecipientSender(Context context, String dest, String msgText, long threadId, 30 super(context, null, msgText, threadId); 119 log("sendMessage: address=" + mDest + ", threadId=" + mThreadId +
|
/packages/apps/Mms/src/com/android/mms/ui/ |
ConversationList.java | 287 public void onDraftChanged(final long threadId, final boolean hasDraft) { 292 log("onDraftChanged: threadId=" + threadId + ", hasDraft=" + hasDraft); 374 // The invalid threadId of -1 means all threads here. 414 private void openThread(long threadId) { 415 startActivity(ComposeMessageActivity.createIntent(this, threadId)); 468 long threadId = conv.getThreadId(); 471 confirmDeleteThread(threadId, mQueryHandler); 475 openThread(threadId); 515 * @param threadId id of the thread to delete or -1 for all thread [all...] |
/packages/providers/TelephonyProvider/src/com/android/providers/telephony/ |
SmsProvider.java | 144 int threadID; 147 threadID = Integer.parseInt(url.getPathSegments().get(1)); 149 Log.d(TAG, "query conversations: threadID=" + threadID); 160 qb.appendWhere("thread_id = " + threadID); 327 // TODO: What about "threadID"? 434 Long threadId = values.getAsLong(Sms.THREAD_ID); 437 if (((threadId == null) || (threadId == 0)) && (address != null)) { 545 int threadID; [all...] |
/dalvik/vm/ |
Ddm.cpp | 233 //LOGW("notify %d", thread->threadId); 285 set4BE(&buf[0x00], thread->threadId); 298 set4BE(&buf[0x00], thread->threadId); 307 void dvmDdmSendThreadNameChange(int threadId, StringObject* newName) 325 set4BE(&buf[0x00], threadId); 344 * (4b) threadId 400 set4BE(buf+0, thread->threadId); 426 ArrayObject* dvmDdmGetStackTraceById(u4 threadId) 435 if (thread->threadId == threadId) [all...] |
Ddm.h | 52 void dvmDdmSendThreadNameChange(int threadId, StringObject* newName); 78 ArrayObject* dvmDdmGetStackTraceById(u4 threadId);
|
/external/webkit/Source/WebCore/platform/graphics/ca/win/ |
LayerChangesFlusher.cpp | 107 DWORD threadID = ::GetCurrentThreadId(); 109 m_hook = ::SetWindowsHookExW(WH_GETMESSAGE, hookCallback, 0, threadID); 114 ::PostThreadMessageW(threadID, WM_NULL, 0, 0);
|
/sdk/emulator/qtools/ |
dmtrace.cpp | 117 void DmTrace::writeDataRecord(FILE *fstream, int threadId, 121 write2LE(fstream, threadId); 209 void DmTrace::addThread(int threadId, const char *name) 212 rec->id = threadId; 217 void DmTrace::updateName(int threadId, const char *name) 222 if ((*iter)->id == threadId) {
|
/dalvik/vm/jdwp/ |
JdwpEvent.h | 40 ObjectId threadId; 71 ObjectId threadId;
|
/dalvik/vm/mterp/ |
Mterp.cpp | 82 LOGVV("mterp threadid=%d : %s.%s %s", 83 dvmThreadSelf()->threadId,
|
/external/qemu/distrib/sdl-1.2.12/src/thread/os2/ |
SDL_systhread.c | 74 thread->threadid = thread->handle = (*pfnBeginThread)(threadfunc, NULL, 512*1024, pThreadParms); 75 if ((int)thread->threadid <= 0)
|
/external/valgrind/main/drd/ |
drd_thread.h | 72 ThreadId vg_threadid; /**< Valgrind thread ID. */ 129 DrdThreadId DRD_(VgThreadIdToDrdThreadId)(const ThreadId tid); 130 DrdThreadId DRD_(NewVgThreadIdToDrdThreadId)(const ThreadId tid); 132 ThreadId DRD_(DrdThreadIdToVgThreadId)(const DrdThreadId tid); 134 const ThreadId vg_created); 135 DrdThreadId DRD_(thread_post_create)(const ThreadId vg_created); 158 void DRD_(thread_set_vg_running_tid)(const ThreadId vg_tid); 159 void DRD_(thread_set_running_tid)(const ThreadId vg_tid,
|
/libcore/luni/src/test/java/tests/support/ |
ThreadPool.java | 28 private int threadID; 93 super(ThreadPool.this, "PooledThread-" + (threadID++));
|
/sdk/ddms/libs/ddmlib/src/com/android/ddmlib/ |
ThreadInfo.java | 40 ThreadInfo(int threadId, String threadName) { 41 mThreadId = threadId;
|