public final class android.database.sqlite.SqliteWrapper
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: android.database.sqlite.SqliteWrapper
  super_class: java.lang.Object
{
  private static final java.lang.String TAG;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: "SqliteWrapper"

  private static final java.lang.String SQLITE_EXCEPTION_DETAIL_MESSAGE;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: "unable to open database file"

  private void <init>();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.database.sqlite.SqliteWrapper this
         0: .line 38
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 40
            return
        end local 0 // android.database.sqlite.SqliteWrapper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Landroid/database/sqlite/SqliteWrapper;

  private static boolean isLowMemory(android.database.sqlite.SQLiteException);
    descriptor: (Landroid/database/sqlite/SQLiteException;)Z
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // android.database.sqlite.SQLiteException e
         0: .line 44
            aload 0 /* e */
            invokevirtual android.database.sqlite.SQLiteException.getMessage:()Ljava/lang/String;
            ldc "unable to open database file"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ireturn
        end local 0 // android.database.sqlite.SQLiteException e
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0     e  Landroid/database/sqlite/SQLiteException;
    MethodParameters:
      Name  Flags
      e     

  public static void checkSQLiteException(android.content.Context, android.database.sqlite.SQLiteException);
    descriptor: (Landroid/content/Context;Landroid/database/sqlite/SQLiteException;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
         0: .line 49
            new java.lang.Error
            dup
            ldc "Unresolved compilation problem: \n\tcom.android.internal.R.string cannot be resolved to a variable\n"
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;)V
            athrow
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    MethodParameters:
         Name  Flags
      context  
      e        

  public static android.database.Cursor query(android.content.Context, android.content.ContentResolver, android.net.Uri, java.lang.String[], java.lang.String, java.lang.String[], java.lang.String);
    descriptor: (Landroid/content/Context;Landroid/content/ContentResolver;Landroid/net/Uri;[Ljava/lang/String;Ljava/lang/String;[Ljava/lang/String;Ljava/lang/String;)Landroid/database/Cursor;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=6, locals=8, args_size=7
        start local 0 // android.content.Context context
        start local 1 // android.content.ContentResolver resolver
        start local 2 // android.net.Uri uri
        start local 3 // java.lang.String[] projection
        start local 4 // java.lang.String selection
        start local 5 // java.lang.String[] selectionArgs
        start local 6 // java.lang.String sortOrder
         0: .line 59
            aload 1 /* resolver */
            aload 2 /* uri */
            aload 3 /* projection */
            aload 4 /* selection */
            aload 5 /* selectionArgs */
            aload 6 /* sortOrder */
            invokevirtual android.content.ContentResolver.query:(Landroid/net/Uri;[Ljava/lang/String;Ljava/lang/String;[Ljava/lang/String;Ljava/lang/String;)Landroid/database/Cursor;
         1: areturn
         2: .line 60
      StackMap locals:
      StackMap stack: android.database.sqlite.SQLiteException
            astore 7 /* e */
        start local 7 // android.database.sqlite.SQLiteException e
         3: .line 61
            ldc "SqliteWrapper"
            ldc "Catch a SQLiteException when query: "
            aload 7 /* e */
            invokestatic android.util.Log.e:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)I
            pop
         4: .line 62
            aload 0 /* context */
            aload 7 /* e */
            invokestatic android.database.sqlite.SqliteWrapper.checkSQLiteException:(Landroid/content/Context;Landroid/database/sqlite/SQLiteException;)V
         5: .line 63
            aconst_null
            areturn
        end local 7 // android.database.sqlite.SQLiteException e
        end local 6 // java.lang.String sortOrder
        end local 5 // java.lang.String[] selectionArgs
        end local 4 // java.lang.String selection
        end local 3 // java.lang.String[] projection
        end local 2 // android.net.Uri uri
        end local 1 // android.content.ContentResolver resolver
        end local 0 // android.content.Context context
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    6     0        context  Landroid/content/Context;
            0    6     1       resolver  Landroid/content/ContentResolver;
            0    6     2            uri  Landroid/net/Uri;
            0    6     3     projection  [Ljava/lang/String;
            0    6     4      selection  Ljava/lang/String;
            0    6     5  selectionArgs  [Ljava/lang/String;
            0    6     6      sortOrder  Ljava/lang/String;
            3    6     7              e  Landroid/database/sqlite/SQLiteException;
      Exception table:
        from    to  target  type
           0     1       2  Class android.database.sqlite.SQLiteException
    MethodParameters:
               Name  Flags
      context        
      resolver       
      uri            
      projection     
      selection      
      selectionArgs  
      sortOrder      

  public static boolean requery(android.content.Context, android.database.Cursor);
    descriptor: (Landroid/content/Context;Landroid/database/Cursor;)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // android.content.Context context
        start local 1 // android.database.Cursor cursor
         0: .line 69
            aload 1 /* cursor */
            invokeinterface android.database.Cursor.requery:()Z
         1: ireturn
         2: .line 70
      StackMap locals:
      StackMap stack: android.database.sqlite.SQLiteException
            astore 2 /* e */
        start local 2 // android.database.sqlite.SQLiteException e
         3: .line 71
            ldc "SqliteWrapper"
            ldc "Catch a SQLiteException when requery: "
            aload 2 /* e */
            invokestatic android.util.Log.e:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)I
            pop
         4: .line 72
            aload 0 /* context */
            aload 2 /* e */
            invokestatic android.database.sqlite.SqliteWrapper.checkSQLiteException:(Landroid/content/Context;Landroid/database/sqlite/SQLiteException;)V
         5: .line 73
            iconst_0
            ireturn
        end local 2 // android.database.sqlite.SQLiteException e
        end local 1 // android.database.Cursor cursor
        end local 0 // android.content.Context context
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0  context  Landroid/content/Context;
            0    6     1   cursor  Landroid/database/Cursor;
            3    6     2        e  Landroid/database/sqlite/SQLiteException;
      Exception table:
        from    to  target  type
           0     1       2  Class android.database.sqlite.SQLiteException
    MethodParameters:
         Name  Flags
      context  
      cursor   

  public static int update(android.content.Context, android.content.ContentResolver, android.net.Uri, android.content.ContentValues, java.lang.String, java.lang.String[]);
    descriptor: (Landroid/content/Context;Landroid/content/ContentResolver;Landroid/net/Uri;Landroid/content/ContentValues;Ljava/lang/String;[Ljava/lang/String;)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=7, args_size=6
        start local 0 // android.content.Context context
        start local 1 // android.content.ContentResolver resolver
        start local 2 // android.net.Uri uri
        start local 3 // android.content.ContentValues values
        start local 4 // java.lang.String where
        start local 5 // java.lang.String[] selectionArgs
         0: .line 79
            aload 1 /* resolver */
            aload 2 /* uri */
            aload 3 /* values */
            aload 4 /* where */
            aload 5 /* selectionArgs */
            invokevirtual android.content.ContentResolver.update:(Landroid/net/Uri;Landroid/content/ContentValues;Ljava/lang/String;[Ljava/lang/String;)I
         1: ireturn
         2: .line 80
      StackMap locals:
      StackMap stack: android.database.sqlite.SQLiteException
            astore 6 /* e */
        start local 6 // android.database.sqlite.SQLiteException e
         3: .line 81
            ldc "SqliteWrapper"
            ldc "Catch a SQLiteException when update: "
            aload 6 /* e */
            invokestatic android.util.Log.e:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)I
            pop
         4: .line 82
            aload 0 /* context */
            aload 6 /* e */
            invokestatic android.database.sqlite.SqliteWrapper.checkSQLiteException:(Landroid/content/Context;Landroid/database/sqlite/SQLiteException;)V
         5: .line 83
            iconst_m1
            ireturn
        end local 6 // android.database.sqlite.SQLiteException e
        end local 5 // java.lang.String[] selectionArgs
        end local 4 // java.lang.String where
        end local 3 // android.content.ContentValues values
        end local 2 // android.net.Uri uri
        end local 1 // android.content.ContentResolver resolver
        end local 0 // android.content.Context context
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    6     0        context  Landroid/content/Context;
            0    6     1       resolver  Landroid/content/ContentResolver;
            0    6     2            uri  Landroid/net/Uri;
            0    6     3         values  Landroid/content/ContentValues;
            0    6     4          where  Ljava/lang/String;
            0    6     5  selectionArgs  [Ljava/lang/String;
            3    6     6              e  Landroid/database/sqlite/SQLiteException;
      Exception table:
        from    to  target  type
           0     1       2  Class android.database.sqlite.SQLiteException
    MethodParameters:
               Name  Flags
      context        
      resolver       
      uri            
      values         
      where          
      selectionArgs  

  public static int delete(android.content.Context, android.content.ContentResolver, android.net.Uri, java.lang.String, java.lang.String[]);
    descriptor: (Landroid/content/Context;Landroid/content/ContentResolver;Landroid/net/Uri;Ljava/lang/String;[Ljava/lang/String;)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=6, args_size=5
        start local 0 // android.content.Context context
        start local 1 // android.content.ContentResolver resolver
        start local 2 // android.net.Uri uri
        start local 3 // java.lang.String where
        start local 4 // java.lang.String[] selectionArgs
         0: .line 90
            aload 1 /* resolver */
            aload 2 /* uri */
            aload 3 /* where */
            aload 4 /* selectionArgs */
            invokevirtual android.content.ContentResolver.delete:(Landroid/net/Uri;Ljava/lang/String;[Ljava/lang/String;)I
         1: ireturn
         2: .line 91
      StackMap locals:
      StackMap stack: android.database.sqlite.SQLiteException
            astore 5 /* e */
        start local 5 // android.database.sqlite.SQLiteException e
         3: .line 92
            ldc "SqliteWrapper"
            ldc "Catch a SQLiteException when delete: "
            aload 5 /* e */
            invokestatic android.util.Log.e:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)I
            pop
         4: .line 93
            aload 0 /* context */
            aload 5 /* e */
            invokestatic android.database.sqlite.SqliteWrapper.checkSQLiteException:(Landroid/content/Context;Landroid/database/sqlite/SQLiteException;)V
         5: .line 94
            iconst_m1
            ireturn
        end local 5 // android.database.sqlite.SQLiteException e
        end local 4 // java.lang.String[] selectionArgs
        end local 3 // java.lang.String where
        end local 2 // android.net.Uri uri
        end local 1 // android.content.ContentResolver resolver
        end local 0 // android.content.Context context
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    6     0        context  Landroid/content/Context;
            0    6     1       resolver  Landroid/content/ContentResolver;
            0    6     2            uri  Landroid/net/Uri;
            0    6     3          where  Ljava/lang/String;
            0    6     4  selectionArgs  [Ljava/lang/String;
            3    6     5              e  Landroid/database/sqlite/SQLiteException;
      Exception table:
        from    to  target  type
           0     1       2  Class android.database.sqlite.SQLiteException
    MethodParameters:
               Name  Flags
      context        
      resolver       
      uri            
      where          
      selectionArgs  

  public static android.net.Uri insert(android.content.Context, android.content.ContentResolver, android.net.Uri, android.content.ContentValues);
    descriptor: (Landroid/content/Context;Landroid/content/ContentResolver;Landroid/net/Uri;Landroid/content/ContentValues;)Landroid/net/Uri;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=5, args_size=4
        start local 0 // android.content.Context context
        start local 1 // android.content.ContentResolver resolver
        start local 2 // android.net.Uri uri
        start local 3 // android.content.ContentValues values
         0: .line 101
            aload 1 /* resolver */
            aload 2 /* uri */
            aload 3 /* values */
            invokevirtual android.content.ContentResolver.insert:(Landroid/net/Uri;Landroid/content/ContentValues;)Landroid/net/Uri;
         1: areturn
         2: .line 102
      StackMap locals:
      StackMap stack: android.database.sqlite.SQLiteException
            astore 4 /* e */
        start local 4 // android.database.sqlite.SQLiteException e
         3: .line 103
            ldc "SqliteWrapper"
            ldc "Catch a SQLiteException when insert: "
            aload 4 /* e */
            invokestatic android.util.Log.e:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)I
            pop
         4: .line 104
            aload 0 /* context */
            aload 4 /* e */
            invokestatic android.database.sqlite.SqliteWrapper.checkSQLiteException:(Landroid/content/Context;Landroid/database/sqlite/SQLiteException;)V
         5: .line 105
            aconst_null
            areturn
        end local 4 // android.database.sqlite.SQLiteException e
        end local 3 // android.content.ContentValues values
        end local 2 // android.net.Uri uri
        end local 1 // android.content.ContentResolver resolver
        end local 0 // android.content.Context context
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0   context  Landroid/content/Context;
            0    6     1  resolver  Landroid/content/ContentResolver;
            0    6     2       uri  Landroid/net/Uri;
            0    6     3    values  Landroid/content/ContentValues;
            3    6     4         e  Landroid/database/sqlite/SQLiteException;
      Exception table:
        from    to  target  type
           0     1       2  Class android.database.sqlite.SQLiteException
    MethodParameters:
          Name  Flags
      context   
      resolver  
      uri       
      values    
}
SourceFile: "SqliteWrapper.java"