HomeSort by relevance Sort by last modified time
    Searched defs:content_type (Results 1 - 25 of 27) sorted by null

1 2

  /external/chromium/net/tools/fetch/
http_server_response_info.h 28 std::string content_type; member in class:HttpServerResponseInfo
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
transportchannel.h 44 TransportChannel(const std::string& name, const std::string &content_type)
45 : name_(name), content_type_(content_type),
51 const std::string& content_type() const { return content_type_; } function in class:cricket::TransportChannel
sessionmanager.cc 60 void SessionManager::AddClient(const std::string& content_type,
62 ASSERT(client_map_.find(content_type) == client_map_.end());
63 client_map_[content_type] = client;
66 void SessionManager::RemoveClient(const std::string& content_type) {
67 ClientMap::iterator iter = client_map_.find(content_type);
72 SessionClient* SessionManager::GetClient(const std::string& content_type) {
73 ClientMap::iterator iter = client_map_.find(content_type);
78 const std::string& content_type) {
81 content_type, false);
86 const std::string& sid, const std::string& content_type,
168 std::string content_type; local
    [all...]
sessionmessages.cc 491 std::string* content_type,
497 *content_type = (*content_elem)->Name().Namespace();
505 std::string content_type; local
507 if (!ParseContentType(session, &content_type, &content_elem, error))
510 if (content_type == NS_GINGLE_VIDEO) {
527 } else if (content_type == NS_GINGLE_AUDIO) {
533 if (!ParseContentInfo(PROTOCOL_GINGLE, CN_OTHER, content_type,
554 std::string content_type;
556 if (!ParseContentType(pair_elem, &content_type, &content_elem, error))
559 if (!ParseContentInfo(PROTOCOL_JINGLE, content_name, content_type,
    [all...]
transport.cc 47 const std::string& content_type)
48 : name(name), content_type(content_type),
60 std::string content_type; member in struct:cricket::ChannelParams
97 const std::string& name, const std::string& content_type) {
98 ChannelParams params(name, content_type);
105 const std::string& name, const std::string& content_type) {
108 TransportChannelImpl* impl = CreateTransportChannel(name, content_type);
401 params->channel = CreateChannel_w(params->name, params->content_type);
session.h 96 const std::string& content_type);
114 const std::string& content_type);
298 const std::string& content_type() const { return content_type_; } function in class:cricket::Session
384 const std::string& sid, const std::string& content_type,
  /external/chromium/chrome/browser/content_settings/
content_settings_mock_provider.h 20 MockDefaultProvider(ContentSettingsType content_type,
28 ContentSettingsType content_type) const;
29 virtual void UpdateDefaultSetting(ContentSettingsType content_type,
32 virtual bool DefaultSettingIsManaged(ContentSettingsType content_type) const;
49 ContentSettingsType content_type,
62 ContentSettingsType content_type,
70 ContentSettingsType content_type,
75 ContentSettingsType content_type,
80 ContentSettingsType content_type) {}
101 void set_content_type(ContentSettingsType content_type) {
105 ContentSettingsType content_type() const { function in class:content_settings::MockProvider
    [all...]
content_settings_policy_provider.cc 44 ContentSettingsType content_type; member in struct:__anon3053::PrefsForManagedContentSettingsMapEntry
133 ContentSettingsType content_type) const {
135 return managed_default_content_settings_.settings[content_type];
139 ContentSettingsType content_type,
144 ContentSettingsType content_type) const {
146 if (managed_default_content_settings_.settings[content_type] !=
284 ContentSettingsType content_type) {
286 if (kPrefToManageType[content_type] == NULL) {
287 content_type_is_managed_[content_type] = false;
289 content_type_is_managed_[content_type]
    [all...]
host_content_settings_map.cc 132 ContentSettingsType content_type) const {
138 (*provider)->ProvideDefaultSetting(content_type);
151 ContentSettingsType content_type,
154 content_type,
157 return GetDefaultContentSetting(content_type);
163 ContentSettingsType content_type,
175 url, url, content_type, resource_identifier);
176 bool isManaged = (*provider)->ContentSettingsTypeIsManaged(content_type);
214 ContentSettingsType content_type,
220 // Collect content_settings::Rules for the given content_type an
280 content_type, local
284 content_type, local
    [all...]
  /external/bluetooth/glib/gio/win32/
gwinhttpfile.c 479 wchar_t *content_type; local
556 content_type = NULL;
561 &content_type,
564 char *ct = g_utf16_to_utf8 (content_type, -1, NULL, NULL, NULL);
  /external/chromium/chrome/browser/
content_setting_bubble_model.h 32 ContentSettingsType content_type);
34 ContentSettingsType content_type() const { return content_type_; } function in class:ContentSettingBubbleModel
93 ContentSettingsType content_type);
  /external/chromium/webkit/glue/
multipart_response_delegate.cc 246 std::string content_type = net::GetSpecificHeader(headers, "content-type"); local
250 net::HttpUtil::ParseContentType(content_type, &mime_type, &charset,
301 std::string content_type = local
304 size_t boundary_start_offset = content_type.find("boundary=");
310 size_t boundary_end_offset = content_type.find(';', boundary_start_offset);
313 boundary_end_offset = content_type.length();
318 content_type.substr(boundary_start_offset, boundary_length);
weburlloader_impl.cc 575 std::string content_type; local
576 info.headers->EnumerateHeader(NULL, "content-type", &content_type);
579 content_type, "boundary", net::QuoteRule::REMOVE_OUTER_QUOTES);
  /external/chromium/chrome/browser/debugger/
devtools_http_protocol_handler.cc 403 std::string content_type; local
404 request->GetMimeType(&content_type);
411 content_type.c_str()));
  /external/chromium/chrome/browser/ui/webui/options/
content_settings_handler.cc 574 ContentSettingsType content_type = ContentSettingsTypeFromGroupName(group); local
575 if (content_type == CONTENT_SETTINGS_TYPE_GEOLOCATION) {
578 } else if (content_type == CONTENT_SETTINGS_TYPE_NOTIFICATIONS) {
583 SetDefaultContentSetting(content_type, default_setting);
  /external/chromium/net/tools/flip_server/
spdy_interface.cc 593 std::string content_type = local
595 if (content_type.find("image") == content_type.npos)
  /external/chromium/third_party/libjingle/source/talk/session/phone/
mediasessionclient.cc 738 const std::string& content_type = content_elem->Name().Namespace(); local
739 if (NS_GINGLE_AUDIO == content_type) {
741 } else if (NS_GINGLE_VIDEO == content_type) {
744 return BadParse("Unknown content type: " + content_type, error);
    [all...]
  /external/bluetooth/glib/gio/
gcontenttype.c 307 char *key, *content_type; local
312 content_type = get_registry_classes_key (key, L"Extension");
315 return content_type;
    [all...]
glocalfileinfo.c 1227 char *content_type; local
1230 content_type = g_content_type_guess (basename, NULL, 0, &result_uncertain);
1257 g_free (content_type);
1258 content_type = g_content_type_guess (basename, sniff_buffer, res, NULL);
1264 return content_type;
1567 char *content_type = get_content_type (basename, path, &statbuf, is_symlink, symlink_broken, flags, FALSE); local
1610 char *content_type = get_content_type (basename, path, &statbuf, is_symlink, symlink_broken, flags, TRUE); local
    [all...]
gfile.c 5080 const char *content_type; local
    [all...]
  /external/chromium/net/tools/spdyshark/
packet-spdy.c 98 gchar *content_type; member in struct:_spdy_stream_info_t
333 gchar *content_type,
346 si->content_type = content_type;
354 printf("Saved stream info for ID %u, content type %s\n", stream_id, content_type);
694 if (handle == NULL && have_entire_body && si->content_type != NULL &&
712 * to si->content_type for us.
714 pinfo->match_string = si->content_type;
717 si->content_type);
735 } else if (have_entire_body && si->content_type != NULL)
957 gchar *content_type = NULL; local
    [all...]
  /external/libxml2/
xmlIO.c 2019 char * content_type = (char *) "text\/xml"; local
    [all...]
  /external/openssl/crypto/pkcs7/
pkcs7.h 136 ASN1_OBJECT *content_type; member in struct:pkcs7_enc_content_st
  /external/openssl/include/openssl/
pkcs7.h 136 ASN1_OBJECT *content_type; member in struct:pkcs7_enc_content_st
  /external/chromium/chrome/browser/automation/
testing_automation_provider.cc 5459 content_type, "", setting); local
    [all...]

Completed in 860 milliseconds

1 2