Searched defs:obj (Results 451 - 475 of 1229) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/src/share/classes/java/util/concurrent/atomic/
H A DAtomicReferenceFieldUpdater.java114 * @param obj An object whose field to conditionally set
119 public abstract boolean compareAndSet(T obj, V expect, V update); argument
132 * @param obj An object whose field to conditionally set
137 public abstract boolean weakCompareAndSet(T obj, V expect, V update); argument
144 * @param obj An object whose field to set
147 public abstract void set(T obj, V newValue); argument
153 * @param obj An object whose field to set
157 public abstract void lazySet(T obj, V newValue); argument
163 * @param obj An object whose field to get
166 public abstract V get(T obj); argument
176 getAndSet(T obj, V newValue) argument
238 targetCheck(T obj) argument
245 updateCheck(T obj, V update) argument
253 compareAndSet(T obj, V expect, V update) argument
261 weakCompareAndSet(T obj, V expect, V update) argument
270 set(T obj, V newValue) argument
278 lazySet(T obj, V newValue) argument
286 get(T obj) argument
292 ensureProtectedAccess(T obj) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/management/openmbean/
H A DCompositeDataSupport.java332 * Compares the specified <var>obj</var> parameter with this
337 * <li><var>obj</var> is non null,</li>
338 * <li><var>obj</var> also implements the <code>CompositeData</code> interface,</li>
348 * <var>obj</var> parameters which are different implementations of the
353 * @param obj the object to be compared for equality with this
359 public boolean equals(Object obj) { argument
360 if (this == obj) {
364 // if obj is not a CompositeData, return false
365 if (!(obj instanceof CompositeData)) {
369 CompositeData other = (CompositeData) obj;
[all...]
H A DOpenMBeanInfoSupport.java225 * <p>Compares the specified {@code obj} parameter with this
232 * <li>{@code obj} is non null,</li>
233 * <li>{@code obj} also implements the {@code OpenMBeanInfo}
241 * {@code obj} parameters which are different implementations of
244 * @param obj the object to be compared for equality with this
250 public boolean equals(Object obj) { argument
252 // if obj is null, return false
254 if (obj == null) {
258 // if obj is not a OpenMBeanInfo, return false
262 other = (OpenMBeanInfo) obj;
[all...]
H A DOpenMBeanOperationInfoSupport.java240 * <p>Compares the specified {@code obj} parameter with this
248 * <li>{@code obj} is non null,</li>
249 * <li>{@code obj} also implements the {@code
258 * {@code obj} parameters which are different implementations of
261 * @param obj the object to be compared for equality with this
267 public boolean equals(Object obj) { argument
269 // if obj is null, return false
271 if (obj == null) {
275 // if obj is not a OpenMBeanOperationInfo, return false
279 other = (OpenMBeanOperationInfo) obj;
[all...]
H A DTabularData.java260 * Compares the specified <var>obj</var> parameter with this <code>TabularData</code> instance for equality.
264 * <li><var>obj</var> is non null,</li>
265 * <li><var>obj</var> also implements the <code>TabularData</code> interface,</li>
269 * This ensures that this <tt>equals</tt> method works properly for <var>obj</var> parameters which are
272 * @param obj the object to be compared for equality with this <code>TabularData</code> instance;
276 public boolean equals(Object obj); argument
H A DTabularType.java205 * Tests whether <var>obj</var> is a value which could be
208 * <p>If <var>obj</var> is null or is not an instance of
212 * <p>If <var>obj</var> is an instance of
219 * @param obj the value whose open type is to be tested for
222 * @return <code>true</code> if <var>obj</var> is a value for this
225 public boolean isValue(Object obj) { argument
227 // if obj is null or not a TabularData, return false
229 if (!(obj instanceof TabularData))
232 // if obj is not a TabularData, return false
234 TabularData value = (TabularData) obj;
268 equals(Object obj) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/management/remote/rmi/
H A DRMIJRMPServerImpl.java98 private void export(Remote obj) throws RemoteException { argument
111 new UnicastServerRef(port).exportObject(obj, null, true);
113 new UnicastServerRef2(port, csf, ssf).exportObject(obj, null, true);
116 exporter.exportObject(obj, port, csf, ssf);
118 UnicastRemoteObject.exportObject(obj, port, csf, ssf);
122 private void unexport(Remote obj, boolean force) argument
127 UnicastRemoteObject.unexportObject(obj, force);
129 exporter.unexportObject(obj, force);
/openjdk7/jdk/src/share/classes/javax/naming/
H A DLinkException.java257 * @param obj The object to set link resolved object to. This can be null.
261 public void setLinkResolvedObj(Object obj) { argument
262 this.linkResolvedObj = obj;
H A DName.java93 * @param obj the non-null object to compare against.
96 * @throws ClassCastException if obj is not a <tt>Name</tt> of a
101 public int compareTo(Object obj); argument
H A DNamingException.java245 * @param obj The possibly null object to set resolved object to.
249 public void setResolvedObj(Object obj) { argument
250 resolvedObj = obj;
H A DReference.java317 * Determines whether obj is a reference with the same addresses
323 * If obj is null or not an instance of Reference, null is returned.
325 * @param obj The possibly null object to check.
326 * @return true if obj is equal to this reference; false otherwise.
328 public boolean equals(Object obj) { argument
329 if ((obj != null) && (obj instanceof Reference)) {
330 Reference target = (Reference)obj;
/openjdk7/jdk/src/share/classes/javax/naming/directory/
H A DDirContext.java395 * the attributes associated with <tt>obj</tt> if <tt>obj</tt> is a
399 * <tt>obj</tt> are ignored.
403 * @param obj
416 public void bind(Name name, Object obj, Attributes attrs) argument
425 * @param obj
435 public void bind(String name, Object obj, Attributes attrs) argument
441 * If <tt>attrs</tt> is null and <tt>obj</tt> is a <tt>DirContext</tt>,
442 * the attributes from <tt>obj</tt> are used.
443 * If <tt>attrs</tt> is null and <tt>obj</t
466 rebind(Name name, Object obj, Attributes attrs) argument
485 rebind(String name, Object obj, Attributes attrs) argument
[all...]
H A DInitialDirContext.java175 public void bind(String name, Object obj, Attributes attrs) argument
177 getURLOrDefaultInitDirCtx(name).bind(name, obj, attrs);
180 public void bind(Name name, Object obj, Attributes attrs) argument
182 getURLOrDefaultInitDirCtx(name).bind(name, obj, attrs);
185 public void rebind(String name, Object obj, Attributes attrs) argument
187 getURLOrDefaultInitDirCtx(name).rebind(name, obj, attrs);
190 public void rebind(Name name, Object obj, Attributes attrs) argument
192 getURLOrDefaultInitDirCtx(name).rebind(name, obj, attrs);
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpcTasks.cpp202 oop obj = NULL; local
207 objArrayKlass* const k = (objArrayKlass*)task.obj()->blueprint();
208 k->oop_follow_contents(cm, task.obj(), task.index());
211 while (ParCompactionManager::steal(which, &random_seed, obj)) {
212 obj->follow_contents(cm);
H A DpsPermGen.cpp49 HeapWord* obj = allocate_noexpand(size); local
51 if (obj == NULL) {
52 obj = expand_and_allocate(size);
55 return obj;
/openjdk7/hotspot/src/share/vm/oops/
H A DarrayKlassKlass.cpp50 bool arrayKlassKlass::oop_is_parsable(oop obj) const {
51 assert(obj->is_klass(), "must be klass");
52 arrayKlass* ak = arrayKlass::cast(klassOop(obj));
56 void arrayKlassKlass::oop_follow_contents(oop obj) { argument
57 assert(obj->is_klass(), "must be klass");
58 arrayKlass* ak = arrayKlass::cast(klassOop(obj));
66 klassKlass::oop_follow_contents(obj);
71 oop obj) {
72 assert(obj->is_klass(), "must be klass");
73 arrayKlass* ak = arrayKlass::cast(klassOop(obj));
70 oop_follow_contents(ParCompactionManager* cm, oop obj) argument
86 oop_adjust_pointers(oop obj) argument
100 oop_oop_iterate(oop obj, OopClosure* blk) argument
111 oop_oop_iterate_m(oop obj, OopClosure* blk, MemRegion mr) argument
125 oop_push_contents(PSPromotionManager* pm, oop obj) argument
135 oop_update_pointers(ParCompactionManager* cm, oop obj) argument
151 oop_print_on(oop obj, outputStream* st) argument
156 oop_print_value_on(oop obj, outputStream* st) argument
169 oop_verify_on(oop obj, outputStream* st) argument
[all...]
H A DcompiledICHolderKlass.cpp62 int compiledICHolderKlass::oop_size(oop obj) const {
63 assert(obj->is_compiledICHolder(), "must be compiledICHolder");
64 return compiledICHolderOop(obj)->object_size();
67 void compiledICHolderKlass::oop_follow_contents(oop obj) { argument
68 assert(obj->is_compiledICHolder(), "must be compiledICHolder");
69 compiledICHolderOop c = compiledICHolderOop(obj);
71 obj->follow_header();
78 oop obj) {
79 assert(obj->is_compiledICHolder(), "must be compiledICHolder");
80 compiledICHolderOop c = compiledICHolderOop(obj);
77 oop_follow_contents(ParCompactionManager* cm, oop obj) argument
89 oop_oop_iterate(oop obj, OopClosure* blk) argument
102 oop_oop_iterate_m(oop obj, OopClosure* blk, MemRegion mr) argument
121 oop_adjust_pointers(oop obj) argument
135 oop_push_contents(PSPromotionManager* pm, oop obj) argument
139 oop_update_pointers(ParCompactionManager* cm, oop obj) argument
152 oop_print_on(oop obj, outputStream* st) argument
160 oop_print_value_on(oop obj, outputStream* st) argument
171 oop_verify_on(oop obj, outputStream* st) argument
[all...]
H A DklassKlass.cpp51 int klassKlass::oop_size(oop obj) const {
52 assert (obj->is_klass(), "must be a klassOop");
53 return klassOop(obj)->klass_part()->klass_oop_size();
67 void klassKlass::oop_follow_contents(oop obj) { argument
68 Klass* k = Klass::cast(klassOop(obj));
81 obj->follow_header();
86 oop obj) {
87 Klass* k = Klass::cast(klassOop(obj));
100 obj->follow_header(cm);
104 int klassKlass::oop_oop_iterate(oop obj, OopClosur argument
85 oop_follow_contents(ParCompactionManager* cm, oop obj) argument
130 oop_oop_iterate_m(oop obj, OopClosure* blk, MemRegion mr) argument
162 oop_adjust_pointers(oop obj) argument
181 oop_push_contents(PSPromotionManager* pm, oop obj) argument
190 oop_update_pointers(ParCompactionManager* cm, oop obj) argument
206 oop_print_on(oop obj, outputStream* st) argument
210 oop_print_value_on(oop obj, outputStream* st) argument
221 oop_verify_on(oop obj, outputStream* st) argument
[all...]
H A DobjArrayKlass.hpp57 int oop_size(oop obj) const;
100 void oop_follow_contents(oop obj);
101 inline void oop_follow_contents(oop obj, int index);
102 template <class T> inline void objarray_follow_contents(oop obj, int index);
104 int oop_adjust_pointers(oop obj);
109 inline void oop_follow_contents(ParCompactionManager* cm, oop obj, int index);
111 objarray_follow_contents(ParCompactionManager* cm, oop obj, int index);
115 int oop_oop_iterate(oop obj, OopClosure* blk) { argument
116 return oop_oop_iterate_v(obj, blk);
118 int oop_oop_iterate_m(oop obj, OopClosur argument
[all...]
H A Doop.cpp83 oop obj = oop(this); local
86 } else if (java_lang_String::is_instance(obj)) {
87 java_lang_String::print(obj, st);
90 } else if (!Universe::heap()->is_in(obj) || !Universe::heap()->is_in(klass())) {
91 st->print("### BAD OOP %p ###", (address)obj);
94 blueprint()->oop_print_value_on(obj, st);
/openjdk7/hotspot/src/share/vm/opto/
H A Dlocknode.cpp87 // Is BoxLock node used for one simple lock region (same box and obj)?
88 bool BoxLockNode::is_simple_lock_region(LockNode** unique_lock, Node* obj) { argument
98 if (alock->obj_node()->eqv_uncast(obj)) {
119 assert((flock->box_node() == this) && flock->obj_node()->eqv_uncast(obj),"");
168 Node* obj = null_check(peek()); local
176 // the obj pointer & the address of the stack slot pair used for the lock.
177 shared_lock(obj);
/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/internal/
H A DIIOPProxy.java43 boolean isStub(Object obj); argument
72 boolean isOrb(Object obj); argument
88 String objectToString(Object orb, Object obj); argument
99 void exportObject(Remote obj) throws RemoteException; argument
104 void unexportObject(Remote obj) throws NoSuchObjectException; argument
109 Remote toStub(Remote obj) throws NoSuchObjectException; argument
H A DProxyRef.java63 public Object invoke(Remote obj, Method method, Object[] params, argument
65 return ref.invoke(obj, method, params, opnum);
84 public java.rmi.server.RemoteCall newCall(RemoteObject obj, argument
87 return ref.newCall(obj, op, opnum, hash);
90 public boolean remoteEquals(RemoteRef obj) { argument
91 return ref.remoteEquals(obj);
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DDigestClientId.java89 public boolean equals(Object obj) { argument
90 if (!(obj instanceof DigestClientId)) {
93 DigestClientId other = (DigestClientId)obj;
96 && super.equals(obj)
H A DEventSupport.java262 synchronized void fireUnsolicited(Object obj) { argument
264 System.err.println("EventSupport.fireUnsolicited: " + obj + " "
274 if (obj instanceof UnsolicitedNotification) {
279 new UnsolicitedNotificationEvent(ctx, (UnsolicitedNotification)obj);
282 } else if (obj instanceof NamingException) {
287 new NamingExceptionEvent(ctx, (NamingException)obj);

Completed in 5451 milliseconds

<<11121314151617181920>>