OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bOutput
(Results
1 - 2
of
2
) sorted by null
/libcore/luni/src/main/java/javax/crypto/
CipherSpi.java
345
byte[]
bOutput
;
349
bOutput
= engineUpdate(bInput, offset + position, limit - position);
354
bOutput
= engineUpdate(bInput, 0, limit - position);
356
if (
bOutput
== null) {
359
if (output.remaining() <
bOutput
.length) {
363
output.put(
bOutput
);
367
return
bOutput
.length;
530
byte[]
bOutput
;
535
bOutput
= engineDoFinal(bInput, offset + position, limit - position);
540
bOutput
= engineDoFinal(bInput, 0, limit - position)
[
all
...]
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
CipherTest.java
627
ByteBuffer
bOutput
= ByteBuffer.allocate(64);
634
c.doFinal(bInput,
bOutput
);
641
c.doFinal(bInput,
bOutput
);
650
int len = c.doFinal(bInput,
bOutput
);
657
c.doFinal(
bOutput
, bInput);
675
c.doFinal(bInput,
bOutput
.asReadOnlyBuffer());
682
bOutput
= ByteBuffer.allocate(8);
686
c.doFinal(bInput,
bOutput
);
833
ByteBuffer
bOutput
= ByteBuffer.allocate(256);
839
bOutput
.rewind()
[
all
...]
Completed in 53 milliseconds