HomeSort by relevance Sort by last modified time
    Searched full:plain (Results 1 - 25 of 1032) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium/net/data/proxy_script_fetcher_unittest/
pac.txt.mock-http-headers 2 Content-Type: text/plain
  /external/webkit/LayoutTests/http/tests/appcache/resources/
.htaccess 4 ForceType text/plain
counter.php 20 header("Content-Type: text/plain");
uncacheable-resource.php 7 header("Content-Type: text/plain");
  /external/webkit/WebCore/manual-tests/
drop-text-acquires-style.html 3 <title>Dragging plain text into a styled region</title>
6 <p>This test ensures the plain text dropped into a styled text region will acquire the appropriate style</p>
plain-text-paste.html 11 1. Double-click <a href="resources/plain-text-paste.dmg">this disk image</a> in the Finder.<br>
25 Plain text clipping
34 <td>Plain text clipping</td>
  /external/wpa_supplicant/
aes.h 19 void aes_encrypt(void *ctx, const u8 *plain, u8 *crypt);
22 void aes_decrypt(void *ctx, const u8 *crypt, u8 *plain);
crypto_internal.c 38 void des3_encrypt(const u8 *plain, const struct des3_key_s *key, u8 *crypt);
39 void des3_decrypt(const u8 *crypt, const struct des3_key_s *key, u8 *plain);
309 int crypto_cipher_encrypt(struct crypto_cipher *ctx, const u8 *plain,
316 if (plain != crypt)
317 os_memcpy(crypt, plain, len);
328 ctx->u.aes.cbc[j] ^= plain[j];
333 plain += ctx->u.aes.block_size;
343 ctx->u.des3.cbc[j] ^= plain[j];
347 plain += 8;
360 u8 *plain, size_t len
    [all...]
crypto_libtomcrypt.c 104 void aes_encrypt(void *ctx, const u8 *plain, u8 *crypt)
107 aes_ecb_encrypt(plain, crypt, skey);
133 void aes_decrypt(void *ctx, const u8 *crypt, u8 *plain)
136 aes_ecb_encrypt(plain, (u8 *) crypt, skey);
357 int crypto_cipher_encrypt(struct crypto_cipher *ctx, const u8 *plain,
363 if (plain != crypt)
364 os_memcpy(crypt, plain, len);
371 res = cbc_encrypt(plain, crypt, len, &ctx->u.cbc);
382 u8 *plain, size_t len)
387 if (plain != crypt
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/crypto/
aes.h 19 void aes_encrypt(void *ctx, const u8 *plain, u8 *crypt);
22 void aes_decrypt(void *ctx, const u8 *crypt, u8 *plain);
crypto_libtomcrypt.c 104 void aes_encrypt(void *ctx, const u8 *plain, u8 *crypt)
107 aes_ecb_encrypt(plain, crypt, skey);
133 void aes_decrypt(void *ctx, const u8 *crypt, u8 *plain)
136 aes_ecb_encrypt(plain, (u8 *) crypt, skey);
357 int crypto_cipher_encrypt(struct crypto_cipher *ctx, const u8 *plain,
363 if (plain != crypt)
364 os_memcpy(crypt, plain, len);
371 res = cbc_encrypt(plain, crypt, len, &ctx->u.cbc);
382 u8 *plain, size_t len)
387 if (plain != crypt
    [all...]
crypto_internal.c 39 void des3_encrypt(const u8 *plain, const struct des3_key_s *key, u8 *crypt);
40 void des3_decrypt(const u8 *crypt, const struct des3_key_s *key, u8 *plain);
310 int crypto_cipher_encrypt(struct crypto_cipher *ctx, const u8 *plain,
317 if (plain != crypt)
318 os_memcpy(crypt, plain, len);
329 ctx->u.aes.cbc[j] ^= plain[j];
334 plain += ctx->u.aes.block_size;
344 ctx->u.des3.cbc[j] ^= plain[j];
348 plain += 8;
361 u8 *plain, size_t len
    [all...]
crypto_gnutls.c 122 void aes_encrypt(void *ctx, const u8 *plain, u8 *crypt)
125 gcry_cipher_encrypt(hd, crypt, 16, plain, 16);
152 void aes_decrypt(void *ctx, const u8 *crypt, u8 *plain)
155 gcry_cipher_decrypt(hd, plain, 16, crypt, 16);
286 int crypto_cipher_encrypt(struct crypto_cipher *ctx, const u8 *plain,
289 if (gcry_cipher_encrypt(ctx->enc, crypt, len, plain, len) !=
297 u8 *plain, size_t len)
299 if (gcry_cipher_decrypt(ctx->dec, plain, len, crypt, len) !=
  /libcore/luni/src/test/java/org/apache/harmony/luni/internal/net/www/protocol/http/
HeaderTest.java 27 h.add("Content-Type", "text/plain");
29 assertEquals("text/plain", h.get("Content-Type"));
30 assertEquals("text/plain", h.get("Content-type"));
31 assertEquals("text/plain", h.get("content-type"));
32 assertEquals("text/plain", h.get("CONTENT-TYPE"));
38 assertEquals(Arrays.asList("text/plain"), h.getFieldMap().get("Content-Type"));
39 assertEquals(Arrays.asList("text/plain"), h.getFieldMap().get("Content-type")); // RI fails this.
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/paddings/
BlockCipherPadding.java 31 * Note: this assumes that the last block of plain text is always
34 * should be the same as the last block of plain text. The reason
36 * base the padding on the last byte of plain text.
TBCPadding.java 11 * of the plain text.
42 * Note: this assumes that the last block of plain text is always
45 * should be the same as the last block of plain text.
  /external/chromium/net/base/
mime_sniffer_unittest.cc 58 EXPECT_EQ("text/plain", mime_type);
60 EXPECT_EQ("text/plain", mime_type);
75 "text/plain", "image/gif" },
81 "text/plain", "text/plain" },
109 "text/plain", "application/x-chrome-extension" },
164 "text/plain", "text/plain" },
173 "", "text/plain" },
177 "", "text/plain" },
    [all...]
data_url_unittest.cc 35 "text/plain",
41 "text/plain",
47 "text/plain",
59 "text/plain",
65 "text/plain",
113 "text/plain",
120 "text/plain",
  /external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/port/
lighttpd.conf 25 ".log" => "text/plain",
26 ".conf" => "text/plain",
27 ".text" => "text/plain",
28 ".txt" => "text/plain",
75 ".txt" => "text/plain; charset=windows-1251",
80 mimetype.assign = ( ".txt" => "text/plain; charset=koi8-r" )
86 mimetype.assign = ( ".manifest" => "text/plain" )
  /external/webkit/WebCore/platform/brew/
MIMETypeRegistryBrew.cpp 55 { "text", "text/plain" },
56 { "txt", "text/plain" },
75 // unknown, let's just assume plain text
76 return "text/plain";
  /external/webkit/WebCore/platform/haiku/
MIMETypeRegistryHaiku.cpp 52 { "text", "text/plain" },
53 { "txt", "text/plain" },
71 // unknown, let's just assume plain text
72 return "text/plain";
  /external/webkit/WebCore/platform/wx/
MimeTypeRegistryWx.cpp 51 { "text", "text/plain" },
52 { "txt", "text/plain" },
69 // unknown, let's just assume plain text
70 return "text/plain";
  /external/bluetooth/glib/gio/xdgmime/
test-mime.c 82 test_alias ("application/octet-stream", "text/plain", 0);
83 test_alias ("text/plain", "text/*", 0);
105 test_subclass ("application/rtf", "text/plain", 1);
106 test_subclass ("message/news", "text/plain", 1);
111 test_subclass ("application/x-gnome-app-info", "text/plain", 1);
114 test_subclass ("image/vnd.djvu", "text/plain", 0);
116 test_subclass ("text/*", "text/plain", 1);
168 test_one_icon ("text/plain", NULL);
  /libcore/luni/src/test/java/libcore/java/net/
OldFileNameMapTest.java 34 String [] mimeTypes = {"text/plain", "text/plain",
  /frameworks/base/core/tests/coretests/src/android/util/
Base64Test.java 319 byte[] plain = (lipsum + lipsum + lipsum + lipsum + lipsum).getBytes();
322 byte[] encoded = Base64.encode(plain, flags);
326 byte[] actual = new byte[plain.length * 2];
330 // ----- test decoding ("encoded" -> "plain") -----
339 assertEquals(actual, ap, plain);
348 assertEquals(actual, ap, plain);
367 assertEquals(actual, ap, plain);
369 // ----- test encoding ("plain" -> "encoded") -----
372 bais = new ByteArrayInputStream(plain);
381 bais = new ByteArrayInputStream(plain);
    [all...]

Completed in 781 milliseconds

1 2 3 4 5 6 7 8 91011>>