| /external/lldb/tools/debugserver/source/ |
| RNBRemote.cpp | 126 t.push_back (Packet (set_thread, &RNBRemote::HandlePacket_H, NULL, "H", "Set thread")); 139 t.push_back (Packet (thread_alive_p, &RNBRemote::HandlePacket_T, NULL, "T", "Is thread alive")); 144 t.push_back (Packet (vcont_list_actions, &RNBRemote::HandlePacket_v, NULL, "vCont;", "Verbose resume with thread actions")); 145 t.push_back (Packet (vcont_list_actions, &RNBRemote::HandlePacket_v, NULL, "vCont?", "List valid continue-with-thread-actions actions")); 157 t.push_back (Packet (query_current_thread_id, &RNBRemote::HandlePacket_qC, NULL, "qC", "Query current thread ID")); 163 // TTTT is hex thread ID 164 t.push_back (Packet (query_thread_stop_info, &RNBRemote::HandlePacket_qThreadStopInfo, NULL, "qThreadStopInfo", "Get detailed info on why the specified thread stopped")); 165 t.push_back (Packet (query_thread_extra_info, &RNBRemote::HandlePacket_qThreadExtraInfo,NULL, "qThreadExtraInfo", "Get printable status of a thread")); 177 t.push_back (Packet (prefix_reg_packets_with_tid, &RNBRemote::HandlePacket_QThreadSuffixSupported , NULL, "QThreadSuffixSupported", "Check if thread specifc packets (register packets 'g', 'G', 'p', and 'P') support having the thread ID appended to the end of the command")) 4049 nub_thread_t thread = DNBProcessGetCurrentThreadMachPort (pid); local [all...] |
| /frameworks/av/services/audioflinger/ |
| AudioFlinger.cpp | 561 // further sample rate checks are performed by createTrack_l() depending on the thread type 568 // further channel mask checks are performed by createTrack_l() depending on the thread type 575 // further format checks are performed by createTrack_l() depending on the thread type 590 PlaybackThread *thread = checkPlaybackThread_l(output); local 591 if (thread == NULL) { 592 ALOGE("no playback thread found for output handle %d", output); 604 // output thread and move it here. 624 track = thread->createTrack_l(client, streamType, sampleRate, format, 629 // move effect chain to this output thread if an effect on same session was waiting 633 Mutex::Autolock _dl(thread->mLock) 679 PlaybackThread *thread = checkPlaybackThread_l(output); local 690 PlaybackThread *thread = checkPlaybackThread_l(output); local 701 PlaybackThread *thread = checkPlaybackThread_l(output); local 714 PlaybackThread *thread = checkPlaybackThread_l(output); local 907 PlaybackThread *thread = NULL; local 958 PlaybackThread *thread = checkPlaybackThread_l(output); local 1011 sp<RecordThread> thread = mRecordThreads.valueAt(i); local 1042 sp<ThreadBase> thread; local 1262 sp<PlaybackThread> thread; local 1405 RecordThread *thread = checkRecordThread_l(input); local 1576 PlaybackThread *thread = primaryPlaybackThread_l(); local 1583 PlaybackThread *thread = primaryPlaybackThread_l(); local 1608 sp<PlaybackThread> thread = mPlaybackThreads.valueAt(i); local 1688 PlaybackThread *thread; local 1730 sp<PlaybackThread> thread = openOutput_l(module, output, config, *devices, address, flags); local 1769 DuplicatingThread *thread = new DuplicatingThread(this, thread1, id); local 1786 sp<PlaybackThread> thread; local 1855 PlaybackThread *thread = checkPlaybackThread_l(output); local 1870 PlaybackThread *thread = checkPlaybackThread_l(output); local 1897 sp<RecordThread> thread = openInput_l(module, input, config, *device, address, source, flags); local 2011 sp<RecordThread> thread = new RecordThread(this, local 2038 sp<RecordThread> thread; local 2115 PlaybackThread *thread = mPlaybackThreads.valueAt(i).get(); local 2256 PlaybackThread *thread = checkPlaybackThread_l(output); local 2274 PlaybackThread *thread = mPlaybackThreads.valueAt(i).get(); local 2285 PlaybackThread *thread = primaryPlaybackThread_l(); local 2505 ThreadBase *thread = checkRecordThread_l(io); local [all...] |
| Threads.cpp | 95 // allow less retry attempts on direct output thread. 109 // minimum sleep time for the mixer thread loop when tracks are active but in underrun 111 // maximum divider applied to the active sleep time in the mixer thread loop 119 // Offloaded output thread standby delay: allows track transition without going to standby 169 // See Thread::readOnlyHeap(). 217 ThreadCpuUsage mCpuUsage; // instantaneous thread CPU usage in wall clock ns 218 CentralTendencyStatistics mWcStats; // statistics on thread CPU usage in wall clock ns 220 CentralTendencyStatistics mHzStats; // statistics on thread CPU usage in cycles 222 int mCpuNum; // thread's current CPU number 223 int mCpukHz; // frequency of thread's current CPU in kH 744 sp<ThreadBase> thread = mThread.promote(); local 4786 sp<ThreadBase> thread = outputTracks[i]->thread().promote(); local [all...] |
| /frameworks/base/core/java/android/app/ |
| ActivityManager.java | 2769 ActivityThread thread = ActivityThread.currentActivityThread(); local [all...] |
| ActivityThread.java | 137 * This manages the execution of the main thread in an 5138 ActivityThread thread = new ActivityThread(); local 5207 ActivityThread thread = new ActivityThread(); local [all...] |
| /libcore/luni/src/main/java/java/util/concurrent/ |
| ForkJoinPool.java | 9 import java.lang.Thread.UncaughtExceptionHandler; 153 * push and pop are called only from the owning thread (or, as 268 * All worker thread creation is on-demand, triggered by task 306 * races, mainly that a task-producing thread can miss seeing (and 307 * signalling) another thread that gave up looking for work but 315 * Note the unusual conventions about Thread.interrupts 319 * Thread.interrupted) before any call to park, so that park does 333 * long, and the time between signalling a thread and it actually 365 * just let them block (as in Thread.join). We also cannot just 377 * thread to compensate for blocked joiners until they unblock 3026 Thread thread = Thread.currentThread(); local [all...] |
| /packages/apps/Camera/src/com/android/camera/ |
| PanoramaModule.java | 239 // This runs in UI thread. 244 // If we call onFrameAvailable after pausing, the GL thread will crash. 461 new Thread(new Runnable() { 502 /* This function may be called by some random thread, 503 * so let's be safe and jump back to ui thread. 596 runBackgroundThread(new Thread() { 753 Thread t = new Thread() { [all...] |
| /packages/apps/LegacyCamera/src/com/android/camera/panorama/ |
| PanoramaActivity.java | 313 // from the UI thread. 514 /* This function may be called by some random thread, 518 // after pausing, the GL thread will crash. 521 // Updating the texture should be done in the GL thread which mMosaicView is attached. 620 runBackgroundThread(new Thread() { 637 // do we have to wait for the thread to complete before enabling this? 782 Thread t = new Thread() { [all...] |
| /art/runtime/ |
| jni_internal.cc | 54 #include "thread.h" 127 static mirror::Class* EnsureInitialized(Thread* self, mirror::Class* klass) 313 Thread* self = Thread::Current(); 323 LOG(ERROR) << "Attempt to attach a thread in the zygote"; 345 *p_env = Thread::Current()->GetJniEnv(); 359 jni_on_load_thread_id_(Thread::Current()->GetThreadId()), 373 * If the call has not yet finished in another thread, wait for it. 378 Thread* self = Thread::Current() 3098 Thread* thread = Thread::Current(); local [all...] |
| debugger.cc | 86 ScopedObjectAccessUnchecked soa(Thread::Current()); 91 ScopedObjectAccessUnchecked soa(Thread::Current()); 109 ScopedObjectAccessUnchecked soa(Thread::Current()); 128 Thread* self = Thread::Current(); 140 return down_cast<mirror::Class*>(Thread::Current()->DecodeJObject(type_)); 189 ScopedObjectAccessUnchecked soa(Thread::Current()); 196 ScopedObjectAccessUnchecked soa(Thread::Current()); 201 ScopedObjectAccessUnchecked soa(Thread::Current()); 233 void MethodEntered(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method 971 Thread* thread; local 994 Thread* thread; local 1963 Thread* thread; local 1992 Thread* thread; local 2174 Thread* thread; local 2195 Thread* thread; local 2208 Thread* thread; local 2287 Thread* thread; local 2340 Thread* thread; local 2385 Thread* thread = thread_list->SuspendThreadByPeer(peer.get(), request_suspension, true, local 2399 Thread* thread; local 2445 Thread* thread; local 2617 Thread* thread; local 2745 Thread* thread; local 3346 Thread* const thread = sts.GetThread(); local 3436 Thread* thread; local 3528 mirror::Object* thread = gRegistry->Get<mirror::Object*>(thread_id); local [all...] |
| /external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/ |
| TimelineModel.js | 381 thread: function() { }, 474 * @param {string} thread 478 process: function(thread, records) 480 if (thread) {
|
| TracingTimelineModel.js | 160 var process = event.thread.process(); 167 process.sortedThreads().forEach(this._processThreadEvents.bind(this, startTime, endTime, event.thread)); 271 * @param {!WebInspector.TracingModel.Thread} mainThread 272 * @param {!WebInspector.TracingModel.Thread} thread 274 _processThreadEvents: function(startTime, endTime, mainThread, thread) 276 var events = thread.events(); 286 if (thread === mainThread) 551 thread: function()
|
| /external/valgrind/main/helgrind/ |
| hg_main.c | 91 // FIXME put referencing ThreadId into Thread and get 99 // the thread still holds the lock. 117 // FIXME: don't hardwire initial entries for root thread. 126 static Thread* admin_threads = NULL; 127 Thread* get_admin_threads ( void ) { return admin_threads; } 134 /* Mapping table for core ThreadIds to Thread* */ 135 static Thread** map_threads = NULL; /* Array[VG_N_THREADS] of Thread* */ 164 ThreadId map_threads_maybe_reverse_lookup_SLOW ( Thread* thr ); /*fwds*/ 168 static Thread* mk_Thread ( Thr* hbthr ) 170 Thread* thread = HG_(zalloc)( "hg.mk_Thread.1", sizeof(Thread) ); local [all...] |
| /prebuilts/tools/common/m2/repository/commons-io/commons-io/2.4/ |
| commons-io-2.4.jar | |
| /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/ |
| commons-io-2.2.jar | |
| /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/ |
| ant-jsch.jar | |
| /developers/build/prebuilts/gradle/ActivitySceneTransitionBasic/Application/libs/ |
| volley.jar | |
| /developers/samples/android/ui/activityscenetransition/ActivitySceneTransitionBasic/Application/libs/ |
| volley.jar | |
| /external/smack/asmack-master/lib/ |
| jstun.jar | |
| /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/apache/commons/commons-exec/1.2/ |
| commons-exec-1.2.jar | |
| /prebuilts/tools/common/m2/repository/org/eclipse/aether/aether-util/0.9.0.M3/ |
| aether-util-0.9.0.M3.jar | |
| /prebuilts/tools/common/google-api-java-client/1.8.0-rc/ |
| google-api-java-client-min-repackaged.jar | |
| /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
| org.eclipse.ecf.provider.filetransfer_3.1.0.v20100529-0735.jar | |
| org.eclipse.equinox.p2.artifact.repository_1.1.1.R36x_v20100901.jar | |
| org.eclipse.equinox.util_1.0.200.v20100503.jar | |