Searched defs:Self (Results 1 - 8 of 8) sorted by relevance

/openjdk7/corba/src/share/classes/org/omg/PortableServer/portable/
H A DDelegate.java43 * @param Self the servant.
46 org.omg.CORBA.ORB orb(Servant Self); argument
51 * @param Self the servant.
54 org.omg.CORBA.Object this_object(Servant Self); argument
59 * @param Self the servant.
62 POA poa(Servant Self); argument
67 * @param Self the servant.
70 byte[] object_id(Servant Self); argument
75 * @param Self the servant.
78 POA default_POA(Servant Self); argument
92 is_a(Servant Self, String Repository_Id) argument
101 non_existent(Servant Self) argument
[all...]
/openjdk7/jdk/test/java/rmi/dgc/retryDirtyCalls/
H A DRetryDirtyCalls.java41 interface Self extends Remote { interface in inherits:Remote
42 Self getSelf() throws RemoteException;
45 public class RetryDirtyCalls implements Self, Unreferenced {
56 public Self getSelf() {
100 Self stub = (Self) UnicastRemoteObject.exportObject(impl);
101 Self dgcStub = stub.getSelf();
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/oa/poa/
H A DDelegateImpl.java143 public org.omg.CORBA.Object get_interface_def(Servant Self) argument
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiRawMonitor.cpp126 int JvmtiRawMonitor::SimpleEnter (Thread * Self) { argument
128 if (Atomic::cmpxchg_ptr (Self, &_owner, NULL) == NULL) {
132 ObjectWaiter Node (Self) ;
133 Self->_ParkEvent->reset() ; // strictly optional
140 if (_owner == NULL && Atomic::cmpxchg_ptr (Self, &_owner, NULL) == NULL) {
147 Self->_ParkEvent->park() ;
152 int JvmtiRawMonitor::SimpleExit (Thread * Self) { argument
153 guarantee (_owner == Self, "invariant") ;
175 int JvmtiRawMonitor::SimpleWait (Thread * Self, jlong millis) { argument
176 guarantee (_owner == Self , "invarian
233 SimpleNotify(Thread * Self, bool All) argument
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Dmutex.cpp354 int Monitor::TrySpin (Thread * const Self) { argument
403 if (Self != NULL) {
404 jint rv = Self->rng[0] ;
409 Self->rng[0] = rv ;
456 void Monitor::ILock (Thread * Self) { argument
457 assert (_OnDeck != Self->_MutexEvent, "invariant") ;
465 ParkEvent * const ESelf = Self->_MutexEvent ;
470 if (TrySpin (Self)) goto Exeunt ;
473 // Either Enqueue Self on cxq or acquire the outer lock.
479 if ((NativeMonitorFlags & 32) && CASPTR (&_OnDeck, NULL, UNS(Self))
738 IWait(Thread * Self, jlong timo) argument
899 lock(Thread * Self) argument
957 lock_without_safepoint_check(Thread * Self) argument
972 Thread * const Self = Thread::current(); local
1086 Thread * const Self = Thread::current() ; local
[all...]
H A Dsynchronizer.cpp525 // so we periodically call Self->_ParkEvent->park(1).
560 static inline intptr_t get_next_hash(Thread * Self, oop obj) { argument
588 unsigned t = Self->_hashStateX ;
590 Self->_hashStateX = Self->_hashStateY ;
591 Self->_hashStateY = Self->_hashStateZ ;
592 Self->_hashStateZ = Self->_hashStateW ;
593 unsigned v = Self
606 FastHashCode(Thread * Self, oop obj) argument
908 InduceScavenge(Thread * Self, const char * Whence) argument
948 omAlloc(Thread * Self) argument
1078 omRelease(Thread * Self, ObjectMonitor * m, bool fromPerThreadAlloc) argument
1128 omFlush(Thread * Self) argument
1195 inflate(Thread * Self, oop object) argument
[all...]
H A DobjectMonitor.cpp322 Thread * const Self = THREAD ; local
325 cur = Atomic::cmpxchg_ptr (Self, &_owner, NULL) ;
329 assert (_owner == Self, "invariant") ;
334 if (cur == Self) {
340 if (Self->is_lock_owned ((address)cur)) {
345 _owner = Self ;
351 assert (Self->_Stalled == 0, "invariant") ;
352 Self->_Stalled = intptr_t(this) ;
354 // Try one round of spinning *before* enqueueing Self
359 if (Knob_SpinEarly && TrySpin (Self) >
463 TryLock(Thread * Self) argument
483 Thread * Self = THREAD ; local
731 ReenterI(Thread * Self, ObjectWaiter * SelfNode) argument
822 UnlinkAfterAcquire(Thread * Self, ObjectWaiter * SelfNode) argument
937 Thread * Self = THREAD ; local
1307 ExitEpilog(Thread * Self, ObjectWaiter * Wakee) argument
1352 Thread * const Self = THREAD; local
1378 Thread * const Self = THREAD; local
1444 Thread * const Self = THREAD ; local
1686 Thread * Self = THREAD; local
1812 Thread * Self = THREAD; local
1980 TrySpin_VaryDuration(Thread * Self) argument
2244 NotRunnable(Thread * Self, Thread * ox) argument
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dloopnode.hpp71 enum { Self=0, EntryControl, LoopBackControl }; enumerator in enum:LoopNode::__anon336

Completed in 149 milliseconds