Home | History | Annotate | Download | only in telecom

Lines Matching defs:thread

31  * Plays the default ringtone. Uses {@link Ringtone} in a separate thread so that this class can be
32 * used from the main thread.
36 // Message codes used with the ringtone thread.
44 /** Handler running on the ringtone thread. */
47 /** The current ringtone. Only used by the ringtone thread. */
66 * Posts a message to the ringtone-thread handler. Creates the handler if specified by the
87 * Creates a new ringtone Handler running in its own thread.
92 HandlerThread thread = new HandlerThread("ringtone-player");
93 thread.start();
95 return new Handler(thread.getLooper(), null /*callback*/, true /*async*/) {
114 * Starts the actual playback of the ringtone. Executes on ringtone-thread.
171 * Stops the playback of the ringtone. Executes on the ringtone-thread.
189 Log.v(this, "Keeping alive ringtone thread for subsequent play request.");