Searched refs:controls (Results 1 - 24 of 24) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DBindingWithControls.java32 private Control[] controls; field in class:BindingWithControls
34 public BindingWithControls(String name, Object obj, Control[] controls) { argument
36 this.controls = controls;
40 return controls;
H A DNameClassPairWithControls.java32 private Control[] controls; field in class:NameClassPairWithControls
35 Control[] controls) {
37 this.controls = controls;
41 return controls;
34 NameClassPairWithControls(String name, String className, Control[] controls) argument
H A DSearchResultWithControls.java33 private Control[] controls; field in class:SearchResultWithControls
36 boolean isRelative, Control[] controls) {
39 this.controls = controls;
43 return controls;
35 SearchResultWithControls(String name, Object obj, Attributes attrs, boolean isRelative, Control[] controls) argument
H A DNotifierArgs.java33 * request. This includes the name, filter, search controls and
51 SearchControls controls; field in class:NotifierArgs
60 controls = new SearchControls();
61 controls.setSearchScope(scope);
70 this.controls = ctls;
80 // checks name, filter, controls
86 checkControls(target.controls);
92 if ((controls == null || ctls == null)) {
93 return ctls == controls;
97 return (controls
[all...]
H A DUnsolicitedResponseImpl.java42 private Control[] controls; field in class:UnsolicitedResponseImpl
45 int status, String msg, String matchedDN, Control[] controls) {
60 this.controls = controls;
110 return controls;
44 UnsolicitedResponseImpl(String oid, byte[] berVal, Vector ref, int status, String msg, String matchedDN, Control[] controls) argument
H A DNamingEventNotifier.java121 results = context.searchAux(nm, info.filter, info.controls,
H A DLdapCtx.java81 * 3. Sets LdapCtx's response controls
83 * 5. For narrowing response controls (using ctx's factories)
205 // controls that Provider needs
235 Vector respCtls = null; // Response controls read
362 // Connection controls are inherited from environment
364 // Set clone's request controls
417 respCtls = answer.resControls; // retrieve response controls
543 respCtls = answer.resControls; // retrieve response controls
632 respCtls = answer.resControls; // retrieve response controls
723 respCtls = answer.resControls; // retrieve response controls
[all...]
/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DCompoundControl.java46 * The set of member controls.
48 private Control[] controls; field in class:CompoundControl
59 * @param memberControls the set of member controls
64 this.controls = memberControls;
73 * Returns the set of member controls that comprise the compound control.
74 * @return the set of member controls.
78 Control[] localArray = new Control[controls.length];
80 for (int i = 0; i < controls.length; i++) {
81 localArray[i] = controls[i];
98 for (int i = 0; i < controls
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DAbstractLine.java48 protected Control[] controls; field in class:AbstractLine
62 * @param controls set of supported controls
64 protected AbstractLine(Line.Info info, AbstractMixer mixer, Control[] controls) { argument
66 if (controls == null) {
67 controls = new Control[0];
72 this.controls = controls;
107 * Obtains the set of controls supported by the
108 * line. If no controls ar
[all...]
H A DPortMixer.java69 // pass in Line.Info, mixer, controls
254 if ((id == 0) || (newID != id) || (controls.length == 0)) {
259 controls = new Control[vector.size()];
260 for (int i = 0; i < controls.length; i++) {
261 controls[i] = (Control) vector.elementAt(i);
265 enableControls(controls, true);
270 private void enableControls(Control[] controls, boolean enable) { argument
271 for (int i = 0; i < controls.length; i++) {
272 if (controls[i] instanceof BoolCtrl) {
273 ((BoolCtrl) controls[
402 CompCtrl(String name, Control[] controls) argument
[all...]
H A DSoftMixingDataLine.java410 private final Control[] controls; field in class:SoftMixingDataLine
437 controls = new Control[] { gain_control, mute_control, balance_control,
497 for (int i = 0; i < controls.length; i++) {
498 if (controls[i].getType() == control) {
499 return controls[i];
508 return Arrays.copyOf(controls, controls.length);
513 for (int i = 0; i < controls.length; i++) {
514 if (controls[i].getType() == control) {
H A DAbstractDataLine.java70 protected AbstractDataLine(DataLine.Info info, AbstractMixer mixer, Control[] controls) { argument
71 this(info, mixer, controls, null, AudioSystem.NOT_SPECIFIED);
77 protected AbstractDataLine(DataLine.Info info, AbstractMixer mixer, Control[] controls, AudioFormat format, int bufferSize) { argument
79 super(info, mixer, controls);
H A DAbstractMixer.java105 * @param controls set of supported controls
108 Control[] controls,
113 super(new Line.Info(Mixer.class), null, controls);
117 if (controls == null) {
118 controls = new Control[0];
107 AbstractMixer(Mixer.Info mixerInfo, Control[] controls, Line.Info[] sourceLineInfo, Line.Info[] targetLineInfo) argument
H A DDirectAudioDevice.java62 // pass in Line.Info, mixer, controls
449 /* set up controls */
453 // no controls for non-PCM formats */
454 controls = new Control[0];
459 controls = new Control[0];
462 controls = new Control[2];
464 controls = new Control[4];
465 controls[2] = balanceControl;
469 controls[3] = panControl;
471 controls[
[all...]
/openjdk7/jdk/src/windows/native/com/sun/media/sound/
H A DPLATFORM_API_WinOS_Ports.c57 int maxControlCount; // upper bound of number of controls
88 int getControlInfo(HMIXER handle, MIXERLINE* line, MIXERLINECONTROLS* controls);
148 TRACE3("channels=%d, connections=%d, controls=%d, ", mixerLine->cChannels, mixerLine->cConnections, mixerLine->cControls);
231 MIXERLINECONTROLS controls; local
234 if (getControlInfo(handle, mixerLine, &controls)) {
235 for (i = 0; i < controls.cControls; i++) {
236 printControl(&controls.pamxctrl[i]);
238 if (controls.pamxctrl) {
239 free(controls.pamxctrl);
240 controls
296 getControlInfo(HMIXER handle, MIXERLINE* line, MIXERLINECONTROLS* controls) argument
327 lineHasControls(HMIXER handle, MIXERLINE* line, MIXERLINECONTROLS* controls) argument
571 MIXERLINECONTROLS controls; local
886 void** controls = NULL; local
[all...]
/openjdk7/jdk/src/share/demo/applets/ArcTest/
H A DArcTest.java55 ArcControls controls; // The controls for marking and filling arcs field in class:ArcTest
63 add("South", controls = new ArcControls(canvas));
68 remove(controls);
74 controls.setEnabled(true);
79 controls.setEnabled(false);
/openjdk7/jdk/src/solaris/native/com/sun/media/sound/
H A DPLATFORM_API_BsdOS_ALSA_Ports.c63 /* Number of array elements used in controls. */
65 PortControl* controls; member in struct:tag_PortMixer
195 handle->controls = (PortControl*) calloc(MAX_CONTROLS, sizeof(PortControl));
196 if (handle->controls == NULL) {
225 if (handle->controls != NULL) {
226 free(handle->controls);
332 *portControl = &(portMixer->controls[portMixer->numControls]);
380 void* controls[10]; local
429 controls[numControls++] = control;
450 controls[numControl
[all...]
H A DPLATFORM_API_LinuxOS_ALSA_Ports.c63 /* Number of array elements used in controls. */
65 PortControl* controls; member in struct:tag_PortMixer
195 handle->controls = (PortControl*) calloc(MAX_CONTROLS, sizeof(PortControl));
196 if (handle->controls == NULL) {
225 if (handle->controls != NULL) {
226 free(handle->controls);
332 *portControl = &(portMixer->controls[portMixer->numControls]);
380 void* controls[10]; local
429 controls[numControls++] = control;
450 controls[numControl
[all...]
H A DPLATFORM_API_SolarisOS_Ports.c115 // controls
116 int maxControlCount; // upper bound of number of controls
361 TRACE1(">addCompoundControl %d controls\n", *controlCount);
378 // go through all controls and add them to the vector
389 void* controls[4]; local
401 // get a maximum number of controls:
414 controls, &controlCount);
415 addAllControls(info, creator, controls, &controlCount);
432 controls, &controlCount);
436 controls,
[all...]
/openjdk7/jdk/src/share/demo/management/MemoryMonitor/
H A DMemoryMonitor.java65 JPanel controls; field in class:MemoryMonitor
78 controls = new JPanel();
79 controls.setPreferredSize(new Dimension(135,80));
84 controls.add(label);
87 controls.add(tf);
88 controls.add(label = new JLabel("ms"));
91 controls.add(dateStampCB);
99 add(controls);
/openjdk7/jdk/src/share/native/com/sun/media/sound/
H A DPorts.h82 * controls: an array of opaque controls returned by the CreateXXXControlPtr functions
83 * controlCount: number of elements in controls
87 typedef void* (*PORT_NewCompoundControlPtr)(void* creator, char* type, void** controls, int controlCount);
104 // struct for dynamically instantiating the controls from platform dependent code
H A DPortMixer.c155 // the vector to be filled with controls (initialized before usage)
214 void* PORT_NewCompoundControl(void* creatorV, char* type, void** controls, int controlCount) { argument
220 TRACE2("PORT_NewCompoundControl: creating '%s' with %d controls\n", type, controlCount);
242 // create new array for the controls
250 (*creator->env)->SetObjectArrayElement(creator->env, controlArray, i, (jobject) controls[i]);
/openjdk7/jdk/src/share/demo/applets/DrawTest/
H A DDrawTest.java69 DrawControls controls; field in class:DrawTest
75 controls = new DrawControls(panel);
77 add("South", controls);
83 remove(controls);
/openjdk7/jdk/src/share/classes/com/sun/security/auth/module/
H A DJndiLoginModule.java517 SearchControls controls = new SearchControls
526 SearchControls controls = new SearchControls();
529 controls);

Completed in 3869 milliseconds