Searched refs:current (Results 126 - 150 of 571) sorted by relevance

1234567891011>>

/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1HotCardCache.hpp112 assert(Thread::current()->is_VM_thread(), "Current thread should be the VMthread");
H A DheapRegionRemSet.hpp271 size_t current, next; local
273 current = iter_claimed();
274 next = current + step;
275 } while (Atomic::cmpxchg((jlong)next, &_iter_claimed, (jlong)current) != (jlong)current);
276 return current;
374 // In both kinds of iteration, heap offset of first card of current
393 // Per Region Table we're doing within current bucket list.
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DgcTraceTime.cpp55 assert(Thread::current()->is_VM_thread(), "Tracing currently only supported from the VM thread");
/openjdk7/hotspot/src/share/vm/memory/
H A DresourceArea.hpp59 debug_only(int _nesting;) // current # of nested ResourceMarks
111 assert(thread == Thread::current(), "not the current thread");
118 ResourceMark() { initialize(Thread::current()); }
209 assert(thread == Thread::current(), "not the current thread");
216 DeoptResourceMark() { initialize(Thread::current()); }
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/ast/builder/
H A DInclude.java62 * @param current
63 * The current document we are parsing.
66 void endInclude(Parseable current, String uri, String ns, argument
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DLinkedBlockingQueue.java236 // * Tells whether both locks are held by current thread.
312 * less the current {@code size} of this queue.
787 private Node<E> current; field in class:LinkedBlockingQueue.Itr
794 current = head.next;
795 if (current != null)
796 currentElement = current.item;
803 return current != null;
827 if (current == null)
830 lastRet = current;
831 current
[all...]
/openjdk7/jdk/src/share/classes/java/util/zip/
H A DZipOutputStream.java55 private XEntry current; field in class:ZipOutputStream
166 * start of the entry data. Closes the current entry if still active.
168 * was specified for the entry, and the current time will be used if
176 if (current != null) {
219 current = new XEntry(e, written);
220 xentries.add(current);
221 writeLOC(current);
225 * Closes the current ZIP entry and positions the stream for writing
232 if (current != null) {
233 ZipEntry e = current
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Dvm_operations.cpp159 if (fst.current()->can_be_deoptimized()) {
162 Deoptimization::deoptimize(thread, *fst.current(), fst.register_map());
196 assert(Thread::current()->is_Java_thread(), "just checking");
200 java_util_concurrent_locks_AbstractOwnableSynchronizer::initialize(JavaThread::current());
237 assert(Thread::current()->is_Java_thread(), "just checking");
241 java_util_concurrent_locks_AbstractOwnableSynchronizer::initialize(JavaThread::current());
295 assert(Thread::current()->is_Java_thread(), "just checking");
299 java_util_concurrent_locks_AbstractOwnableSynchronizer::initialize(JavaThread::current());
414 // better to terminate VM when current thread is the only active thread, so
H A Dframe.cpp215 RegisterMap map(JavaThread::current(), false); // No update
262 if (NeedsDeoptSuspend && Thread::current() != thread) {
289 // come to a halt during the safepoint, changing the current value
339 RegisterMap map(JavaThread::current(), false);
355 // Note: called by profiler - NOT for current thread
486 BasicObjectLock* frame::next_monitor_in_interpreter_frame(BasicObjectLock* current) const {
489 interpreter_frame_verify_monitor(current);
491 BasicObjectLock* next = (BasicObjectLock*) (((intptr_t*) current) + interpreter_frame_monitor_size());
495 BasicObjectLock* frame::previous_monitor_in_interpreter_frame(BasicObjectLock* current) const {
499 // interpreter_frame_verify_monitor(current);
1306 address current = (address) value; local
[all...]
H A Dmutex.cpp206 // depends on Thread::current().
246 // them together was facile -- a bit too facile. The current implementation badly
393 // Stall for "Delay" time units - iterations in the current implementation.
512 // Note that we current drop the inner lock (clear OnDeck) in the slow-path
547 assert (RelaxAssert || w != Thread::current()->_MutexEvent, "invariant") ;
599 assert (RelaxAssert || w != Thread::current()->_MutexEvent, "invariant") ;
610 // for unpark()ing the OnDeck thread to the current or subsequent owners
686 assert (_owner == Thread::current(), "invariant") ;
732 assert (_owner == Thread::current(), "invariant") ;
949 this->lock(Thread::current());
[all...]
H A DcompilationPolicy.cpp297 uint current = mdo->mileage_of(method); local
299 if (current < initial)
306 return (current >= initial + target);
394 // SimpleCompPolicy - compile current method
480 RFrame* current = stack->at(0); // current choice for stopping local
481 assert( current && !current->is_compiled(), "" );
488 RFrame* next = senderOf(current, stack);
490 break; // Then compile with current fram
[all...]
/openjdk7/hotspot/src/share/vm/utilities/
H A Darray.cpp44 _nesting = Thread::current()->resource_area()->nesting();
60 _nesting == Thread::current()->resource_area()->nesting(),
/openjdk7/langtools/src/share/classes/javax/tools/
H A DForwardingJavaFileManager.java98 public boolean handleOption(String current, Iterator<String> remaining) { argument
99 return fileManager.handleOption(current, remaining);
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dutils.cpp94 u = unpacker::current();
105 u = unpacker::current();
107 fprintf(stderr, "Error: unpacker: no current instance\n");
/openjdk7/jdk/src/share/classes/sun/management/
H A DRuntimeImpl.java113 long current = System.currentTimeMillis();
118 return (current - vmStartupTime);
/openjdk7/hotspot/src/share/vm/ci/
H A DciField.cpp72 CompilerThread *thread = CompilerThread::current();
83 _name = ciEnv::current(thread)->get_symbol(name);
88 _signature = ciEnv::current(thread)->get_symbol(signature);
98 _type = ciEnv::current(thread)->get_klass_by_index(cpool, sig_index, ignore, klass);
103 _name = (ciSymbol*)ciEnv::current(thread)->get_symbol(name);
112 ciEnv::current(thread)->get_klass_by_index(cpool, holder_index,
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/txw2/
H A DDocument.java56 private Content current = null; field in class:Document
88 assert current==null;
89 current = new StartDocument();
90 current.setNext(this,c);
113 Content next = current.getNext();
118 current = next;
/openjdk7/jdk/src/share/classes/sun/util/locale/
H A DInternalLocaleBuilder.java150 String s = itr.current();
196 String s = itr.current();
241 String s = itr.current();
249 s = itr.current();
273 String s = itr.current();
280 s = itr.current();
507 if (LocaleUtils.caseIgnoreMatch(itr.current(), LanguageTag.PRIVUSE_VARIANT_PREFIX)) {
556 if (LocaleUtils.caseIgnoreMatch(itr.current(), LanguageTag.PRIVUSE_VARIANT_PREFIX)) {
576 String s = itr.current();
603 if (!UnicodeLocaleExtension.isAttribute(itr.current())) {
[all...]
/openjdk7/jdk/src/share/classes/com/sun/security/ntlm/
H A DNTLM.java198 private int current; // current written content interface buffer field in class:NTLM.Writer
208 current = len;
232 writeShort(offset+4, current);
235 if (current + len > internal.length) {
236 internal = Arrays.copyOf(internal, current + len + 256);
240 writeShort(offset+4, current);
241 System.arraycopy(data, 0, internal, current, len);
242 current += len;
256 return Arrays.copyOf(internal, current);
[all...]
/openjdk7/jdk/src/solaris/native/sun/java2d/loops/
H A Djava2d_Mlib.c363 mlib_clipping current[1]; \
391 param->current = current; \
407 current->width = width; \
408 current->height = height; \
413 current->srcX = sxloc; \
414 current->srcY = syloc; \
415 current->sp = (mlib_u8*)srcBase \
418 current->dp = dstBase; \
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DNormalizerImpl.java518 int current; field in class:NormalizerImpl.PrevArgs
534 args.c=args.src[--args.current];
547 } else if(args.current!=args.start &&
548 UTF16.isLeadSurrogate(args.c2=args.src[args.current-1])) {
549 --args.current;
638 * (c, c2) may or may not yet have been inserted at src[current]..src[p]
640 * it must be p=current+lengthof(c, c2) i.e. p=current+(c2==0 ? 1 : 2)
642 * before: src[start]..src[current] is already ordered, and
643 * src[current]
649 insertOrdered(char[] source, int start, int current, int p, char c, char c2, int cc) argument
730 mergeOrdered(char[] source, int start, int current, char[] data, int next, int limit, boolean isOrdered) argument
795 mergeOrdered(char[] source, int start, int current, char[] data, final int next, final int limit) argument
1545 findPreviousStarter(char[]src, int srcStart, int current, int ccOrQCMask, int decompQCMask, char minNoMaybe) argument
[all...]
/openjdk7/corba/src/share/classes/sun/rmi/rmic/iiop/
H A DGenerator.java315 OutputType current = types[i];
316 String className = current.getName();
317 File file = getFileFor(current,destDir);
322 if (requiresGeneration(file,current.getType())) {
327 sourceFile = compileJavaSourceFile(current);
377 * package heirarchy. May be null, in which case the current
381 * file system), the current user directory is used.
/openjdk7/jdk/src/share/classes/java/beans/
H A DVetoableChangeSupport.java372 int current = 0;
374 while (current < listeners.length) {
375 listeners[current].vetoableChange(event);
376 current++;
381 for (int i = 0; i < current; i++) {
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DconcurrentMarkSweepThread.cpp82 // could change current behavior, so the default of
111 // From this time Thread::current() should be working.
112 assert(this == Thread::current(), "just checking");
250 assert(Thread::current()->is_VM_thread(), "Not a VM thread");
261 assert(Thread::current()->is_ConcurrentGC_thread(),
281 assert(Thread::current()->is_VM_thread(), "Not a VM thread");
291 assert(Thread::current()->is_ConcurrentGC_thread(),
H A DvmCMSOperations.cpp98 assert(Thread::current()->is_ConcurrentGC_thread(), "just checking");
121 assert(Thread::current()->is_ConcurrentGC_thread(), "just checking");
211 assert(Thread::current()->is_VM_thread(), "Should be VM thread");
252 Thread* thr = Thread::current();
270 Thread* thr = Thread::current();

Completed in 77 milliseconds

1234567891011>>