Searched defs:info (Results 101 - 125 of 292) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/encryption/
H A DEncryptedType.java165 * @param info the <code>ds:KeyInfo</code>, that carries information about
168 void setKeyInfo(KeyInfo info); argument
/openjdk7/jdk/make/tools/swing-beans/
H A DGenSwingBeanInfo.java46 * Code for a bean info class is written to out. If the class is
234 * @param info The actual BeanInfo class generated from from the Intospector.
239 private String genPropertyDescriptors(BeanInfo info, Hashtable dochash) { argument
242 PropertyDescriptor[] pds = info.getPropertyDescriptors();
/openjdk7/jdk/src/share/back/
H A DObjectReferenceImpl.c211 jvmtiMonitorUsage info; local
213 (void)memset(&info, 0, sizeof(info));
215 (gdata->jvmti, object, &info);
220 (void)outStream_writeObjectRef(env, out, info.owner);
221 (void)outStream_writeInt(out, info.entry_count);
222 (void)outStream_writeInt(out, info.waiter_count);
223 for (i = 0; i < info.waiter_count; i++) {
224 (void)outStream_writeObjectRef(env, out, info.waiters[i]);
228 if (info
[all...]
H A DThreadReferenceImpl.c54 jvmtiThreadInfo info; local
57 (void)memset(&info, 0, sizeof(info));
60 (gdata->jvmti, thread, &info);
65 (void)outStream_writeString(out, info.name);
68 if ( info.name != NULL )
69 jvmtiDeallocate(info.name);
171 jvmtiThreadInfo info; local
174 (void)memset(&info, 0, sizeof(info));
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/api/impl/s2j/
H A DSchemaCompilerImpl.java257 // we need info about each field, so we go ahead and generate the
290 public void info(SAXParseException exception) { method in class:SchemaCompilerImpl
292 errorListener.info(exception);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/impl/
H A DReferencePropertyInfoImpl.java191 ReferencePropertyInfoImpl<T,C,F,M> info = (ReferencePropertyInfoImpl<T, C, F, M>) i.next();
192 PropertySeed sd = info.seed;
228 yield = addGenericElement(r, info);
300 private boolean addGenericElement(XmlElementRef r, ReferencePropertyInfoImpl<T,C,F,M> info) { argument
301 String nsUri = info.getEffectiveNamespaceFor(r);
302 ElementInfo ei = parent.owner.getElementInfo(info.parent.getClazz(), new QName(nsUri, r.name()));
378 public final void addType(PropertyInfoImpl<T,C,F,M> info) { argument
379 subTypes.add(info);
/openjdk7/jdk/src/solaris/native/com/sun/management/
H A DSolarisOperatingSystem.c164 int get_info(const char *path, void *info, size_t s, off_t o) { argument
170 if (pread(fd, info, s, o) != s) {
218 psinfo_t info; local
222 if (get_info("/proc/self/psinfo",&info.pr_pctcpu, sizeof(info.pr_pctcpu), offsetof(psinfo_t, pr_pctcpu)) == 0) {
223 return (double) info.pr_pctcpu / 0x8000;
/openjdk7/jdk/src/solaris/native/com/sun/media/sound/
H A DPLATFORM_API_SolarisOS_Utils.c141 audio_info_t info; local
/openjdk7/jdk/src/windows/native/sun/management/
H A DFileSystemImpl.c126 SECURITY_INFORMATION info = local
129 GetFileSecurityA(path, info , 0, 0, &len);
138 if (!(*GetFileSecurityA)(path, info, sd, len, &len)) {
/openjdk7/jdk/test/com/sun/nio/sctp/
H A DMessageInfoTests.java44 MessageInfo info = MessageInfo.createOutgoing(addr,
46 checkDefaults(info);
47 checkGetterSetters(info);
50 info = MessageInfo.createOutgoing(assoc, addr, DEFAULT_STREAM_NUMBER);
51 checkDefaults(info);
52 check(info.association().equals(assoc), "incorrect association");
53 checkGetterSetters(info);
56 info = MessageInfo.createOutgoing(null, 0);
57 check(info.address() == null, "address should be null");
58 check(info
83 checkDefaults(MessageInfo info) argument
94 checkGetterSetters(MessageInfo info) argument
[all...]
/openjdk7/jdk/test/java/beans/Introspector/
H A DTest7193977.java27 * @summary Tests that generified property descriptors do not loose additional info
121 private final BeanInfo info; field in class:Test7193977.Wrapper
124 this.info = Introspector.getBeanInfo(type, Introspector.IGNORE_IMMEDIATE_BEANINFO);
128 return this.info.getBeanDescriptor();
132 return this.info.getEventSetDescriptors();
136 return this.info.getDefaultEventIndex();
140 return this.info.getPropertyDescriptors();
144 return this.info.getDefaultPropertyIndex();
148 return this.info.getMethodDescriptors();
152 return this.info
[all...]
/openjdk7/jdk/test/java/lang/management/ManagementFactory/
H A DProxyTypeMapping.java197 ThreadInfo info = thread.getThreadInfo(id);
198 printThreadInfo(info);
199 info = thread.getThreadInfo(id, 2);
200 printThreadInfo(info);
203 private static void printThreadInfo(ThreadInfo info) { argument
204 if (info == null) {
209 System.out.print(info.getThreadName());
210 System.out.print(" id=" + info.getThreadId());
211 System.out.println(" " + info.getThreadState());
213 for (StackTraceElement s : info
243 printGcInfo(GcInfo info) argument
[all...]
H A DThreadMXBeanProxy.java126 void checkThreadInfo(ThreadInfo info) { argument
127 if (!getName().equals(info.getThreadName())) {
128 throw new RuntimeException("Name: " + info.getThreadName() +
132 MonitorInfo[] monitors = info.getLockedMonitors();
141 StackTraceElement[] stacktrace = info.getStackTrace();
155 System.out.println(info);
160 LockInfo[] syncs = info.getLockedSynchronizers();
/openjdk7/jdk/test/java/lang/management/ThreadMXBean/
H A DMyOwnSynchronizer.java170 void checkLockedSyncs(ThreadInfo info, LockInfo[] syncs) { argument
171 if (!getName().equals(info.getThreadName())) {
172 throw new RuntimeException("Name: " + info.getThreadName() +
/openjdk7/langtools/make/tools/CompileProperties/
H A DCompileProperties.java65 void info(String msg); method in interface:CompileProperties.Log
91 public void info(String msg) {
282 log.info("usage:");
283 log.info(" java CompileProperties path_to_properties_file path_to_java_output_file [super_class]");
284 log.info(" -OR-");
285 log.info(" java CompileProperties {-compile path_to_properties_file path_to_java_output_file super_class} -or- -optionsfile filename");
286 log.info("");
287 log.info("Example:");
288 log.info(" java CompileProperties -compile test.properties test.java java.util.ListResourceBundle");
289 log.info(" jav
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DClassTranslator.java244 public CPInfo visitClass(CONSTANT_Class_info info, Map<Object, Object> translations) { argument
245 CONSTANT_Class_info info2 = (CONSTANT_Class_info) translations.get(info);
247 ConstantPool cp2 = translate(info.cp, translations);
248 if (cp2 == info.cp)
249 info2 = info;
251 info2 = new CONSTANT_Class_info(cp2, info.name_index);
252 translations.put(info, info2);
254 return info;
257 public CPInfo visitDouble(CONSTANT_Double_info info, Map<Object, Object> translations) { argument
258 CONSTANT_Double_info info2 = (CONSTANT_Double_info) translations.get(info);
266 visitFieldref(CONSTANT_Fieldref_info info, Map<Object, Object> translations) argument
279 visitFloat(CONSTANT_Float_info info, Map<Object, Object> translations) argument
288 visitInteger(CONSTANT_Integer_info info, Map<Object, Object> translations) argument
297 visitInterfaceMethodref(CONSTANT_InterfaceMethodref_info info, Map<Object, Object> translations) argument
310 visitInvokeDynamic(CONSTANT_InvokeDynamic_info info, Map<Object, Object> translations) argument
324 visitLong(CONSTANT_Long_info info, Map<Object, Object> translations) argument
333 visitNameAndType(CONSTANT_NameAndType_info info, Map<Object, Object> translations) argument
346 visitMethodref(CONSTANT_Methodref_info info, Map<Object, Object> translations) argument
359 visitMethodHandle(CONSTANT_MethodHandle_info info, Map<Object, Object> translations) argument
373 visitMethodType(CONSTANT_MethodType_info info, Map<Object, Object> translations) argument
387 visitString(CONSTANT_String_info info, Map<Object, Object> translations) argument
400 visitUtf8(CONSTANT_Utf8_info info, Map<Object, Object> translations) argument
[all...]
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_frame.c87 FrameInfo *info; local
89 info = (FrameInfo*)table_get_info(gdata->frame_table, index);
90 return info;
97 FrameInfo *info; local
104 info = (FrameInfo*)info_ptr;
108 info->lineno, info->lineno_state, info->status);
133 FrameInfo *info; local
135 info
165 FrameInfo *info; local
176 FrameInfo *info; local
206 FrameInfo *info; local
[all...]
H A Dhprof_loader.c74 delete_globalref(JNIEnv *env, LoaderInfo *info) argument
79 HPROF_ASSERT(info!=NULL);
80 ref = info->globalref;
81 info->globalref = NULL;
85 info->object_index = 0;
105 LoaderInfo *info; local
109 info = (LoaderInfo*)info_ptr;
111 index, (void*)info->globalref, info->object_index);
117 LoaderInfo *info; local
133 LoaderInfo *info; local
190 LoaderInfo info; local
242 LoaderInfo *info; local
[all...]
/openjdk7/jdk/src/share/native/sun/font/
H A DsunFont.c286 GlyphInfo *info; local
297 info = (GlyphInfo*) calloc(1, sizeof(GlyphInfo));
298 if (info == NULL) {
302 baseAddr = (size_t)info;
306 nresults[3] = (size_t)&(info->advanceY)-baseAddr;
307 nresults[4] = (size_t)&(info->width)-baseAddr;
308 nresults[5] = (size_t)&(info->height)-baseAddr;
309 nresults[6] = (size_t)&(info->rowBytes)-baseAddr;
310 nresults[7] = (size_t)&(info->topLeftX)-baseAddr;
311 nresults[8] = (size_t)&(info
[all...]
/openjdk7/jdk/src/share/classes/sun/security/pkcs/
H A DPKCS7.java535 // making it a content info sequence
546 * @param info the signer information.
552 public SignerInfo verify(SignerInfo info, byte[] bytes) argument
554 return info.verify(this, bytes);
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DSummaryTab.java57 HTMLPane info; field in class:SummaryTab
76 info = new HTMLPane();
77 setAccessibleName(info, getTabName());
78 add(new JScrollPane(info));
95 info.setText(result.summary);
143 { // VM info
239 { // Operating System info
/openjdk7/jdk/src/share/classes/sun/management/
H A DGcInfoCompositeData.java55 private final GcInfo info; field in class:GcInfoCompositeData
59 public GcInfoCompositeData(GcInfo info, argument
62 this.info = info;
68 return info;
71 public static CompositeData toCompositeData(final GcInfo info) { argument
78 return (GcInfoBuilder)f.get(info);
94 return (Object[])f.get(info);
105 new GcInfoCompositeData(info,builder,extAttr);
116 new Long(info
[all...]
/openjdk7/jdk/src/share/classes/sun/rmi/transport/tcp/
H A DConnectionMultiplexer.java87 /** table holding currently open connection IDs and related info */
134 MultiplexConnectionInfo info;
150 info = connectionTable.get(id);
151 if (info != null)
154 info = new MultiplexConnectionInfo(id);
155 info.in = new MultiplexInputStream(this, info, 2048);
156 info.out = new MultiplexOutputStream(this, info, 2048);
158 connectionTable.put(id, info);
348 sendRequest(MultiplexConnectionInfo info, int len) argument
373 sendTransmit(MultiplexConnectionInfo info, byte buf[], int off, int len) argument
397 sendClose(MultiplexConnectionInfo info) argument
420 sendCloseAck(MultiplexConnectionInfo info) argument
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXEmbedClientHelper.java73 long[] info = new long[] { XEMBED_VERSION, XEMBED_MAPPED };
74 long data = Native.card32ToData(info);
212 long getEmbedder(XWindowPeer embedded, XClientMessageEvent info) { argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/traversers/
H A DXSDocumentInfo.java236 void addAnnotation(XSAnnotationInfo info) { argument
237 info.next = fAnnotations;
238 fAnnotations = info;

Completed in 58 milliseconds

1234567891011>>