Searched defs:object (Results 176 - 200 of 276) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/demo/jvmti/waiters/
H A Dwaiters.cpp192 jthread thread, jobject object)
197 thread, object);
203 jthread thread, jobject object)
208 thread, object);
214 jthread thread, jobject object, jlong timeout)
219 object, timeout);
225 jthread thread, jobject object, jboolean timed_out)
230 object, timed_out);
191 monitor_contended_enter(jvmtiEnv* jvmti, JNIEnv *env, jthread thread, jobject object) argument
202 monitor_contended_entered(jvmtiEnv* jvmti, JNIEnv *env, jthread thread, jobject object) argument
213 monitor_wait(jvmtiEnv* jvmti, JNIEnv *env, jthread thread, jobject object, jlong timeout) argument
224 monitor_waited(jvmtiEnv* jvmti, JNIEnv *env, jthread thread, jobject object, jboolean timed_out) argument
/openjdk7/jdk/test/javax/management/remote/mandatory/loading/
H A DMethodResultTest.java199 private static boolean checkType(String what, Object object, argument
201 return checkType(what, object, wrongClass, false);
204 private static boolean checkType(String what, Object object, argument
206 final String type = isException ? "exception" : "object";
210 if (wrongClass.isInstance(object)) {
215 String className = object.getClass().getName();
/openjdk7/jdk/src/share/classes/sun/rmi/server/
H A DUtil.java133 "object does not implement a remote interface: " +
192 return cl; // this class implements remote object
269 * derived class in the remote object's superclass chain that
313 * Locate and return the Skeleton for the specified remote object
315 static Skeleton createSkeleton(Remote object) argument
320 cl = getRemoteClass(object.getClass());
323 "object does not implement a remote interface: " +
324 object.getClass().getName());
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/util/
H A DXSObjectListImpl.java69 public void set(Object object) {
72 public void add(Object object) {
124 // clear this object
133 public void addXSObject(XSObject object) { argument
139 fArray[fLength++] = object;
142 public void addXSObject(int index, XSObject object) { argument
143 fArray[index] = object;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/validation/
H A DValidatorImpl.java223 public void setProperty(String name, Object object) argument
229 fComponentManager.setProperty(name, object);
H A DXMLSchemaFactory.java395 public void setProperty(String name, Object object) argument
402 fSecurityManager = (SecurityManager) object;
412 fXMLSchemaLoader.setProperty(name, object);
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/objects/
H A DXNodeSet.java36 * This class represents an XPath nodeset object, and is capable of
51 * Construct a XNodeSet object.
53 * @param val Value of the XNodeSet object
77 * Construct a XNodeSet object.
79 * @param val Value of the XNodeSet object
94 * Construct an empty XNodeSet object. This is used to create a mutable
103 * Construct a XNodeSet object for one node.
105 * @param n Node to add to the new XNodeSet object
157 * Cast result object to a number.
170 * Cast result object t
291 public Object object() method in class:XNodeSet
[all...]
H A DXStringForFSB.java52 * Construct a XNodeSet object.
54 * @param val FastStringBuffer object this will wrap, must be non-null.
72 * Construct a XNodeSet object.
74 * @param val String object this will wrap.
86 * Cast result object to a string.
96 * Cast result object to a string.
107 * Tell if this object contains a java String object.
123 * Since this object is incomplete without the length and the offset, we
126 * @return The java String representation of this object
128 public Object object() method in class:XStringForFSB
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/soql/
H A DJSJavaScriptEngine.java103 given a string class name, this function gets the class object. For
132 * dumpClass function creates a .class file for a given Class object.
218 println("address(jobject) returns the address of the Java object");
219 println("classof(jobject) returns the class object of the Java object");
223 println("identityHash(jobject) returns the hashCode of the Java object");
224 println("mirror(jobject) returns a local mirror of the Java object");
226 println("object(string) converts a string address into Java object");
228 println("sizeof(jobject) returns the size of Java object i
302 public Object object(Object[] args) { method in class:JSJavaScriptEngine
[all...]
/openjdk7/jdk/src/share/classes/java/beans/
H A DFeatureDescriptor.java254 * This must isolate the new object from any changes to the old object.
331 * Creates a new soft reference that refers to the given object.
333 * @return a new soft reference or <code>null</code> if object is <code>null</code>
337 static <T> Reference<T> getSoftReference(T object) { argument
338 return (object != null)
339 ? new SoftReference<T>(object)
344 * Creates a new weak reference that refers to the given object.
346 * @return a new weak reference or <code>null</code> if object is <code>null</code>
350 static <T> Reference<T> getWeakReference(T object) { argument
[all...]
/openjdk7/jdk/src/share/classes/javax/management/
H A DMBeanServer.java44 * an object that implements this interface is obtained with one of
50 * server. A Java object cannot be registered in the MBean server
56 * object as listener to MBeanServerNotifications you should call the
64 * <p>An object obtained from the {@link
324 * <p>Registers a pre-existing object as an MBean with the MBean
325 * server. If the object name given is null, the MBean must
334 * @param object The MBean to be registered as an MBean.
335 * @param name The object name of the MBean. May be null.
367 * @exception NotCompliantMBeanException This object is not a JMX
370 * <CODE>java.lang.IllegalArgumentException</CODE>: The object
374 registerMBean(Object object, ObjectName name) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/management/monitor/
H A DGaugeMonitor.java143 * <BR>The default value is a null Integer object.
150 * <BR>The default value is a null Integer object.
253 * Gets the derived gauge of the specified object, if this object is
256 * @param object the name of the MBean.
258 * @return The derived gauge of the specified object.
262 public synchronized Number getDerivedGauge(ObjectName object) { argument
263 return (Number) super.getDerivedGauge(object);
267 * Gets the derived gauge timestamp of the specified object, if
268 * this object i
278 getDerivedGaugeTimeStamp(ObjectName object) argument
755 createObservedObject(ObjectName object) argument
770 isComparableTypeValid(ObjectName object, String attribute, Comparable<?> value) argument
800 getDerivedGaugeFromComparable( ObjectName object, String attribute, Comparable<?> value) argument
835 buildAlarmNotification( ObjectName object, String attribute, Comparable<?> value) argument
872 isThresholdTypeValid(ObjectName object, String attribute, Comparable<?> value) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DRepository.java81 * canonical key property list string as key and named object
82 * aggregated from given object name and mbean instance as value.
124 * Builds a new ObjectNamePattern object from an ObjectName pattern.
136 * Builds a new ObjectNamePattern object from an ObjectName pattern
166 * for which this object has been built.
187 // Find value in given object name for key at current
238 private void addNewDomMoi(final DynamicMBean object, argument
245 addMoiToTb(object,name,key,moiTb,context);
273 private void addMoiToTb(final DynamicMBean object, argument
279 moiTb.put(key,new NamedObject(name, object));
384 addMBean(final DynamicMBean object, ObjectName name, final RegistrationContext context) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/security/
H A DMBeanServerAccessController.java56 * <p>An object of this class implements the MBeanServer interface
58 * and then forwards the request to a wrapped MBeanServer object. The
61 * wrapped object.</p>
97 throw new IllegalArgumentException("MBeanServer object already " +
140 * wrapped object.
154 * wrapped object.
168 * wrapped object.
180 Object object = getMBeanServer().instantiate(className);
181 checkClassLoader(object);
182 return getMBeanServer().registerMBean(object, nam
512 registerMBean(Object object, ObjectName name) argument
611 checkClassLoader(Object object) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DModelPerformer.java132 public void setUserObject(Object object) { argument
133 userObject = object;
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/
H A DProperties.java99 public Entity(Properties.Entity object) { argument
100 properties = new Properties(object.getProperties());
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/serialization/
H A DXMLParser.java88 private T object; field in class:XMLParser.ElementHandler
136 return object;
165 object = start();
/openjdk7/jdk/src/macosx/native/com/sun/media/sound/
H A DPLATFORM_API_MacOSX_Utils.cpp231 OSStatus GetAudioObjectPropertySize(AudioObjectID object, AudioObjectPropertyScope scope, AudioObjectPropertySelector prop, UInt32 *size) argument
236 err = AudioObjectGetPropertyDataSize(object, &address, 0, NULL, size);
241 OSStatus GetAudioObjectProperty(AudioObjectID object, AudioObjectPropertyScope scope, AudioObjectPropertySelector prop, UInt32 *size, void *data) argument
246 err = AudioObjectGetPropertyData(object, &address, 0, NULL, size, data);
251 OSStatus GetAudioObjectProperty(AudioObjectID object, AudioObjectPropertyScope scope, AudioObjectPropertySelector prop, UInt32 size, void *data, int checkSize) argument
257 err = AudioObjectGetPropertyData(object, &address, 0, NULL, &size, data);
265 OSStatus SetAudioObjectProperty(AudioObjectID object, AudioObjectPropertyScope scope, AudioObjectPropertySelector prop, UInt32 size, void *data) argument
269 OSStatus err = AudioObjectSetPropertyData(object, &address, 0, NULL, size, data);
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/model/
H A DFramework.java89 public Framework object = null; field in class:Framework.FrameworkDependency
133 dep.object = Fp.find(new Map1<Framework,Boolean>(){
/openjdk7/jdk/src/share/back/
H A DArrayReferenceImpl.c462 jobject object = inStream_readObjectRef(env, in); local
464 JNI_FUNC_PTR(env,SetObjectArrayElement)(env, array, index + i, object);
H A DinStream.c167 * Read an object from the stream. The ID used in the wire protocol
202 * Read a raw object id from the stream. This should be used rarely.
216 jobject object = inStream_readObjectRef(env, stream); local
217 if (object == NULL) {
224 if (!isClass(object)) {
228 return object;
234 jobject object = inStream_readObjectRef(env, stream); local
235 if (object == NULL) {
242 if (!isThread(object)) {
246 return object;
252 jobject object = inStream_readObjectRef(env, stream); local
270 jobject object = inStream_readObjectRef(env, stream); local
288 jobject object = inStream_readObjectRef(env, stream); local
306 jobject object = inStream_readObjectRef(env, stream); local
[all...]
H A Dinvoker.c322 jobject object; local
323 object = JNI_FUNC_PTR(env,NewObjectA)(env, request->clazz,
327 if (object != NULL) {
328 saveGlobalRef(env, object, &(request->returnValue.l));
338 jobject object; local
339 object = JNI_FUNC_PTR(env,CallStaticObjectMethodA)(env,
344 if (object != NULL) {
345 saveGlobalRef(env, object, &(request->returnValue.l));
426 jobject object; local
427 object
513 jobject object; local
[all...]
/openjdk7/jdk/src/share/classes/com/sun/beans/decoder/
H A DDocumentHandler.java84 setElementHandler("object", ObjectElementHandler.class); // NON-NLS: the element name
240 * Adds the object to the list of readed objects.
242 * @param object the object that is readed from XML document
244 void addObject(Object object) { argument
245 this.objects.add(object);
391 * @return the object that represents the class
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/bmp/
H A DBMPMetadata.java298 Object object) {
300 if (object != null) {
301 child.setUserObject(object);
302 child.setNodeValue(ImageUtil.convertObjectToString(object));
296 addChildNode(IIOMetadataNode root, String name, Object object) argument
/openjdk7/jaxws/src/share/jaf_classes/javax/activation/
H A DDataHandler.java52 * object corresponding to the MIME type of the data represented in
80 // DataSource constructor or the object constructor.
85 // object remains null if it was instantiated with a
87 private Object object = null; field in class:DataHandler
121 * Create a <code>DataHandler</code> instance representing an object
127 * @param mimeType the MIME type of the object
130 object = obj;
140 * @param url a URL object
163 * DataHandler object. In other cases the DataHandler
169 * @return a valid DataSource object fo
[all...]

Completed in 98 milliseconds

1234567891011>>