/external/valgrind/main/drd/tests/ |
linuxthreads_det.c | 29 pthread_t threadid; local 32 pthread_create(&threadid, 0, thread_func, 0); 33 pthread_join(threadid, 0);
|
sigalrm.c | 58 pthread_t threadid; local 75 if (pthread_create(&threadid, 0, thread_func, 0) != 0) { 84 pthread_kill(threadid, SIGALRM); 85 pthread_join(threadid, 0);
|
pth_cond_race.c | 28 pthread_t threadid; local 46 pthread_create(&threadid, 0, thread_func, 0); 51 pthread_join(threadid, 0);
|
/frameworks/base/core/java/android/accessibilityservice/ |
IAccessibilityServiceConnection.aidl | 36 IAccessibilityInteractionConnectionCallback callback, int flags, long threadId); 40 long threadId); 44 IAccessibilityInteractionConnectionCallback callback, long threadId); 47 int interactionId, IAccessibilityInteractionConnectionCallback callback, long threadId); 50 int interactionId, IAccessibilityInteractionConnectionCallback callback, long threadId); 54 IAccessibilityInteractionConnectionCallback callback, long 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...] |
Recycler.java | 84 long threadId = getThreadId(cursor); 85 deleteMessagesForThread(context, threadId, limit); 92 public void deleteOldMessagesByThreadId(Context context, long threadId) { 95 " threadId: " + threadId); 101 deleteMessagesForThread(context, threadId, getMessageLimit(context)); 126 abstract protected void deleteMessagesForThread(Context context, long threadId, int keep); 191 protected void deleteMessagesForThread(Context context, long threadId, int keep) { 199 ContentUris.withAppendedId(Sms.Conversations.CONTENT_URI, threadId), 222 ContentUris.withAppendedId(Sms.Conversations.CONTENT_URI, threadId), [all...] |
/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...] |
/dalvik/vm/ |
Debugger.h | 226 char* dvmDbgGetThreadName(ObjectId threadId); 227 ObjectId dvmDbgGetThreadGroup(ObjectId threadId); 233 bool dvmDbgGetThreadStatus(ObjectId threadId, u4* threadStatus, 235 u4 dvmDbgGetThreadSuspendCount(ObjectId threadId); 236 bool dvmDbgThreadExists(ObjectId threadId); 237 bool dvmDbgIsSuspended(ObjectId threadId); 238 //void dvmDbgWaitForSuspend(ObjectId threadId); 242 int dvmDbgGetThreadFrameCount(ObjectId threadId); 243 bool dvmDbgGetThreadFrame(ObjectId threadId, int num, FrameId* pFrameId, 249 void dvmDbgSuspendThread(ObjectId threadId); [all...] |
/external/chromium_org/v8/src/ |
v8threads.h | 46 void set_id(ThreadId id) { id_ = id; } 47 ThreadId id() { return id_; } 64 ThreadId id_; 103 return mutex_owner_.Equals(ThreadId::Current()); 106 ThreadId CurrentId(); 108 void TerminateExecution(ThreadId thread_id); 123 ThreadId mutex_owner_; 124 ThreadId lazily_archived_thread_;
|
/external/v8/src/ |
v8threads.h | 46 void set_id(ThreadId id) { id_ = id; } 47 ThreadId id() { return id_; } 63 ThreadId id_; 102 return mutex_owner_.Equals(ThreadId::Current()); 105 ThreadId CurrentId(); 107 void TerminateExecution(ThreadId thread_id); 120 ThreadId mutex_owner_; 121 ThreadId lazily_archived_thread_;
|
/external/valgrind/main/drd/ |
drd_vc.c | 88 if (vc->vc[i].threadid == tid) 136 while (i < result->size && result->vc[i].threadid < rhs->vc[j].threadid) 146 if (result->vc[i].threadid <= rhs->vc[j].threadid) 150 tl_assert(result->vc[i].threadid == rhs->vc[j].threadid); 178 while (j < rhs->size && rhs->vc[j].threadid < result->vc[i].threadid) 182 if (result->vc[i].threadid == rhs->vc[j].threadid [all...] |
drd_vc.h | 60 DrdThreadId threadid; member in struct:__anon28059 109 while (j < vc2->size && vc2->vc[j].threadid < vc1->vc[i].threadid) 111 if (j >= vc2->size || vc2->vc[j].threadid > vc1->vc[i].threadid) 118 tl_assert(j < vc2->size && vc2->vc[j].threadid == vc1->vc[i].threadid);
|
/dalvik/vm/alloc/ |
Visit.cpp | 55 u4 threadId, RootType type, void *arg) 61 (*visitor)(entry, threadId, type, arg); 69 u4 threadId, RootType type, void *arg) 75 (*visitor)(*it, threadId, type, arg); 87 u4 threadId = thread->threadId; 111 (*visitor)(&fp[i], threadId, ROOT_JAVA_FRAME, arg); 145 (*visitor)(&fp[i], threadId, ROOT_JAVA_FRAME, arg); 164 u4 threadId; 168 threadId = thread->threadId [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);
|
/sdk/emulator/qtools/ |
dmtrace.h | 28 void addThread(int threadId, const char *name); 29 void updateName(int threadId, const char *name); 48 void writeDataRecord(FILE *fstream, int threadId,
|
/external/valgrind/main/coregrind/ |
pub_core_tooliface.h | 139 Bool (*tool_handle_client_request)(ThreadId, UWord*, UWord*); 142 void (*tool_pre_syscall) (ThreadId, UInt, UWord*, UInt); 143 void (*tool_post_syscall)(ThreadId, UInt, UWord*, UInt, SysRes); 150 void* (*tool_malloc) (ThreadId, SizeT); 151 void* (*tool___builtin_new) (ThreadId, SizeT); 152 void* (*tool___builtin_vec_new) (ThreadId, SizeT); 153 void* (*tool_memalign) (ThreadId, SizeT, SizeT); 154 void* (*tool_calloc) (ThreadId, SizeT, SizeT); 155 void (*tool_free) (ThreadId, void*); 156 void (*tool___builtin_delete) (ThreadId, void*) [all...] |
pub_core_replacemalloc.h | 43 void* (*tl_malloc) (ThreadId tid, SizeT n); 44 void* (*tl___builtin_new) (ThreadId tid, SizeT n); 45 void* (*tl___builtin_vec_new) (ThreadId tid, SizeT n); 46 void* (*tl_memalign) (ThreadId tid, SizeT align, SizeT n); 47 void* (*tl_calloc) (ThreadId tid, SizeT nmemb, SizeT n); 48 void (*tl_free) (ThreadId tid, void* p); 49 void (*tl___builtin_delete) (ThreadId tid, void* p); 50 void (*tl___builtin_vec_delete)(ThreadId tid, void* p); 51 void* (*tl_realloc) (ThreadId tid, void* p, SizeT size); 52 SizeT (*tl_malloc_usable_size) (ThreadId tid, void* payload) [all...] |
m_tooliface.c | 265 Bool (*handle)(ThreadId, UWord*, UWord*) 273 void(*pre) (ThreadId, UInt, UWord*, UInt), 274 void(*post)(ThreadId, UInt, UWord*, UInt, SysRes res) 293 void* (*malloc) ( ThreadId, SizeT ), 294 void* (*__builtin_new) ( ThreadId, SizeT ), 295 void* (*__builtin_vec_new) ( ThreadId, SizeT ), 296 void* (*memalign) ( ThreadId, SizeT, SizeT ), 297 void* (*calloc) ( ThreadId, SizeT, SizeT ), 298 void (*free) ( ThreadId, void* ), 299 void (*__builtin_delete) ( ThreadId, void* ) [all...] |
pub_core_signals.h | 54 extern void VG_(poll_signals) ( ThreadId ); 57 extern SysRes VG_(do_sys_sigaltstack) ( ThreadId tid, vki_stack_t* ss, 62 extern SysRes VG_(do_sys_sigprocmask) ( ThreadId tid, Int how, 67 ( ThreadId tid, /* OUT */ vki_sigset_t* saved_mask ); 74 extern void VG_(synth_fault) (ThreadId tid); 75 extern void VG_(synth_fault_mapping)(ThreadId tid, Addr addr); 76 extern void VG_(synth_fault_perms) (ThreadId tid, Addr addr); 77 extern void VG_(synth_sigill) (ThreadId tid, Addr addr); 78 extern void VG_(synth_sigtrap) (ThreadId tid); 79 extern void VG_(synth_sigbus) (ThreadId tid) [all...] |
/packages/apps/Mms/src/com/android/mms/data/ |
Conversation.java | 111 private Conversation(Context context, long threadId, boolean allowQuery) { 113 Log.v(TAG, "Conversation constructor threadId: " + threadId); 116 if (!loadFromThreadId(threadId, allowQuery)) { 142 public static Conversation get(Context context, long threadId, boolean allowQuery) { 144 Log.v(TAG, "Conversation get by threadId: " + threadId); 146 Conversation conv = Cache.get(threadId); 150 conv = new Conversation(context, threadId, allowQuery); 154 LogTag.error("Tried to add duplicate Conversation to Cache (from threadId): " + conv) [all...] |
/external/qemu/distrib/sdl-1.2.15/src/thread/win32/ |
SDL_systhread.c | 46 unsigned, unsigned *threadID); 51 unsigned, unsigned *threadID); 56 unsigned, unsigned *threadID); 124 unsigned threadid = 0; local 127 pThreadParms, 0, &threadid)); 129 DWORD threadid = 0; local 130 thread->handle = CreateThread(NULL, 0, RunThreadViaCreateThread, pThreadParms, 0, &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/Mms/src/com/android/mms/ui/ |
NoConfirmationSendService.java | 80 // Using invalid threadId 0 here. When the message is inserted into the db, the 81 // provider looks up the threadId based on the recipient(s). 82 long threadId = 0; 84 message, threadId); 89 smsMessageSender.sendMessage(threadId); 91 Log.e(TAG, "Failed to send SMS message, threadId=" + threadId, e);
|
/external/smack/src/org/jivesoftware/smack/ |
Chat.java | 43 private String threadID; 52 * @param threadID the thread ID to use. 54 Chat(ChatManager chatManager, String participant, String threadID) { 57 this.threadID = threadID; 68 return threadID; 95 message.setThread(threadID); 112 message.setThread(threadID); 166 message.setThread(threadID); 177 && threadID.equals(((Chat)obj).getThreadID() [all...] |
/external/valgrind/main/exp-sgcheck/ |
h_main.h | 59 void* h_replace_malloc ( ThreadId tid, SizeT n ); 60 void* h_replace___builtin_new ( ThreadId tid, SizeT n ); 61 void* h_replace___builtin_vec_new ( ThreadId tid, SizeT n ); 62 void* h_replace_memalign ( ThreadId tid, SizeT align, SizeT n ); 63 void* h_replace_calloc ( ThreadId tid, SizeT nmemb, SizeT size1 ); 64 void h_replace_free ( ThreadId tid, void* p ); 65 void h_replace___builtin_delete ( ThreadId tid, void* p ); 66 void h_replace___builtin_vec_delete ( ThreadId tid, void* p ); 67 void* h_replace_realloc ( ThreadId tid, void* p_old, SizeT new_size ); 68 SizeT h_replace_malloc_usable_size ( ThreadId tid, void* p ) [all...] |