HomeSort by relevance Sort by last modified time
    Searched defs:processBytes (Results 1 - 15 of 15) sorted by null

  /external/guava/guava/src/com/google/common/io/
ByteProcessor.java 26 * <p>{@link #processBytes} will be called for each line that is read, and
45 boolean processBytes(byte[] buf, int off, int len) throws IOException;
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/
StreamCipher.java 45 public void processBytes(byte[] in, int inOff, int len, byte[] out, int outOff)
StreamBlockCipher.java 81 public void processBytes(
91 throw new DataLengthException("output buffer too small in processBytes()");
BufferedBlockCipher.java 184 public int processBytes(
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/modes/
AEADBlockCipher.java 61 public int processBytes(byte[] in, int inOff, int len, byte[] out, int outOff)
84 * return the size of the output buffer required for a processBytes
88 * @return the space required to accommodate a call to processBytes
94 * return the size of the output buffer required for a processBytes plus a
98 * @return the space required to accommodate a call to processBytes and doFinal
CTSBlockCipher.java 117 public int processBytes(
CCMBlockCipher.java 104 public int processBytes(byte[] in, int inOff, int inLen, byte[] out, int outOff)
GCMBlockCipher.java 190 public int processBytes(byte[] in, int inOff, int len, byte[] out, int outOff)
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/engines/
RC4Engine.java 70 public void processBytes(
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/paddings/
PaddedBufferedBlockCipher.java 174 public int processBytes(
  /packages/apps/Email/src/org/apache/commons/io/input/
NullInputStream.java 41 * <code>processBytes()</code> methods can be implemented to generate
52 * protected void processBytes(byte[] bytes, int offset, int length) {
232 processBytes(bytes, offset, returnLength);
309 protected void processBytes(byte[] bytes, int offset, int length) {
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
JCEStreamCipher.java 316 cipher.processBytes(input, inputOffset, inputLen, out, 0);
331 cipher.processBytes(input, inputOffset, inputLen, output, outputOffset);
369 cipher.processBytes(input, inputOffset, inputLen, output, outputOffset);
JCEBlockCipher.java 636 int len = cipher.processBytes(input, inputOffset, inputLen, out, 0);
654 cipher.processBytes(input, inputOffset, inputLen, null, 0);
669 return cipher.processBytes(input, inputOffset, inputLen, output, outputOffset);
688 len = cipher.processBytes(input, inputOffset, inputLen, tmp, 0);
739 len = cipher.processBytes(input, inputOffset, inputLen, output, outputOffset);
975 public int processBytes(byte[] in, int inOff, int len, byte[] out, int outOff)
1038 public int processBytes(byte[] in, int inOff, int len, byte[] out, int outOff) throws DataLengthException
1040 return cipher.processBytes(in, inOff, len, out, outOff);
    [all...]
  /prebuilt/common/tradefed/
tradefed-prebuilt.jar 
  /prebuilts/tools/common/guava-tools/
guava-10.0.1.jar 

Completed in 240 milliseconds