OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bBuf
(Results
1 - 6
of
6
) sorted by null
/libcore/luni/src/test/java/libcore/java/nio/charset/
OldCharsetEncoderDecoderBufferTest.java
50
byte[]
bBuf
= new byte[10];
51
out = ByteBuffer.wrap(
bBuf
).asCharBuffer();
55
assertEquals('x',
bBuf
[1]);
56
assertEquals(0,
bBuf
[3]);
/frameworks/base/core/java/android/util/jar/
StrictJarManifest.java
291
String value, CharsetEncoder encoder, ByteBuffer
bBuf
) throws IOException {
297
bBuf
.clear().limit(LINE_LENGTH_LIMIT - nameString.length() - 2);
302
CoderResult r = encoder.encode(cBuf,
bBuf
, true);
304
r = encoder.flush(
bBuf
);
306
os.write(
bBuf
.array(),
bBuf
.arrayOffset(),
bBuf
.position());
312
bBuf
.clear().limit(LINE_LENGTH_LIMIT - 1);
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/
MacTest.java
302
ByteBuffer
bBuf
= ByteBuffer.wrap(buf, 0, 10);
320
macs[i].update(
bBuf
);
664
byte[]
bbuf
= { (byte) 5, (byte) 4, (byte) 3, (byte) 2, (byte) 1 };
670
byteBuf.put(
bbuf
);
677
macs[i].update(
bbuf
, 2, 3);
736
byte[]
bbuf
= { (byte) 5, (byte) 4, (byte) 3, (byte) 2, (byte) 1 };
749
macs[i].update(
bbuf
);
752
macs[i].update(
bbuf
, 0,
bbuf
.length);
/external/svox/pico/lib/
picoos.c
[
all
...]
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
MacTest.java
314
ByteBuffer
bBuf
= ByteBuffer.wrap(buf, 0, 10);
334
macs[i].update(
bBuf
);
673
byte []
bbuf
= {(byte)5, (byte)4, (byte)3, (byte)2, (byte)1};
679
byteBuf.put(
bbuf
);
686
macs[i].update(
bbuf
, 2, 3);
743
byte []
bbuf
= {(byte)5, (byte)4, (byte)3, (byte)2, (byte)1};
756
macs[i].update(
bbuf
);
759
macs[i].update(
bbuf
, 0,
bbuf
.length);
[
all
...]
/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/its/
ItsService.java
598
public void sendResponse(String tag, String str, JSONObject obj, ByteBuffer
bbuf
)
609
if (
bbuf
!= null) {
610
jsonObj.put("bufValueSize",
bbuf
.capacity());
618
if (
bbuf
!= null) {
619
mInflightImageSizes.add(
bbuf
.capacity());
620
mSocketWriteQueue.put(
bbuf
);
640
public void sendResponseCaptureBuffer(String tag, ByteBuffer
bbuf
)
642
sendResponse(tag, null, null,
bbuf
);
[
all
...]
Completed in 259 milliseconds