public class android.speech.RecognitionService$Callback
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: android.speech.RecognitionService$Callback
  super_class: java.lang.Object
{
  private final android.speech.IRecognitionListener mListener;
    descriptor: Landroid/speech/IRecognitionListener;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int mCallingUid;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  final android.speech.RecognitionService this$0;
    descriptor: Landroid/speech/RecognitionService;
    flags: (0x1010) ACC_FINAL, ACC_SYNTHETIC

  private void <init>(android.speech.RecognitionService, android.speech.IRecognitionListener, int);
    descriptor: (Landroid/speech/RecognitionService;Landroid/speech/IRecognitionListener;I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // android.speech.RecognitionService$Callback this
        start local 2 // android.speech.IRecognitionListener listener
        start local 3 // int callingUid
         0: .line 236
            aload 0 /* this */
            aload 1
            putfield android.speech.RecognitionService$Callback.this$0:Landroid/speech/RecognitionService;
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 237
            aload 0 /* this */
            aload 2 /* listener */
            putfield android.speech.RecognitionService$Callback.mListener:Landroid/speech/IRecognitionListener;
         2: .line 238
            aload 0 /* this */
            iload 3 /* callingUid */
            putfield android.speech.RecognitionService$Callback.mCallingUid:I
         3: .line 239
            return
        end local 3 // int callingUid
        end local 2 // android.speech.IRecognitionListener listener
        end local 0 // android.speech.RecognitionService$Callback this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Landroid/speech/RecognitionService$Callback;
            0    4     2    listener  Landroid/speech/IRecognitionListener;
            0    4     3  callingUid  I
    MethodParameters:
            Name  Flags
      this$0      final
      listener    
      callingUid  

  public void beginningOfSpeech();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.speech.RecognitionService$Callback this
         0: .line 246
            aload 0 /* this */
            getfield android.speech.RecognitionService$Callback.mListener:Landroid/speech/IRecognitionListener;
            invokeinterface android.speech.IRecognitionListener.onBeginningOfSpeech:()V
         1: .line 247
            return
        end local 0 // android.speech.RecognitionService$Callback this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Landroid/speech/RecognitionService$Callback;
    Exceptions:
      throws android.os.RemoteException

  public void bufferReceived(byte[]);
    descriptor: ([B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.speech.RecognitionService$Callback this
        start local 1 // byte[] buffer
         0: .line 257
            aload 0 /* this */
            getfield android.speech.RecognitionService$Callback.mListener:Landroid/speech/IRecognitionListener;
            aload 1 /* buffer */
            invokeinterface android.speech.IRecognitionListener.onBufferReceived:([B)V
         1: .line 258
            return
        end local 1 // byte[] buffer
        end local 0 // android.speech.RecognitionService$Callback this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Landroid/speech/RecognitionService$Callback;
            0    2     1  buffer  [B
    Exceptions:
      throws android.os.RemoteException
    MethodParameters:
        Name  Flags
      buffer  

  public void endOfSpeech();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.speech.RecognitionService$Callback this
         0: .line 264
            aload 0 /* this */
            getfield android.speech.RecognitionService$Callback.mListener:Landroid/speech/IRecognitionListener;
            invokeinterface android.speech.IRecognitionListener.onEndOfSpeech:()V
         1: .line 265
            return
        end local 0 // android.speech.RecognitionService$Callback this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Landroid/speech/RecognitionService$Callback;
    Exceptions:
      throws android.os.RemoteException

  public void error(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.speech.RecognitionService$Callback this
        start local 1 // int error
         0: .line 273
            aload 0 /* this */
            getfield android.speech.RecognitionService$Callback.this$0:Landroid/speech/RecognitionService;
            getfield android.speech.RecognitionService.mHandler:Landroid/os/Handler;
            iconst_4
            invokestatic android.os.Message.obtain:(Landroid/os/Handler;I)Landroid/os/Message;
            invokevirtual android.os.Message.sendToTarget:()V
         1: .line 274
            aload 0 /* this */
            getfield android.speech.RecognitionService$Callback.mListener:Landroid/speech/IRecognitionListener;
            iload 1 /* error */
            invokeinterface android.speech.IRecognitionListener.onError:(I)V
         2: .line 275
            return
        end local 1 // int error
        end local 0 // android.speech.RecognitionService$Callback this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Landroid/speech/RecognitionService$Callback;
            0    3     1  error  I
    Exceptions:
      throws android.os.RemoteException
    MethodParameters:
       Name  Flags
      error  

  public void partialResults(android.os.Bundle);
    descriptor: (Landroid/os/Bundle;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.speech.RecognitionService$Callback this
        start local 1 // android.os.Bundle partialResults
         0: .line 289
            aload 0 /* this */
            getfield android.speech.RecognitionService$Callback.mListener:Landroid/speech/IRecognitionListener;
            aload 1 /* partialResults */
            invokeinterface android.speech.IRecognitionListener.onPartialResults:(Landroid/os/Bundle;)V
         1: .line 290
            return
        end local 1 // android.os.Bundle partialResults
        end local 0 // android.speech.RecognitionService$Callback this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    2     0            this  Landroid/speech/RecognitionService$Callback;
            0    2     1  partialResults  Landroid/os/Bundle;
    Exceptions:
      throws android.os.RemoteException
    MethodParameters:
                Name  Flags
      partialResults  

  public void readyForSpeech(android.os.Bundle);
    descriptor: (Landroid/os/Bundle;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.speech.RecognitionService$Callback this
        start local 1 // android.os.Bundle params
         0: .line 299
            aload 0 /* this */
            getfield android.speech.RecognitionService$Callback.mListener:Landroid/speech/IRecognitionListener;
            aload 1 /* params */
            invokeinterface android.speech.IRecognitionListener.onReadyForSpeech:(Landroid/os/Bundle;)V
         1: .line 300
            return
        end local 1 // android.os.Bundle params
        end local 0 // android.speech.RecognitionService$Callback this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Landroid/speech/RecognitionService$Callback;
            0    2     1  params  Landroid/os/Bundle;
    Exceptions:
      throws android.os.RemoteException
    MethodParameters:
        Name  Flags
      params  

  public void results(android.os.Bundle);
    descriptor: (Landroid/os/Bundle;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.speech.RecognitionService$Callback this
        start local 1 // android.os.Bundle results
         0: .line 310
            aload 0 /* this */
            getfield android.speech.RecognitionService$Callback.this$0:Landroid/speech/RecognitionService;
            getfield android.speech.RecognitionService.mHandler:Landroid/os/Handler;
            iconst_4
            invokestatic android.os.Message.obtain:(Landroid/os/Handler;I)Landroid/os/Message;
            invokevirtual android.os.Message.sendToTarget:()V
         1: .line 311
            aload 0 /* this */
            getfield android.speech.RecognitionService$Callback.mListener:Landroid/speech/IRecognitionListener;
            aload 1 /* results */
            invokeinterface android.speech.IRecognitionListener.onResults:(Landroid/os/Bundle;)V
         2: .line 312
            return
        end local 1 // android.os.Bundle results
        end local 0 // android.speech.RecognitionService$Callback this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Landroid/speech/RecognitionService$Callback;
            0    3     1  results  Landroid/os/Bundle;
    Exceptions:
      throws android.os.RemoteException
    MethodParameters:
         Name  Flags
      results  

  public void rmsChanged(float);
    descriptor: (F)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.speech.RecognitionService$Callback this
        start local 1 // float rmsdB
         0: .line 321
            aload 0 /* this */
            getfield android.speech.RecognitionService$Callback.mListener:Landroid/speech/IRecognitionListener;
            fload 1 /* rmsdB */
            invokeinterface android.speech.IRecognitionListener.onRmsChanged:(F)V
         1: .line 322
            return
        end local 1 // float rmsdB
        end local 0 // android.speech.RecognitionService$Callback this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Landroid/speech/RecognitionService$Callback;
            0    2     1  rmsdB  F
    Exceptions:
      throws android.os.RemoteException
    MethodParameters:
       Name  Flags
      rmsdB  

  public int getCallingUid();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.speech.RecognitionService$Callback this
         0: .line 329
            aload 0 /* this */
            getfield android.speech.RecognitionService$Callback.mCallingUid:I
            ireturn
        end local 0 // android.speech.RecognitionService$Callback this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/speech/RecognitionService$Callback;
}
SourceFile: "RecognitionService.java"
NestHost: android.speech.RecognitionService
InnerClasses:
  public Callback = android.speech.RecognitionService$Callback of android.speech.RecognitionService