HomeSort by relevance Sort by last modified time
    Searched refs:mime_type (Results 276 - 300 of 451) sorted by null

<<111213141516171819

  /external/chromium/net/ocsp/
nss_ocsp.cc 735 const char* mime_type = req->http_response_content_type().c_str(); local
737 strcasecmp(mime_type, "application/ocsp-response") == 0;
738 bool is_crl_resp = strcasecmp(mime_type, "application/x-pkcs7-crl") == 0 ||
739 strcasecmp(mime_type, "application/x-x509-crl") == 0 ||
740 strcasecmp(mime_type, "application/pkix-crl") == 0;
742 strcasecmp(mime_type, "application/x-x509-ca-cert") == 0 ||
743 strcasecmp(mime_type, "application/x-x509-server-cert") == 0 ||
744 strcasecmp(mime_type, "application/pkix-cert") == 0 ||
745 strcasecmp(mime_type, "application/pkcs7-mime") == 0;
  /external/chromium/net/url_request/
url_request_http_job.cc 99 virtual bool GetMimeType(std::string* mime_type) const;
124 std::string* mime_type) const {
125 return job_->GetMimeType(mime_type);
816 bool URLRequestHttpJob::GetMimeType(std::string* mime_type) const {
822 return response_info_->headers->GetMimeType(mime_type);
1382 std::string mime_type; local
    [all...]
url_request_http_job.h 73 virtual bool GetMimeType(std::string* mime_type) const;
url_request_job.h 175 virtual bool GetMimeType(std::string* mime_type) const;
url_request_file_job.cc 272 bool URLRequestFileJob::GetMimeType(std::string* mime_type) const {
278 return GetMimeTypeFromFile(file_path_, mime_type);
url_request_ftp_job.cc 48 bool URLRequestFtpJob::GetMimeType(std::string* mime_type) const {
50 *mime_type = "text/vnd.chromium.ftp-dir";
  /external/chromium_org/chrome/browser/automation/
url_request_automation_job.h 49 virtual bool GetMimeType(std::string* mime_type) const;
  /external/chromium_org/chrome/browser/chromeos/drive/
drive_app_registry.h 68 // Returns a list of web app information for the |file| with |mime_type|.
70 const std::string& mime_type,
  /external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
file_manager_browsertest.cc 68 const char* mime_type; member in struct:file_manager::__anon6831::TestEntryInfo
170 entry.mime_type,
211 const std::string& mime_type,
226 mime_type,
file_manager_util.cc 323 const std::string& mime_type,
330 files.insert(std::make_pair(path, mime_type));
438 std::string mime_type = GetMimeTypeForPath(path);
440 profile, mime_type, path.Extension());
455 profile, path, url, mime_type, default_task_id);
465 profile, path, url, mime_type, default_task_id)) {
842 std::string mime_type; local
845 &mime_type)) {
851 return mime_type;
  /external/chromium_org/chrome_frame/
urlmon_url_request.h 94 int request_id, const char* mime_type, const char* headers, int size,
  /external/chromium_org/components/autofill/content/browser/wallet/
wallet_client.h 213 // Posts |post_body| to |url| with content type |mime_type| and notifies
217 const std::string& mime_type);
  /external/chromium_org/content/browser/devtools/
devtools_http_handler_impl.h 98 const std::string& mime_type);
  /external/chromium_org/content/browser/loader/
certificate_resource_handler.cc 53 cert_type_ = net::GetCertificateMimeTypeForMimeType(resp->head.mime_type);
  /external/chromium_org/content/plugin/
webplugin_delegate_stub.h 40 WebPluginDelegateStub(const std::string& mime_type, int instance_id,
  /external/chromium_org/content/public/common/
webplugininfo.cc 22 : mime_type(m),
  /external/chromium_org/net/url_request/
url_request_http_job.cc 60 virtual bool GetMimeType(std::string* mime_type) const OVERRIDE;
167 std::string* mime_type) const {
168 return job_->GetMimeType(mime_type);
1456 std::string mime_type; local
    [all...]
  /external/chromium_org/webkit/browser/appcache/
appcache_url_request_job.h 147 virtual bool GetMimeType(std::string* mime_type) const OVERRIDE;
  /external/flac/libFLAC/
metadata_object.c 480 FLAC__STREAM_METADATA_PICTURE_MIME_TYPE_LENGTH_LEN + /* empty mime_type string */
490 object->data.picture.mime_type = 0;
500 /* now initialize mime_type and description with empty strings to make things easier on the client */
501 if(!copy_cstring_(&object->data.picture.mime_type, "")) {
506 if(object->data.picture.mime_type)
507 free(object->data.picture.mime_type);
601 if(!copy_cstring_(&to->data.picture.mime_type, object->data.picture.mime_type)) {
668 if(0 != object->data.picture.mime_type) {
669 free(object->data.picture.mime_type);
    [all...]
  /external/chromium/chrome/browser/renderer_host/
download_resource_handler.cc 95 info->mime_type = response->response_head.mime_type;
  /external/chromium/chrome/common/extensions/
extension_localization_peer_unittest.cc 93 const std::string& mime_type,
96 original_peer_.get(), sender_.get(), mime_type, request_url);
user_script.cc 45 const std::string& mime_type) {
47 mime_type != "text/html";
  /external/chromium_org/chrome/renderer/extensions/
extension_localization_peer_unittest.cc 93 const std::string& mime_type,
96 original_peer_.get(), sender_.get(), mime_type, request_url);
  /external/chromium_org/content/browser/renderer_host/
render_message_filter.h 167 const std::string& mime_type,
174 const std::string& mime_type,
  /external/chromium_org/content/child/npapi/
plugin_lib.cc 151 PluginInstance* PluginLib::CreateInstance(const std::string& mime_type) {
152 PluginInstance* new_instance = new PluginInstance(this, mime_type);

Completed in 2802 milliseconds

<<111213141516171819