HomeSort by relevance Sort by last modified time
    Searched refs:MmsException (Results 1 - 25 of 35) 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.");
ReadRecTransaction.java 20 import com.google.android.mms.MmsException;
91 } catch (MmsException e) {
MmsMessageSender.java 24 import com.google.android.mms.MmsException;
71 public boolean sendMessage(long token) throws MmsException {
80 throw new MmsException("Invalid message: " + pdu.getMessageType());
131 private void updatePreferencesHeaders(SendReq sendReq) throws MmsException {
170 } catch (MmsException e) {
RetrieveTransaction.java 25 import com.google.android.mms.MmsException;
80 throws MmsException {
99 throws MmsException {
117 throw new MmsException("Cannot get X-Mms-Content-Location from: " + uri);
141 throw new MmsException("Invalid M-Retrieve.conf PDU.");
267 private void sendAcknowledgeInd(RetrieveConf rc) throws MmsException, IOException {
NotificationTransaction.java 33 import com.google.android.mms.MmsException;
89 } catch (MmsException e) {
112 } catch (MmsException e) {
233 private void sendNotifyRespInd(int status) throws MmsException, IOException {
PushReceiver.java 27 import com.google.android.mms.MmsException;
137 } catch (MmsException e) {
  /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 20 import com.google.android.mms.MmsException;
32 RegionModel region) throws MmsException {
37 String src, Uri uri, RegionModel region) throws MmsException {
AudioModel.java 23 import com.google.android.mms.MmsException;
48 public AudioModel(Context context, Uri uri) throws MmsException {
54 public AudioModel(Context context, String contentType, String src, Uri uri) throws MmsException {
59 private void initModelFromUri(Uri uri) throws MmsException {
94 throw new MmsException("Type of media is unknown.");
105 throw new MmsException("Nothing found: " + uri);
111 throw new MmsException("Bad URI: " + uri);
MediaModel.java 23 import com.google.android.mms.MmsException;
67 String src, Uri uri) throws MmsException {
110 } catch (MmsException e) {
208 protected void initMediaDuration() throws MmsException {
224 throw new MmsException(ex);
230 private void initMediaSize() throws MmsException {
252 throw new MmsException(e.getMessage());
303 * @throws MmsException
305 protected void resizeMedia(int byteLimit, long messageId) throws MmsException {
VideoModel.java 28 import com.google.android.mms.MmsException;
53 throws MmsException {
60 Uri uri, RegionModel region) throws MmsException {
64 private void initModelFromUri(Uri uri) throws MmsException {
98 private void initFromContentUri(Uri uri) throws MmsException {
117 throw new MmsException("Type of media is unknown.");
146 throw new MmsException("Nothing found: " + uri);
152 throw new MmsException("Bad URI: " + uri);
ImageModel.java 31 import com.google.android.mms.MmsException;
74 throws MmsException {
81 Uri uri, RegionModel region) throws MmsException {
87 private void initModelFromUri(Uri uri) throws MmsException {
92 throw new MmsException("Type of media is unknown.");
188 protected void resizeMedia(int byteLimit, long messageId) throws MmsException {
MediaModelFactory.java 24 import com.google.android.mms.MmsException;
45 throws IOException, IllegalArgumentException, MmsException {
94 LayoutModel layouts, PduPart part) throws IOException, MmsException {
128 RegionModel regionModel) throws IOException, MmsException {
SlideshowModel.java 29 import com.google.android.mms.MmsException;
105 Context context, Uri uri) throws MmsException {
109 public static SlideshowModel createFromPduBody(Context context, PduBody pb) throws MmsException {
319 public static PduBody getPduBody(Context context, Uri msg) throws MmsException {
328 throw new MmsException();
633 * @throws MmsException, ExceedMessageSizeException
635 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;
162 public void changeImage(int position, Uri newImage) throws MmsException {
167 public void changeAudio(int position, Uri newAudio) throws MmsException {
174 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) {
SlideEditorActivity.java 24 import com.google.android.mms.MmsException;
186 } catch (MmsException e) {
226 } catch (MmsException e) {
608 } catch (MmsException e) {
634 } catch (MmsException e) {
667 } catch (MmsException e) {
690 } catch (MmsException e) {
709 } catch (MmsException e) {
750 } catch (MmsException e) {
    [all...]
  /frameworks/base/core/java/com/google/android/mms/pdu/
PduPersister.java 22 import com.google.android.mms.MmsException;
352 private PduPart[] loadParts(long msgId) throws MmsException {
401 throw new MmsException("Content-Type must be set.");
453 throw new MmsException(e);
519 * @throws MmsException Failed to load some fields of a PDU.
521 public GenericPdu load(Uri uri) throws MmsException {
555 throw new MmsException("Bad uri: " + uri);
592 throw new MmsException("Error! ID of the message: -1.");
655 throw new MmsException(
659 throw new MmsException(
    [all...]
  /packages/apps/Mms/src/com/android/mms/util/
DownloadManager.java 23 import com.google.android.mms.MmsException;
203 } catch(MmsException e) {
215 } catch (MmsException e) {
245 private String getMessage(Uri uri) throws MmsException {
PduLoaderManager.java 27 import com.google.android.mms.MmsException;
178 } catch (final MmsException e) {
179 Log.e(TAG, "MmsException loading uri: " + mUri, e);

Completed in 265 milliseconds

1 2