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

1 2 3

  /packages/apps/Email/src/com/beetstra/jutf7/
UTF7StyleCharset.java 45 Base64Util base64; field in class:UTF7StyleCharset
66 this.base64 = new Base64Util(alphabet);
83 return new UTF7StyleCharsetDecoder(this, base64, strict);
91 return new UTF7StyleCharsetEncoder(this, base64, strict);
UTF7StyleCharsetEncoder.java 53 private final Base64Util base64; field in class:UTF7StyleCharsetEncoder
68 UTF7StyleCharsetEncoder(UTF7StyleCharset cs, Base64Util base64, boolean strict) {
71 this.base64 = base64;
110 out.put(base64.getChar(sextet));
184 out.put(base64.getChar(sextet));
185 if (base64.contains(ch) || ch == unshift || strict)
212 out.put(base64.getChar(sextet));
UTF7StyleCharsetDecoder.java 41 private final Base64Util base64; field in class:UTF7StyleCharsetDecoder
51 UTF7StyleCharsetDecoder(UTF7StyleCharset cs, Base64Util base64, boolean strict) {
53 this.base64 = base64;
122 int sextet = base64.getSextet(lastRead);
178 * @return True if there are base64 encoded characters waiting to be written
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/oauth2/clients/
smtp.py 27 import base64 namespace
41 base64.b64encode(oauth2.build_xoauth_string(url, consumer, token)))
  /external/skia/src/animator/
SkDrawBitmap.cpp 132 SK_MEMBER(base64, Base64),
143 base64.fData = NULL;
144 base64.fLength = 0;
148 delete[] base64.fData;
191 if (base64.fData) {
193 SkImageDecoder::DecodeMemory(base64.fData, base64.fLength, &fBitmap);
SkDrawBitmap.h 74 SkBase64 base64; member in class:SkImage
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
string-base64.js 41 /* Convert data (an array of integers) to a Base64 string. */
74 /* Convert Base64 data to a string */
112 // If there are any bits left, the base64 string was corrupted
114 throw Components.Exception('Corrupted base64 string');
126 var base64;
128 base64 = toBase64(str);
129 base64ToString(base64);
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
string-base64.js 41 /* Convert data (an array of integers) to a Base64 string. */
74 /* Convert Base64 data to a string */
112 // If there are any bits left, the base64 string was corrupted
114 throw Components.Exception('Corrupted base64 string');
126 var base64;
128 base64 = toBase64(str);
129 base64ToString(base64);
  /external/webkit/Source/WebCore/platform/network/
DataURL.cpp 30 #include "Base64.h"
55 bool base64 = mediaType.endsWith(";base64", false); local
56 if (base64)
70 if (base64) {
  /external/ipsec-tools/src/racoon/
prsa_tok.l 54 base64 [A-Za-z0-9+/=]
69 0s{base64}+ {
71 return BASE64;
  /external/webkit/Source/WebKit/android/benchmark/
Intercept.cpp 29 #include "Base64.h"
69 String base64 = data.substring(index + 1); local
71 bool decode = mediaType.endsWith(";base64", false);
73 mediaType = mediaType.left(mediaType.length() - 7); // 7 for base64;
85 base64 = decodeURLEscapeSequences(base64);
89 // FIXME: This is annoying. WebCore's Base64 decoder chokes on spaces.
94 CString str = base64.latin1();
109 base64 = decodeURLEscapeSequences(base64, TextEncoding(charset))
    [all...]
  /external/wpa_supplicant_8/src/utils/
Makefile 16 base64.o \
  /device/moto/stingray/ril/
wrigley-dump.sh 55 echo "$cmd" | nc -w 10 192.168.20.2 3002 | gzip | base64 -e
qbp-apr-dump.sh 68 # Do NOT redirect stderr to stdout for bin files. It may confuse the base64 decoder.
92 base64 -e "${tmpOutDir}/${binFile}" > "${tmpOutDir}/${binFile}-base64" 2>&1
97 echo "base64 failed for ${tmpOutDir}/${binFile}"
104 cat "${tmpOutDir}/${binFile}-base64" >> ${bp_dump_tmp_file}
107 case $catRes in 0) ;; *) "cat failed for ${tmpOutDir}/${binFile}-base64";; esac
110 rm "${tmpOutDir}/${binFile}" "${tmpOutDir}/${binFile}-base64"
qbp-dump.sh 127 # Do NOT redirect stderr to stdout for bin files. It may confuse the base64 decoder.
144 base64 -e "${outDir}/${binFile}" "${outDir}/${binFile}-base64" 2>&1
149 echo "base64 failed for ${outDir}/${binFile}"
155 cat "${outDir}/${binFile}-base64"
158 case $catRes in 0) ;; *) "cat failed for ${outDir}/${binFile}-base64";; esac
159 rm "${outDir}/${binFile}" "${outDir}/${binFile}-base64"
  /frameworks/base/media/libstagefright/foundation/
Android.mk 14 base64.cpp \
  /external/openssl/apps/
rand.c 71 * -base64 - base64 encode output
84 int base64 = 0; local
128 else if (strcmp(argv[i], "-base64") == 0)
130 if (!base64)
131 base64 = 1;
157 if (hex && base64)
172 BIO_printf(bio_err, "-base64 - base64 encode output\n");
204 if (base64)
    [all...]
enc.c 116 int enc=1,printkey=0,i,base64=0; local
144 if (strcmp(pname,"base64") == 0)
145 base64=1;
153 if (!do_zlib && !base64 && (cipher == NULL)
156 if (!base64 && (cipher == NULL) && (strcmp(pname,"enc") != 0))
210 base64=1;
211 else if (strcmp(*argv,"-base64") == 0)
212 base64=1;
301 BIO_printf(bio_err,"%-14s base64 encode/decode, depending on encryption flag\n","-a/-base64");
    [all...]
  /external/openssl/crypto/evp/
bio_b64.c 89 EVP_ENCODE_CTX base64; member in struct:b64_struct
96 BIO_TYPE_BASE64,"base64 encoding",
163 EVP_DecodeInit(&(ctx->base64));
236 * base64 encoded stuff. */
244 k=EVP_DecodeUpdate(&(ctx->base64),
248 EVP_DecodeInit(&ctx->base64);
259 EVP_DecodeInit(&ctx->base64);
339 i=EVP_DecodeUpdate(&(ctx->base64),
389 EVP_EncodeInit(&(ctx->base64));
459 EVP_EncodeUpdate(&(ctx->base64),
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
certificate_dialogs.cc 12 #include "base/base64.h"
60 std::string base64; local
62 x509_certificate_model::GetDerString(cert), &base64)) {
63 LOG(ERROR) << "base64 encoding error";
67 WrapAt64(base64) +
  /frameworks/base/media/libstagefright/rtsp/
ARTPWriter.h 24 #include <media/stagefright/foundation/base64.h>
  /device/moto/stingray/
device.mk 22 device/moto/stingray/ril/base64:system/bin/base64 \
57 base64 \
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/build/
SignedJarBuilder.java 316 BASE64Encoder base64 = new BASE64Encoder(); local
325 main.putValue(DIGEST_MANIFEST_ATTR, base64.encode(md.digest()));
338 sfAttr.putValue(DIGEST_ATTR, base64.encode(md.digest()));
  /external/srtp/crypto/math/
datatypes.c 530 * From RFC 1521: The Base64 Alphabet
697 base64_string_to_octet_string(char *raw, char *base64, int len) {
704 tmp = base64_char_to_sextet(base64[0]);
709 tmp = base64_char_to_sextet(base64[1]);
715 base64 += 2;
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
test.py 33 import base64 namespace
118 actual_audio=base64.b64encode('audio_fail-wav'), expected_audio='audio-wav',
150 actual_audio=base64.b64encode('audio-wav'), expected_audio='audio-wav',
443 audio = base64.b64decode(test.actual_audio)

Completed in 622 milliseconds

1 2 3