Searched defs:thread (Results 1 - 6 of 6) sorted by relevance

/development/ndk/sources/android/libportable/arch-mips/
H A Dpthread.c122 PTHREAD_WRAPPER(pthread_create, (pthread_t *thread, const pthread_attr_t *attr,
124 (thread, attr, start_routine, arg),
125 "(thread:%p attr:%p, start_routine:%p, arg:%p)");
262 int WRAP(pthread_kill)(pthread_t thread, int portable_signum) argument
268 ALOGV("%s(thread:%lx, portable_signum:%d)", __func__, thread, portable_signum);
276 ALOGV("%s: calling pthread_kill(thread:%lx, mips_signum:%d);", __func__,
277 thread, mips_signum);
278 ret = REAL(pthread_kill)(thread, mips_signum);
/development/ndk/sources/android/native_app_glue/
H A Dandroid_native_app_glue.h36 * by the Activity's main thread when certain events occur.
44 * loop in a different thread instead. Here's how it works:
47 * will be called when the activity is created, in a new thread that is
48 * distinct from the activity's main thread.
106 * in its own thread separate from the main thread of the process.
107 * It is not required that this thread be associated with the Java
142 // The ALooper associated with the app's thread.
161 // destroyed and waiting for the app thread to complete.
173 pthread_t thread; member in struct:android_app
[all...]
/development/samples/training/threadsample/src/com/example/android/threadsample/
H A DPhotoTask.java225 public void setCurrentThread(Thread thread) { argument
227 mCurrentThread = thread;
/development/ndk/platforms/android-3/include/linux/raid/
H A Dmd_k.h102 struct mdk_thread_s *thread; member in struct:mddev_s
/development/samples/JetBoy/src/com/example/android/jetboy/
H A DJetBoyView.java215 /** Message handler used by thread to interact with TextView */
433 // JET info: inthis animation thread object.
1027 * Used to signal the thread whether it should be running or not.
1028 * Passing true allows the thread to run; passing false will shut it
1227 //this is how we send data back up to the main JetBoyView thread.
1270 //events fire outside the animation thread. This can cause timing issues.
1271 //put in queue for processing by animation thread.
1288 }//end thread class
1292 /** The thread that actually draws the animation */
1293 private JetBoyThread thread; field in class:JetBoyView
[all...]
/development/samples/LunarLander/src/com/example/android/lunarlander/
H A DLunarView.java163 /** Message handler used by thread to interact with TextView */
430 * Used to signal the thread whether it should be running or not.
431 * Passing true allows the thread to run; passing false will shut it
470 * owned by this thread, we can't touch the state of that View.
472 * thread, which updates the user-text View.
796 /** The thread that actually draws the animation */
797 private LunarThread thread; field in class:LunarView
806 // create thread only; it's started in surfaceCreated()
807 thread = new LunarThread(holder, context, new Handler() {
819 * Fetches the animation thread correspondin
[all...]

Completed in 1753 milliseconds