Home
last modified time | relevance | path

Searched refs:contentDisposition (Results 1 – 8 of 8) sorted by relevance

/frameworks/base/core/java/android/webkit/
DMimeTypeMap.java128 String contentDisposition) { in remapGenericMimeType() argument
137 if (contentDisposition != null) { in remapGenericMimeType()
138 filename = URLUtil.parseContentDisposition(contentDisposition); in remapGenericMimeType()
DURLUtil.java300 String contentDisposition, in guessFileName() argument
306 if (filename == null && contentDisposition != null) { in guessFileName()
307 filename = parseContentDisposition(contentDisposition); in guessFileName()
397 static String parseContentDisposition(String contentDisposition) { in parseContentDisposition() argument
399 Matcher m = CONTENT_DISPOSITION_PATTERN.matcher(contentDisposition); in parseContentDisposition()
DDownloadListener.java31 String contentDisposition, String mimetype, long contentLength); in onDownloadStart() argument
DBrowserFrame.java1231 String contentDisposition, String mimeType, long contentLength) { in downloadStart() argument
1245 mimeType, url, contentDisposition); in downloadStart()
1251 contentDisposition, mimeType, contentLength); in downloadStart()
DCallbackProxy.java400 String contentDisposition = in handleMessage() local
406 contentDisposition, mimetype, contentLength); in handleMessage()
1131 String contentDisposition, String mimetype, long contentLength) { in onDownloadStart() argument
1145 bundle.putString("contentDisposition", contentDisposition); in onDownloadStart()
/frameworks/base/core/java/com/google/android/mms/pdu/
DPduPart.java272 public void setContentDisposition(byte[] contentDisposition) { in setContentDisposition() argument
273 if(contentDisposition == null) { in setContentDisposition()
277 mPartHeader.put(P_CONTENT_DISPOSITION, contentDisposition); in setContentDisposition()
DPduPersister.java369 byte[] contentDisposition = getByteArrayFromPartColumn( in loadParts()
371 if (contentDisposition != null) { in loadParts()
372 part.setContentDisposition(contentDisposition); in loadParts()
DPduParser.java1566 boolean contentDisposition = Resources.getSystem().getBoolean(com in parsePartHeaders()
1569 if (contentDisposition) { in parsePartHeaders()