/openjdk7/jdk/test/sun/security/pkcs12/ |
H A D | Bug6415637.java | 44 byte[] blob = new byte[encodedBlob.length() * 2]; 45 for (int i = 0; i < blob.length; ) { 47 blob[i++] = (byte) (ch >> 8); 48 blob[i++] = (byte) ch; 51 store.load(new ByteArrayInputStream(blob), new char[0]);
|
/openjdk7/hotspot/src/share/vm/code/ |
H A D | codeBlob.cpp | 209 BufferBlob* blob = NULL; local 217 blob = new (size) BufferBlob(name, size); 222 return blob; 233 BufferBlob* blob = NULL; local 238 blob = new (size) BufferBlob(name, size, cb); 243 return blob; 253 void BufferBlob::free( BufferBlob *blob ) { 257 CodeCache::free((CodeBlob*)blob); 275 AdapterBlob* blob = NULL; local 279 blob 294 MethodHandlesAdapterBlob* blob = NULL; local 394 DeoptimizationBlob* blob = NULL; local 433 UncommonTrapBlob* blob = NULL; local 469 ExceptionBlob* blob = NULL; local 504 SafepointBlob* blob = NULL; local [all...] |
H A D | stubs.cpp | 68 BufferBlob* blob = BufferBlob::create(name, size); local 69 if( blob == NULL) { 73 _buffer_size = blob->content_size(); 74 _buffer_limit = blob->content_size(); 75 _stub_buffer = blob->content_begin();
|
H A D | vtableStubs.cpp | 61 BufferBlob* blob = BufferBlob::create("vtable chunks", bytes); local 62 if (blob == NULL) { 65 _chunk = blob->content_begin();
|
/openjdk7/jdk/src/share/classes/javax/sql/rowset/serial/ |
H A D | SerialBlob.java | 68 private Blob blob; field in class:SerialBlob 120 * @param blob the <code>Blob</code> object from which this 128 public SerialBlob (Blob blob) throws SerialException, SQLException { argument 130 if (blob == null) { 135 len = blob.length(); 136 buf = blob.getBytes(1, (int)len ); 137 this.blob = blob; 229 * @throws SerialException if an error occurs when serializing the blob 272 * @throws SerialException if an error occurs when serializing the blob [all...] |
/openjdk7/jdk/src/share/classes/com/sun/security/ntlm/ |
H A D | Client.java | 168 byte[] blob = new byte[32+alist.length]; 169 System.arraycopy(new byte[]{1,1,0,0,0,0,0,0}, 0, blob, 0, 8); 176 blob[8+time.length-i-1] = time[i]; 178 System.arraycopy(nonce, 0, blob, 16, 8); 179 System.arraycopy(new byte[]{0,0,0,0}, 0, blob, 24, 4); 180 System.arraycopy(alist, 0, blob, 28, alist.length); 182 blob, 28+alist.length, 4); 184 blob, challenge);
|
H A D | NTLM.java | 379 byte[] calcV2(byte[] nthash, String text, byte[] blob, byte[] challenge) { argument 383 byte[] cn = new byte[blob.length+8]; 385 System.arraycopy(blob, 0, cn, 8, blob.length); 386 byte[] result = new byte[16+blob.length]; 388 System.arraycopy(blob, 0, result, 16, blob.length);
|
/openjdk7/jdk/test/java/io/Serializable/clearHandleTable/ |
H A D | ClearHandleTable.java | 58 ArrayList blob = new ArrayList(); 61 blob.add(new int[0xFFFF]);
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/code/ |
H A D | CodeCacheVisitor.java | 38 void visit(CodeBlob blob); argument
|
H A D | CodeCache.java | 123 // The HeapBlock that contains this blob is outside of the blob 124 // but it shouldn't be an error to find a blob based on the 178 // Use findStart to get a pointer inside blob other findBlob asserts 179 CodeBlob blob = findBlobUnsafe(heap.findStart(ptr)); 180 if (blob != null) { 181 visitor.visit(blob); 182 if (blob == lastBlob) { 183 throw new InternalError("saw same blob twice"); 185 lastBlob = blob; [all...] |
/openjdk7/hotspot/src/share/vm/c1/ |
H A D | c1_Compiler.cpp | 85 BufferBlob* blob = BufferBlob::create("Compiler1 temporary CodeBuffer", local 87 guarantee(blob != NULL, "must create initial code buffer"); 88 return blob; 93 // Allocate buffer blob once at startup since allocation for each
|
H A D | c1_Runtime1.hpp | 123 static void generate_blob_for(BufferBlob* blob, StubID id); 165 static void initialize(BufferBlob* blob);
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/ |
H A D | FindInCodeCachePanel.java | 68 public void visit(CodeBlob blob) { argument 69 Address begin = blob.headerBegin(); 70 Address end = begin.addOffsetTo(blob.getSize()); 77 reportResult(result, blob); 176 if (item.equals("blob")) { 177 Address blob = VM.getVM().getDebugger().parseAddress(description.substring(index + 1)); 178 showCodeViewer(blob); 191 private void reportResult(StringBuffer result, CodeBlob blob) { argument 192 result.append("<a href='blob:"); 193 result.append(blob [all...] |
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/ |
H A D | PointerFinder.java | 95 loc.blob = c.findBlobUnsafe(a); 97 Assert.that(loc.blob != null, "Should have found CodeBlob"); 99 loc.inBlobCode = loc.blob.codeContains(a); 100 loc.inBlobData = loc.blob.dataContains(a); 102 if (loc.blob.isNMethod()) { 103 NMethod nm = (NMethod) loc.blob;
|
H A D | PointerLocation.java | 66 CodeBlob blob; field in class:PointerLocation 142 return blob;
|
/openjdk7/hotspot/src/share/vm/prims/ |
H A D | jvmtiCodeBlobEvents.cpp | 51 // JvmtiCodeBlobDesc* blob = collector.first(); 52 // while (blob != NULL) { 54 // blob = collector.next(); 83 // iteration support - return first code blob 93 // iteration support - return next code blob 153 // starting address of first stub generated in the enclosing blob. 181 // Generate a DYNAMIC_CODE_GENERATED event for each non-nmethod code blob. 195 // iterate over the collected list and post an event for each blob 196 JvmtiCodeBlobDesc* blob = collector.first(); local 197 while (blob ! [all...] |
/openjdk7/jdk/src/share/instrument/ |
H A D | JPLISAgent.h | 274 /* for a JLI method where "blob" is executed before simply returning */ 275 #define check_phase_blob_ret(ret, blob) \ 277 blob; \ 299 /* for a case where a specific "blob" must be returned */ 300 #define check_phase_ret_blob(ret, blob) \ 302 return (blob); \
|
/openjdk7/hotspot/src/share/vm/asm/ |
H A D | codeBuffer.hpp | 369 // ensure sections are disjoint, ordered, and contained in the blob 372 // copies combined relocations to the blob, returns bytes copied 374 csize_t copy_relocations_to(CodeBlob* blob) const; 376 // copies combined code to the blob (assumes relocs are already in there) 377 void copy_code_to(CodeBlob* blob); 402 CodeBuffer(CodeBlob* blob); 461 BufferBlob* blob() const { return _blob; } function in class:CodeBuffer 462 void set_blob(BufferBlob* blob); 463 void free_blob(); // Free the blob, if we own one. 534 void copy_code_and_locs_to(CodeBlob* blob) { argument [all...] |
H A D | codeBuffer.cpp | 82 CodeBuffer::CodeBuffer(CodeBlob* blob) { argument 84 initialize(blob->content_begin(), blob->content_size()); 94 assert(blob() == NULL, "only once"); 96 if (blob() == NULL) { 101 // Set up various pointers into the blob. 189 void CodeBuffer::set_blob(BufferBlob* blob) { argument 190 _blob = blob; 191 if (blob != NULL) { 192 address start = blob [all...] |
H A D | assembler.cpp | 88 && cb->blob() == NULL) { 112 if (cb->blob() == NULL) return NULL;
|
/openjdk7/hotspot/src/share/vm/runtime/ |
H A D | stubCodeGenerator.cpp | 100 CodeBlob* blob = CodeCache::find_blob_unsafe(cbuf->insts()->start()); local 101 if (blob != NULL) { 102 blob->set_strings(cbuf->strings());
|
/openjdk7/hotspot/src/cpu/sparc/vm/ |
H A D | jniFastGetField_sparc.cpp | 57 BufferBlob* blob = BufferBlob::create(name, BUFFER_SIZE*wordSize); local 58 CodeBuffer cbuf(blob); 136 BufferBlob* blob = BufferBlob::create(name, BUFFER_SIZE*wordSize); local 137 CodeBuffer cbuf(blob); 208 BufferBlob* blob = BufferBlob::create(name, BUFFER_SIZE*wordSize); local 209 CodeBuffer cbuf(blob);
|
/openjdk7/hotspot/src/cpu/x86/vm/ |
H A D | jniFastGetField_x86_64.cpp | 65 BufferBlob* blob = BufferBlob::create(name, BUFFER_SIZE); local 66 CodeBuffer cbuf(blob); 163 BufferBlob* blob = BufferBlob::create(name, BUFFER_SIZE); 164 CodeBuffer cbuf(blob);
|
H A D | jniFastGetField_x86_32.cpp | 61 BufferBlob* blob = BufferBlob::create(name, BUFFER_SIZE*wordSize); local 62 CodeBuffer cbuf(blob); 175 BufferBlob* blob = BufferBlob::create(name, BUFFER_SIZE*wordSize); 176 CodeBuffer cbuf(blob); 266 BufferBlob* blob = BufferBlob::create(name, BUFFER_SIZE*wordSize); 267 CodeBuffer cbuf(blob);
|
/openjdk7/jdk/src/share/classes/javax/crypto/ |
H A D | ExemptionMechanism.java | 240 * Returns whether the result blob has been generated successfully by this 249 * @return whether the result blob of the same key has been generated 254 * while determining whether the result blob has been generated successfully 389 * Generates the exemption mechanism key blob. 391 * @return the new buffer with the result key blob. 404 byte[] blob = exmechSpi.engineGenExemptionBlob(); 406 return blob; 410 * Generates the exemption mechanism key blob, and stores the result in 443 * Generates the exemption mechanism key blob, and stores the result in
|