HomeSort by relevance Sort by last modified time
    Searched full:threadid (Results 26 - 50 of 354) sorted by null

12 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/ddm/
DdmHandleThread.java 116 * This is done by threadId, which isn't great since those are
119 * However, we're using the short threadId in THST messages, so we
125 int threadId;
127 threadId = in.getInt();
129 //Log.d("ddm-thread", "Stack list request " + threadId);
131 StackTraceElement[] trace = DdmVmInternal.getStackTraceById(threadId);
135 return createStackChunk(trace, threadId);
142 * We include the threadId in the response so the other side doesn't have
145 private Chunk createStackChunk(StackTraceElement[] trace, int threadId) {
162 out.putInt(threadId);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
ThreadingPthreads.cpp 211 int waitForThreadCompletion(ThreadIdentifier threadID)
214 ASSERT(threadID);
219 pthreadHandle = pthreadHandleForIdentifierWithLockAlreadyHeld(threadID);
226 WTF_LOG_ERROR("ThreadIdentifier %u was found to be deadlocked trying to quit", threadID);
228 WTF_LOG_ERROR("ThreadIdentifier %u was unable to be joined.\n", threadID);
231 PthreadState* state = threadMap().get(threadID);
237 threadMap().remove(threadID);
245 void detachThread(ThreadIdentifier threadID)
247 ASSERT(threadID);
250 pthread_t pthreadHandle = pthreadHandleForIdentifierWithLockAlreadyHeld(threadID);
    [all...]
ThreadingWin.cpp 178 static void storeThreadHandleByIdentifier(DWORD threadID, HANDLE threadHandle)
181 ASSERT(!threadMap().contains(threadID));
182 threadMap().add(threadID, threadHandle);
212 ThreadIdentifier threadID = 0;
223 threadID = static_cast<ThreadIdentifier>(threadIdentifier);
226 return threadID;
229 int waitForThreadCompletion(ThreadIdentifier threadID)
231 ASSERT(threadID);
233 HANDLE threadHandle = threadHandleForIdentifier(threadID);
235 WTF_LOG_ERROR("ThreadIdentifier %u did not correspond to an active thread when trying to quit", threadID);
    [all...]
  /external/chromium_org/v8/src/
v8threads.cc 144 if (lazily_archived_thread_.Equals(ThreadId::Current())) {
145 lazily_archived_thread_ = ThreadId::Invalid();
150 lazily_archived_thread_state_->set_id(ThreadId::Invalid());
189 state->set_id(ThreadId::Invalid());
198 mutex_owner_ = ThreadId::Current();
204 mutex_owner_ = ThreadId::Invalid();
223 : id_(ThreadId::Invalid()),
286 : mutex_owner_(ThreadId::Invalid()),
287 lazily_archived_thread_(ThreadId::Invalid()),
314 ASSERT(lazily_archived_thread_.Equals(ThreadId::Invalid()))
    [all...]
  /dalvik/tools/dmtracedump/
CreateTestTrace.c 65 int threadId;
121 unsigned int time = 0, threadId;
148 int threadId = strtoul(cp, &cp, 0);
149 if (maxThreadId < threadId)
150 maxThreadId = threadId;
186 * default values for the time and threadId.
189 threadId = 1;
194 threadId = strtoul(cp, &cp, 0);
199 if (callStack[threadId].frames == NULL) {
202 callStack[threadId].frames = stk
    [all...]
  /external/smack/src/org/jivesoftware/smack/
ChatManager.java 144 String threadID;
146 threadID = nextID();
147 } while (threadChats.get(threadID) != null);
149 return createChat(userJID, threadID, listener);
166 throw new IllegalArgumentException("ThreadID is already used");
173 private Chat createChat(String userJID, String threadID, boolean createdLocally) {
174 Chat chat = new Chat(this, userJID, threadID);
175 threadChats.put(threadID, chat);
187 String threadID = message.getThread();
188 if(threadID == null)
    [all...]
  /external/valgrind/main/coregrind/
m_threadstate.c 45 ThreadId VG_(running_tid) = VG_INVALID_THREADID;
55 ThreadId tid;
81 ThreadState *VG_(get_ThreadState)(ThreadId tid)
88 Bool VG_(is_valid_tid) ( ThreadId tid )
98 ThreadId VG_(get_running_tid)(void)
103 Bool VG_(is_running_thread)(ThreadId tid)
114 inline Bool VG_(is_exiting)(ThreadId tid)
124 ThreadId tid;
138 ThreadId tid;
148 ThreadId */
    [all...]
pub_core_scheduler.h 41 extern ThreadId VG_(alloc_ThreadState)(void);
44 extern void VG_(exit_thread)(ThreadId tid);
49 extern void VG_(get_thread_out_of_syscall)(ThreadId tid);
52 extern void VG_(nuke_all_threads_except) ( ThreadId me,
60 extern void VG_(acquire_BigLock) ( ThreadId tid, HChar* who );
75 extern void VG_(release_BigLock) ( ThreadId tid,
82 extern Bool VG_(owns_BigLock_LL) ( ThreadId tid );
89 extern VgSchedReturnCode VG_(scheduler) ( ThreadId tid );
92 // ThreadId and initialise the bigLock.
93 extern ThreadId VG_(scheduler_init_phase1) ( void )
    [all...]
  /external/valgrind/main/drd/tests/
fp_race.c 35 pthread_t threadid; local
71 pthread_create(&threadid, 0, thread_func, 0);
82 pthread_join(threadid, 0);
sem_as_mutex.c 36 pthread_t threadid; local
72 pthread_create(&threadid, 0, thread_func, 0);
83 pthread_join(threadid, 0);
sem_open.c 36 pthread_t threadid; local
85 pthread_create(&threadid, 0, thread_func, 0);
96 pthread_join(threadid, 0);
  /external/valgrind/main/include/
pub_tool_machine.h 99 Addr VG_(get_IP) ( ThreadId tid );
100 Addr VG_(get_SP) ( ThreadId tid );
110 VG_(get_shadow_regs_area) ( ThreadId tid,
114 VG_(set_shadow_regs_area) ( ThreadId tid,
120 void VG_(set_syscall_return_shadows) ( ThreadId tid,
130 extern void VG_(apply_to_GP_regs)(void (*f)(ThreadId tid,
136 extern void VG_(thread_stack_reset_iter) ( /*OUT*/ThreadId* tid );
137 extern Bool VG_(thread_stack_next) ( /*MOD*/ThreadId* tid,
142 extern Addr VG_(thread_get_stack_max) ( ThreadId tid );
145 extern SizeT VG_(thread_get_stack_size) ( ThreadId tid )
    [all...]
  /external/chromium_org/media/cast/
cast_environment.cc 34 bool CastEnvironment::PostTask(ThreadId identifier,
43 bool CastEnvironment::PostDelayedTask(ThreadId identifier,
54 ThreadId identifier) {
72 bool CastEnvironment::CurrentlyOn(ThreadId identifier) {
cast_environment.h 23 enum ThreadId {
52 bool PostTask(ThreadId identifier,
56 bool PostDelayedTask(ThreadId identifier,
61 bool CurrentlyOn(ThreadId identifier);
75 ThreadId identifier);
  /art/runtime/jdwp/
jdwp_event.cc 110 ModBasket() : pLoc(NULL), threadId(0), classId(0), excepClassId(0),
115 ObjectId threadId; /* ThreadOnly */
163 JdwpError status = Dbg::ConfigureStep(pMod->step.threadId, size, depth);
222 Dbg::UnconfigureStep(pMod->step.threadId);
392 if (pMod->threadOnly.threadId != basket->threadId) {
430 if (pMod->step.threadId != basket->threadId) {
548 ObjectId threadId) {
556 SetWaitForEventThread(threadId);
    [all...]
  /dalvik/vm/mterp/cstubs/
entry.cpp 28 LOGVV("mterp threadid=%d returning", dvmThreadSelf()->threadId);
  /external/valgrind/main/drd/
drd_malloc_wrappers.h 39 void DRD_(malloclike_block)(const ThreadId tid, const Addr p, const SizeT size);
40 Bool DRD_(freelike_block)(const ThreadId tid, const Addr p, const Bool dealloc);
drd_malloc_wrappers.c 70 static void* new_block(ThreadId tid, SizeT size, SizeT align, Bool is_zeroed)
89 void DRD_(malloclike_block)(const ThreadId tid, const Addr p, const SizeT size)
109 static void handle_free(ThreadId tid, void* p)
122 Bool DRD_(freelike_block)(const ThreadId tid, const Addr p, const Bool dealloc)
146 static void* drd_malloc(ThreadId tid, SizeT n)
152 static void* drd_memalign(ThreadId tid, SizeT align, SizeT n)
158 static void* drd_calloc(ThreadId tid, SizeT nmemb, SizeT size1)
165 static void drd_free(ThreadId tid, void* p)
178 static void* drd_realloc(ThreadId tid, void* p_old, SizeT new_size)
253 static void* drd___builtin_new(ThreadId tid, SizeT n
    [all...]
  /frameworks/opt/mms/src/java/com/google/android/mms/util/
PduCacheEntry.java 27 public PduCacheEntry(GenericPdu pdu, int msgBox, long threadId) {
30 mThreadId = threadId;
  /dalvik/vm/jdwp/
JdwpEvent.cpp 106 ObjectId threadId; /* ThreadOnly */
208 dvmDbgConfigureStep(pMod->step.threadId, size, depth);
266 dvmDbgUnconfigureStep(pMod->step.threadId);
475 if (pMod->threadOnly.threadId != basket->threadId)
511 if (pMod->step.threadId != basket->threadId)
648 * Call this with a threadId of zero if you just want to wait for the
654 void dvmJdwpSetWaitForEventThread(JdwpState* state, ObjectId threadId)
667 state->eventThreadId, threadId);
    [all...]
JdwpHandler.cpp 104 ObjectId threadId, ObjectId objectId, RefTypeId classId, MethodId methodId,
111 ALOGV(" --> threadId=%llx objectId=%llx", threadId, objectId);
140 JdwpError err = dvmDbgInvokeMethod(threadId, objectId, classId, methodId,
756 ObjectId threadId = dvmReadObjectId(&buf);
760 threadId, 0, classId, methodId, false);
774 ObjectId threadId = dvmReadObjectId(&buf);
783 threadId, objectId, classId, methodId, true);
852 * This can get called on different things, e.g. threadId gets
934 ObjectId threadId = dvmReadObjectId(&buf)
    [all...]
  /dalvik/vm/
Thread.cpp 293 * We need to assign the threadId early so we can lock/notify
479 ALOGI("threadid=%d ODD: want thread-suspend lock (%s:%s),"
481 self->threadId, who, getSuspendCauseStr(why));
491 ALOGE("threadid=%d: couldn't get thread-suspend lock (%s:%s),"
493 self->threadId, who, getSuspendCauseStr(why));
536 int threadId = 0;
542 threadId = self->threadId;
555 ALOGW("threadid=%d: non-daemon id=%d still running at shutdown?!",
556 threadId, target->threadId)
    [all...]
  /external/v8/src/
v8threads.cc 160 if (lazily_archived_thread_.Equals(ThreadId::Current())) {
161 lazily_archived_thread_ = ThreadId::Invalid();
166 lazily_archived_thread_state_->set_id(ThreadId::Invalid());
205 state->set_id(ThreadId::Invalid());
214 mutex_owner_ = ThreadId::Current();
220 mutex_owner_ = ThreadId::Invalid();
239 : id_(ThreadId::Invalid()),
297 mutex_owner_(ThreadId::Invalid()),
298 lazily_archived_thread_(ThreadId::Invalid()),
315 ASSERT(lazily_archived_thread_.Equals(ThreadId::Invalid()))
    [all...]
  /dalvik/vm/native/
org_apache_harmony_dalvik_ddmc_DdmVmInternal.cpp 88 * public static StackTraceElement[] getStackTraceById(int threadId)
91 * NULL on failure, e.g. if the threadId couldn't be found.
97 u4 threadId = args[0];
100 trace = dvmDdmGetStackTraceById(threadId);
  /libcore/dalvik/src/test/java/dalvik/system/profiler/
SamplingProfilerTest.java 125 final int threadId = 1;
127 ThreadEvent start1 = ThreadEvent.start(objectId, threadId,
134 ThreadEvent end2 = ThreadEvent.end(threadId+1);
140 ThreadEvent end1 = ThreadEvent.end(threadId);
147 hprofData.addThreadEvent(ThreadEvent.end(threadId));
164 final int threadId = 2;
169 StackTrace stackTrace = new StackTrace(stackTraceId, threadId, stackFrames);
177 ThreadEvent start = ThreadEvent.start(objectId, threadId,
231 assertTrue(threadsActive.add(event.threadId));
232 assertTrue(threadsSeen.add(event.threadId));
    [all...]

Completed in 1468 milliseconds

12 3 4 5 6 7 8 91011>>