HomeSort by relevance Sort by last modified time
    Searched defs:BODY (Results 1 - 16 of 16) sorted by null

  /packages/apps/Email/src/com/android/email/mail/
FetchProfile.java 26 * Message: Indicates that the body of the entire message should be fetched.
27 * Synonymous with FetchProfile.Item.BODY.
56 * capable of this operation it should specifically set the body of the message to null
57 * so that upper levels can detect that a full body download is needed.
70 BODY,
  /external/iproute2/genl/
genl.c 35 static void *BODY;
70 dlh = BODY;
72 dlh = BODY = dlopen(NULL, RTLD_LAZY);
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
Tag.java 24 public static final Tag BODY = new TagImpl ("BODY");
  /external/iproute2/tc/
tc.c 43 static void *BODY = NULL; /* cached handle dlopen(NULL) */
127 dlh = BODY;
129 dlh = BODY = dlopen(NULL, RTLD_LAZY);
180 dlh = BODY;
182 dlh = BODY = dlopen(NULL, RTLD_LAZY);
  /frameworks/base/core/java/android/net/
MailTo.java 40 static private final String BODY = "body";
136 * Retrieve the body line from the parsed mailto URL.
137 * If no body line was specified, then null is return
138 * @return body or null
141 return mHeaders.get(BODY);
  /external/iproute2/ip/
iplink.c 91 static void *BODY; /* cached dlopen(NULL) handle */
108 dlh = BODY;
110 dlh = BODY = dlopen(NULL, RTLD_LAZY);
  /external/oauth/core/src/main/java/net/oauth/client/
OAuthClient.java 48 * can get a body or parameters but not both. Calling a getParameter method will
49 * read and close the body (like readBodyAsString), so you can't read it later.
50 * If you read or close the body first, then getParameter can't read it. The
218 ParameterStyle style = (ps == null) ? ParameterStyle.BODY : Enum
267 InputStream body = request.getBodyAsStream(); local
268 if (style == ParameterStyle.BODY && !(isPost && body == null)) {
278 case BODY: {
284 body = new ByteArrayInputStream(form);
300 if (isPost && body == null)
    [all...]
  /frameworks/base/obex/javax/obex/
HeaderSet.java 120 * Represents the OBEX BODY header.
122 * The value of <code>BODY</code> is 0x48 (72).
124 public static final int BODY = 0x48;
127 * Represents the OBEX End of BODY header.
129 * The value of <code>BODY</code> is 0x49 (73).
  /packages/apps/Email/tests/src/com/android/email/mail/transport/
Rfc822OutputTests.java 26 import org.apache.james.mime4j.message.Body;
54 private static final String BODY = "This is the body. This is also the body.";
73 mReplyBody = mReplyIntro + ">" + BODY;
85 * Also test the situation where the message has no body.
88 // Create the least necessary; sender, flags, and the body of the reply
93 msg.mTextReply = BODY;
97 String body = Rfc822Output.buildBodyText(mMockContext, msg, true); local
98 assertEquals(mReplyBody, body);
123 String body = Rfc822Output.buildBodyText(mMockContext, msg, false); local
149 String body = Rfc822Output.buildBodyText(mMockContext, msg, true); local
    [all...]
  /external/zlib/examples/
gzlog.c 337 #define BODY sizeof(log_gzbody)
    [all...]
  /packages/apps/Email/src/com/android/email/mail/store/imap/
ImapConstants.java 24 public static final String FETCH_FIELD_BODY_PEEK_BARE = "BODY.PEEK";
27 = String.format("BODY.PEEK[]<0.%d>", Store.FETCH_BODY_SANE_SUGGESTED_SIZE);
29 "BODY.PEEK[HEADER.FIELDS (date subject from content-type to cc message-id)]";
35 public static final String BODY = "BODY";
36 public static final String BODY_BRACKET_HEADER = "BODY[HEADER";
  /packages/apps/Email/tests/src/com/android/email/activity/
MessageComposeTests.java 64 private static final String BODY = "This is the body. This is also the body.";
66 private static final String REPLY_BODY = REPLY_BODY_SHORT + ">" + BODY;
178 * Body = empty (and has cursor)
183 final Message message = buildTestMessage(RECIPIENT_TO, SENDER, SUBJECT, BODY);
210 final Message message = buildTestMessage(RECIPIENT_TO, SENDER, SUBJECT, BODY);
239 final Message message = buildTestMessage(RECIPIENT_TO, SENDER, SUBJECT, BODY);
320 * Body = empty
323 final Message message = buildTestMessage(RECIPIENT_TO, SENDER, SUBJECT, BODY);
    [all...]
  /packages/apps/Email/src/com/android/email/provider/
EmailProvider.java 24 import com.android.email.provider.EmailContent.Body;
91 // Version 6: Adding Body.mIntroText column
137 private static final int BODY = BODY_BASE;
154 EmailContent.Body.TABLE_NAME
174 private static final String DELETE_ORPHAN_BODIES = "delete from " + Body.TABLE_NAME +
176 " from " + Body.TABLE_NAME + " except select " + EmailContent.RECORD_ID + " from " +
179 private static final String DELETE_BODY = "delete from " + Body.TABLE_NAME +
233 matcher.addURI(EMAIL_AUTHORITY, "body", BODY);
234 // A specific mail body
    [all...]
  /frameworks/base/core/java/android/provider/
Telephony.java 127 * The body of the message
130 public static final String BODY = "body";
206 * @param body the body of the message
214 Uri uri, String address, String body, String subject,
216 return addMessageToUri(resolver, uri, address, body, subject,
226 * @param body the body of the message
235 Uri uri, String address, String body, String subject
    [all...]
  /packages/apps/Email/tests/src/com/android/email/mail/store/
LocalStoreUnitTests.java 21 import com.android.email.mail.Body;
63 private static final String BODY = "This is the body. This is also the body.";
143 final MimeMessage message = buildTestMessage(RECIPIENT_TO, SENDER, SUBJECT, BODY);
168 final MimeMessage message = buildTestMessage(RECIPIENT_TO, SENDER, SUBJECT, BODY);
219 TextBody body = new TextBody(content); local
220 message.setBody(body);
227 * Test two modes (STRUCTURE vs. BODY) of fetch()
230 final String BODY_TEXT_PLAIN = "This is the body text."
235 Body body = new MultipartBuilder("multipart\/mixed") local
    [all...]
  /external/emma/lib/
emma.jar 

Completed in 403 milliseconds