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

1 2

  /frameworks/opt/mms/src/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 19 import com.google.android.mms.MmsException;
36 public boolean sendMessage(long token) throws MmsException {
43 throw new MmsException("Null message body or have multiple destinations.");
65 throw new MmsException("SmsMessageSender.sendMessage: divideMessage returned " +
71 throw new MmsException("SmsMessageSender.sendMessage: couldn't move message " +
119 throw new MmsException("SmsMessageSender.sendMessage: caught " + ex +
Transaction.java 29 import com.google.android.mms.MmsException;
118 * @throws MmsException if pdu is null.
120 protected byte[] sendPdu(byte[] pdu) throws IOException, MmsException {
134 * @throws MmsException if pdu is null.
136 protected byte[] sendPdu(byte[] pdu, String mmscUrl) throws IOException, MmsException {
149 * @throws MmsException if pdu is null.
151 protected byte[] sendPdu(long token, byte[] pdu) throws IOException, MmsException {
165 * @throws MmsException if pdu is null.
168 String mmscUrl) throws IOException, MmsException {
170 throw new MmsException();
    [all...]
SmsMessageSender.java 34 import com.google.android.mms.MmsException;
73 public boolean sendMessage(long token) throws MmsException {
79 private boolean queueMessage(long token) throws MmsException {
82 throw new MmsException("Null message body or dest.");
MmsMessageSender.java 37 import com.google.android.mms.MmsException;
70 public boolean sendMessage(long token) throws MmsException {
79 throw new MmsException("Invalid message: " + pdu.getMessageType());
130 private void updatePreferencesHeaders(SendReq sendReq) throws MmsException {
170 } catch (MmsException e) {
RetrieveTransaction.java 38 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.");
268 private void sendAcknowledgeInd(RetrieveConf rc) throws MmsException, IOException {
ReadRecTransaction.java 28 import com.google.android.mms.MmsException;
97 } catch (MmsException e) {
NotificationTransaction.java 46 import com.google.android.mms.MmsException;
90 } catch (MmsException e) {
116 } catch (MmsException e) {
249 private void sendNotifyRespInd(int status) throws MmsException, IOException {
PushReceiver.java 42 import com.google.android.mms.MmsException;
145 } catch (MmsException e) {
  /packages/apps/Mms/src/com/android/mms/dom/smil/parser/
SmilXmlParser.java 29 import com.google.android.mms.MmsException;
35 public SmilXmlParser() throws MmsException {
45 throw new MmsException(e);
  /packages/apps/Mms/src/com/android/mms/model/
RegionMediaModel.java 23 import com.google.android.mms.MmsException;
30 RegionModel region) throws MmsException {
35 String src, Uri uri, RegionModel region) throws MmsException {
AudioModel.java 38 import com.google.android.mms.MmsException;
47 public AudioModel(Context context, Uri uri) throws MmsException {
53 public AudioModel(Context context, String contentType, String src, Uri uri) throws MmsException {
58 private void initModelFromUri(Uri uri) throws MmsException {
93 throw new MmsException("Type of media is unknown.");
104 throw new MmsException("Nothing found: " + uri);
110 throw new MmsException("Bad URI: " + uri);
MediaModel.java 37 import com.google.android.mms.MmsException;
68 String src, Uri uri) throws MmsException {
111 } catch (MmsException e) {
209 protected void initMediaDuration() throws MmsException {
225 throw new MmsException(ex);
231 private void initMediaSize() throws MmsException {
258 throw new MmsException(e.getMessage());
309 * @throws MmsException
311 protected void resizeMedia(int byteLimit, long messageId) throws MmsException {
VideoModel.java 42 import com.google.android.mms.MmsException;
51 throws MmsException {
58 Uri uri, RegionModel region) throws MmsException {
62 private void initModelFromUri(Uri uri) throws MmsException {
97 private void initFromContentUri(Uri uri) throws MmsException {
116 throw new MmsException("Type of media is unknown.");
145 throw new MmsException("Nothing found: " + uri);
151 throw new MmsException("Bad URI: " + uri);
ImageModel.java 45 import com.google.android.mms.MmsException;
72 throws MmsException {
79 Uri uri, RegionModel region) throws MmsException {
85 private void initModelFromUri(Uri uri) throws MmsException {
90 throw new MmsException("Type of media is unknown.");
186 protected void resizeMedia(int byteLimit, long messageId) throws MmsException {
MediaModelFactory.java 34 import com.google.android.mms.MmsException;
43 throws IOException, IllegalArgumentException, MmsException {
92 LayoutModel layouts, PduPart part) throws IOException, MmsException {
126 RegionModel regionModel) throws IOException, MmsException {
SlideshowModel.java 56 import com.google.android.mms.MmsException;
108 Context context, Uri uri) throws MmsException {
112 public static SlideshowModel createFromPduBody(Context context, PduBody pb) throws MmsException {
350 public static PduBody getPduBody(Context context, Uri msg) throws MmsException {
359 throw new MmsException();
664 * @throws MmsException, ExceedMessageSizeException
666 public void finalResize(Uri messageUri) throws MmsException, ExceedMessageSizeException {
  /packages/apps/Mms/src/com/android/mms/ui/
SlideshowEditor.java 32 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 46 import com.google.android.mms.MmsException;
117 } catch (MmsException e) {
194 } catch (MmsException e) {
215 private void initSlideList() throws MmsException {
345 } catch (MmsException e) {
SlideEditorActivity.java 61 import com.google.android.mms.MmsException;
182 } catch (MmsException e) {
222 } catch (MmsException e) {
604 } catch (MmsException e) {
630 } catch (MmsException e) {
663 } catch (MmsException e) {
686 } catch (MmsException e) {
705 } catch (MmsException e) {
746 } catch (MmsException e) {
    [all...]
  /frameworks/opt/mms/src/java/com/google/android/mms/pdu/
PduPersister.java 22 import com.google.android.mms.MmsException;
356 private PduPart[] loadParts(long msgId) throws MmsException {
405 throw new MmsException("Content-Type must be set.");
457 throw new MmsException(e);
523 * @throws MmsException Failed to load some fields of a PDU.
525 public GenericPdu load(Uri uri) throws MmsException {
559 throw new MmsException("Bad uri: " + uri);
596 throw new MmsException("Error! ID of the message: -1.");
659 throw new MmsException(
663 throw new MmsException(
    [all...]
  /packages/apps/Mms/src/com/android/mms/util/
DownloadManager.java 43 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;
189 } catch (final MmsException e) {
190 Log.e(TAG, "MmsException loading uri: " + mUri, e);

Completed in 263 milliseconds

1 2