HomeSort by relevance Sort by last modified time
    Searched refs:MmsException (Results 1 - 25 of 34) sorted by null

1 2

  /frameworks/base/core/java/com/google/android/mms/
MmsException.java 23 public class MmsException extends Exception {
27 * Creates a new MmsException.
29 public MmsException() {
34 * Creates a new MmsException with the specified detail message.
38 public MmsException(String message) {
43 * Creates a new MmsException with the specified cause.
47 public MmsException(Throwable cause) {
52 * Creates a new MmsException with the specified detail message and cause.
57 public MmsException(String message, Throwable cause) {
InvalidHeaderValueException.java 23 public class InvalidHeaderValueException extends MmsException {
  /packages/apps/Mms/src/com/android/mms/transaction/
MessageSender.java 20 import com.google.android.mms.MmsException;
31 * @throws MmsException Error occurred while sending the message.
33 boolean sendMessage(long token) throws MmsException;
SmsSingleRecipientSender.java 16 import com.google.android.mms.MmsException;
37 public boolean sendMessage(long token) throws MmsException {
44 throw new MmsException("Null message body or have multiple destinations.");
66 throw new MmsException("SmsMessageSender.sendMessage: divideMessage returned " +
72 throw new MmsException("SmsMessageSender.sendMessage: couldn't move message " +
120 throw new MmsException("SmsMessageSender.sendMessage: caught " + ex +
Transaction.java 21 import com.google.android.mms.MmsException;
120 * @throws MmsException if pdu is null.
122 protected byte[] sendPdu(byte[] pdu) throws IOException, MmsException {
136 * @throws MmsException if pdu is null.
138 protected byte[] sendPdu(byte[] pdu, String mmscUrl) throws IOException, MmsException {
151 * @throws MmsException if pdu is null.
153 protected byte[] sendPdu(long token, byte[] pdu) throws IOException, MmsException {
167 * @throws MmsException if pdu is null.
170 String mmscUrl) throws IOException, MmsException {
172 throw new MmsException();
    [all...]
SmsMessageSender.java 22 import com.google.android.mms.MmsException;
72 public boolean sendMessage(long token) throws MmsException {
78 private boolean queueMessage(long token) throws MmsException {
81 throw new MmsException("Null message body or dest.");
MmsMessageSender.java 23 import com.google.android.mms.MmsException;
64 public boolean sendMessage(long token) throws MmsException {
70 throw new MmsException("Invalid message: " + pdu.getMessageType());
99 private void updatePreferencesHeaders(SendReq sendReq) throws MmsException {
138 } catch (MmsException e) {
ReadRecTransaction.java 20 import com.google.android.mms.MmsException;
91 } catch (MmsException e) {
RetrieveTransaction.java 24 import com.google.android.mms.MmsException;
77 throws MmsException {
96 throws MmsException {
114 throw new MmsException("Cannot get X-Mms-Content-Location from: " + uri);
138 throw new MmsException("Invalid M-Retrieve.conf PDU.");
220 private void sendAcknowledgeInd(RetrieveConf rc) throws MmsException, IOException {
NotificationTransaction.java 32 import com.google.android.mms.MmsException;
88 } catch (MmsException e) {
111 } catch (MmsException e) {
231 private void sendNotifyRespInd(int status) throws MmsException, IOException {
  /packages/apps/Mms/src/com/android/mms/dom/smil/parser/
SmilXmlParser.java 20 import com.google.android.mms.MmsException;
37 public SmilXmlParser() throws MmsException {
47 throw new MmsException(e);
  /packages/apps/Mms/src/com/android/mms/model/
RegionMediaModel.java 22 import com.google.android.mms.MmsException;
34 RegionModel region) throws MmsException {
39 String src, Uri uri, RegionModel region) throws MmsException {
AudioModel.java 24 import com.google.android.mms.MmsException;
49 public AudioModel(Context context, Uri uri) throws MmsException {
55 public AudioModel(Context context, String contentType, String src, Uri uri) throws MmsException {
66 private void initModelFromUri(Uri uri) throws MmsException {
101 throw new MmsException("Type of media is unknown.");
112 throw new MmsException("Nothing found: " + uri);
118 throw new MmsException("Bad URI: " + uri);
MediaModel.java 25 import com.google.android.mms.MmsException;
71 String src, Uri uri) throws MmsException {
126 } catch (MmsException e) {
254 protected void initMediaDuration() throws MmsException {
270 throw new MmsException(ex);
276 private void initMediaSize() throws MmsException {
298 throw new MmsException(e.getMessage());
353 * @throws MmsException
355 protected void resizeMedia(int byteLimit, long messageId) throws MmsException {
VideoModel.java 25 import com.google.android.mms.MmsException;
49 throws MmsException {
56 Uri uri, RegionModel region) throws MmsException {
65 private void initModelFromUri(Uri uri) throws MmsException {
99 private void initFromContentUri(Uri uri) throws MmsException {
118 throw new MmsException("Type of media is unknown.");
147 throw new MmsException("Nothing found: " + uri);
153 throw new MmsException("Bad URI: " + uri);
ImageModel.java 31 import com.google.android.mms.MmsException;
76 throws MmsException {
83 Uri uri, RegionModel region) throws DrmException, MmsException {
95 private void initModelFromUri(Uri uri) throws MmsException {
100 throw new MmsException("Type of media is unknown.");
218 protected void resizeMedia(int byteLimit, long messageId) throws MmsException {
MediaModelFactory.java 26 import com.google.android.mms.MmsException;
47 throws DrmException, IOException, IllegalArgumentException, MmsException {
96 LayoutModel layouts, PduPart part) throws DrmException, IOException, MmsException {
133 RegionModel regionModel) throws DrmException, IOException, MmsException {
SlideshowModel.java 31 import com.google.android.mms.MmsException;
107 Context context, Uri uri) throws MmsException {
111 public static SlideshowModel createFromPduBody(Context context, PduBody pb) throws MmsException {
345 public static PduBody getPduBody(Context context, Uri msg) throws MmsException {
354 throw new MmsException();
659 * @throws MmsException, ExceedMessageSizeException
661 public void finalResize(Uri messageUri) throws MmsException, ExceedMessageSizeException {
  /packages/apps/Mms/src/com/android/mms/ui/
SlideshowEditor.java 21 import com.google.android.mms.MmsException;
141 public void changeImage(int position, Uri newImage) throws MmsException {
146 public void changeAudio(int position, Uri newAudio) throws MmsException {
153 public void changeVideo(int position, Uri newVideo) throws MmsException {
SlideshowEditActivity.java 20 import com.google.android.mms.MmsException;
114 } catch (MmsException e) {
189 } catch (MmsException e) {
210 private void initSlideList() throws MmsException {
339 } catch (MmsException e) {
MessageItem.java 29 import com.google.android.mms.MmsException;
98 ColumnsMap columnsMap, Pattern highlight) throws MmsException {
243 throw new MmsException("Unknown type of the message: " + type);
SlideEditorActivity.java 24 import com.google.android.mms.MmsException;
185 } catch (MmsException e) {
220 } catch (MmsException e) {
595 } catch (MmsException e) {
621 } catch (MmsException e) {
654 } catch (MmsException e) {
677 } catch (MmsException e) {
696 } catch (MmsException e) {
737 } catch (MmsException e) {
  /frameworks/base/core/java/com/google/android/mms/pdu/
PduPersister.java 22 import com.google.android.mms.MmsException;
343 private PduPart[] loadParts(long msgId) throws MmsException {
392 throw new MmsException("Content-Type must be set.");
444 throw new MmsException(e);
510 * @throws MmsException Failed to load some fields of a PDU.
512 public GenericPdu load(Uri uri) throws MmsException {
528 throw new MmsException("Bad uri: " + uri);
565 throw new MmsException("Error! ID of the message: -1.");
629 throw new MmsException(
633 throw new MmsException(
    [all...]
  /packages/apps/Mms/src/com/android/mms/util/
DownloadManager.java 23 import com.google.android.mms.MmsException;
202 } catch(MmsException e) {
214 } catch (MmsException e) {
244 private String getMessage(Uri uri) throws MmsException {
  /packages/apps/Mms/src/com/android/mms/
MmsApp.java 33 import com.google.android.mms.MmsException;

Completed in 791 milliseconds

1 2