Searched refs:obj (Results 326 - 350 of 1610) sorted by relevance

<<11121314151617181920>>

/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_MacroAssembler_sparc.hpp32 Register obj, // result: pointer to object after successful allocation
40 void initialize_header(Register obj, Register klass, Register len, Register t1, Register t2);
48 Register obj, // result: pointer to object after successful allocation
60 Register obj, // result: pointer to object after successful allocation
76 Register obj, // result: pointer to array after successful allocation
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/model/types/
H A DTypeCache.java90 for (final Clazz obj : framework.classes) {
91 final Clazz previous = classesByName.put(obj.name, obj);
95 obj.name, obj.parent.name, previous.parent.name));
98 for (final Struct obj : framework.structs) {
99 final Struct previous = structsByName.put(obj.name, obj);
103 obj.name, obj
[all...]
/openjdk7/jdk/test/java/io/Serializable/resolveClassException/
H A DResolveClassException.java53 Object obj;
56 obj = new Integer(5);
59 oout.writeObject(obj);
70 obj = new Integer[] { new Integer(5) };
73 oout.writeObject(obj);
/openjdk7/jdk/test/java/io/Serializable/writeReplace/
H A DWriteReplace.java33 private Object obj; field in class:WriteReplace.ReplaceMe
36 public ReplaceMe(Object obj) { argument
37 this.obj = obj;
45 return obj;
/openjdk7/jdk/test/java/rmi/activation/Activatable/unregisterInactive/
H A DUnregisterInactive.java47 public UnregisterInactive(ActivationID id, MarshalledObject obj) argument
114 ActivateMe obj = (ActivateMe) Activatable.register(desc);
117 obj.ping();
120 obj.unregister();
123 obj.shutdown();
/openjdk7/jdk/test/java/rmi/server/RMISocketFactory/useSocketFactory/unicast/
H A DUseCustomSocketFactory.java80 Echo obj = null;
83 obj = (Echo) Naming.lookup("//:" + registryPort +
95 if (obj == null)
99 System.err.println("Bound to " + obj);
102 byte[] result = obj.echoNot(data);
/openjdk7/jdk/src/share/classes/sun/rmi/server/
H A DMarshalOutputStream.java79 protected final Object replaceObject(Object obj) throws IOException { argument
80 if ((obj instanceof Remote) && !(obj instanceof RemoteStub)) {
81 Target target = ObjectTable.getTarget((Remote) obj);
86 return obj;
/openjdk7/hotspot/src/share/vm/memory/
H A DreferenceProcessor.cpp276 virtual bool do_object_b(oop obj) { return true; } argument
277 virtual void do_object(oop obj) { assert(false, "Don't call"); } argument
360 oop obj = NULL; local
365 while (obj != next_d) {
366 obj = next_d;
367 assert(obj->is_instanceRef(), "should be reference object");
368 next_d = java_lang_ref_Reference::discovered(obj);
370 gclog_or_tty->print_cr(" obj " INTPTR_FORMAT "/next_d " INTPTR_FORMAT,
371 obj, next_d);
373 assert(java_lang_ref_Reference::next(obj)
704 oop obj = NULL; local
1073 add_to_discovered_list_mt(DiscoveredList& refs_list, oop obj, HeapWord* discovered_addr) argument
1123 verify_referent(oop obj) argument
1159 discover_reference(oop obj, ReferenceType rt) argument
1376 oop obj = iter.obj(); local
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A DjniHandles.cpp50 jobject JNIHandles::make_local(oop obj) { argument
51 if (obj == NULL) {
55 assert(Universe::heap()->is_in_reserved(obj), "sanity check");
56 return thread->active_handles()->allocate_handle(obj);
63 jobject JNIHandles::make_local(Thread* thread, oop obj) { argument
64 if (obj == NULL) {
67 assert(Universe::heap()->is_in_reserved(obj), "sanity check");
68 return thread->active_handles()->allocate_handle(obj);
73 jobject JNIHandles::make_local(JNIEnv* env, oop obj) { argument
74 if (obj
84 make_global(Handle obj) argument
100 make_weak_global(Handle obj) argument
122 Handle obj = (Handle)mh; local
188 is_frame_handle(JavaThread* thr, jobject obj) argument
218 do_object_b(oop obj) argument
219 do_object(oop obj) argument
444 allocate_handle(oop obj) argument
[all...]
H A Dsynchronizer.cpp145 int dtrace_waited_probe(ObjectMonitor* monitor, Handle obj, Thread* thr) { argument
146 DTRACE_MONITOR_PROBE(waited, monitor, obj(), thr);
169 void ObjectSynchronizer::fast_enter(Handle obj, BasicLock* lock, bool attempt_rebias, TRAPS) { argument
172 BiasedLocking::Condition cond = BiasedLocking::revoke_and_rebias(obj, attempt_rebias, THREAD);
178 BiasedLocking::revoke_at_safepoint(obj);
180 assert(!obj->mark()->has_bias_pattern(), "biases should be revoked by now");
183 slow_enter (obj, lock, THREAD) ;
227 void ObjectSynchronizer::slow_enter(Handle obj, BasicLock* lock, TRAPS) { argument
228 markOop mark = obj->mark();
235 if (mark == (markOop) Atomic::cmpxchg_ptr(lock, obj()
284 complete_exit(Handle obj, TRAPS) argument
297 reenter(Handle obj, intptr_t recursion, TRAPS) argument
311 jni_enter(Handle obj, TRAPS) argument
324 jni_try_enter(Handle obj, Thread* THREAD) argument
336 jni_exit(oop obj, Thread* THREAD) argument
356 ObjectLocker(Handle obj, Thread* thread, bool doLock) argument
379 wait(Handle obj, jlong millis, TRAPS) argument
398 waitUninterruptibly(Handle obj, jlong millis, TRAPS) argument
410 notify(Handle obj, TRAPS) argument
424 notifyall(Handle obj, TRAPS) argument
474 ReadStableMark(oop obj) argument
560 get_next_hash(Thread * Self, oop obj) argument
606 FastHashCode(Thread * Self, oop obj) argument
713 identity_hash_value_for(Handle obj) argument
726 oop obj = h_obj(); local
766 oop obj = h_obj(); local
801 oop obj = h_obj(); local
1180 inflate_helper(oop obj) argument
1425 deflate_monitor(ObjectMonitor* mid, oop obj, ObjectMonitor** FreeHeadp, ObjectMonitor** FreeTailp) argument
1477 oop obj = (oop) mid->object(); local
1543 oop obj = (oop) mid->object(); local
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/asm/
H A DConstantPool.java50 public int index(Object obj) { argument
51 return ((ConstantPoolData)hash.get(obj)).index;
57 public void put(Object obj) { argument
58 ConstantPoolData data = (ConstantPoolData)hash.get(obj);
60 if (obj instanceof String) {
61 data = new StringConstantData(this, (String)obj);
62 } else if (obj instanceof StringExpression) {
63 data = new StringExpressionConstantData(this, (StringExpression)obj);
64 } else if (obj instanceof ClassDeclaration) {
65 data = new ClassConstantData(this, (ClassDeclaration)obj);
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/objects/
H A DDTMXRTreeFrag.java53 public final boolean equals(Object obj) { argument
54 if (obj instanceof DTMXRTreeFrag) {
55 return (m_dtmIdentity == ((DTMXRTreeFrag)obj).getDTMIdentity());
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/ior/
H A DObjectIdImpl.java39 public boolean equals( Object obj )
41 if (!(obj instanceof ObjectIdImpl))
44 ObjectIdImpl other = (ObjectIdImpl)obj ;
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/ior/iiop/
H A DAlternateIIOPAddressComponentImpl.java45 public boolean equals( Object obj )
47 if (!(obj instanceof AlternateIIOPAddressComponentImpl))
51 (AlternateIIOPAddressComponentImpl)obj ;
H A DIIOPAddressBase.java67 public boolean equals( Object obj )
69 if (!(obj instanceof IIOPAddress))
72 IIOPAddress other = (IIOPAddress)obj ;
H A DORBTypeComponentImpl.java44 public boolean equals( Object obj )
46 if (!(obj instanceof ORBTypeComponentImpl))
49 ORBTypeComponentImpl other = (ORBTypeComponentImpl)obj ;
/openjdk7/corba/src/share/classes/org/omg/CORBA/portable/
H A DDelegate.java61 * @param obj The object reference whose duplicate needs to be returned
64 public abstract org.omg.CORBA.Object duplicate(org.omg.CORBA.Object obj); argument
68 * @param obj The object reference whose resources need to be released
70 public abstract void release(org.omg.CORBA.Object obj); argument
74 * @param obj The object reference to be checked.
79 public abstract boolean is_a(org.omg.CORBA.Object obj, String repository_id); argument
84 * @param obj The object reference which delegated to this delegate.
88 public abstract boolean non_existent(org.omg.CORBA.Object obj); argument
92 * @param obj The object reference which delegated to this delegate.
96 public abstract boolean is_equivalent(org.omg.CORBA.Object obj, argument
106 hash(org.omg.CORBA.Object obj, int max) argument
115 request(org.omg.CORBA.Object obj, String operation) argument
130 create_request(org.omg.CORBA.Object obj, Context ctx, String operation, NVList arg_list, NamedValue result) argument
153 create_request(org.omg.CORBA.Object obj, Context ctx, String operation, NVList arg_list, NamedValue result, ExceptionList exclist, ContextList ctxlist) argument
169 orb(org.omg.CORBA.Object obj) argument
405 equals(org.omg.CORBA.Object self, java.lang.Object obj) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DCIntField.java41 public long getValue(Oop obj) { argument
42 return obj.getHandle().getCIntegerAt(getOffset(), size, isUnsigned);
47 public void setValue(Oop obj, long value) throws MutationException { argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DProgressiveHeapVisitor.java55 public boolean doObj(Oop obj) { argument
56 userHeapVisitor.doObj(obj);
57 visitedSize += obj.getObjectSize();
/openjdk7/jdk/src/share/classes/java/net/
H A DInterfaceAddress.java96 * @param obj the object to compare against.
101 public boolean equals(Object obj) { argument
102 if (!(obj instanceof InterfaceAddress)) {
105 InterfaceAddress cmp = (InterfaceAddress) obj;
/openjdk7/jdk/src/share/classes/java/rmi/server/
H A DRemoteRef.java64 * @param obj the object that contains the RemoteRef (e.g., the
74 Object invoke(Remote obj, argument
96 * @param obj remote stub through which to make call
105 RemoteCall newCall(RemoteObject obj, Operation[] op, int opnum, long hash) argument
180 * @param obj the Object to compare with
185 boolean remoteEquals(RemoteRef obj); argument
/openjdk7/jdk/src/share/classes/java/util/
H A DAbstractSet.java124 E obj = i.next();
125 if (obj != null)
126 h += obj.hashCode();
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1EvacFailure.hpp106 void do_object(oop obj) { argument
107 HeapWord* obj_addr = (HeapWord*) obj;
109 size_t obj_size = obj->size();
112 if (obj->is_forwarded() && obj->forwardee() == obj) {
118 _cm->markPrev(obj);
130 _cm->grayRoot(obj, obj_size, _worker_id, _hr);
133 obj->set_mark(markOopDesc::prototype());
147 obj
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/bdi/
H A DSourceNameReferenceTypeSpec.java75 public boolean equals(Object obj) { argument
76 if (obj instanceof SourceNameReferenceTypeSpec) {
77 SourceNameReferenceTypeSpec spec = (SourceNameReferenceTypeSpec)obj;
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DWatchpointSpec.java56 public boolean equals(Object obj) { argument
57 if (obj instanceof WatchpointSpec) {
58 WatchpointSpec watchpoint = (WatchpointSpec)obj;

Completed in 57 milliseconds

<<11121314151617181920>>