Searched refs:allocate (Results 126 - 150 of 279) sorted by relevance

1234567891011>>

/openjdk7/jdk/test/java/nio/channels/FileChannel/
H A DClosedByInterrupt.java120 ByteBuffer bb = ByteBuffer.allocate(K);
H A DPwrite.java61 fc.write(ByteBuffer.allocate(256),1);
H A DTruncate.java107 ByteBuffer buf = ByteBuffer.allocate(1);
/openjdk7/jdk/test/java/nio/channels/Selector/
H A DOutOfBand.java102 ByteBuffer bb = ByteBuffer.allocate(100);
/openjdk7/jdk/test/java/nio/channels/SocketChannel/
H A DCloseTimeoutChannel.java104 ByteBuffer buf=ByteBuffer.allocate(5);
H A DHangup.java112 ByteBuffer stuff = ByteBuffer.allocate(10);
/openjdk7/jdk/test/sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/
H A DTunnelProxy.java139 consumeBuffer = ByteBuffer.allocate (512);
353 chanbuf = ByteBuffer.allocate (1024);
444 markBuf = ByteBuffer.allocate (readlimit);
489 buf = ByteBuffer.allocate (len);
/openjdk7/langtools/test/tools/javac/6567415/
H A DT6567415.java100 ByteBuffer bb = MappedByteBuffer.allocate(BAD_FILE_LENGTH);
/openjdk7/jdk/test/java/security/SecureClassLoader/
H A DDefineClassByteBuffer.java108 buffers[ARRAY_BUFFER] = ByteBuffer.allocate(array.length);
/openjdk7/jdk/test/java/util/Formattable/
H A DStockName.java84 CharBuffer cb = CharBuffer.allocate(128);
/openjdk7/jdk/src/share/sample/nio/chatserver/
H A DClient.java155 ByteBuffer input = ByteBuffer.allocate(256);
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiEnvBase.cpp372 // allocate and install the new prefixex
377 // there are prefixes, allocate an array to hold them, and fill it
509 // directly use allocate, besides being cleaner and faster, this will
514 jvmtiError result = allocate(size, &mem);
798 err = allocate(sizeof(jvmtiMonitorStackDepthInfo), (unsigned char **)&jmsdi);
1049 err = allocate(ret.waiter_count * sizeof(jthread *), (unsigned char**)&ret.waiters);
1053 err = allocate(ret.notify_waiter_count * sizeof(jthread *),
1157 jvmtiError ResourceTracker::allocate(jlong size, unsigned char** mem_ptr) { function in class:ResourceTracker
1159 jvmtiError err = _env->allocate(size, &ptr);
1170 unsigned char* ResourceTracker::allocate(jlon function in class:ResourceTracker
[all...]
/openjdk7/jaxp/src/com/sun/xml/internal/stream/events/
H A DXMLEventAllocatorImpl.java48 public javax.xml.stream.events.XMLEvent allocate(javax.xml.stream.XMLStreamReader xMLStreamReader) throws javax.xml.stream.XMLStreamException { method in class:XMLEventAllocatorImpl
51 // allocate is not supposed to change the state of the reader so we shouldn't be calling next.
56 public void allocate(javax.xml.stream.XMLStreamReader xMLStreamReader, javax.xml.stream.util.XMLEventConsumer xMLEventConsumer) throws javax.xml.stream.XMLStreamException { method in class:XMLEventAllocatorImpl
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DAudioFloatConverter.java138 bytebuffer = ByteBuffer.allocate(in_len).order(
160 bytebuffer = ByteBuffer.allocate(out_len).order(
190 bytebuffer = ByteBuffer.allocate(in_len).order(
212 bytebuffer = ByteBuffer.allocate(out_len).order(
246 bytebuffer = ByteBuffer.allocate(in_len).order(
261 bytebuffer = ByteBuffer.allocate(out_len).order(
283 bytebuffer = ByteBuffer.allocate(in_len).order(
298 bytebuffer = ByteBuffer.allocate(out_len).order(
/openjdk7/jdk/test/java/nio/file/attribute/UserDefinedFileAttributeView/
H A DBasic.java85 ByteBuffer.allocate(100) : ByteBuffer.allocateDirect(100);
152 final ByteBuffer buf = ByteBuffer.allocate(100);
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/EngineArgs/
H A DDebugReportsOneExtraByte.java312 clientIn = ByteBuffer.allocate(appBufferMax + 50);
313 serverIn = ByteBuffer.allocate(appBufferMax + 50);
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/SSLEngineImpl/
H A DEmptyExtensionData.java100 ByteBuffer serverIn = ByteBuffer.allocate(appBufferMax + 50);
102 ByteBuffer sTOc = ByteBuffer.allocate(netBufferMax);
H A DSSLEngineDeadlock.java333 clientIn = ByteBuffer.allocate(appBufferMax + 50);
334 serverIn = ByteBuffer.allocate(appBufferMax + 50);
/openjdk7/jdk/test/sun/security/ssl/javax/net/ssl/NewAPIs/SSLEngine/
H A DLargeBufs.java255 appIn1 = ByteBuffer.allocate(appBufferMax * 6);
256 appIn2 = ByteBuffer.allocate(appBufferMax * 6);
H A DNoAuthClientAuth.java314 clientIn = ByteBuffer.allocate(appBufferMax + 50);
315 serverIn = ByteBuffer.allocate(appBufferMax + 50);
/openjdk7/jdk/test/sun/security/ssl/templates/
H A DSSLEngineTemplate.java296 clientIn = ByteBuffer.allocate(appBufferMax + 50);
297 serverIn = ByteBuffer.allocate(appBufferMax + 50);
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DEngineInputRecord.java53 static private ByteBuffer tmpBB = ByteBuffer.allocate(0);
358 (ByteBuffer.allocate(len).put(buf, 0, len).flip());
/openjdk7/jdk/src/share/classes/sun/nio/cs/
H A DStreamDecoder.java250 bb = ByteBuffer.allocate(DEFAULT_BYTE_BUFFER_SIZE);
260 this.bb = ByteBuffer.allocate(mbc < 0
/openjdk7/jdk/test/sun/security/pkcs11/Cipher/
H A DTestSymmCiphers.java143 ByteBuffer inBuf = ByteBuffer.allocate(in.length);
149 ByteBuffer outBuf = ByteBuffer.allocate(outLen);
H A DTestSymmCiphersNoPad.java122 ByteBuffer inBuf = ByteBuffer.allocate(in.length);
128 ByteBuffer outBuf = ByteBuffer.allocate(outLen);

Completed in 85 milliseconds

1234567891011>>