Lines Matching refs:param

222          * @param type          UUID identifying the effect type. May be one of:
228 * @param uuid UUID for this particular implementation
229 * @param connectMode {@link #EFFECT_INSERT} or {@link #EFFECT_AUXILIARY}
230 * @param name human readable effect name
231 * @param implementor human readable effect implementor name
361 * @param type type of effect engine created. See {@link #EFFECT_TYPE_ENV_REVERB},
370 * @param uuid unique identifier of a particular effect implementation.
375 * @param priority the priority level requested by the application for
381 * @param audioSession system wide unique audio session identifier.
470 * @param audioSession system wide unique audio session identifier.
481 * @param type the requested effect type.
506 * @param enabled the requested enable state
525 * @param param the identifier of the parameter to set
526 * @param value the new value for the specified parameter
533 public int setParameter(byte[] param, byte[] value)
536 return native_setParameter(param.length, param, value.length, value);
545 public int setParameter(int param, int value) throws IllegalStateException {
546 byte[] p = intToByteArray(param);
558 public int setParameter(int param, short value)
560 byte[] p = intToByteArray(param);
572 public int setParameter(int param, byte[] value)
574 byte[] p = intToByteArray(param);
585 public int setParameter(int[] param, int[] value)
587 if (param.length > 2 || value.length > 2) {
590 byte[] p = intToByteArray(param[0]);
591 if (param.length > 1) {
592 byte[] p2 = intToByteArray(param[1]);
610 public int setParameter(int[] param, short[] value)
612 if (param.length > 2 || value.length > 2) {
615 byte[] p = intToByteArray(param[0]);
616 if (param.length > 1) {
617 byte[] p2 = intToByteArray(param[1]);
636 public int setParameter(int[] param, byte[] value)
638 if (param.length > 2) {
641 byte[] p = intToByteArray(param[0]);
642 if (param.length > 1) {
643 byte[] p2 = intToByteArray(param[1]);
656 * @param param the identifier of the parameter to set
657 * @param value the new value for the specified parameter
664 public int getParameter(byte[] param, byte[] value)
667 return native_getParameter(param.length, param, value.length, value);
677 public int getParameter(int param, byte[] value)
679 byte[] p = intToByteArray(param);
692 public int getParameter(int param, int[] value)
697 byte[] p = intToByteArray(param);
723 public int getParameter(int param, short[] value)
728 byte[] p = intToByteArray(param);
754 public int getParameter(int[] param, int[] value)
756 if (param.length > 2 || value.length > 2) {
759 byte[] p = intToByteArray(param[0]);
760 if (param.length > 1) {
761 byte[] p2 = intToByteArray(param[1]);
788 public int getParameter(int[] param, short[] value)
790 if (param.length > 2 || value.length > 2) {
793 byte[] p = intToByteArray(param[0]);
794 if (param.length > 1) {
795 byte[] p2 = intToByteArray(param[1]);
821 public int getParameter(int[] param, byte[] value)
823 if (param.length > 2) {
826 byte[] p = intToByteArray(param[0]);
827 if (param.length > 1) {
828 byte[] p2 = intToByteArray(param[1]);
895 * @param listener
910 * @param listener
924 * @param listener
962 * @param effect the effect on which the interface is registered.
963 * @param enabled new effect state.
976 * @param effect the effect on which the interface is registered.
977 * @param controlGranted true if the application has been granted control of the effect
991 * @param effect the effect on which the interface is registered.
992 * @param status status of the set parameter operation.
993 * @param param ID of the modified parameter.
994 * @param value the new parameter value.
996 void onParameterChange(AudioEffect effect, int status, byte[] param,
1175 byte[] param = new byte[psize];
1177 System.arraycopy(p, 12, param, 0, psize);
1181 status, param, value);
1229 private native final int native_setParameter(int psize, byte[] param,
1232 private native final int native_getParameter(int psize, byte[] param,