Searched defs:controlType (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DAbstractLine.java123 public final boolean isControlSupported(Control.Type controlType) { argument
125 if (controlType == null) {
130 if (controlType == controls[i].getType()) {
139 public final Control getControl(Control.Type controlType) { argument
141 if (controlType != null) {
144 if (controlType == controls[i].getType()) {
150 throw new IllegalArgumentException("Unsupported control type: " + controlType);
/openjdk7/jdk/src/solaris/native/com/sun/media/sound/
H A DPLATFORM_API_BsdOS_ALSA_Ports.c44 char* controlType; /* one of CONTROL_TYPE_xx */ member in struct:__anon949
421 portControl->controlType = CONTROL_TYPE_VOLUME;
439 portControl->controlType = CONTROL_TYPE_VOLUME;
461 portControl->controlType = CONTROL_TYPE_BALANCE;
476 portControl->controlType = type;
513 if (portControl->controlType == CONTROL_TYPE_MUTE ||
514 portControl->controlType == CONTROL_TYPE_SELECT) {
520 if (portControl->controlType == CONTROL_TYPE_MUTE) {
525 portControl->controlType);
537 if (portControl->controlType
[all...]
H A DPLATFORM_API_LinuxOS_ALSA_Ports.c44 char* controlType; /* one of CONTROL_TYPE_xx */ member in struct:__anon950
421 portControl->controlType = CONTROL_TYPE_VOLUME;
439 portControl->controlType = CONTROL_TYPE_VOLUME;
461 portControl->controlType = CONTROL_TYPE_BALANCE;
476 portControl->controlType = type;
513 if (portControl->controlType == CONTROL_TYPE_MUTE ||
514 portControl->controlType == CONTROL_TYPE_SELECT) {
520 if (portControl->controlType == CONTROL_TYPE_MUTE) {
525 portControl->controlType);
537 if (portControl->controlType
[all...]
H A DPLATFORM_API_SolarisOS_Ports.c134 INT32 controlType; // PORT_CONTROL_TYPE_XX member in struct:tag_PortControlID
317 controlID->controlType = type;
465 if (controlID->controlType & PORT_CONTROL_TYPE_PLAY) {
470 switch (controlID->controlType & PORT_CONTROL_TYPE_MASK) {
476 ERROR1("PORT_GetIntValue: Wrong type %d !\n", controlID->controlType & PORT_CONTROL_TYPE_MASK);
489 if (controlID->controlType & PORT_CONTROL_TYPE_PLAY) {
494 switch (controlID->controlType & PORT_CONTROL_TYPE_MASK) {
530 ERROR1("PORT_SetIntValue: Wrong type %d !\n", controlID->controlType & PORT_CONTROL_TYPE_MASK);
542 if (controlID->controlType & PORT_CONTROL_TYPE_PLAY) {
547 switch (controlID->controlType
[all...]
/openjdk7/jdk/src/windows/native/com/sun/media/sound/
H A DPLATFORM_API_WinOS_Ports.c75 INT32 controlType; // one of PORT_CONTROL_TYPE_XX member in struct:tag_PortControlID
152 char* getControlClass(int controlType) { argument
153 switch (controlType & MIXERCONTROL_CT_CLASS_MASK) {
166 char* getControlType(int controlType) { argument
167 switch (controlType) {
642 controlID->controlType = PORT_CONTROL_TYPE_MIXER;
644 controlID->controlType = PORT_CONTROL_TYPE_MUX;
734 controlID->controlType = type;
996 switch (controlID->controlType) {
1005 default: ERROR1("PORT_GetIntValue: wrong controlType
[all...]

Completed in 29 milliseconds