/frameworks/base/wifi/tests/assets/hsr1/ |
D | README.txt | 2 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…
|
D | HSR1ProfileWithCACert.conf | 3 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/ |
D | json_objectwriter.cc | 147 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()
|
D | datapiece.cc | 208 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/ |
D | csharp_reflection_class.cc | 155 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/ |
D | Base64_test.cpp | 75 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/ |
D | debug_sign.sh | 5 openssl dgst -sha256 -sign $(dirname $0)/debug_key.pem <(echo -n "$1" | base64 -d) | base64 -w 0
|
D | verify_b64.sh | 15 …gst -sha256 -verify $(dirname $0)/${K} -signature <(echo ${S} | base64 -d) <(echo ${D} | base64 -d)
|
/frameworks/native/cmds/installd/tests/ |
D | test_utils.h | 95 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/ |
D | ImageUtils.java | 265 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/ |
D | proto3_test.js | 43 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'));
|
D | message.js | 660 return goog.crypt.base64.encodeByteArray(value); 679 return goog.crypt.base64.decodeStringToUint8Array(value);
|
/frameworks/base/services/core/java/com/android/server/signedconfig/ |
D | SignatureVerifier.java | 60 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/ |
D | strutil.cc | 2079 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/ |
D | ByteStringTest.cs | 159 string base64 = Convert.ToBase64String(data); in FromBase64_WithText() 160 ByteString bs = ByteString.FromBase64(base64); in FromBase64_WithText()
|
/frameworks/av/media/libstagefright/foundation/ |
D | Android.bp | 77 "base64.cpp",
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/python/google/protobuf/ |
D | json_format.py | 49 import base64 203 return base64.b64encode(value).decode('utf-8') 566 return base64.b64decode(value)
|
/frameworks/base/core/proto/android/debug/ |
D | enums.proto | 52 * 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/ |
D | proto_test.js | 95 var BYTES_B64 = goog.crypt.base64.encodeByteArray(BYTES); 176 arr = goog.crypt.base64.decodeStringToUint8Array(arr); 216 copy.getOptionalBytes_asB64(), goog.crypt.base64.encodeByteArray(BYTES));
|
D | utils_test.js | 645 var sourceBase64 = goog.crypt.base64.encodeByteArray(sourceData);
|
D | utils.js | 970 return goog.crypt.base64.decodeStringToUint8Array(data);
|
D | writer.js | 242 return goog.crypt.base64.encodeByteArray(this.getResultBuffer());
|
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/ |
D | SettingsState.java | 782 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/ |
D | JsonFormat.java | 964 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/ |
D | upb.c | 11588 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()
|