Searched defs:object (Results 226 - 250 of 276) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DEventSetImpl.java282 this.monitor = evt.object;
301 this.monitor = evt.object;
321 this.monitor = evt.object;
345 this.monitor = evt.object;
488 private final ObjectReference object; field in class:EventSetImpl.WatchpointEventImpl
495 ObjectReference object) {
499 this.object = object;
509 public ObjectReference object() { method in class:EventSetImpl.WatchpointEventImpl
510 return object;
491 WatchpointEventImpl(JDWP.Event.Composite.Events.EventsCommon evt, int requestID, ThreadReference thread, Location location, byte refTypeTag, long typeID, long fieldID, ObjectReference object) argument
[all...]
H A DReferenceTypeImpl.java140 public int compareTo(ReferenceType object) { argument
149 ReferenceTypeImpl other = (ReferenceTypeImpl)object;
608 * Field must be in this object's class, a superclass, or
1095 boolean isAssignableFrom(ObjectReference object) { argument
1096 return object == null ||
1097 isAssignableFrom(object.referenceType());
H A DVirtualMachineImpl.java1038 * If any object disposes have been batched up, send them now.
1191 + size + " object references...");
1197 printTrace("Disposing object " + ref.key().longValue() +
1201 // This is kludgy. We temporarily re-create an object
1223 printTrace("Batching object " + ref.key().longValue() +
1249 ObjectReferenceImpl object = null;
1253 * Attempt to retrieve an existing object object reference
1257 object = ref.object();
1311 removeObjectMirror(ObjectReferenceImpl object) argument
1438 ObjectReferenceImpl object() { method in class:VirtualMachineImpl.SoftObjectReference
[all...]
/openjdk7/hotspot/src/cpu/zero/vm/
H A DcppInterpreter_zero.cpp479 // Load the object pointer and drop into the slow path
481 oop object = LOCALS_OBJECT(0); local
482 if (object == NULL) {
519 SET_LOCALS_INT(object->char_field_acquire(entry->f2_as_index()), 0);
523 SET_LOCALS_INT(object->byte_field_acquire(entry->f2_as_index()), 0);
527 SET_LOCALS_INT(object->short_field_acquire(entry->f2_as_index()), 0);
531 SET_LOCALS_INT(object->int_field_acquire(entry->f2_as_index()), 0);
535 SET_LOCALS_LONG(object->long_field_acquire(entry->f2_as_index()), 0);
539 SET_LOCALS_FLOAT(object->float_field_acquire(entry->f2_as_index()), 0);
543 SET_LOCALS_DOUBLE(object
721 oop object; local
[all...]
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkBuilder.cpp174 // Create an object representing an intrinsic or external function by
187 // Create an object representing an external function by inlining a
558 Value* SharkBuilder::CreateInlineOop(jobject object, const char* name) { argument
561 code_buffer_address(code_buffer()->inline_oop(object)),
/openjdk7/jdk/src/solaris/native/sun/xawt/
H A DXWindow.c1058 (JNIEnv *env, jobject object) {
1065 (JNIEnv *env, jobject object, jlong event, jlongArray keysymArray) {
1057 Java_sun_awt_X11_XWindow_haveCurrentX11InputMethodInstance(JNIEnv *env, jobject object) argument
1064 Java_sun_awt_X11_XWindow_x11inputMethodLookupString(JNIEnv *env, jobject object, jlong event, jlongArray keysymArray) argument
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DSolarisWatchService.java133 // pointer to native file_obj object
134 private final long object; field in class:SolarisWatchService.SolarisWatchKey
146 long object,
151 this.object = object;
164 public long object() { method in class:SolarisWatchService.SolarisWatchKey
165 return object;
225 // events that tell us not to re-associate the object
240 // maps file_obj object to Node
304 long object
143 SolarisWatchKey(SolarisWatchService watcher, UnixPath dir, UnixFileKey fileKey, long object, Set<? extends WatchEvent.Kind<?>> events) argument
681 releaseObject(long object, boolean dissociate) argument
702 long object(); method in interface:SolarisWatchService.Node
718 private final long object; field in class:SolarisWatchService.EntryNode
722 EntryNode(long object, Path name, DirectoryNode parent) argument
729 public long object() { method in class:SolarisWatchService.EntryNode
748 portAssociate(int port, int source, long object, int events) argument
751 portDissociate(int port, int source, long object) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/validation/
H A DValidatorHandlerImpl.java300 public void setProperty(String name, Object object) argument
306 fComponentManager.setProperty(name, object);
756 /** Fills in a QName object. */
782 /** Fills in the XMLAttributes object. */
792 /** Fills in the XMLAttributes object. */
805 /** Adds an attribute to the XMLAttributes object. */
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DVirtualMachineImpl.java1074 ObjectReferenceImpl object = null;
1077 * Attempt to retrieve an existing object object reference
1081 object = ref.object();
1085 * If the object wasn't in the table, or it's soft reference was
1088 if (object == null) {
1097 object = new StringReferenceImpl(this, inst);
1099 object = new ThreadReferenceImpl(this, inst);
1101 object
1213 ObjectReferenceImpl object() { method in class:VirtualMachineImpl.SoftObjectReference
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DInstanceKlass.java241 public long getObjectSize(Oop object) { argument
/openjdk7/jdk/src/share/classes/java/beans/
H A DMetaData.java1200 private Integer getAxis(Object object) { argument
1201 Box box = (Box) object;
1234 Object object = border.getTileIcon();
1235 if (object == null) {
1236 object = border.getMatteColor();
1243 object,
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DLambdaForm.java394 * and load an integer value from the input object
1411 private static boolean typesMatch(char parameterType, Object object) { argument
1412 if (object instanceof Name) {
1413 return ((Name)object).type == parameterType;
1416 case 'I': return object instanceof Integer;
1417 case 'J': return object instanceof Long;
1418 case 'F': return object instanceof Float;
1419 case 'D': return object instanceof Double;
/openjdk7/jdk/src/share/classes/javax/management/monitor/
H A DMonitor.java271 * <p>Each element in this array corresponds to an observed object
300 * the observed object. This flag is used to check that the new
301 * observed object is registered in the MBean server at the time
309 * new observed attribute belongs to the observed object at the
316 * the observed object or the observed attribute. This flag is
325 * the observed object or the observed attribute. This flag is
385 * @param name The object name of the monitor MBean.
453 * Returns the object name of the first object in the set of observed
454 * MBeans, or <code>null</code> if there is no such object
484 setObservedObject(ObjectName object) argument
502 addObservedObject(ObjectName object) argument
533 removeObservedObject(ObjectName object) argument
558 containsObservedObject(ObjectName object) argument
771 getDerivedGauge(ObjectName object) argument
787 getDerivedGaugeTimeStamp(ObjectName object) argument
792 getAttribute(MBeanServerConnection mbsc, ObjectName object, String attribute) argument
865 getComparableFromAttribute(ObjectName object, String attribute, Object value) argument
879 isComparableTypeValid(ObjectName object, String attribute, Comparable<?> value) argument
885 buildErrorNotification(ObjectName object, String attribute, Comparable<?> value) argument
894 getDerivedGaugeFromComparable(ObjectName object, String attribute, Comparable<?> value) argument
900 buildAlarmNotification(ObjectName object, String attribute, Comparable<?> value) argument
906 isThresholdTypeValid(ObjectName object, String attribute, Comparable<?> value) argument
948 getObservedObject(ObjectName object) argument
960 createObservedObject(ObjectName object) argument
1086 sendNotification(String type, long timeStamp, String msg, Object derGauge, Object trigger, ObjectName object, boolean onError) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/interceptor/
H A DDefaultMBeanServerInterceptor.java100 * A Java object cannot be registered in the MBean server unless it is a JMX compliant MBean.
104 * Notification is emitted. To register an object as listener to MBeanServerNotifications
115 /** The MBeanInstantiator object used by the
119 /** The MBean server object that is associated to the
123 /** The MBean server delegate object that is associated to the
127 /** The Repository object used by the DefaultMBeanServerInterceptor */
138 /** The default domain of the object names */
149 * before using this object.
150 * @param outer A pointer to the MBeanServer object that must be
309 public ObjectInstance registerMBean(Object object, ObjectNam argument
885 registerObject(String classname, Object object, ObjectName name) argument
1885 registerWithRepository( final Object resource, final DynamicMBean object, final ObjectName logicalName) argument
1928 unregisterFromRepository( final Object resource, final DynamicMBean object, final ObjectName logicalName) argument
[all...]
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DLWCToolkit.java495 T object; field in class:LWCToolkit.CallableWrapper
504 object = callable.call();
512 return object;
695 * @param mediator a native pointer to the mediator object created by createAWTRunLoopMediator
/openjdk7/jdk/src/share/back/
H A DeventFilter.c297 /* Return the object instance in which the event occurred */
302 jobject object = NULL; local
333 object = evinfo->object;
334 return object;
336 return object; /* NULL */
347 (gdata->jvmti, thread, fnum, &object);
349 /* get slot zero object "this" */
351 (gdata->jvmti, thread, fnum, 0, &object);
354 object
[all...]
H A DeventHandler.c175 static jclass getObjectClass(jobject object);
716 /* Returns a local ref to the declaring class for an object. */
718 getObjectClass(jobject object) argument
723 clazz = JNI_FUNC_PTR(env,GetObjectClass)(env, object);
835 info.object = exception;
935 jobject object, jfieldID field)
949 info.object = object;
961 jlocation location, jclass field_klass, jobject object, jfieldID field,
977 info.object
932 cbFieldAccess(jvmtiEnv *jvmti_env, JNIEnv *env, jthread thread, jmethodID method, jlocation location, jclass field_klass, jobject object, jfieldID field) argument
959 cbFieldModification(jvmtiEnv *jvmti_env, JNIEnv *env, jthread thread, jmethodID method, jlocation location, jclass field_klass, jobject object, jfieldID field, char signature_type, jvalue new_value) argument
1060 cbMonitorContendedEnter(jvmtiEnv *jvmti_env, JNIEnv *env, jthread thread, jobject object) argument
1093 cbMonitorContendedEntered(jvmtiEnv *jvmti_env, JNIEnv *env, jthread thread, jobject object) argument
1126 cbMonitorWait(jvmtiEnv *jvmti_env, JNIEnv *env, jthread thread, jobject object, jlong timeout) argument
1168 cbMonitorWaited(jvmtiEnv *jvmti_env, JNIEnv *env, jthread thread, jobject object, jboolean timed_out) argument
[all...]
H A DeventHelper.c306 (void)outStream_writeObjectTag(env, out, evinfo->object);
307 (void)outStream_writeObjectRef(env, out, evinfo->object);
323 (void)outStream_writeObjectTag(env, out, evinfo->object);
324 (void)outStream_writeObjectRef(env, out, evinfo->object);
334 (void)outStream_writeObjectTag(env, out, evinfo->object);
335 (void)outStream_writeObjectRef(env, out, evinfo->object);
351 (void)outStream_writeObjectTag(env, out, evinfo->object);
352 (void)outStream_writeObjectRef(env, out, evinfo->object);
354 /* clazz of evinfo was set to class of monitor object for monitor wait event class filtering.
771 jobject object; local
[all...]
H A Dutil.h213 jobject object; /* possibly an exception or user object */ member in struct:__anon515
309 jbyte specificTypeKey(JNIEnv *env, jobject object);
345 jboolean isClass(jobject object);
346 jboolean isThread(jobject object);
347 jboolean isThreadGroup(jobject object);
348 jboolean isString(jobject object);
349 jboolean isClassLoader(jobject object);
350 jboolean isArray(jobject object);
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiEnvBase.hpp51 // One JvmtiEnv object is created per jvmti attachment;
292 jobject object, jvmtiMonitorUsage* info_ptr);
360 // VM operation to get object monitor usage.
370 VM_GetObjectMonitorUsage(JvmtiEnv *env, JavaThread* calling_thread, jobject object, jvmtiMonitorUsage* info_ptr) { argument
372 _object = object;
/openjdk7/hotspot/src/share/vm/runtime/
H A Dsynchronizer.cpp186 void ObjectSynchronizer::fast_exit(oop object, BasicLock* lock, TRAPS) { argument
187 assert(!object->mark()->has_bias_pattern(), "should not see bias pattern here");
194 mark = object->mark() ;
201 assert(((oop)(m->object()))->mark() == mark, "invariant") ;
207 mark = object->mark() ;
209 // If the object is stack-locked by the current thread, try to
213 if ((markOop) Atomic::cmpxchg_ptr (dhw, object->mark_addr(), mark) == mark) {
219 ObjectSynchronizer::inflate(THREAD, object)->exit (true, THREAD) ;
256 // The object header will never be displaced to this lock,
268 void ObjectSynchronizer::slow_exit(oop object, BasicLoc argument
838 oop object = (oop) mid->object(); local
1195 inflate(Thread * Self, oop object) argument
1657 oop object = (oop) mid->object(); local
[all...]
/openjdk7/hotspot/src/share/vm/services/
H A DthreadService.cpp154 obj = (oop) wait_obj->object();
155 assert(obj != NULL, "Object.wait() should have an object");
160 obj = (oop) enter_obj->object();
249 // Allocate the resulting StackTraceElement[][] object
266 // Construct an array of java/lang/StackTraceElement object
289 // Find deadlocks involving object monitors and concurrent locks if concurrent_locks is true
386 // Create a new ThreadDumpResult object and append to the list.
393 // Create a new ThreadDumpResult object and append to the list.
443 assert(monitor->owner(), "This monitor must have an owning object");
484 oop object local
545 is_owned_monitor_on_stack(oop object) argument
[all...]
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_init.c937 * jclass object that the class is still considered unloaded.
985 * any object free events will create a new stack.
1012 /* Just terminate this stack object */
1680 jthread thread, jobject object, jlong timeout)
1685 monitor_wait_event(env, thread, object, timeout);
1692 jthread thread, jobject object, jboolean timed_out)
1697 monitor_waited_event(env, thread, object, timed_out);
1704 jthread thread, jobject object)
1709 monitor_contended_enter_event(env, thread, object);
1716 jthread thread, jobject object)
1679 cbMonitorWait(jvmtiEnv *jvmti, JNIEnv* env, jthread thread, jobject object, jlong timeout) argument
1691 cbMonitorWaited(jvmtiEnv *jvmti, JNIEnv* env, jthread thread, jobject object, jboolean timed_out) argument
1703 cbMonitorContendedEnter(jvmtiEnv *jvmti, JNIEnv* env, jthread thread, jobject object) argument
1715 cbMonitorContendedEntered(jvmtiEnv *jvmti, JNIEnv* env, jthread thread, jobject object) argument
[all...]
/openjdk7/jdk/src/share/native/common/
H A Djni_util.c920 JNU_IsInstanceOfByName(JNIEnv *env, jobject object, char* classname) argument
927 jint result = (*env)->IsInstanceOf(env, object, cls);
955 JNU_MonitorWait(JNIEnv *env, jobject object, jlong timeout) argument
957 if (object == NULL) {
971 (*env)->CallVoidMethod(env, object, Object_waitMID, timeout);
975 JNU_Notify(JNIEnv *env, jobject object) argument
977 if (object == NULL) {
991 (*env)->CallVoidMethod(env, object, Object_notifyMID);
995 JNU_NotifyAll(JNIEnv *env, jobject object) argument
997 if (object
1034 JNU_PrintClass(JNIEnv *env, char* hdr, jobject object) argument
1049 JNU_ToString(JNIEnv *env, jobject object) argument
[all...]
/openjdk7/jdk/src/share/demo/jvmti/heapTracker/
H A DheapTracker.c125 /* Trace information (more than one object will have this as a tag) */
128 /* Trace where this object was allocated from */
338 /* Tag an object with a TraceInfo pointer. */
340 tagObjectWithTraceInfo(jvmtiEnv *jvmti, jobject object, TraceInfo *tinfo) argument
345 /* Tag this object with this TraceInfo pointer */
347 error = (*jvmti)->SetTag(jvmti, object, tag);
348 check_jvmti_error(jvmti, error, "Cannot tag object");
508 /* Get jclass object for the jmethodID */
724 jobject object, jclass object_klass, jlong size)
732 tagObjectWithTraceInfo(jvmti, object, tinf
723 cbVMObjectAlloc(jvmtiEnv *jvmti, JNIEnv *env, jthread thread, jobject object, jclass object_klass, jlong size) argument
[all...]

Completed in 114 milliseconds

1234567891011>>