Searched refs:contentDisposition (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/android/webkit/
H A DDownloadListener.java25 * @param contentDisposition Content-disposition http header, if
31 String contentDisposition, String mimetype, long contentLength);
30 onDownloadStart(String url, String userAgent, String contentDisposition, String mimetype, long contentLength) argument
H A DMimeTypeMap.java128 * @param contentDisposition Content-disposition header given by the server.
132 String contentDisposition) {
141 if (contentDisposition != null) {
142 filename = URLUtil.parseContentDisposition(contentDisposition);
131 remapGenericMimeType(@ullable String mimeType, String url, String contentDisposition) argument
H A DURLUtil.java294 * the URL and contentDisposition. File extension, if not defined,
297 * @param contentDisposition Content-Disposition HTTP header or {@code null}
304 @Nullable String contentDisposition,
310 if (filename == null && contentDisposition != null) {
311 filename = parseContentDisposition(contentDisposition);
401 static String parseContentDisposition(String contentDisposition) { argument
403 Matcher m = CONTENT_DISPOSITION_PATTERN.matcher(contentDisposition);
302 guessFileName( String url, @Nullable String contentDisposition, @Nullable String mimeType) argument
/frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
H A DPduPart.java281 * @param contentDisposition the value
284 public void setContentDisposition(byte[] contentDisposition) { argument
285 if(contentDisposition == null) {
289 mPartHeader.put(P_CONTENT_DISPOSITION, contentDisposition);
H A DPduPersister.java384 byte[] contentDisposition = getByteArrayFromPartColumn(
386 if (contentDisposition != null) {
387 part.setContentDisposition(contentDisposition);

Completed in 75 milliseconds