HomeSort by relevance Sort by last modified time
    Searched refs:toByteArray (Results 176 - 200 of 1795) sorted by null

1 2 3 4 5 6 78 91011>>

  /libcore/ojluni/src/main/java/java/security/
PKCS12Attribute.java 236 new BigInteger(value.replace(":", ""), 16).toByteArray();
249 return attributeValue.toByteArray();
257 new DerInputStream(attrSeq[1].toByteArray());
  /packages/apps/Email/tests/src/com/android/email/mail/store/imap/
ImapStringTest.java 49 assertEquals("", Utility.fromAscii(IOUtils.toByteArray(ImapString.EMPTY.getAsStream())));
65 assertEquals("AbcD", Utility.fromAscii(IOUtils.toByteArray(s.getAsStream())));
147 assertEquals(content, Utility.fromAscii(IOUtils.toByteArray(s.getAsStream())));
  /packages/apps/Nfc/src/com/android/nfc/ndefpush/
NdefPushProtocol.java 148 public byte[] toByteArray() {
157 byte[] bytes = mMessages[i].toByteArray();
165 return buffer.toByteArray();
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
ByteArrayOutputStream.java 31 * The data can be retrieved using <code>toByteArray()</code> and
267 * @see java.io.ByteArrayOutputStream#toByteArray()
269 public synchronized byte[] toByteArray() {
296 return new String(toByteArray());
309 return new String(toByteArray(), enc);
  /external/turbine/javatests/com/google/turbine/bytecode/
ClassReaderTest.java 61 byte[] bytes = cw.toByteArray();
111 byte[] bytes = cw.toByteArray();
158 byte[] bytes = cw.toByteArray();
194 byte[] bytes = cw.toByteArray();
218 byte[] bytes = cw.toByteArray();
235 ClassFile cf = ClassReader.read(null, cw.toByteArray());
  /external/annotation-tools/asmx/test/perf/org/objectweb/asm/
ASMPerfTest.java 65 return cw.toByteArray();
75 return cw.toByteArray();
  /external/apache-http/src/org/apache/http/util/
EntityUtils.java 65 public static byte[] toByteArray(final HttpEntity entity) throws IOException {
90 return buffer.toByteArray();
  /external/desugar/java/com/google/devtools/build/android/desugar/
CoreLibraryRewriter.java 172 byte[] toByteArray() {
173 return writer.toByteArray();
  /external/libphonenumber/internal/prefixmapper/test/com/google/i18n/phonenumbers/prefixmapper/
FlyweightMapStorageTest.java 85 new ObjectInputStream(new ByteArrayInputStream(byteArrayOutputStream.toByteArray()));
98 new ObjectInputStream(new ByteArrayInputStream(byteArrayOutputStream.toByteArray()));
  /external/slf4j/slf4j-migrator/src/main/java/org/slf4j/migrator/
InplaceFileConverter.java 65 return baos.toByteArray();
101 return baos.toByteArray();
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/hotspot2/anqp/
NAIRealmDataTestUtil.java 92 return stream.toByteArray();
117 return stream.toByteArray();
  /frameworks/support/jetifier/jetifier/processor/src/main/kotlin/com/android/tools/build/jetifier/processor/transform/metainf/
MetaInfTransformer.kt 64 file.setNewData(to.toByteArray())
  /frameworks/support/jetifier/jetifier/processor/src/main/kotlin/com/android/tools/build/jetifier/processor/transform/proguard/
ProGuardTransformer.kt 51 file.setNewData(result.toByteArray())
  /libcore/luni/src/test/java/libcore/java/util/zip/
OldAndroidZipStreamTest.java 36 byte[] zipData = bytesOut.toByteArray();
59 zipData = bytesOut.toByteArray();
157 // + "', zero=" + contents.toByteArray()[0]
158 // + ", tfs=" + contents.toByteArray()[257]
  /libcore/ojluni/src/main/java/sun/misc/
CharacterDecoder.java 195 return (outStream.toByteArray());
204 return (outStream.toByteArray());
  /libcore/ojluni/src/main/java/sun/security/x509/
AuthorityInfoAccessExtension.java 160 out.write(tmp.toByteArray());
229 this.extensionValue = seq.toByteArray();
CRLReasonCodeExtension.java 63 this.extensionValue = dos.toByteArray();
170 out.write(tmp.toByteArray());
CertificatePoliciesExtension.java 100 this.extensionValue = os.toByteArray();
186 out.write(tmp.toByteArray());
InhibitAnyPolicyExtension.java 100 this.extensionValue = out.toByteArray();
181 out.write(tmp.toByteArray());
InvalidityDateExtension.java 78 this.extensionValue = dos.toByteArray();
189 out.write(tmp.toByteArray());
IssuerAlternativeNameExtension.java 75 this.extensionValue = os.toByteArray();
170 out.write(tmp.toByteArray());
PolicyMappingsExtension.java 83 this.extensionValue = os.toByteArray();
160 out.write(tmp.toByteArray());
SubjectAlternativeNameExtension.java 80 this.extensionValue = os.toByteArray();
175 out.write(tmp.toByteArray());
SubjectInfoAccessExtension.java 165 out.write(tmp.toByteArray());
235 this.extensionValue = seq.toByteArray();
  /libcore/ojluni/src/test/java/time/tck/java/time/chrono/serial/
TCKChronoLocalDateSerialization.java 126 byte[] bytes = baos.toByteArray();
160 byte[] dateBytes = baos.toByteArray();

Completed in 1368 milliseconds

1 2 3 4 5 6 78 91011>>