Home
last modified time | relevance | path

Searched refs:contentSize (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Exchange/tests/src/com/android/exchange/utility/
DWbxmlResponseLoggerTests.java39 final long contentSize = WbxmlResponseLogger.MAX_LENGTH + 1; in testShouldLogResponseTooBig() local
40 assertEquals(false, WbxmlResponseLogger.shouldLogResponse(contentSize)); in testShouldLogResponseTooBig()
44 final long contentSize = WbxmlResponseLogger.MAX_LENGTH - 1; in testShouldLogResponseSmallEnough() local
45 assertEquals(true, WbxmlResponseLogger.shouldLogResponse(contentSize)); in testShouldLogResponseSmallEnough()
/packages/apps/Email/provider_src/com/android/email/
DLegacyConversions.java444 final Long contentSize = att.mSize; in makeMessage() local
448 addAttachmentPart(mp, mimeType, contentSize, filename, contentId, content); in makeMessage()
496 final Long contentSize, final String filename, final String contentId, in addAttachmentPart() argument
503 + "size=" + contentSize); in addAttachmentPart()
/packages/apps/Gallery2/src/com/android/gallery3d/data/
DDownloadEntry.java43 public long contentSize; field in DownloadEntry
65 .append("_size").append(contentSize).append(", ") in toString()