Searched defs:info (Results 1 - 25 of 292) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/macosx/classes/apple/security/
H A DAppleProvider.java42 private static final String info = "Apple Provider"; field in class:AppleProvider
46 super("Apple", 1.1, info);
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/
H A DProvider.java50 private static final String info = "Sun SASL provider" + field in class:Provider
56 super("SunSASL", 1.7d, info);
/openjdk7/jdk/test/com/sun/management/GarbageCollectorMXBean/
H A DLastGCInfo.java50 GcInfo info = gc.getLastGcInfo();
51 if (info != null) {
52 checkGcInfo(gc.getName(), info);
64 private static void checkGcInfo(String name, GcInfo info) throws Exception { argument
66 System.out.print("GC #" + info.getId());
67 System.out.print(" start:" + info.getStartTime());
68 System.out.print(" end:" + info.getEndTime());
69 System.out.println(" (" + info.getDuration() + "ms)");
70 Map usage = info.getMemoryUsageBeforeGc();
78 MemoryUsage ausage = (MemoryUsage) info
[all...]
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/SSLSecurity/
H A DProviderTest.java75 private static String info = "Brad's provider"; field in class:MyProvider
87 super("BRAD", 1.0, info);
/openjdk7/jdk/test/sun/security/ssl/sanity/pluggability/
H A DCheckSSLContextExport.java34 private static String info = "test provider for JSSE pluggability"; field in class:CheckSSLContextExport
37 super("TestJSSEPluggability", 1.0, info);
/openjdk7/jdk/src/share/classes/sun/security/jgss/
H A DHttpCaller.java32 * info about what triggers the JGSS calls.
41 public HttpCallerInfo info() { method in class:HttpCaller
/openjdk7/jdk/test/java/security/Security/removing/
H A DRemoveProviderByIdentity.java48 public MyProvider(String name, double version, String info) { argument
49 super(name, version, info);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/
H A DLineNumberVisitor.java28 public void doLineNumber(LineNumberInfo info); argument
/openjdk7/jdk/src/share/classes/javax/sound/midi/spi/
H A DMidiDeviceProvider.java45 * the specified device info object.
46 * @param info an info object that describes the device for which support is queried
50 public boolean isDeviceSupported(MidiDevice.Info info) { argument
55 if( info.equals( infos[i] ) ) {
64 * Obtains the set of info objects representing the device
66 * @return set of device info objects
72 * Obtains an instance of the device represented by the info object.
73 * @param info an info objec
78 getDevice(MidiDevice.Info info) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/sound/sampled/spi/
H A DMixerProvider.java44 * the specified mixer info object.
46 * The full set of mixer info objects that represent the mixers supported
50 * @param info an info object that describes the mixer for which support is queried
55 public boolean isMixerSupported(Mixer.Info info) { argument
60 if( info.equals( infos[i] ) ) {
69 * Obtains the set of info objects representing the mixer
73 * for all the info objects returned by this method.
74 * The corresponding mixer instances for the info objects
77 * @return a set of mixer info object
100 getMixer(Mixer.Info info) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DRealTimeSequencerProvider.java42 MidiDevice.Info[] localArray = { RealTimeSequencer.info };
47 public MidiDevice getDevice(MidiDevice.Info info) { argument
48 if ((info != null) && (!info.equals(RealTimeSequencer.info))) {
H A DSoftProvider.java39 static final Info softinfo = SoftSynthesizer.info;
46 public MidiDevice getDevice(MidiDevice.Info info) { argument
47 if (info == softinfo) {
H A DAudioSynthesizer.java61 * @param info a proposed list of tag/value pairs that will be sent on open.
67 Map<String, Object> info);
84 * @param info a <code>Map<String,Object></code> object containing
86 * If <code>info</code> is null then default settings are used.
96 public void open(SourceDataLine line, Map<String, Object> info) argument
114 * @param info a <code>Map<String,Object></code> object containing
116 * If <code>info</code> is null then default settings are used.
127 Map<String, Object> info) throws MidiUnavailableException;
66 getPropertyInfo( Map<String, Object> info) argument
126 openStream(AudioFormat targetFormat, Map<String, Object> info) argument
H A DSoftMixingMixerProvider.java44 public Mixer getMixer(Info info) { argument
45 if (!(info == null || info == SoftMixingMixer.info)) {
46 throw new IllegalArgumentException("Mixer " + info.toString()
53 + info.toString()
63 return new Info[] { SoftMixingMixer.info };
/openjdk7/jdk/test/sun/text/resources/Format/
H A DBug4442855.java62 private boolean Test(String parent, String child, String info){ argument
66 System.out.println("Error translation for " + info + " in TCH: " + parent);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DAttrContextEnv.java41 * with a given info field.
43 public AttrContextEnv(JCTree tree, AttrContext info) { argument
44 super(tree, info);
/openjdk7/jdk/test/java/security/Provider/
H A DEquals.java58 P1(String name, double version, String info) { argument
59 super(name, version, info);
64 P2(String name, double version, String info) { argument
65 super(name, version, info);
H A DRemoveProvider.java186 public MyProvider(String name, double version, String info) { argument
187 super(name, version, info);
/openjdk7/jdk/test/java/util/Hashtable/
H A DEqualsCast.java47 public MyProvider(String name, double version, String info) { argument
48 super(name, version, info);
/openjdk7/jdk/src/share/classes/javax/print/attribute/standard/
H A DPrinterInfo.java55 * Constructs a new printer info attribute with the given information
58 * @param info Printer information string.
64 * (unchecked exception) Thrown if <CODE>info</CODE> is null.
66 public PrinterInfo(String info, Locale locale) { argument
67 super (info, locale);
71 * Returns whether this printer info attribute is equivalent to the passed
80 * This printer info attribute's underlying string and
83 * This printer info attribute's locale and <CODE>object</CODE>'s
90 * info attribute, false otherwise.
113 * For class PrinterInfo, the category name is <CODE>"printer-info"</COD
[all...]
/openjdk7/jdk/src/share/classes/java/security/
H A DAuthProvider.java50 * @param info a description of the provider and its services.
52 protected AuthProvider(String name, double version, String info) { argument
53 super(name, version, info);
/openjdk7/jdk/src/share/classes/java/sql/
H A DDriver.java74 * @param info a list of arbitrary string tag/value pairs as
81 Connection connect(String url, java.util.Properties info) argument
110 * @param info a proposed list of tag/value pairs that will be sent on
117 DriverPropertyInfo[] getPropertyInfo(String url, java.util.Properties info) argument
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/encryption/
H A DReference.java82 * @param info.
84 void addElementRetrievalInformation(Element info); argument
89 * @param info.
91 void removeElementRetrievalInformation(Element info); argument
/openjdk7/jdk/src/share/classes/java/awt/font/
H A DTextJustifier.java44 * one info for each side of each glyph
51 private GlyphJustificationInfo[] info; field in class:TextJustifier
61 TextJustifier(GlyphJustificationInfo[] info, int start, int limit) { argument
62 this.info = info;
69 GlyphJustificationInfo gji = info[i];
81 * Return an array of deltas twice as long as the original info array,
88 float[] deltas = new float[info.length * 2];
112 GlyphJustificationInfo gi = info[i];
179 GlyphJustificationInfo gi = info[
[all...]
/openjdk7/jdk/src/share/back/
H A DThreadGroupReferenceImpl.c46 jvmtiThreadGroupInfo info; local
48 (void)memset(&info, 0, sizeof(info));
49 threadGroupInfo(group, &info);
50 (void)outStream_writeString(out, info.name);
51 if ( info.name != NULL )
52 jvmtiDeallocate(info.name);
74 jvmtiThreadGroupInfo info; local
76 (void)memset(&info, 0, sizeof(info));
[all...]

Completed in 3145 milliseconds

1234567891011>>