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.
510 * @param enabled the requested enable state
529 * @param param the identifier of the parameter to set
530 * @param value the new value for the specified parameter
537 public int setParameter(byte[] param, byte[] value)
540 return native_setParameter(param.length, param, value.length, value);
549 public int setParameter(int param, int value) throws IllegalStateException {
550 byte[] p = intToByteArray(param);
562 public int setParameter(int param, short value)
564 byte[] p = intToByteArray(param);
576 public int setParameter(int param, byte[] value)
578 byte[] p = intToByteArray(param);
589 public int setParameter(int[] param, int[] value)
591 if (param.length > 2 || value.length > 2) {
594 byte[] p = intToByteArray(param[0]);
595 if (param.length > 1) {
596 byte[] p2 = intToByteArray(param[1]);
614 public int setParameter(int[] param, short[] value)
616 if (param.length > 2 || value.length > 2) {
619 byte[] p = intToByteArray(param[0]);
620 if (param.length > 1) {
621 byte[] p2 = intToByteArray(param[1]);
640 public int setParameter(int[] param, byte[] value)
642 if (param.length > 2) {
645 byte[] p = intToByteArray(param[0]);
646 if (param.length > 1) {
647 byte[] p2 = intToByteArray(param[1]);
660 * @param param the identifier of the parameter to set
661 * @param value the new value for the specified parameter
668 public int getParameter(byte[] param, byte[] value)
671 return native_getParameter(param.length, param, value.length, value);
681 public int getParameter(int param, byte[] value)
683 byte[] p = intToByteArray(param);
696 public int getParameter(int param, int[] value)
701 byte[] p = intToByteArray(param);
727 public int getParameter(int param, short[] value)
732 byte[] p = intToByteArray(param);
758 public int getParameter(int[] param, int[] value)
760 if (param.length > 2 || value.length > 2) {
763 byte[] p = intToByteArray(param[0]);
764 if (param.length > 1) {
765 byte[] p2 = intToByteArray(param[1]);
792 public int getParameter(int[] param, short[] value)
794 if (param.length > 2 || value.length > 2) {
797 byte[] p = intToByteArray(param[0]);
798 if (param.length > 1) {
799 byte[] p2 = intToByteArray(param[1]);
825 public int getParameter(int[] param, byte[] value)
827 if (param.length > 2) {
830 byte[] p = intToByteArray(param[0]);
831 if (param.length > 1) {
832 byte[] p2 = intToByteArray(param[1]);
899 * @param listener
914 * @param listener
928 * @param listener
966 * @param effect the effect on which the interface is registered.
967 * @param enabled new effect state.
980 * @param effect the effect on which the interface is registered.
981 * @param controlGranted true if the application has been granted control of the effect
995 * @param effect the effect on which the interface is registered.
996 * @param status status of the set parameter operation.
997 * @param param ID of the modified parameter.
998 * @param value the new parameter value.
1000 void onParameterChange(AudioEffect effect, int status, byte[] param,
1179 byte[] param = new byte[psize];
1181 System.arraycopy(p, 12, param, 0, psize);
1185 status, param, value);
1234 private native final int native_setParameter(int psize, byte[] param,
1237 private native final int native_getParameter(int psize, byte[] param,