HomeSort by relevance Sort by last modified time
    Searched full:threadid (Results 51 - 75 of 312) sorted by null

1 23 4 5 6 7 8 91011>>

  /frameworks/opt/mms/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);
  /external/valgrind/main/coregrind/
pub_core_threadstate.h 135 ThreadId parent; // parent tid (if any)
147 void (*post_mach_trap_fn)(ThreadId tid,
279 /* ThreadId == 0 (and hence vg_threads[0]) is NEVER USED.
281 ThreadId == 1 is the root thread and has the special property
284 ThreadId in this tid field, but be aware that it should
286 ThreadId tid;
326 For the main thread (threadid == 1), this mechanism doesn't
336 ThreadId == 1 (the main thread). */
371 extern ThreadId VG_(running_tid);
385 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...]
  /packages/apps/Mms/src/com/android/mms/transaction/
MessagingNotification.java 200 * @param threadId The ID of the thread that the user is currently viewing. Pass THREAD_NONE
204 public static void setCurrentlyDisplayedThreadId(long threadId) {
206 sCurrentlyDisplayedThreadId = threadId;
279 " but playing soft sound. threadId: " + newMsgThreadId);
327 public static void blockingUpdateAllNotifications(final Context context, long threadId) {
330 threadId);
332 nonBlockingUpdateNewMessageIndicator(context, threadId, false);
378 * @param threadId thread this message belongs to
384 int attachmentType, long threadId) {
395 mThreadId = threadId;
    [all...]
SmsSingleRecipientSender.java 28 public SmsSingleRecipientSender(Context context, String dest, String msgText, long threadId,
30 super(context, null, msgText, threadId);
123 log("sendMessage: address=" + mDest + ", threadId=" + mThreadId +
  /external/valgrind/main/memcheck/
mc_include.h 86 void* MC_(new_block) ( ThreadId tid,
90 void MC_(handle_free) ( ThreadId tid,
95 void MC_(mempool_alloc) ( ThreadId tid, Addr pool,
131 void* MC_(malloc) ( ThreadId tid, SizeT n );
132 void* MC_(__builtin_new) ( ThreadId tid, SizeT n );
133 void* MC_(__builtin_vec_new) ( ThreadId tid, SizeT n );
134 void* MC_(memalign) ( ThreadId tid, SizeT align, SizeT n );
135 void* MC_(calloc) ( ThreadId tid, SizeT nmemb, SizeT size1 );
136 void MC_(free) ( ThreadId tid, void* p );
137 void MC_(__builtin_delete) ( ThreadId tid, void* p )
    [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 147 class ThreadId {
149 // Creates an invalid ThreadId.
150 ThreadId() : id_(kInvalidId) {}
152 // Returns ThreadId for current thread.
153 static ThreadId Current() { return ThreadId(GetCurrentThreadId()); }
155 // Returns invalid ThreadId (guaranteed not to be equal to any thread).
156 static ThreadId Invalid() { return ThreadId(kInvalidId); }
159 INLINE(bool Equals(const ThreadId& other) const)
    [all...]
  /frameworks/native/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;
  /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 41 /* Special magic value for an invalid ThreadId. It corresponds to
44 #define VG_INVALID_THREADID ((ThreadId)(0))
47 extern ThreadId VG_(get_running_tid) ( void );
  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
SmsProvider.java 146 int threadID;
149 threadID = Integer.parseInt(url.getPathSegments().get(1));
151 Log.d(TAG, "query conversations: threadID=" + threadID);
162 qb.appendWhere("thread_id = " + threadID);
329 // TODO: What about "threadID"?
436 Long threadId = values.getAsLong(Sms.THREAD_ID);
439 if (((threadId == null) || (threadId == 0)) && (!TextUtils.isEmpty(address))) {
547 int threadID;
    [all...]
  /dalvik/vm/
Ddm.cpp 233 //ALOGW("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/valgrind/main/exp-sgcheck/
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/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);
  /external/webrtc/src/system_wrappers/source/
thread_win.cc 76 bool ThreadWindows::Start(unsigned int& threadID)
82 &threadID);
87 _id = threadID;
  /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 86 LOGVV("mterp threadid=%d : %s.%s %s",
87 dvmThreadSelf()->threadId,
  /external/qemu/distrib/sdl-1.2.15/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 71 ThreadId vg_threadid; /**< Valgrind thread ID. */
134 DrdThreadId DRD_(VgThreadIdToDrdThreadId)(const ThreadId tid);
135 DrdThreadId DRD_(NewVgThreadIdToDrdThreadId)(const ThreadId tid);
137 ThreadId DRD_(DrdThreadIdToVgThreadId)(const DrdThreadId tid);
139 const ThreadId vg_created);
140 DrdThreadId DRD_(thread_post_create)(const ThreadId vg_created);
163 void DRD_(thread_set_vg_running_tid)(const ThreadId vg_tid);
164 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++));
  /libcore/dalvik/src/main/java/dalvik/system/profiler/
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...]

Completed in 441 milliseconds

1 23 4 5 6 7 8 91011>>