/external/skia/modules/canvaskit/htmlcanvas/ |
htmlcanvas.js | 71 return 'data:' + codec + ';base64,' + toBase64String(imgBytes);
|
/external/skqp/experimental/canvaskit/htmlcanvas/ |
htmlcanvas.js | 71 return 'data:' + codec + ';base64,' + toBase64String(imgBytes);
|
/external/wpa_supplicant_8/hs20/server/www/ |
est.php | 106 header("Content-Transfer-Encoding: base64"); 114 header("Content-Transfer-Encoding: base64"); 150 error_log("EST: simpleenroll - Invalid base64-encoded PKCS#10 data"); 151 die("Invalid base64-encoded PKCS#10 data"); 219 header("Content-Transfer-Encoding: base64");
|
/external/protobuf/src/google/protobuf/stubs/ |
strutil.cc | [all...] |
/art/dexlayout/ |
dexlayout_test.cc | 232 static void WriteBase64ToFile(const char* base64, File* file) { 233 // Decode base64. 234 CHECK(base64 != nullptr); 236 std::unique_ptr<uint8_t[]> bytes(DecodeBase64(base64, &length)); 239 PLOG(FATAL) << "Failed to write base64 as file"; 243 static void WriteFileBase64(const char* base64, const char* location) { 247 WriteBase64ToFile(base64, file.get()); [all...] |
/external/python/cpython2/Lib/test/ |
test_gettext.py | 2 import base64 68 fp.write(base64.decodestring(GNU_MO_DATA)) 70 fp.write(base64.decodestring(UMO_DATA)) 72 fp.write(base64.decodestring(MMO_DATA)) 390 fp.write(base64.decodestring(GNU_MO_DATA_ISSUE_17898))
|
/external/python/cpython3/Lib/test/ |
test_gettext.py | 2 import base64 119 fp.write(base64.decodebytes(GNU_MO_DATA)) 121 fp.write(base64.decodebytes(GNU_MO_DATA_BAD_MAJOR_VERSION)) 123 fp.write(base64.decodebytes(GNU_MO_DATA_BAD_MINOR_VERSION)) 125 fp.write(base64.decodebytes(UMO_DATA)) 127 fp.write(base64.decodebytes(MMO_DATA)) 578 fp.write(base64.decodebytes(GNU_MO_DATA_ISSUE_17898)) [all...] |
/external/python/apitools/apitools/base/py/ |
base_api_test.py | 16 import base64 253 'bytes_field': base64.urlsafe_b64encode(non_unicode_message), 269 'nextPageToken': base64.urlsafe_b64encode(non_unicode_message),
|
/external/python/oauth2client/oauth2client/ |
service_account.py | 17 import base64 140 to_serialize[_PKCS12_KEY] = base64.b64encode(pkcs12_val) 449 pkcs12_val = base64.b64decode(pkcs12_val)
|
/development/python-packages/fastboot/ |
device.py | 220 # Encode the PowerShell command as base64 and use the special 221 # -EncodedCommand option that base64 decodes. Base64 is just plain ASCII, 225 '-EncodedCommand', base64.b64encode(ps_code)],) + args[1:]
|
/external/grpc-grpc-java/core/src/test/java/io/grpc/internal/ |
TransportFrameUtilTest.java | 114 return BaseEncoding.base64().encode(input).getBytes(US_ASCII);
|
/external/ksoap2/kobjects/org/ksoap2/kobjects/mime/ |
Decoder.java | 25 import org.ksoap2.kobjects.base64.Base64; 182 if ("base64".equals(getHeader("Content-Transfer-Encoding"))) { 191 Base64.decode(line, os);
|
/external/protobuf/csharp/src/Google.Protobuf.Test/ |
ByteStringTest.cs | 159 string base64 = Convert.ToBase64String(data);
160 ByteString bs = ByteString.FromBase64(base64);
|
/external/skia/modules/pathkit/tests/ |
testReporter.js | 12 // This converts an SVG to a base64 encoded PNG. It basically creates an 74 // data is a base64 encoded png, outputType is the value that goes with the
|
/external/skqp/modules/pathkit/tests/ |
testReporter.js | 12 // This converts an SVG to a base64 encoded PNG. It basically creates an 74 // data is a base64 encoded png, outputType is the value that goes with the
|
/external/wpa_supplicant_8/hs20/client/ |
Makefile | 63 OBJS += ../../src/utils/base64.o
|
Android.mk | 48 OBJS += ../../src/utils/base64.c
|
/frameworks/av/drm/mediadrm/plugins/clearkey/default/ |
InitDataParser.cpp | 23 #include <media/stagefright/foundation/base64.h> 147 // Android's Base64 encoder produces padding. EME forbids padding.
|
/frameworks/av/media/libstagefright/rtsp/ |
rtp_test.cpp | 24 #include <media/stagefright/foundation/base64.h>
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
CGIHTTPServer.py | 179 import base64, binascii
183 authorization = base64.decodestring(authorization[1])
|
/external/autotest/client/cros/bluetooth/ |
bluetooth_tester_xmlrpc_server.py | 7 import base64 337 (address, address_type, rssi, flags, base64-encoded eirdata), 358 base64.encodestring(eirdata))
|
/external/python/cpython2/Lib/ |
CGIHTTPServer.py | 176 import base64, binascii 180 authorization = base64.decodestring(authorization[1])
|
/external/python/oauth2client/tests/ |
test_crypt.py | 15 import base64 274 payload = base64.b64encode(b'{BADJSON') 299 signature = base64.b64encode(signature_bytes) 301 payload = base64.b64encode(b'{"a": "b"}')
|
/external/syzkaller/pkg/email/ |
parser.go | 8 "encoding/base64" 264 case "base64": 265 r = base64.NewDecoder(base64.StdEncoding, r)
|
/build/soong/java/ |
kotlin.go | 19 "encoding/base64" 154 // kapt converts a list of key, value pairs into a base64 encoded Java serialization, which is what kapt expects. 177 return base64.StdEncoding.EncodeToString(append(header.Bytes(), buf.Bytes()...))
|