Searched defs:contentDisposition (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/core/java/android/webkit/
H A DBrowserDownloadListener.java30 * @param contentDisposition Content-disposition http header, if
37 String contentDisposition, String mimetype, String referer,
45 * @param contentDisposition Content-disposition http header, if
52 String contentDisposition, String mimetype, long contentLength) {
54 onDownloadStart(url, userAgent, contentDisposition, mimetype, null,
36 onDownloadStart(String url, String userAgent, String contentDisposition, String mimetype, String referer, long contentLength) argument
51 onDownloadStart(String url, String userAgent, String contentDisposition, String mimetype, long contentLength) argument
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.java123 * @param contentDisposition Content-disposition header given by the server.
127 String contentDisposition) {
136 if (contentDisposition != null) {
137 filename = URLUtil.parseContentDisposition(contentDisposition);
126 remapGenericMimeType(String mimeType, String url, String contentDisposition) argument
H A DURLUtil.java292 * the URL and contentDisposition. File extension, if not defined,
295 * @param contentDisposition Content-Disposition HTTP header or null
302 String contentDisposition,
308 if (filename == null && contentDisposition != null) {
309 filename = parseContentDisposition(contentDisposition);
399 static String parseContentDisposition(String contentDisposition) { argument
401 Matcher m = CONTENT_DISPOSITION_PATTERN.matcher(contentDisposition);
300 guessFileName( String url, String contentDisposition, String mimeType) argument
/frameworks/opt/mms/src/java/com/google/android/mms/pdu/
H A DPduPart.java269 * @param contentDisposition the value
272 public void setContentDisposition(byte[] contentDisposition) { argument
273 if(contentDisposition == null) {
277 mPartHeader.put(P_CONTENT_DISPOSITION, contentDisposition);
/frameworks/webview/chromium/java/com/android/webview/chromium/
H A DWebViewContentsClientAdapter.java722 String contentDisposition,
730 contentDisposition,
720 onDownloadStart(String url, String userAgent, String contentDisposition, String mimeType, long contentLength) argument

Completed in 97 milliseconds