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

1 2

  /external/libbrillo/brillo/
url_utils.h 14 #include <brillo/data_encoding.h>
48 BRILLO_EXPORT data_encoding::WebParamList GetQueryStringParameters(
56 const data_encoding::WebParamList& params,
77 const data_encoding::WebParamList& params) WARN_UNUSED_RESULT;
data_encoding_unittest.cc 5 #include <brillo/data_encoding.h>
13 namespace data_encoding { namespace in namespace:brillo
15 TEST(data_encoding, UrlEncoding) {
27 TEST(data_encoding, WebParamsEncoding) {
42 TEST(data_encoding, Base64Encode) {
70 TEST(data_encoding, Base64EncodeWrapLines) {
99 TEST(data_encoding, Base64Decode) {
146 } // namespace data_encoding
url_utils.cc 98 data_encoding::WebParamList url::GetQueryStringParameters(
104 return data_encoding::WebParamsDecode(query_string);
112 std::string url::GetQueryStringValue(const data_encoding::WebParamList& params,
141 const data_encoding::WebParamList& params) {
153 result += data_encoding::WebParamsEncode(params);
data_encoding.cc 5 #include <brillo/data_encoding.h>
43 namespace data_encoding { namespace in namespace:brillo
153 } // namespace data_encoding
data_encoding.h 16 namespace data_encoding { namespace in namespace:brillo
79 } // namespace data_encoding
  /external/libcups/cups/
http.c 693 DEBUG_printf(("httpFlushWrite(http=%p) data_encoding=%d", (void *)http, http ? http->data_encoding : 100));
702 if (http->data_encoding == HTTP_ENCODING_CHUNKED)
    [all...]
http-private.h 292 http_encoding_t data_encoding; /* Chunked or not */ member in struct:_http_s
  /system/update_engine/common/
hash_calculator.cc 23 #include <brillo/data_encoding.h>
84 hash_ = brillo::data_encoding::Base64Encode(raw_hash_.data(),
utils.cc 52 #include <brillo/data_encoding.h>
948 string encoded_hash = brillo::data_encoding::Base64Encode(payload_hash);
965 if (!brillo::data_encoding::Base64Decode(base64_encoded, &contents) ||
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
codecs.py 746 data_encoding = 'unknown' variable in class:StreamRecoder
893 def EncodedFile(file, data_encoding, file_encoding=None, errors='strict'):
899 to the given data_encoding and then written to the original
904 passed back to the caller as string using data_encoding.
906 If file_encoding is not given, it defaults to data_encoding.
913 .data_encoding and .file_encoding which reflect the given
919 file_encoding = data_encoding
920 data_info = lookup(data_encoding)
925 sr.data_encoding = data_encoding
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
codecs.py 743 data_encoding = 'unknown' variable in class:StreamRecoder
890 def EncodedFile(file, data_encoding, file_encoding=None, errors='strict'):
896 to the given data_encoding and then written to the original
901 passed back to the caller as string using data_encoding.
903 If file_encoding is not given, it defaults to data_encoding.
910 .data_encoding and .file_encoding which reflect the given
916 file_encoding = data_encoding
917 data_info = lookup(data_encoding)
922 sr.data_encoding = data_encoding
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
codecs.py 743 data_encoding = 'unknown' variable in class:StreamRecoder
890 def EncodedFile(file, data_encoding, file_encoding=None, errors='strict'):
896 to the given data_encoding and then written to the original
901 passed back to the caller as string using data_encoding.
903 If file_encoding is not given, it defaults to data_encoding.
910 .data_encoding and .file_encoding which reflect the given
916 file_encoding = data_encoding
917 data_info = lookup(data_encoding)
922 sr.data_encoding = data_encoding
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
codecs.py 743 data_encoding = 'unknown' variable in class:StreamRecoder
890 def EncodedFile(file, data_encoding, file_encoding=None, errors='strict'):
896 to the given data_encoding and then written to the original
901 passed back to the caller as string using data_encoding.
903 If file_encoding is not given, it defaults to data_encoding.
910 .data_encoding and .file_encoding which reflect the given
916 file_encoding = data_encoding
917 data_info = lookup(data_encoding)
922 sr.data_encoding = data_encoding
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
codecs.py 743 data_encoding = 'unknown' variable in class:StreamRecoder
890 def EncodedFile(file, data_encoding, file_encoding=None, errors='strict'):
896 to the given data_encoding and then written to the original
901 passed back to the caller as string using data_encoding.
903 If file_encoding is not given, it defaults to data_encoding.
910 .data_encoding and .file_encoding which reflect the given
916 file_encoding = data_encoding
917 data_info = lookup(data_encoding)
922 sr.data_encoding = data_encoding
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
codecs.py 743 data_encoding = 'unknown' variable in class:StreamRecoder
890 def EncodedFile(file, data_encoding, file_encoding=None, errors='strict'):
896 to the given data_encoding and then written to the original
901 passed back to the caller as string using data_encoding.
903 If file_encoding is not given, it defaults to data_encoding.
910 .data_encoding and .file_encoding which reflect the given
916 file_encoding = data_encoding
917 data_info = lookup(data_encoding)
922 sr.data_encoding = data_encoding
    [all...]
  /system/update_engine/payload_consumer/
filesystem_verifier_action.cc 29 #include <brillo/data_encoding.h>
45 return brillo::data_encoding::Base64Encode(hash.data(), hash.size());
  /system/update_engine/payload_generator/
payload_signer.cc 25 #include <brillo/data_encoding.h>
516 *out_signature = brillo::data_encoding::Base64Encode(signature);
548 brillo::data_encoding::Base64Encode(file_hash));
550 brillo::data_encoding::Base64Encode(metadata_hash));
  /external/libbrillo/brillo/http/
http_utils.cc 13 #include <brillo/data_encoding.h>
242 std::string encoded_data = brillo::data_encoding::WebParamsEncode(data);
271 std::string encoded_data = brillo::data_encoding::WebParamsEncode(data);
http_transport_fake.cc 227 auto fields = brillo::data_encoding::WebParamsDecode(GetDataAsString());
  /external/libpng/
pngread.c 2082 unsigned int data_encoding = P_NOTSET; \/* Encoding libpng must produce *\/ local
    [all...]
  /external/pdfium/third_party/libpng16/
pngread.c 2083 unsigned int data_encoding = P_NOTSET; \/* Encoding libpng must produce *\/ local
    [all...]
  /external/skia/third_party/libpng/
pngread.c 2073 unsigned int data_encoding = P_NOTSET; \/* Encoding libpng must produce *\/ local
    [all...]
  /system/tpm/attestation/server/
attestation_service_test.cc 24 #include <brillo/data_encoding.h>
98 pem += brillo::data_encoding::Base64EncodeWrapLines("fake_cert");
100 pem += brillo::data_encoding::Base64EncodeWrapLines("fake_ca_cert");
102 pem += brillo::data_encoding::Base64EncodeWrapLines("fake_ca_cert2");
    [all...]
attestation_service.cc 23 #include <brillo/data_encoding.h>
796 pem += brillo::data_encoding::Base64EncodeWrapLines(certificate);
  /external/libbrillo/
Android.mk 24 brillo/data_encoding.cc \

Completed in 1077 milliseconds

1 2