Searched refs:current (Results 201 - 225 of 571) sorted by relevance

1234567891011>>

/openjdk7/hotspot/src/share/vm/services/
H A DmemSnapshot.cpp126 VMMemRegion* reserved_region = (VMMemRegion*)current();
157 VMMemRegion* reserved_rgn = (VMMemRegion*)current();
212 cur = (VMMemRegion*)current();
234 // uncommitted from either end of current memory region.
261 VMMemRegion* cur = (VMMemRegion*)current();
279 VMMemRegion* next_region = (VMMemRegion*)current();
285 next_region = (VMMemRegion*)current();
458 MemPointerRecord* incoming_rec = (MemPointerRecord*) itr.current();
521 MemPointerRecord* new_rec = (MemPointerRecord*)itr->current();
587 MemPointerRecord* new_rec = (MemPointerRecord*)itr->current();
[all...]
H A DmemRecorder.cpp34 MemPointerRecord* itr_cur = (MemPointerRecord*)_itr.current();
164 MemPointerRecord* rc = (MemPointerRecord*)itr.current();
/openjdk7/jdk/src/share/classes/sun/tools/javac/
H A DBatchEnvironment.java280 * check in Imports#resolve(). These are the current packages for
315 // In order to implement this, we collect the current packages
322 // Add all of the current packages and their prefixes to our set.
538 ClassDefinition current = first;
546 current.addDependency(next.getClassDeclaration());
547 next.addDependency(current.getClassDeclaration());
548 current = next;
552 if (current != first) {
553 current.addDependency(first.getClassDeclaration());
554 first.addDependency(current
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Dthread.cpp370 if (this == Thread::current()) {
373 // In the case where we're not the current thread, invalidate all the
374 // caches in case some code tries to get the current thread or the
389 assert(!thread->is_Java_thread() || Thread::current() == thread || Threads_lock->owned_by_self(),
654 SR_lock()->wait(!Thread::current()->is_Java_thread(), i * delay);
730 SR_lock()->wait(!Thread::current()->is_Java_thread(), i * delay);
894 // Check if current thread is allowed to block at a safepoint
931 assert(Thread::current() == this, "is_in_stack can only be called from current thread");
1277 assert(watcher_thread() == Thread::current(), "threa
[all...]
H A Djava.cpp131 methodHandle mh(Thread::current(), m);
472 ExitProc* current = exit_procs; local
473 while (current != NULL) {
474 ExitProc* next = current->next();
475 current->evaluate();
476 delete current;
477 current = next;
655 Thread *THREAD = Thread::current();
727 // This is only called when current is less than 1.6 and we've gotten
/openjdk7/hotspot/src/share/vm/opto/
H A Dnode.cpp70 assert(Compile::current()->unique() < (UINT_MAX - 1), "Node limit exceeded UINT_MAX");
276 // to pull Compile::current out of the new node's _out field,
296 assert(Compile::current() == C, "must use operator new(Compile*)");
474 Compile *compile = Compile::current();
536 if (this == (Node*)Compile::current()->top()) {
555 Compile* compile = Compile::current();
635 Arena* arena = Compile::current()->node_arena();
663 Arena* arena = Compile::current()->node_arena();
1014 // sharing there may be other users of the old Nodes relying on their current
1224 Node_List nstack(Thread::current()
[all...]
H A Dc2compiler.cpp91 CompilerThread* thread = CompilerThread::current();
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_GraphBuilder.cpp68 void handle_exceptions(BlockBegin* current, int cur_bci);
69 void handle_jsr(BlockBegin* current, int sr_bci, int next_bci);
70 void store_one(BlockBegin* current, int local);
71 void store_two(BlockBegin* current, int local);
173 inline void BlockListBuilder::store_one(BlockBegin* current, int local) { argument
174 current->stores_to_locals().set_bit(local);
176 inline void BlockListBuilder::store_two(BlockBegin* current, int local) { argument
177 store_one(current, local);
178 store_one(current, local + 1);
182 void BlockListBuilder::handle_exceptions(BlockBegin* current, in argument
207 handle_jsr(BlockBegin* current, int sr_bci, int next_bci) argument
221 BlockBegin* current = NULL; local
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/interceptors/
H A DPIHandlerImpl.java143 private PICurrent current; field in class:PIHandlerImpl
172 // ThreadLocal containing the current server request info object.
189 current = null;
225 current = new PICurrent( orb );
229 current );
231 // Register the PI current and Codec factory objects
233 ClosureFactory.makeConstant( current ) ) ;
246 current.setORBInitializing( true );
259 current.setORBInitializing( false );
927 return current;
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DvmGCOperations.cpp101 assert(Thread::current()->is_Java_thread(), "just checking");
126 assert(Thread::current()->is_Java_thread(), "just checking");
/openjdk7/jdk/test/com/sun/jndi/ldap/
H A DLdapTimeoutTest.java153 final Thread current = Thread.currentThread();
157 current.interrupt();
/openjdk7/jdk/test/javax/swing/plaf/metal/MetalBumps/
H A DTest6657026.java72 int current = mg.image.getRGB(x, y);
73 if (current != value) {
/openjdk7/jdk/src/share/classes/sun/management/
H A DMemoryPoolImpl.java277 private native void setUsageThreshold0(long current, long newThreshold); argument
278 private native void setCollectionThreshold0(long current, long newThreshold); argument
/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DSinkChannelImpl.java52 // Lock held by current reading thread
166 thread = NativeThread.current();
189 thread = NativeThread.current();
H A DSourceChannelImpl.java52 // Lock held by current reading thread
166 thread = NativeThread.current();
197 thread = NativeThread.current();
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/axes/
H A DLocPathIterator.java199 * the current runtime state. When this is called, no actual
200 * query from the current context node is performed.
240 int current = xctxt.getCurrentNode();
241 clone.setRoot(current, xctxt);
300 int current = xctxt.getCurrentNode();
302 iter.setRoot(current, xctxt);
397 * Get the current position, which is one less than
435 * Set the current position in the node set.
446 * Increment the current position in the node set.
462 * @return The size of the current cach
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DWhitespaceBasedBreakIterator.java82 public int current() { method in class:WhitespaceBasedBreakIterator
/openjdk7/jdk/src/share/classes/sun/applet/
H A DMain.java140 // Given the current architecture, we will end up decoding the
279 int current = 0;
289 newArgs[current++] = "-Djava.class.path=" + phonyDir;
292 newArgs[current++] = "sun.applet.Main";
298 newArgs[current++] = args[i];
/openjdk7/jdk/src/share/classes/java/sql/
H A DStatement.java37 * <code>Statement</code> interface implicitly close a statment's current
104 * closed, its current <code>ResultSet</code> object, if one exists, is
123 * @return the current column size limit for columns storing character and
158 * @return the current maximum number of rows for a <code>ResultSet</code>
204 * @return the current query timeout limit in seconds; zero means there is
292 * current row in the <code>ResultSet</code> object generated by this
349 * Retrieves the current result as a <code>ResultSet</code> object.
352 * @return the current result as a <code>ResultSet</code> object or
361 * Retrieves the current result as an update count;
365 * @return the current resul
690 getMoreResults(int current) argument
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassFileStream.hpp67 u1* current() const { return _current; } function in class:ClassFileStream
114 // Get direct pointer into stream at current position.
/openjdk7/hotspot/src/os_cpu/solaris_sparc/vm/
H A Dthread_solaris_sparc.cpp38 assert(Thread::current() == this, "caller must be current thread");
/openjdk7/jdk/make/tools/GenerateCharacter/
H A DCharacterData00.java.template603 int top, bottom, current;
606 current = top/2;
607 // invariant: top > current >= bottom && ch >= CharacterData.charMap[bottom][0]
609 if (ch >= charMap[current][0][0]) {
610 bottom = current;
612 top = current;
614 current = (top + bottom) / 2;
616 if (ch == charMap[current][0][0]) return current;
/openjdk7/jdk/src/share/back/
H A DinStream.h35 jbyte *current; member in struct:PacketInputStream
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkConstant.cpp39 ciEnv *env = ciEnv::current();
H A DsharkType.hpp38 return SharkContext::current();

Completed in 548 milliseconds

1234567891011>>