Home | History | Annotate | Download | only in voice

Lines Matching defs:Caller

98                     new Caller(callingPackage, Binder.getCallingUid()), request,
108 new Caller(callingPackage, Binder.getCallingUid()), request,
118 new Caller(callingPackage, Binder.getCallingUid()), request,
128 new Caller(callingPackage, Binder.getCallingUid()), request,
136 0, new Caller(callingPackage, Binder.getCallingUid()), commands);
262 public static class Caller {
266 Caller(String _packageName, int _uid) {
293 onConfirm((Caller)args.arg1, (Request)args.arg2, (CharSequence)args.arg3,
300 onCompleteVoice((Caller) args.arg1, (Request) args.arg2,
307 onAbortVoice((Caller) args.arg1, (Request) args.arg2, (CharSequence) args.arg3,
314 onCommand((Caller) args.arg1, (Request) args.arg2, (String) args.arg3,
320 args.arg1 = onGetSupportedCommands((Caller) args.arg1, (String[]) args.arg2);
755 * @param caller Who is making the request.
762 public boolean[] onGetSupportedCommands(Caller caller, String[] commands) {
773 * @param caller Who is making the request.
780 public abstract void onConfirm(Caller caller, Request request, CharSequence prompt,
792 * @param caller Who is making the request.
801 public void onCompleteVoice(Caller caller, Request request, CharSequence message,
815 * @param caller Who is making the request.
822 public void onAbortVoice(Caller caller, Request request, CharSequence message, Bundle extras) {
829 * Process an arbitrary extended command from the caller,
833 * @param caller Who is making the request.
840 public abstract void onCommand(Caller caller, Request request, String command, Bundle extras);