/base/web/webview/interfaces/kits/napi/webviewcontroller/ |
H A D | web_download_item.cpp | 31 contentDisposition(""), in WebDownloadItem() 58 contentDisposition(""), in WebDownloadItem() 79 this->contentDisposition = std::string(WebDownloadItem_ContentDisposition(downloadItem)); in WebDownloadItem()
|
H A D | web_download_item.h | 48 std::string contentDisposition; member in OHOS::NWeb::WebDownloadItem
|
H A D | napi_web_download_item.cpp | 679 webDownloadPb.set_content_disposition(webDownloadItem->contentDisposition); in SetWebDownloadPb() 772 webDownloadItem->contentDisposition = webDownloadPb.content_disposition(); in JS_Deserialize()
|
/base/web/webview/interfaces/kits/cj/src/ |
H A D | web_download_item_impl.cpp | 30 contentDisposition(""), in WebDownloadItemImpl() 56 contentDisposition(""), in WebDownloadItemImpl() 77 this->contentDisposition = std::string(WebDownloadItem_ContentDisposition(downloadItem)); in WebDownloadItemImpl()
|
H A D | webview_ffi.cpp | 1594 webDownloadPb.set_content_disposition(nativeWebDownloadItemImpl->contentDisposition); in FfiOHOSWebDownloadItemImplSerialize() 1642 webDownloadItem->contentDisposition = webDownloadPb.content_disposition(); in FfiOHOSWebDownloadItemImplDeserialize()
|
/base/web/webview/ohos_interface/include/ohos_nweb/ |
H A D | nweb_download_callback.h | 35 * @param contentDisposition Content-disposition http header, if present. 40 const std::string& contentDisposition, const std::string& mimetype, long contentLength) = 0;
|
/base/telephony/sms_mms/frameworks/native/mms/include/ |
H A D | mms_body_part_header.h | 60 bool GetContentDisposition(std::string &contentDisposition);
65 bool SetContentDisposition(std::string contentDisposition);
|
H A D | mms_body_part.h | 47 bool SetContentDisposition(std::string contentDisposition);
48 bool GetContentDisposition(std::string &contentDisposition);
|
/base/telephony/sms_mms/frameworks/native/mms/src/ |
H A D | mms_attachment.cpp | 110 bool MmsAttachment::SetContentDisposition(std::string contentDisposition) in SetContentDisposition() argument 112 if (contentDisposition.empty()) { in SetContentDisposition() 113 TELEPHONY_LOGE("Attachment contentDisposition is empty!"); in SetContentDisposition() 116 contentDispositon_.assign(contentDisposition); in SetContentDisposition()
|
H A D | mms_body_part_header.cpp | 343 bool MmsBodyPartHeader::GetContentDisposition(std::string &contentDisposition)
in GetContentDisposition() argument 345 contentDisposition.clear();
in GetContentDisposition() 346 contentDisposition.assign(strDisposition_);
in GetContentDisposition() 350 bool MmsBodyPartHeader::SetContentDisposition(std::string contentDisposition)
in SetContentDisposition() argument 352 strDisposition_ = contentDisposition;
in SetContentDisposition()
|
H A D | mms_body_part.cpp | 332 bool MmsBodyPart::SetContentDisposition(std::string contentDisposition)
in SetContentDisposition() argument 334 return mmsBodyPartHeader_.SetContentDisposition(contentDisposition);
in SetContentDisposition() 337 bool MmsBodyPart::GetContentDisposition(std::string &contentDisposition)
in GetContentDisposition() argument 339 return mmsBodyPartHeader_.GetContentDisposition(contentDisposition);
in GetContentDisposition()
|
/base/web/webview/interfaces/kits/cj/include/ |
H A D | web_download_item_impl.h | 45 std::string contentDisposition; member in OHOS::Webview::WebDownloadItemImpl
|
/base/telephony/sms_mms/interfaces/innerkits/ |
H A D | mms_attachment.h | 81 * @param contentDisposition 85 bool SetContentDisposition(std::string contentDisposition);
|
/base/telephony/sms_mms/frameworks/js/napi/include/ |
H A D | napi_mms.h | 59 std::string contentDisposition = ""; member
|
/base/telephony/sms_mms/frameworks/js/napi/src/ |
H A D | napi_mms.cpp | 126 TELEPHONY_LOGE("Invalid contentDisposition value"); in parseDispositionValue() 282 attachmentContext.contentDisposition = it.GetContentDisposition(); in getAttachmentByDecodeMms() 356 env, attachment, "contentDisposition", formatDispositionValue(context.contentDisposition)); in CreateAttachmentValue() 1037 attachmentContext.contentDisposition = parseDispositionValue(GetNapiInt32Value(env, value, "contentDisposition")); in BuildMmsAttachment() 1162 if (it->contentDisposition.size() > 0) { in SetAttachmentToCore() 1163 itAttachment.SetContentDisposition(it->contentDisposition); in SetAttachmentToCore()
|