Searched defs:owner (Results 1 - 25 of 213) sorted by relevance

123456789

/openjdk7/langtools/src/share/classes/com/sun/javadoc/
H A DTypeVariable.java57 ProgramElementDoc owner(); method in interface:TypeVariable
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/
H A DXPathVisitable.java38 * @param owner The owner of the visitor, where that path may be
42 public void callVisitors(ExpressionOwner owner, XPathVisitor visitor); argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DMonitorInfo.java31 private OopHandle owner; field in class:MonitorInfo
37 public MonitorInfo(OopHandle owner, BasicLock lock, boolean eliminated, boolean ownerIsScalarReplaced) { argument
39 this.owner = owner;
43 this.owner = null;
44 this.ownerKlass = owner;
50 public OopHandle owner() { method in class:MonitorInfo
52 return owner;
/openjdk7/jdk/src/share/classes/sun/awt/
H A DMutex.java30 private Thread owner; field in class:Mutex
33 if (locked && Thread.currentThread() == owner) {
39 owner = Thread.currentThread();
47 } while (owner != Thread.currentThread());
51 if (Thread.currentThread() != owner) {
54 owner = null;
60 return (locked && Thread.currentThread() == owner);
/openjdk7/jdk/src/share/classes/java/nio/file/attribute/
H A DFileOwnerAttributeView.java31 * A file attribute view that supports reading or updating the owner of a file.
33 * support a file attribute that represents an identity that is the owner of
34 * the file. Often the owner of a file is the identity of the entity that
38 * be used to read or update the owner of the file.
42 * used to read or update the owner. In that case, the owner attribute is
43 * identified by the name {@code "owner"}, and the value of the attribute is
54 * have the name {@code "owner"}.
60 * Read the file owner.
62 * <p> It it implementation specific if the file owner ca
100 setOwner(UserPrincipal owner) argument
[all...]
H A DPosixFileAttributes.java46 * Returns the owner of the file.
48 * @return the file owner
52 UserPrincipal owner(); method in interface:PosixFileAttributes
55 * Returns the group owner of the file.
57 * @return the file group owner
/openjdk7/jdk/src/share/classes/java/security/acl/
H A DOwner.java34 * interface.) The initial owner Principal should be specified as an
43 * Adds an owner. Only owners can modify ACL contents. The caller
44 * principal must be an owner of the ACL in order to invoke this method.
45 * That is, only an owner can add another owner. The initial owner is
48 * @param caller the principal invoking this method. It must be an owner
51 * @param owner the owner that should be added to the list of owners.
53 * @return true if successful, false if owner i
57 addOwner(Principal caller, Principal owner) argument
81 deleteOwner(Principal caller, Principal owner) argument
93 isOwner(Principal owner) argument
[all...]
/openjdk7/hotspot/src/os/solaris/vm/
H A DthreadCritical_solaris.cpp48 thread_t owner = thr_self(); local
49 if (global_mut_owner != owner) {
54 assert(global_mut_owner == -1, "must have clean owner");
56 global_mut_owner = owner;
65 assert(global_mut_owner == thr_self(), "must have correct owner");
/openjdk7/jdk/src/share/classes/sun/security/acl/
H A DOwnerImpl.java34 * initial owner principal is configured as
41 public OwnerImpl(Principal owner) { argument
43 ownerGroup.addMember(owner);
47 * Adds an owner. Owners can modify ACL contents and can disassociate
50 * order to invoke this method. The initial owner is configured
53 * @param owner The owner that should be added to the owners list.
54 * @return true if success, false if already an owner.
58 public synchronized boolean addOwner(Principal caller, Principal owner) argument
64 ownerGroup.addMember(owner);
82 deleteOwner(Principal caller, Principal owner) argument
105 isOwner(Principal owner) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DNodeListCache.java56 NodeListCache(ParentNode owner) { argument
57 fOwner = owner;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/code/
H A DMonitorValue.java30 private ScopeValue owner; field in class:MonitorValue
35 // MonitorValue(ScopeValue* owner, Location basic_lock);
39 owner = ScopeValue.readFrom(stream);
43 public ScopeValue owner() { return owner; } method in class:MonitorValue
52 owner().printOn(tty);
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/IPAcl/
H A DJDMInformBlock.java53 public void buildAclEntries(PrincipalImpl owner, AclImpl acl) {} argument
H A DJDMTrapBlock.java54 public void buildAclEntries(PrincipalImpl owner, AclImpl acl) {} argument
H A DOwnerImpl.java42 * The initial owner Principal should be specified as an
54 * Constructs an empty list of owner.
61 * Constructs a list of owner with the specified principal as first element.
63 * @param owner the principal added to the owner list.
65 public OwnerImpl (PrincipalImpl owner){ argument
67 ownerList.addElement(owner);
71 * Adds an owner. Only owners can modify ACL contents. The caller principal
72 * must be an owner of the ACL in order to invoke this method. That is, only
73 * an owner ca
83 addOwner(Principal caller, Principal owner) argument
110 deleteOwner(Principal caller, Principal owner) argument
134 isOwner(Principal owner) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/transforms/implementations/
H A DFuncHereContext.java54 * > and supplied the Node which contains the xpath string as "owner". Question:
55 * > Is this the correct use of the owner object? It works, but I don't know
58 * Philosophically it's fine. The owner is the TransformerImpl if XPath is
81 * @param owner
83 public FuncHereContext(Node owner) { argument
84 super(owner);
90 * @param owner
93 public FuncHereContext(Node owner, XPathContext xpathContext) { argument
95 super(owner);
109 * @param owner
112 FuncHereContext(Node owner, CachedXPathAPI previouslyUsed) argument
131 FuncHereContext(Node owner, DTMManager dtmManager) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/beans/decoder/
H A DJavaElementHandler.java33 * Typically this outer context is used to retrieve the owner of the decoder,
75 // check class for owner
102 return false; // do not use owner as object
119 * Returns the owner of the owner document handler
122 * @return the owner of the owner document handler
125 Object owner = getOwner().getOwner();
126 if ((this.type == null) || isValid(owner)) {
127 return owner;
148 isValid(Object owner) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJAnnotationArrayMember.java47 private final JCodeModel owner; field in class:JAnnotationArrayMember
49 JAnnotationArrayMember(JCodeModel owner) { argument
50 this.owner = owner;
180 f.t(owner.ref(value.getDeclaringClass())).p('.').p(value.name());
243 return annotate(owner.ref(clazz));
H A DJFieldVar.java41 private final JDefinedClass owner; field in class:JFieldVar
56 JFieldVar(JDefinedClass owner, JMods mods, JType type, String name, JExpression init) { argument
58 this.owner = owner;
64 if(owner.fields.containsKey(name))
68 owner.fields.remove(oldName);
69 owner.fields.put(name,this);
80 jdoc = new JDocComment(owner.owner());
H A DJGenerifiableImpl.java42 protected abstract JCodeModel owner(); method in class:JGenerifiableImpl
57 JTypeVar v = new JTypeVar(owner(),name);
65 return generify(name,owner().ref(bound));
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/model/java/
H A DJavaException.java36 public JavaException(String name, boolean present, Object owner) { argument
37 super(name, present, owner);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/outline/
H A DFieldAccessor.java98 FieldOutline owner(); method in interface:FieldAccessor
101 * Short for <tt>owner().getPropertyInfo()</tt>
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/impl/
H A DEnumConstantImpl.java36 protected final EnumLeafInfoImpl<T,C,F,M> owner; field in class:EnumConstantImpl
44 public EnumConstantImpl(EnumLeafInfoImpl<T,C,F,M> owner, String name, String lexical, EnumConstantImpl<T,C,F,M> next) { argument
46 this.owner = owner;
52 return owner;
H A DRuntimeEnumConstantImpl.java37 RuntimeEnumLeafInfoImpl owner, String name, String lexical,
39 super(owner, name, lexical, next);
36 RuntimeEnumConstantImpl( RuntimeEnumLeafInfoImpl owner, String name, String lexical, EnumConstantImpl<Type,Class,Field,Method> next) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/
H A DSEIPortInfo.java53 public SEIPortInfo(WSServiceDelegate owner, Class sei, SOAPSEIModel model, @NotNull WSDLPort portModel) { argument
54 super(owner,portModel);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/sei/
H A DCallbackMethodHandler.java45 CallbackMethodHandler(SEIStub owner, JavaMethodImpl jm, JavaMethodImpl core, int handlerPos) { argument
46 super(owner,jm,core);

Completed in 2241 milliseconds

123456789