HomeSort by relevance Sort by last modified time
    Searched defs:toByteArray (Results 51 - 75 of 160) sorted by null

1 23 4 5 6 7

  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/sampleentry/
SampleEntry.java 149 bb.put(baos.toByteArray());
  /external/smack/src/org/xbill/DNS/
Address.java 121 byte [] v4addr = Address.toByteArray(tokens[i], IPv4);
167 byte [] byteArray = toByteArray(s, family);
193 toByteArray(String s, int family) {
209 byte [] address = Address.toByteArray(s, IPv4);
299 bytes = toByteArray(addr, IPv4);
302 bytes = toByteArray(addr, IPv6);
322 bytes = toByteArray(addr, family);
DNSSEC.java 159 out.writeByteArray(header.toByteArray());
169 return out.toByteArray();
190 return out.toByteArray();
336 byte [] b = val.toByteArray();
476 return out.toByteArray();
486 int t = (p.toByteArray().length - 64) / 8;
494 return out.toByteArray();
507 return out.toByteArray();
608 return out.toByteArray();
647 return out.toByteArray();
    [all...]
TSIG.java 230 hmac.update(out.toByteArray());
255 hmac.update(out.toByteArray());
271 other = out.toByteArray();
323 hmac.update(out.toByteArray());
337 hmac.update(out.toByteArray());
390 hmac.update(out.toByteArray());
420 hmac.update(out.toByteArray());
520 verifier.update(out.toByteArray());
572 verifier.update(out.toByteArray());
584 verifier.update(out.toByteArray());
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
ByteArrayOutput.java 117 * @see #toByteArray
134 public byte[] toByteArray() {
  /frameworks/base/core/java/android/gesture/
Gesture.java 330 out.writeByteArray(byteStream.toByteArray());
  /frameworks/base/core/tests/bandwidthtests/src/com/android/bandwidthtest/util/
BandwidthTestUtil.java 109 fos.write(baf.toByteArray());
  /frameworks/base/obex/javax/obex/
ClientSession.java 432 mOutput.write(out.toByteArray());
508 System.arraycopy(out.toByteArray(), 3, sendHeaders, 0, sendHeaders.length);
  /libcore/luni/src/test/java/libcore/java/nio/charset/
CharsetTest.java 213 private byte[] toByteArray(int[] ints) {
225 assertEquals(Arrays.toString(toByteArray(expectedByteInts)), Arrays.toString(bytes));
229 ByteBuffer in = ByteBuffer.wrap(toByteArray(byteInts));
  /packages/apps/Email/src/org/apache/commons/io/
IOUtils.java 203 // read toByteArray
216 public static byte[] toByteArray(InputStream input) throws IOException {
219 return output.toByteArray();
234 public static byte[] toByteArray(Reader input) throws IOException {
237 return output.toByteArray();
257 public static byte[] toByteArray(Reader input, String encoding)
261 return output.toByteArray();
276 public static byte[] toByteArray(String input) throws IOException {
    [all...]
  /packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
Serializer.java 243 public byte[] toByteArray() {
245 return ((ByteArrayOutputStream)mOutput).toByteArray();
  /packages/apps/Nfc/src/com/android/nfc/snep/
SnepMessage.java 54 return new SnepMessage(VERSION, REQUEST_GET, 4 + ndef.toByteArray().length,
59 return new SnepMessage(VERSION, REQUEST_PUT, ndef.toByteArray().length, 0, ndef);
70 return new SnepMessage(VERSION, RESPONSE_SUCCESS, ndef.toByteArray().length, 0, ndef);
114 public byte[] toByteArray() {
117 bytes = mNdefMessage.toByteArray();
144 return buffer.toByteArray();
  /bionic/libc/tools/zoneinfo/
ZoneCompactor.java 199 f.write(allData.toByteArray());
  /dalvik/dexgen/src/com/android/dexgen/util/
ByteArrayAnnotatedOutput.java 111 * @see #toByteArray
128 public byte[] toByteArray() {
  /dalvik/dx/src/com/android/dx/util/
ByteArrayAnnotatedOutput.java 120 * @see #toByteArray
137 public byte[] toByteArray() {
  /external/dexmaker/src/dx/java/com/android/dx/util/
ByteArrayAnnotatedOutput.java 120 * @see #toByteArray
137 public byte[] toByteArray() {
  /external/javassist/src/main/javassist/bytecode/
StackMap.java 304 return writer.toByteArray();
514 public byte[] toByteArray() {
515 return output.toByteArray();
522 return new StackMap(cp, output.toByteArray());
AnnotationsAttribute.java 255 set(output.toByteArray());
482 return output.toByteArray();
StackMapTable.java 366 return writer.toByteArray();
544 public byte[] toByteArray() {
545 byte[] b = output.toByteArray();
558 return new StackMapTable(cp, toByteArray());
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
SmsHeader.java 189 public static byte[] toByteArray(SmsHeader smsHeader) {
246 return outStream.toByteArray();
  /libcore/luni/src/main/java/java/util/
BitSet.java 736 public byte[] toByteArray() {
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
DigestOutputStreamTest.java 154 assertTrue("write", Arrays.equals(MDGoldenData.getMessage(), bos.toByteArray()));
191 assertTrue("write", Arrays.equals(MDGoldenData.getMessage(), bos.toByteArray()));
273 assertTrue(Arrays.equals(MDGoldenData.getMessage(), bos.toByteArray()));
294 assertTrue("write", Arrays.equals(myMessage, bos.toByteArray()));
328 assertTrue("write", Arrays.equals(myMessage, bos.toByteArray()));
369 assertTrue("write", Arrays.equals(myMessage, bos.toByteArray()));
410 assertTrue("write", Arrays.equals(myMessage, bos.toByteArray()));
  /external/apache-harmony/support/src/test/java/tests/support/
Support_HttpServer.java 476 os.write(data.toByteArray());
  /external/jmdns/src/javax/jmdns/impl/
DNSRecord.java 318 protected void toByteArray(DataOutputStream dout) throws IOException {
319 super.toByteArray(dout);
672 protected void toByteArray(DataOutputStream dout) throws IOException {
673 super.toByteArray(dout);
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/
UnknownFieldSet.java 165 public byte[] toByteArray() {

Completed in 2264 milliseconds

1 23 4 5 6 7