Lines Matching refs:param

221          * @param type          UUID identifying the effect type. May be one of:
227 * @param uuid UUID for this particular implementation
228 * @param connectMode {@link #EFFECT_INSERT} or {@link #EFFECT_AUXILIARY}
229 * @param name human readable effect name
230 * @param implementor human readable effect implementor name
360 * @param type type of effect engine created. See {@link #EFFECT_TYPE_ENV_REVERB},
369 * @param uuid unique identifier of a particular effect implementation.
374 * @param priority the priority level requested by the application for
380 * @param audioSession system wide unique audio session identifier.
469 * @param audioSession system wide unique audio session identifier.
480 * @param type the requested effect type.
509 * @param enabled the requested enable state
528 * @param param the identifier of the parameter to set
529 * @param value the new value for the specified parameter
536 public int setParameter(byte[] param, byte[] value)
539 return native_setParameter(param.length, param, value.length, value);
548 public int setParameter(int param, int value) throws IllegalStateException {
549 byte[] p = intToByteArray(param);
561 public int setParameter(int param, short value)
563 byte[] p = intToByteArray(param);
575 public int setParameter(int param, byte[] value)
577 byte[] p = intToByteArray(param);
588 public int setParameter(int[] param, int[] value)
590 if (param.length > 2 || value.length > 2) {
593 byte[] p = intToByteArray(param[0]);
594 if (param.length > 1) {
595 byte[] p2 = intToByteArray(param[1]);
613 public int setParameter(int[] param, short[] value)
615 if (param.length > 2 || value.length > 2) {
618 byte[] p = intToByteArray(param[0]);
619 if (param.length > 1) {
620 byte[] p2 = intToByteArray(param[1]);
639 public int setParameter(int[] param, byte[] value)
641 if (param.length > 2) {
644 byte[] p = intToByteArray(param[0]);
645 if (param.length > 1) {
646 byte[] p2 = intToByteArray(param[1]);
659 * @param param the identifier of the parameter to set
660 * @param value the new value for the specified parameter
667 public int getParameter(byte[] param, byte[] value)
670 return native_getParameter(param.length, param, value.length, value);
680 public int getParameter(int param, byte[] value)
682 byte[] p = intToByteArray(param);
695 public int getParameter(int param, int[] value)
700 byte[] p = intToByteArray(param);
726 public int getParameter(int param, short[] value)
731 byte[] p = intToByteArray(param);
757 public int getParameter(int[] param, int[] value)
759 if (param.length > 2 || value.length > 2) {
762 byte[] p = intToByteArray(param[0]);
763 if (param.length > 1) {
764 byte[] p2 = intToByteArray(param[1]);
791 public int getParameter(int[] param, short[] value)
793 if (param.length > 2 || value.length > 2) {
796 byte[] p = intToByteArray(param[0]);
797 if (param.length > 1) {
798 byte[] p2 = intToByteArray(param[1]);
824 public int getParameter(int[] param, byte[] value)
826 if (param.length > 2) {
829 byte[] p = intToByteArray(param[0]);
830 if (param.length > 1) {
831 byte[] p2 = intToByteArray(param[1]);
898 * @param listener
913 * @param listener
927 * @param listener
965 * @param effect the effect on which the interface is registered.
966 * @param enabled new effect state.
979 * @param effect the effect on which the interface is registered.
980 * @param controlGranted true if the application has been granted control of the effect
994 * @param effect the effect on which the interface is registered.
995 * @param status status of the set parameter operation.
996 * @param param ID of the modified parameter.
997 * @param value the new parameter value.
999 void onParameterChange(AudioEffect effect, int status, byte[] param,
1178 byte[] param = new byte[psize];
1180 System.arraycopy(p, 12, param, 0, psize);
1184 status, param, value);
1232 private native final int native_setParameter(int psize, byte[] param,
1235 private native final int native_getParameter(int psize, byte[] param,