Home
last modified time | relevance | path

Searched defs:binaryData (Results 1 – 5 of 5) sorted by relevance

/external/sl4a/Common/src/org/apache/commons/codec/binary/
DBase64Codec.java640 public static byte[] encodeBase64(byte[] binaryData) { in encodeBase64()
652 public static String encodeBase64String(byte[] binaryData) { in encodeBase64String()
665 public static byte[] encodeBase64URLSafe(byte[] binaryData) { in encodeBase64URLSafe()
678 public static String encodeBase64URLSafeString(byte[] binaryData) { in encodeBase64URLSafeString()
689 public static byte[] encodeBase64Chunked(byte[] binaryData) { in encodeBase64Chunked()
765 public static byte[] encodeBase64(byte[] binaryData, boolean isChunked) { in encodeBase64()
783 public static byte[] encodeBase64(byte[] binaryData, boolean isChunked, boolean urlSafe) { in encodeBase64()
803 …public static byte[] encodeBase64(byte[] binaryData, boolean isChunked, boolean urlSafe, int maxRe… in encodeBase64()
/external/apache-http/src/org/apache/commons/codec/binary/
DBase64.java182 public static byte[] encodeBase64(byte[] binaryData) { in encodeBase64()
193 public static byte[] encodeBase64Chunked(byte[] binaryData) { in encodeBase64Chunked()
237 public static byte[] encodeBase64(byte[] binaryData, boolean isChunked) { in encodeBase64()
/external/okhttp/okhttp-ws-tests/src/test/java/com/squareup/okhttp/internal/ws/
DWebSocketReaderTest.java404 private byte[] binaryData(int length) { in binaryData() method in WebSocketReaderTest
DWebSocketWriterTest.java333 private static byte[] binaryData(int length) { in binaryData() method in WebSocketWriterTest
/external/apache-http/src/org/apache/http/impl/auth/
DDigestScheme.java456 private static String encode(byte[] binaryData) { in encode()