Searched defs:deviceName (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/print/attribute/standard/
H A DOutputDeviceAssigned.java59 * @param deviceName Device name.
65 * (unchecked exception) Thrown if <CODE>deviceName</CODE> is null.
67 public OutputDeviceAssigned(String deviceName, Locale locale) { argument
69 super (deviceName, locale);
/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DSeedGenerator.java443 private String deviceName; field in class:SeedGenerator.URLSeedGenerator
456 deviceName = egdurl;
465 final URL device = new URL(deviceName);
487 throw new IOException("Failed to open " + deviceName, e.getCause());
495 * compatibility. e.g. space character in deviceName string.
529 throw new InternalError("URLSeedGenerator " + deviceName +
534 throw new InternalError("URLSeedGenerator " + deviceName +
/openjdk7/jdk/src/share/classes/javax/sound/midi/
H A DMidiSystem.java1189 @param deviceName The name of the MidiDevice to be returned.
1196 private static MidiDevice getNamedDevice(String deviceName, argument
1201 device = getNamedDevice(deviceName, provider, deviceClass,
1209 device = getNamedDevice(deviceName, provider, deviceClass,
1221 @param deviceName The name of the MidiDevice to be returned.
1228 private static MidiDevice getNamedDevice(String deviceName, argument
1235 if (infos[i].getName().equals(deviceName)) {
1249 @param deviceName The name of the MidiDevice to be returned.
1256 private static MidiDevice getNamedDevice(String deviceName, argument
1261 device = getNamedDevice(deviceName, provider
1289 getNamedDevice(String deviceName, List providers, Class deviceClass, boolean allowSynthesizer, boolean allowSequencer) argument
[all...]

Completed in 33 milliseconds