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

1 2

  /external/webkit/WebKitTools/simplejson/
jsonfilter.py 17 if environ.get('CONTENT_TYPE', '') == self.mime_type:
24 content_type = 'text/javascript'
28 content_type = 'text/plain'
30 content_type = self.mime_type
32 ('Content-type', content_type),
  /external/bluetooth/glib/gio/
gappinfo.h 114 const char *content_type,
120 const char *content_type,
124 const char *content_type,
158 const char *content_type,
164 const char *content_type,
168 const char *content_type,
174 GList * g_app_info_get_all_for_type (const char *content_type);
175 void g_app_info_reset_type_associations (const char *content_type);
176 GAppInfo *g_app_info_get_default_for_type (const char *content_type,
gappinfo.c 302 * @content_type: the content type.
311 const char *content_type,
317 g_return_val_if_fail (content_type != NULL, FALSE);
321 return (* iface->set_as_default_for_type) (appinfo, content_type, error);
359 * @content_type: a string.
369 const char *content_type,
375 g_return_val_if_fail (content_type != NULL, FALSE);
380 return (* iface->add_supports_type) (appinfo, content_type, error);
418 * @content_type: a string.
427 const char *content_type,
    [all...]
gwin32appinfo.c 353 const char *content_type,
509 g_app_info_get_all_for_type (const char *content_type)
520 wc_key = g_utf8_to_utf16 (content_type, -1, NULL, NULL, NULL);
592 g_app_info_get_default_for_type (const char *content_type,
599 wtype = g_utf8_to_utf16 (content_type, -1, NULL, NULL, NULL);
666 g_app_info_reset_type_associations (const char *content_type)
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...]
gdesktopappinfo.c 1251 const char *content_type,
1285 if (content_type)
1288 content_types[0] = g_strdup (content_type);
1333 system_list = get_all_desktop_entries_for_mime_type (content_type, (const char **)list);
    [all...]
gfileinfo.h 821 const char *content_type);
    [all...]
gcontenttype.c 307 char *key, *content_type; local
312 content_type = get_registry_classes_key (key, L"Extension");
315 return content_type;
    [all...]
gfileinfo.c     [all...]
  /dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/
SSLRecordProtocol.java 184 * @param content_type: int
188 protected byte[] wrap(byte content_type, DataStream dataStream) {
190 return wrap(content_type, fragment, 0, fragment.length);
196 * @param content_type: int
200 protected byte[] wrap(byte content_type,
217 activeWriteState.encrypt(content_type, fragment, offset, len);
230 return packetize(content_type, version, ciphered_fragment);
  /external/wpa_supplicant_6/wpa_supplicant/src/tls/
tlsv1_record.h 68 int tlsv1_record_send(struct tlsv1_record_layer *rl, u8 content_type, u8 *buf,
tlsv1_record.c 140 * @content_type: Content type (TLS_CONTENT_TYPE_*)
152 int tlsv1_record_send(struct tlsv1_record_layer *rl, u8 content_type, u8 *buf,
162 *pos++ = content_type;
  /external/openssl/apps/
s_apps.h 169 void MS_CALLBACK msg_cb(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg);
s_cb.c 326 void MS_CALLBACK msg_cb(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg)
420 switch (content_type)
433 if (content_type == 21) /* Alert */
525 if (content_type == 22) /* Handshake */
  /development/scripts/app_engine_server/
memcache_zipserve.py 327 content_type, encoding = mimetypes.guess_type(name)
328 if content_type:
329 self.response.headers['Content-Type'] = content_type
  /external/openssl/crypto/pkcs7/
pk7_lib.c 190 p7->d.signed_and_enveloped->enc_data->content_type
199 p7->d.enveloped->enc_data->content_type
208 p7->d.encrypted->enc_data->content_type
pk7_asn1.c 162 ASN1_SIMPLE(PKCS7_ENC_CONTENT, content_type, ASN1_OBJECT),
pkcs7.h 136 ASN1_OBJECT *content_type; member in struct:pkcs7_enc_content_st
  /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/wpa_supplicant/
tlsv1_common.h 227 int tlsv1_record_send(struct tlsv1_record_layer *rl, u8 content_type, u8 *buf,
tlsv1_common.c 284 * @content_type: Content type (TLS_CONTENT_TYPE_*)
296 int tlsv1_record_send(struct tlsv1_record_layer *rl, u8 content_type, u8 *buf,
306 *pos++ = content_type;
  /external/openssl/include/openssl/
pkcs7.h 136 ASN1_OBJECT *content_type; member in struct:pkcs7_enc_content_st
ssl.h 605 void SSL_CTX_set_msg_callback(SSL_CTX *ctx, void (*cb)(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg));
606 void SSL_set_msg_callback(SSL *ssl, void (*cb)(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg));
763 void (*msg_callback)(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg);
    [all...]
  /external/openssl/ssl/
ssl.h 605 void SSL_CTX_set_msg_callback(SSL_CTX *ctx, void (*cb)(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg));
606 void SSL_set_msg_callback(SSL *ssl, void (*cb)(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg));
763 void (*msg_callback)(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg);
    [all...]
  /external/webkit/WebKitTools/Scripts/webkitpy/
bugzilla.py 356 content_type = "&ctype=xml" if xml else ""
359 content_type)

Completed in 417 milliseconds

1 2