Searched defs:owner (Results 126 - 150 of 213) sorted by relevance

123456789

/openjdk7/jdk/test/java/lang/management/ThreadMXBean/
H A DThreadStateTest.java157 private static void checkLockInfo(Thread t, Thread.State state, Object lock, Thread owner) { argument
188 if (owner == null && info.getLockOwnerName() != null) {
189 throw new RuntimeException("Lock owner is expected " +
193 if (owner != null && info.getLockOwnerName() == null) {
194 throw new RuntimeException("Lock owner is expected to be " +
195 owner.getName() +
198 if (owner != null && !info.getLockOwnerName().equals(owner.getName())) {
199 throw new RuntimeException("Lock owner is expected to be " +
200 owner
[all...]
/openjdk7/jdk/src/share/classes/sun/misc/
H A DTimer.java35 it calls the owner's tick() method.
52 owner's tick() method.
56 how long the owner's tick() method takes. While the timer
58 the owner's tick() method takes longer than the interval,
85 takes on that priority before calling the owner's tick() method.
90 * This is the owner of the timer. Its tick method is
93 public Timeable owner; field in class:Timer
151 * Creates a timer object that is owned by 'owner' and
156 * @param owner owner o
159 Timer(Timeable owner, long interval) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/reflect/generics/factory/
H A DCoreReflectionFactory.java104 Type owner) {
106 typeArgs, owner);
102 makeParameterizedType(Type declaration, Type[] typeArgs, Type owner) argument
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/
H A DXPath.java605 * @param owner The owner of the visitor, where that path may be
609 public void callVisitors(ExpressionOwner owner, XPathVisitor visitor) argument
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/axes/
H A DAxesWalker.java518 * @param owner The owner of the visitor, where that path may be
522 public void callVisitors(ExpressionOwner owner, XPathVisitor visitor) argument
524 if(visitor.visitStep(owner, this))
H A DUnionPathIterator.java539 public void callVisitors(ExpressionOwner owner, XPathVisitor visitor) argument
541 if(visitor.visitUnionPath(owner, this))
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/objects/
H A DXString.java1119 public void callVisitors(ExpressionOwner owner, XPathVisitor visitor) argument
1121 visitor.visitStringLiteral(owner, this);
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/patterns/
H A DNodeTest.java689 public void callVisitors(ExpressionOwner owner, XPathVisitor visitor) argument
H A DStepPattern.java969 public void callVisitors(ExpressionOwner owner, XPathVisitor visitor) argument
971 if(visitor.visitMatchPattern(owner, this))
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/soql/
H A DJSJavaScriptEngine.java227 println("owner(jobject) returns the owner thread of this monitor or null");
286 owner function gets owning thread of given JSJavaObjec, if any, else
289 public Object owner(Object[] args) { method in class:JSJavaScriptEngine
541 Address owner = null;
547 owner = mark.locker().getAddress(); // save the address of the Lock word
549 // implied else: no owner
554 // The owner field of a heavyweight monitor may be NULL for no
555 // owner, a JavaThread * or it may still be the address of the
558 // can change the owner fiel
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJWindow.java124 * Creates a window with no specified owner. This window will not be
168 * Creates a window with the specified owner frame.
169 * If <code>owner</code> is <code>null</code>, the shared owner
171 * this window will not be focusable unless its owner is showing
177 * @param owner the frame from which the window is displayed
184 public JWindow(Frame owner) { argument
185 super(owner == null? SwingUtilities.getSharedOwnerFrame() : owner);
186 if (owner
210 JWindow(Window owner) argument
248 JWindow(Window owner, GraphicsConfiguration gc) argument
[all...]
H A DPopupFactory.java48 * Popup popup = factory.getPopup(owner, contents, x, y);
144 * Creates a <code>Popup</code> for the Component <code>owner</code>
145 * containing the Component <code>contents</code>. <code>owner</code>
148 * <code>Popup</code> creates to. A null <code>owner</code> implies there
155 * @param owner Component mouse coordinates are relative to, may be null
162 public Popup getPopup(Component owner, Component contents, argument
169 int popupType = getPopupType(owner, contents, x, y);
170 Popup popup = getPopup(owner, contents, x, y, popupType);
174 popup = getPopup(owner, contents, x, y, HEAVY_WEIGHT_POPUP);
182 private int getPopupType(Component owner, Componen argument
217 getPopup(Component owner, Component contents, int ownerX, int ownerY, int popupType) argument
237 getHeadlessPopup(Component owner, Component contents, int ownerX, int ownerY) argument
245 getLightWeightPopup(Component owner, Component contents, int ownerX, int ownerY) argument
254 getMediumWeightPopup(Component owner, Component contents, int ownerX, int ownerY) argument
263 getHeavyWeightPopup(Component owner, Component contents, int ownerX, int ownerY) argument
301 getHeavyWeightPopup(Component owner, Component contents, int ownerX, int ownerY) argument
480 Component owner; field in class:PopupFactory.ContainerPopup
510 reset(Component owner, Component contents, int ownerX, int ownerY) argument
619 getHeadlessPopup(Component owner, Component contents, int ownerX, int ownerY) argument
626 createComponent(Component owner) argument
649 getLightWeightPopup(Component owner, Component contents, int ownerX, int ownerY) argument
760 createComponent(Component owner) argument
774 reset(Component owner, Component contents, int ownerX, int ownerY) argument
805 getMediumWeightPopup(Component owner, Component contents, int ownerX, int ownerY) argument
912 createComponent(Component owner) argument
928 reset(Component owner, Component contents, int ownerX, int ownerY) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/datatransfer/
H A DSunClipboard.java94 ClipboardOwner owner) {
103 final ClipboardOwner oldOwner = this.owner;
107 this.owner = owner;
112 if (oldOwner != null && oldOwner != owner) {
272 * Clears the clipboard state (contents, owner and contents context) and
273 * notifies the current owner that ownership is lost. Does nothing if the
290 ClipboardOwner owner = null;
301 owner = sunClipboard.owner;
93 setContents(Transferable contents, ClipboardOwner owner) argument
[all...]
/openjdk7/jdk/src/share/classes/java/beans/
H A DXMLEncoder.java214 private Object owner; field in class:XMLEncoder
296 * Sets the owner of this encoder to <code>owner</code>.
298 * @param owner The owner of this encoder.
302 public void setOwner(Object owner) { argument
303 this.owner = owner;
308 * Gets the owner of this encoder.
310 * @return The owner o
[all...]
/openjdk7/hotspot/src/share/vm/code/
H A DdebugInfo.hpp231 MonitorValue(ScopeValue* owner, Location basic_lock, bool eliminated = false);
234 ScopeValue* owner() const { return _owner; } function in class:MonitorValue
/openjdk7/jdk/src/share/classes/com/sun/beans/decoder/
H A DDocumentHandler.java71 private Object owner; field in class:DocumentHandler
155 * Returns the owner of this document handler.
157 * @return the owner of this document handler
160 return this.owner;
164 * Sets the owner of this document handler.
166 * @param owner the owner of this document handler
168 public void setOwner(Object owner) { argument
169 this.owner = owner;
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Dframe.hpp277 // Return the monitor owner and BasicLock for compiled synchronized
502 int owner; member in class:VALUE_OBJ_CLASS_SPEC
524 void describe(int owner, intptr_t* location, const char* description, int priority = 0);
H A Dmutex.hpp123 Thread * volatile _owner; // The owner of the lock
145 void set_owner_implementation(Thread* owner) PRODUCT_RETURN;
204 // Current owner - not not MT-safe. Can only be used to guarantee that
206 Thread* owner() const { return _owner; } function in class:Monitor
227 void set_owner(Thread* owner) { argument
229 set_owner_implementation(owner);
232 _owner = owner;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJPackage.java59 private final JCodeModel owner; field in class:JPackage
101 this.owner = cw;
127 return owner._package(name.substring(0,idx));
287 jdoc = new JDocComment(owner());
318 return owner.ref(Class.forName(n));
325 if(isUnnamed()) return owner()._package(pkg);
326 else return owner()._package(name+'.'+pkg);
370 public final JCodeModel owner() { return owner; } method in class:JPackage
384 return annotate(owner
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/bindinfo/
H A DBindInfo.java167 private XSComponent owner; field in class:BindInfo
169 * Sets the owner schema component and a reference to BGMBuilder.
174 this.owner = _owner;
179 public XSComponent getOwner() { return owner; }
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/
H A DArrayBeanInfoImpl.java60 public ArrayBeanInfoImpl(JAXBContextImpl owner, RuntimeArrayInfo rai) { argument
61 super(owner,rai,rai.getType(), rai.getTypeName(), false, true, false);
63 this.itemBeanInfo = owner.getOrCreate(rai.getItemType());
73 public ArrayLoader(JAXBContextImpl owner) { argument
75 itemLoader = itemBeanInfo.getLoader(owner,true);
H A DClassBeanInfoImpl.java124 /*package*/ ClassBeanInfoImpl(JAXBContextImpl owner, RuntimeClassInfo ci) { argument
125 super(owner,ci,ci.getClazz(),ci.getTypeName(),ci.isElement(),false,true);
131 this.retainPropertyInfo = owner.retainPropertyInfo;
153 this.superClazz = owner.getOrCreate(ci.getBaseClass());
166 Property p = PropertyFactory.create(owner,info);
180 tagName = owner.nameBuilder.createElementName(ci.getElementName());
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/
H A DStub.java93 protected final WSServiceDelegate owner; field in class:Stub
147 protected Stub(WSServiceDelegate owner, Tube master, BindingImpl binding, WSDLPort wsdlPort, EndpointAddress defaultEndPointAddress, @Nullable WSEndpointReference epr) { argument
148 this(owner,master, null, binding,wsdlPort,defaultEndPointAddress,epr);
167 private Stub(WSServiceDelegate owner, @Nullable Tube master, @Nullable WSPortInfo portInfo, BindingImpl binding, @Nullable WSDLPort wsdlPort, EndpointAddress defaultEndPointAddress, @Nullable WSEndpointReference epr) { argument
168 this.owner = owner;
178 this.engine = new Engine(toString(), owner.getExecutor());
217 this, binding, owner.getContainer(),((BindingImpl)binding).createCodec(),seiModel));
265 return owner.getServiceName();
277 return owner
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/dispatch/
H A DDispatchImpl.java99 * @param owner Service that created the Dispatch
104 protected DispatchImpl(QName port, Service.Mode mode, WSServiceDelegate owner, Tube pipe, BindingImpl binding, @Nullable WSEndpointReference epr) { argument
105 super(owner, pipe, binding, (owner.getWsdlService() != null)? owner.getWsdlService().get(port) : null , owner.getEndpointAddress(port), epr);
153 // ExecutorService exec = (ExecutorService) owner.getExecutor();
491 public static Dispatch<Source> createSourceDispatch(QName port, Mode mode, WSServiceDelegate owner, Tube pipe, BindingImpl binding, WSEndpointReference epr) { argument
493 return new RESTSourceDispatch(port,mode,owner,pipe,binding,epr);
495 return new SOAPSourceDispatch(port,mode,owner,pip
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/handler/
H A DHandlerProcessor.java58 private HandlerTube owner; field in class:HandlerProcessor
69 protected HandlerProcessor(HandlerTube owner, WSBinding binding, List<? extends Handler> chain) { argument
70 this.owner = owner;
238 owner.setHandleFault();
246 owner.setHandleFalse();

Completed in 58 milliseconds

123456789