HomeSort by relevance Sort by last modified time
    Searched full:threadid (Results 1 - 25 of 353) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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:__anon29869
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,