Home
last modified time | relevance | path

Searched refs:base64 (Results 1 – 25 of 29) sorted by relevance

12

/frameworks/base/wifi/tests/assets/hsr1/
DREADME.txt2 HSR1ProfileWithCACert.base64 - base64 encoded of the data contained in HSR1ProfileWithCAWith.conf
3 HSR1ProfileWithNonBase64Part.base64 - base64 encoded installation file that contains a part of non-
4 HSR1ProfileWithMissingBoundary.base64 - base64 encoded installation file with missing end-boundary …
5 HSR1ProfileWithInvalidContentType.base64 - base64 encoded installation file with that contains a MI…
DHSR1ProfileWithCACert.conf3 Content-Transfer-Encoding: base64
7 Content-Transfer-Encoding: base64
51 Content-Transfer-Encoding: base64
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/util/internal/
Djson_objectwriter.cc147 string base64; in RenderBytes() local
150 WebSafeBase64Escape(value.ToString(), &base64); in RenderBytes()
152 Base64Escape(value, &base64); in RenderBytes()
158 stream_->WriteRaw(base64.data(), base64.size()); in RenderBytes()
Ddatapiece.cc208 string base64; in ToString() local
209 Base64Escape(str_, &base64); in ToString()
210 return base64; in ToString()
237 string base64; in ValueAsStringOrDefault() local
238 WebSafeBase64Escape(str_, &base64); in ValueAsStringOrDefault()
239 return StrCat("\"", base64, "\""); in ValueAsStringOrDefault()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/compiler/csharp/
Dcsharp_reflection_class.cc155 std::string base64 = FileDescriptorToBase64(file_); in WriteDescriptor() local
156 while (base64.size() > 60) { in WriteDescriptor()
157 printer->Print("\"$base64$\",\n", "base64", base64.substr(0, 60)); in WriteDescriptor()
158 base64 = base64.substr(60); in WriteDescriptor()
160 printer->Print("\"$base64$\"));\n", "base64", base64); in WriteDescriptor()
/frameworks/av/media/libstagefright/foundation/tests/
DBase64_test.cpp75 const AString base64[] = { in TEST_F() local
87 verifyDecode(clearText, base64); in TEST_F()
128 const AString base64[] = { in TEST_F() local
134 verifyEncode(base64, clearText); in TEST_F()
/frameworks/base/tools/signedconfig/
Ddebug_sign.sh5 openssl dgst -sha256 -sign $(dirname $0)/debug_key.pem <(echo -n "$1" | base64 -d) | base64 -w 0
Dverify_b64.sh15 …gst -sha256 -verify $(dirname $0)/${K} -signature <(echo ${S} | base64 -d) <(echo ${D} | base64 -d)
/frameworks/native/cmds/installd/tests/
Dtest_utils.h95 bool WriteBase64ToFile(const char* base64, const std::string& file, in WriteBase64ToFile() argument
97 CHECK(base64 != nullptr); in WriteBase64ToFile()
99 std::unique_ptr<uint8_t[]> bytes(DecodeBase64(base64, &length)); in WriteBase64ToFile()
/frameworks/opt/photoviewer/src/com/android/ex/photo/util/
DImageUtils.java265 final String base64 = ssp.substring(BASE64_URI_PREFIX.length()); in parseDataUri() local
266 return Base64.decode(base64, Base64.URL_SAFE); in parseDataUri()
268 final String base64 = ssp.substring( in parseDataUri() local
270 return Base64.decode(base64, Base64.DEFAULT); in parseDataUri()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/js/
Dproto3_test.js43 var BYTES_B64 = goog.crypt.base64.encodeByteArray(BYTES);
54 arr = goog.crypt.base64.decodeStringToUint8Array(arr);
261 msg.setOneofBytes(goog.crypt.base64.encodeString('\u00FF\u00FF'));
266 goog.crypt.base64.encodeString('\u00FF\u00FF'));
290 msg.setOptionalBytes(goog.crypt.base64.encodeString('\u00FF\u00FF'));
Dmessage.js660 return goog.crypt.base64.encodeByteArray(value);
679 return goog.crypt.base64.decodeStringToUint8Array(value);
/frameworks/base/services/core/java/com/android/server/signedconfig/
DSignatureVerifier.java60 private static PublicKey createKey(String base64) { in createKey() argument
63 byte[] key = Base64.getDecoder().decode(base64); in createKey()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/stubs/
Dstrutil.cc2079 char *dest, int szdest, const char *base64, in Base64EscapeInternal() argument
2098 cur_dest[0] = base64[in >> 18]; in Base64EscapeInternal()
2100 cur_dest[1] = base64[in >> 12]; in Base64EscapeInternal()
2102 cur_dest[2] = base64[in >> 6]; in Base64EscapeInternal()
2104 cur_dest[3] = base64[in]; in Base64EscapeInternal()
2123 cur_dest[0] = base64[in >> 2]; in Base64EscapeInternal()
2125 cur_dest[1] = base64[in << 4]; in Base64EscapeInternal()
2140 cur_dest[0] = base64[in >> 10]; in Base64EscapeInternal()
2142 cur_dest[1] = base64[in >> 4]; in Base64EscapeInternal()
2144 cur_dest[2] = base64[in << 2]; in Base64EscapeInternal()
[all …]
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/csharp/src/Google.Protobuf.Test/
DByteStringTest.cs159 string base64 = Convert.ToBase64String(data); in FromBase64_WithText()
160 ByteString bs = ByteString.FromBase64(base64); in FromBase64_WithText()
/frameworks/av/media/libstagefright/foundation/
DAndroid.bp77 "base64.cpp",
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/python/google/protobuf/
Djson_format.py49 import base64
203 return base64.b64encode(value).decode('utf-8')
566 return base64.b64decode(value)
/frameworks/base/core/proto/android/debug/
Denums.proto52 * An empty or invalid base64 encoded key was provided to the framework; the connection was
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/js/binary/
Dproto_test.js95 var BYTES_B64 = goog.crypt.base64.encodeByteArray(BYTES);
176 arr = goog.crypt.base64.decodeStringToUint8Array(arr);
216 copy.getOptionalBytes_asB64(), goog.crypt.base64.encodeByteArray(BYTES));
Dutils_test.js645 var sourceBase64 = goog.crypt.base64.encodeByteArray(sourceData);
Dutils.js970 return goog.crypt.base64.decodeStringToUint8Array(data);
Dwriter.js242 return goog.crypt.base64.encodeByteArray(this.getResultBuffer());
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
DSettingsState.java782 final String base64 = parser.getAttributeValue(null, base64Attr); in getValueAttribute() local
783 if (base64 != null) { in getValueAttribute()
784 return base64Decode(base64); in getValueAttribute()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/java/util/src/main/java/com/google/protobuf/util/
DJsonFormat.java964 generator.print(BaseEncoding.base64().encode(((ByteString) value).toByteArray())); in printSingleFieldValue()
1612 return ByteString.copyFrom(BaseEncoding.base64().decode(json.getAsString())); in parseBytes()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/php/ext/google/protobuf/
Dupb.c11588 static const char base64[] = in putbytes() local
11606 to[0] = base64[from[0] >> 2]; in putbytes()
11607 to[1] = base64[((from[0] & 0x3) << 4) | (from[1] >> 4)]; in putbytes()
11608 to[2] = base64[((from[1] & 0xf) << 2) | (from[2] >> 6)]; in putbytes()
11609 to[3] = base64[from[2] & 0x3f]; in putbytes()
11618 to[0] = base64[from[0] >> 2]; in putbytes()
11619 to[1] = base64[((from[0] & 0x3) << 4) | (from[1] >> 4)]; in putbytes()
11620 to[2] = base64[(from[1] & 0xf) << 2]; in putbytes()
11626 to[0] = base64[from[0] >> 2]; in putbytes()
11627 to[1] = base64[((from[0] & 0x3) << 4)]; in putbytes()

12