HomeSort by relevance Sort by last modified time
    Searched refs:TransactionService (Results 1 - 7 of 7) sorted by null

  /packages/apps/Mms/src/com/android/mms/transaction/
MmsSystemEventReceiver.java 52 context.startService(new Intent(context, TransactionService.class));
TransactionService.java 59 * The TransactionService of the MMS Client is responsible for handling requests
65 * The TransactionService runs locally in the same process as the application.
85 public class TransactionService extends Service implements Observer {
86 private static final String TAG = "TransactionService";
90 * TransactionService when a Transaction is completed.
97 * TransactionService.
109 * Used as extra key in notification intents broadcasted by the TransactionService
117 * Used as extra key in notification intents broadcasted by the TransactionService
158 Toast.makeText(TransactionService.this, str,
167 Log.v(TAG, "Creating TransactionService");
    [all...]
MmsMessageSender.java 124 mContext.startService(new Intent(mContext, TransactionService.class));
167 context.startService(new Intent(context, TransactionService.class));
RetryScheduler.java 287 Intent service = new Intent(TransactionService.ACTION_ONALARM,
288 null, context, TransactionService.class);
PushReceiver.java 53 * TransactionService by passing the push-data to it.
131 Intent svc = new Intent(mContext, TransactionService.class);
  /packages/apps/Mms/src/com/android/mms/ui/
MessagingPreferenceActivity.java 49 import com.android.mms.transaction.TransactionService;
297 * Trigger the TransactionService to download any outstanding messages.
300 startService(new Intent(TransactionService.ACTION_ENABLE_AUTO_RETRIEVE, null, this,
301 TransactionService.class));
MessageListItem.java 68 import com.android.mms.transaction.TransactionService;
245 Intent intent = new Intent(mContext, TransactionService.class);
    [all...]

Completed in 1188 milliseconds