public final class android.location.LocationRequest implements android.os.Parcelable
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: android.location.LocationRequest
  super_class: java.lang.Object
{
  public static final int ACCURACY_FINE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 100

  public static final int ACCURACY_BLOCK;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 102

  public static final int ACCURACY_CITY;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 104

  public static final int POWER_NONE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 200

  public static final int POWER_LOW;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 201

  public static final int POWER_HIGH;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 203

  private static final double FASTEST_INTERVAL_FACTOR;
    descriptor: D
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 6.0

  private int mQuality;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private long mInterval;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  private long mFastestInterval;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  private boolean mExplicitFastestInterval;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private long mExpireAt;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  private int mNumUpdates;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private float mSmallestDisplacement;
    descriptor: F
    flags: (0x0002) ACC_PRIVATE

  private android.os.WorkSource mWorkSource;
    descriptor: Landroid/os/WorkSource;
    flags: (0x0002) ACC_PRIVATE

  private boolean mHideFromAppOps;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private java.lang.String mProvider;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private boolean mLowPowerMode;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  public static final android.os.Parcelable$Creator<android.location.LocationRequest> CREATOR;
    descriptor: Landroid/os/Parcelable$Creator;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    Signature: Landroid/os/Parcelable$Creator<Landroid/location/LocationRequest;>;

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 628
            new android.location.LocationRequest$1
            dup
            invokespecial android.location.LocationRequest$1.<init>:()V
         1: .line 627
            putstatic android.location.LocationRequest.CREATOR:Landroid/os/Parcelable$Creator;
         2: .line 651
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static android.location.LocationRequest create();
    descriptor: ()Landroid/location/LocationRequest;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=0
         0: .line 170
            new android.location.LocationRequest
            dup
            invokespecial android.location.LocationRequest.<init>:()V
            astore 0 /* request */
        start local 0 // android.location.LocationRequest request
         1: .line 171
            aload 0 /* request */
            areturn
        end local 0 // android.location.LocationRequest request
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            1    2     0  request  Landroid/location/LocationRequest;

  public static android.location.LocationRequest createFromDeprecatedProvider(java.lang.String, long, float, boolean);
    descriptor: (Ljava/lang/String;JFZ)Landroid/location/LocationRequest;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=7, args_size=4
        start local 0 // java.lang.String provider
        start local 1 // long minTime
        start local 3 // float minDistance
        start local 4 // boolean singleShot
         0: .line 178
            lload 1 /* minTime */
            lconst_0
            lcmp
            ifge 1
            lconst_0
            lstore 1 /* minTime */
         1: .line 179
      StackMap locals:
      StackMap stack:
            fload 3 /* minDistance */
            fconst_0
            fcmpg
            ifge 2
            fconst_0
            fstore 3 /* minDistance */
         2: .line 182
      StackMap locals:
      StackMap stack:
            ldc "passive"
            aload 0 /* provider */
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 5
         3: .line 183
            sipush 200
            istore 5 /* quality */
        start local 5 // int quality
         4: .line 184
            goto 9
        end local 5 // int quality
      StackMap locals:
      StackMap stack:
         5: ldc "gps"
            aload 0 /* provider */
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 8
         6: .line 185
            bipush 100
            istore 5 /* quality */
        start local 5 // int quality
         7: .line 186
            goto 9
        end local 5 // int quality
         8: .line 187
      StackMap locals:
      StackMap stack:
            sipush 201
            istore 5 /* quality */
        start local 5 // int quality
         9: .line 190
      StackMap locals: int
      StackMap stack:
            new android.location.LocationRequest
            dup
            invokespecial android.location.LocationRequest.<init>:()V
        10: .line 191
            aload 0 /* provider */
            invokevirtual android.location.LocationRequest.setProvider:(Ljava/lang/String;)Landroid/location/LocationRequest;
        11: .line 192
            iload 5 /* quality */
            invokevirtual android.location.LocationRequest.setQuality:(I)Landroid/location/LocationRequest;
        12: .line 193
            lload 1 /* minTime */
            invokevirtual android.location.LocationRequest.setInterval:(J)Landroid/location/LocationRequest;
        13: .line 194
            lload 1 /* minTime */
            invokevirtual android.location.LocationRequest.setFastestInterval:(J)Landroid/location/LocationRequest;
        14: .line 195
            fload 3 /* minDistance */
            invokevirtual android.location.LocationRequest.setSmallestDisplacement:(F)Landroid/location/LocationRequest;
        15: .line 190
            astore 6 /* request */
        start local 6 // android.location.LocationRequest request
        16: .line 196
            iload 4 /* singleShot */
            ifeq 17
            aload 6 /* request */
            iconst_1
            invokevirtual android.location.LocationRequest.setNumUpdates:(I)Landroid/location/LocationRequest;
            pop
        17: .line 197
      StackMap locals: android.location.LocationRequest
      StackMap stack:
            aload 6 /* request */
            areturn
        end local 6 // android.location.LocationRequest request
        end local 5 // int quality
        end local 4 // boolean singleShot
        end local 3 // float minDistance
        end local 1 // long minTime
        end local 0 // java.lang.String provider
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   18     0     provider  Ljava/lang/String;
            0   18     1      minTime  J
            0   18     3  minDistance  F
            0   18     4   singleShot  Z
            4    5     5      quality  I
            7    8     5      quality  I
            9   18     5      quality  I
           16   18     6      request  Landroid/location/LocationRequest;
    RuntimeVisibleAnnotations: 
      android.annotation.SystemApi()
    MethodParameters:
             Name  Flags
      provider     
      minTime      
      minDistance  
      singleShot   

  public static android.location.LocationRequest createFromDeprecatedCriteria(android.location.Criteria, long, float, boolean);
    descriptor: (Landroid/location/Criteria;JFZ)Landroid/location/LocationRequest;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=7, args_size=4
        start local 0 // android.location.Criteria criteria
        start local 1 // long minTime
        start local 3 // float minDistance
        start local 4 // boolean singleShot
         0: .line 204
            lload 1 /* minTime */
            lconst_0
            lcmp
            ifge 1
            lconst_0
            lstore 1 /* minTime */
         1: .line 205
      StackMap locals:
      StackMap stack:
            fload 3 /* minDistance */
            fconst_0
            fcmpg
            ifge 2
            fconst_0
            fstore 3 /* minDistance */
         2: .line 208
      StackMap locals:
      StackMap stack:
            aload 0 /* criteria */
            invokevirtual android.location.Criteria.getAccuracy:()I
            tableswitch { // 1 - 2
                    1: 5
                    2: 3
              default: 7
          }
         3: .line 210
      StackMap locals:
      StackMap stack:
            bipush 102
            istore 5 /* quality */
        start local 5 // int quality
         4: .line 211
            goto 11
        end local 5 // int quality
         5: .line 213
      StackMap locals:
      StackMap stack:
            bipush 100
            istore 5 /* quality */
        start local 5 // int quality
         6: .line 214
            goto 11
        end local 5 // int quality
         7: .line 216
      StackMap locals:
      StackMap stack:
            aload 0 /* criteria */
            invokevirtual android.location.Criteria.getPowerRequirement:()I
            tableswitch { // 3 - 3
                    3: 8
              default: 10
          }
         8: .line 218
      StackMap locals:
      StackMap stack:
            sipush 203
            istore 5 /* quality */
        start local 5 // int quality
         9: .line 219
            goto 11
        end local 5 // int quality
        10: .line 221
      StackMap locals:
      StackMap stack:
            sipush 201
            istore 5 /* quality */
        start local 5 // int quality
        11: .line 226
      StackMap locals: int
      StackMap stack:
            new android.location.LocationRequest
            dup
            invokespecial android.location.LocationRequest.<init>:()V
        12: .line 227
            iload 5 /* quality */
            invokevirtual android.location.LocationRequest.setQuality:(I)Landroid/location/LocationRequest;
        13: .line 228
            lload 1 /* minTime */
            invokevirtual android.location.LocationRequest.setInterval:(J)Landroid/location/LocationRequest;
        14: .line 229
            lload 1 /* minTime */
            invokevirtual android.location.LocationRequest.setFastestInterval:(J)Landroid/location/LocationRequest;
        15: .line 230
            fload 3 /* minDistance */
            invokevirtual android.location.LocationRequest.setSmallestDisplacement:(F)Landroid/location/LocationRequest;
        16: .line 226
            astore 6 /* request */
        start local 6 // android.location.LocationRequest request
        17: .line 231
            iload 4 /* singleShot */
            ifeq 18
            aload 6 /* request */
            iconst_1
            invokevirtual android.location.LocationRequest.setNumUpdates:(I)Landroid/location/LocationRequest;
            pop
        18: .line 232
      StackMap locals: android.location.LocationRequest
      StackMap stack:
            aload 6 /* request */
            areturn
        end local 6 // android.location.LocationRequest request
        end local 5 // int quality
        end local 4 // boolean singleShot
        end local 3 // float minDistance
        end local 1 // long minTime
        end local 0 // android.location.Criteria criteria
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   19     0     criteria  Landroid/location/Criteria;
            0   19     1      minTime  J
            0   19     3  minDistance  F
            0   19     4   singleShot  Z
            4    5     5      quality  I
            6    7     5      quality  I
            9   10     5      quality  I
           11   19     5      quality  I
           17   19     6      request  Landroid/location/LocationRequest;
    RuntimeVisibleAnnotations: 
      android.annotation.SystemApi()
    MethodParameters:
             Name  Flags
      criteria     
      minTime      
      minDistance  
      singleShot   

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // android.location.LocationRequest this
         0: .line 236
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 144
            aload 0 /* this */
            sipush 201
            putfield android.location.LocationRequest.mQuality:I
         2: .line 145
            aload 0 /* this */
            ldc 3600000
            putfield android.location.LocationRequest.mInterval:J
         3: .line 146
            aload 0 /* this */
            aload 0 /* this */
            getfield android.location.LocationRequest.mInterval:J
            l2d
            ldc 6.0
            ddiv
            d2l
            putfield android.location.LocationRequest.mFastestInterval:J
         4: .line 147
            aload 0 /* this */
            iconst_0
            putfield android.location.LocationRequest.mExplicitFastestInterval:Z
         5: .line 148
            aload 0 /* this */
            ldc 9223372036854775807
            putfield android.location.LocationRequest.mExpireAt:J
         6: .line 149
            aload 0 /* this */
            ldc 2147483647
            putfield android.location.LocationRequest.mNumUpdates:I
         7: .line 150
            aload 0 /* this */
            fconst_0
            putfield android.location.LocationRequest.mSmallestDisplacement:F
         8: .line 151
            aload 0 /* this */
            aconst_null
            putfield android.location.LocationRequest.mWorkSource:Landroid/os/WorkSource;
         9: .line 152
            aload 0 /* this */
            iconst_0
            putfield android.location.LocationRequest.mHideFromAppOps:Z
        10: .line 154
            aload 0 /* this */
            ldc "fused"
            putfield android.location.LocationRequest.mProvider:Ljava/lang/String;
        11: .line 158
            aload 0 /* this */
            iconst_0
            putfield android.location.LocationRequest.mLowPowerMode:Z
        12: .line 237
            return
        end local 0 // android.location.LocationRequest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   13     0  this  Landroid/location/LocationRequest;

  public void <init>(android.location.LocationRequest);
    descriptor: (Landroid/location/LocationRequest;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // android.location.LocationRequest this
        start local 1 // android.location.LocationRequest src
         0: .line 240
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 144
            aload 0 /* this */
            sipush 201
            putfield android.location.LocationRequest.mQuality:I
         2: .line 145
            aload 0 /* this */
            ldc 3600000
            putfield android.location.LocationRequest.mInterval:J
         3: .line 146
            aload 0 /* this */
            aload 0 /* this */
            getfield android.location.LocationRequest.mInterval:J
            l2d
            ldc 6.0
            ddiv
            d2l
            putfield android.location.LocationRequest.mFastestInterval:J
         4: .line 147
            aload 0 /* this */
            iconst_0
            putfield android.location.LocationRequest.mExplicitFastestInterval:Z
         5: .line 148
            aload 0 /* this */
            ldc 9223372036854775807
            putfield android.location.LocationRequest.mExpireAt:J
         6: .line 149
            aload 0 /* this */
            ldc 2147483647
            putfield android.location.LocationRequest.mNumUpdates:I
         7: .line 150
            aload 0 /* this */
            fconst_0
            putfield android.location.LocationRequest.mSmallestDisplacement:F
         8: .line 151
            aload 0 /* this */
            aconst_null
            putfield android.location.LocationRequest.mWorkSource:Landroid/os/WorkSource;
         9: .line 152
            aload 0 /* this */
            iconst_0
            putfield android.location.LocationRequest.mHideFromAppOps:Z
        10: .line 154
            aload 0 /* this */
            ldc "fused"
            putfield android.location.LocationRequest.mProvider:Ljava/lang/String;
        11: .line 158
            aload 0 /* this */
            iconst_0
            putfield android.location.LocationRequest.mLowPowerMode:Z
        12: .line 241
            aload 0 /* this */
            aload 1 /* src */
            getfield android.location.LocationRequest.mQuality:I
            putfield android.location.LocationRequest.mQuality:I
        13: .line 242
            aload 0 /* this */
            aload 1 /* src */
            getfield android.location.LocationRequest.mInterval:J
            putfield android.location.LocationRequest.mInterval:J
        14: .line 243
            aload 0 /* this */
            aload 1 /* src */
            getfield android.location.LocationRequest.mFastestInterval:J
            putfield android.location.LocationRequest.mFastestInterval:J
        15: .line 244
            aload 0 /* this */
            aload 1 /* src */
            getfield android.location.LocationRequest.mExplicitFastestInterval:Z
            putfield android.location.LocationRequest.mExplicitFastestInterval:Z
        16: .line 245
            aload 0 /* this */
            aload 1 /* src */
            getfield android.location.LocationRequest.mExpireAt:J
            putfield android.location.LocationRequest.mExpireAt:J
        17: .line 246
            aload 0 /* this */
            aload 1 /* src */
            getfield android.location.LocationRequest.mNumUpdates:I
            putfield android.location.LocationRequest.mNumUpdates:I
        18: .line 247
            aload 0 /* this */
            aload 1 /* src */
            getfield android.location.LocationRequest.mSmallestDisplacement:F
            putfield android.location.LocationRequest.mSmallestDisplacement:F
        19: .line 248
            aload 0 /* this */
            aload 1 /* src */
            getfield android.location.LocationRequest.mProvider:Ljava/lang/String;
            putfield android.location.LocationRequest.mProvider:Ljava/lang/String;
        20: .line 249
            aload 0 /* this */
            aload 1 /* src */
            getfield android.location.LocationRequest.mWorkSource:Landroid/os/WorkSource;
            putfield android.location.LocationRequest.mWorkSource:Landroid/os/WorkSource;
        21: .line 250
            aload 0 /* this */
            aload 1 /* src */
            getfield android.location.LocationRequest.mHideFromAppOps:Z
            putfield android.location.LocationRequest.mHideFromAppOps:Z
        22: .line 251
            aload 0 /* this */
            aload 1 /* src */
            getfield android.location.LocationRequest.mLowPowerMode:Z
            putfield android.location.LocationRequest.mLowPowerMode:Z
        23: .line 252
            return
        end local 1 // android.location.LocationRequest src
        end local 0 // android.location.LocationRequest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   24     0  this  Landroid/location/LocationRequest;
            0   24     1   src  Landroid/location/LocationRequest;
    MethodParameters:
      Name  Flags
      src   

  public android.location.LocationRequest setQuality(int);
    descriptor: (I)Landroid/location/LocationRequest;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.location.LocationRequest this
        start local 1 // int quality
         0: .line 276
            iload 1 /* quality */
            invokestatic android.location.LocationRequest.checkQuality:(I)V
         1: .line 277
            aload 0 /* this */
            iload 1 /* quality */
            putfield android.location.LocationRequest.mQuality:I
         2: .line 278
            aload 0 /* this */
            areturn
        end local 1 // int quality
        end local 0 // android.location.LocationRequest this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Landroid/location/LocationRequest;
            0    3     1  quality  I
    MethodParameters:
         Name  Flags
      quality  

  public int getQuality();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.location.LocationRequest this
         0: .line 287
            aload 0 /* this */
            getfield android.location.LocationRequest.mQuality:I
            ireturn
        end local 0 // android.location.LocationRequest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/location/LocationRequest;

  public android.location.LocationRequest setInterval(long);
    descriptor: (J)Landroid/location/LocationRequest;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // android.location.LocationRequest this
        start local 1 // long millis
         0: .line 319
            lload 1 /* millis */
            invokestatic android.location.LocationRequest.checkInterval:(J)V
         1: .line 320
            aload 0 /* this */
            lload 1 /* millis */
            putfield android.location.LocationRequest.mInterval:J
         2: .line 321
            aload 0 /* this */
            getfield android.location.LocationRequest.mExplicitFastestInterval:Z
            ifne 4
         3: .line 322
            aload 0 /* this */
            aload 0 /* this */
            getfield android.location.LocationRequest.mInterval:J
            l2d
            ldc 6.0
            ddiv
            d2l
            putfield android.location.LocationRequest.mFastestInterval:J
         4: .line 324
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // long millis
        end local 0 // android.location.LocationRequest this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Landroid/location/LocationRequest;
            0    5     1  millis  J
    MethodParameters:
        Name  Flags
      millis  

  public long getInterval();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // android.location.LocationRequest this
         0: .line 333
            aload 0 /* this */
            getfield android.location.LocationRequest.mInterval:J
            lreturn
        end local 0 // android.location.LocationRequest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/location/LocationRequest;

  public android.location.LocationRequest setLowPowerMode(boolean);
    descriptor: (Z)Landroid/location/LocationRequest;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.location.LocationRequest this
        start local 1 // boolean enabled
         0: .line 351
            aload 0 /* this */
            iload 1 /* enabled */
            putfield android.location.LocationRequest.mLowPowerMode:Z
         1: .line 352
            aload 0 /* this */
            areturn
        end local 1 // boolean enabled
        end local 0 // android.location.LocationRequest this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Landroid/location/LocationRequest;
            0    2     1  enabled  Z
    RuntimeVisibleAnnotations: 
      android.annotation.SystemApi()
    MethodParameters:
         Name  Flags
      enabled  

  public boolean isLowPowerMode();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.location.LocationRequest this
         0: .line 362
            aload 0 /* this */
            getfield android.location.LocationRequest.mLowPowerMode:Z
            ireturn
        end local 0 // android.location.LocationRequest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/location/LocationRequest;
    RuntimeVisibleAnnotations: 
      android.annotation.SystemApi()

  public android.location.LocationRequest setFastestInterval(long);
    descriptor: (J)Landroid/location/LocationRequest;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // android.location.LocationRequest this
        start local 1 // long millis
         0: .line 395
            lload 1 /* millis */
            invokestatic android.location.LocationRequest.checkInterval:(J)V
         1: .line 396
            aload 0 /* this */
            iconst_1
            putfield android.location.LocationRequest.mExplicitFastestInterval:Z
         2: .line 397
            aload 0 /* this */
            lload 1 /* millis */
            putfield android.location.LocationRequest.mFastestInterval:J
         3: .line 398
            aload 0 /* this */
            areturn
        end local 1 // long millis
        end local 0 // android.location.LocationRequest this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Landroid/location/LocationRequest;
            0    4     1  millis  J
    MethodParameters:
        Name  Flags
      millis  

  public long getFastestInterval();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // android.location.LocationRequest this
         0: .line 411
            aload 0 /* this */
            getfield android.location.LocationRequest.mFastestInterval:J
            lreturn
        end local 0 // android.location.LocationRequest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/location/LocationRequest;

  public android.location.LocationRequest setExpireIn(long);
    descriptor: (J)Landroid/location/LocationRequest;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=2
        start local 0 // android.location.LocationRequest this
        start local 1 // long millis
         0: .line 431
            invokestatic android.os.SystemClock.elapsedRealtime:()J
            lstore 3 /* elapsedRealtime */
        start local 3 // long elapsedRealtime
         1: .line 434
            lload 1 /* millis */
            ldc 9223372036854775807
            lload 3 /* elapsedRealtime */
            lsub
            lcmp
            ifle 4
         2: .line 435
            aload 0 /* this */
            ldc 9223372036854775807
            putfield android.location.LocationRequest.mExpireAt:J
         3: .line 436
            goto 5
         4: .line 437
      StackMap locals: long
      StackMap stack:
            aload 0 /* this */
            lload 1 /* millis */
            lload 3 /* elapsedRealtime */
            ladd
            putfield android.location.LocationRequest.mExpireAt:J
         5: .line 440
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.location.LocationRequest.mExpireAt:J
            lconst_0
            lcmp
            ifge 6
            aload 0 /* this */
            lconst_0
            putfield android.location.LocationRequest.mExpireAt:J
         6: .line 441
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 3 // long elapsedRealtime
        end local 1 // long millis
        end local 0 // android.location.LocationRequest this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    7     0             this  Landroid/location/LocationRequest;
            0    7     1           millis  J
            1    7     3  elapsedRealtime  J
    MethodParameters:
        Name  Flags
      millis  

  public android.location.LocationRequest setExpireAt(long);
    descriptor: (J)Landroid/location/LocationRequest;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // android.location.LocationRequest this
        start local 1 // long millis
         0: .line 459
            aload 0 /* this */
            lload 1 /* millis */
            putfield android.location.LocationRequest.mExpireAt:J
         1: .line 460
            aload 0 /* this */
            getfield android.location.LocationRequest.mExpireAt:J
            lconst_0
            lcmp
            ifge 2
            aload 0 /* this */
            lconst_0
            putfield android.location.LocationRequest.mExpireAt:J
         2: .line 461
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // long millis
        end local 0 // android.location.LocationRequest this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Landroid/location/LocationRequest;
            0    3     1  millis  J
    MethodParameters:
        Name  Flags
      millis  

  public long getExpireAt();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // android.location.LocationRequest this
         0: .line 473
            aload 0 /* this */
            getfield android.location.LocationRequest.mExpireAt:J
            lreturn
        end local 0 // android.location.LocationRequest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/location/LocationRequest;

  public android.location.LocationRequest setNumUpdates(int);
    descriptor: (I)Landroid/location/LocationRequest;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // android.location.LocationRequest this
        start local 1 // int numUpdates
         0: .line 490
            iload 1 /* numUpdates */
            ifgt 4
         1: .line 491
            new java.lang.IllegalArgumentException
            dup
         2: .line 492
            new java.lang.StringBuilder
            dup
            ldc "invalid numUpdates: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* numUpdates */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         3: .line 491
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 494
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* numUpdates */
            putfield android.location.LocationRequest.mNumUpdates:I
         5: .line 495
            aload 0 /* this */
            areturn
        end local 1 // int numUpdates
        end local 0 // android.location.LocationRequest this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    6     0        this  Landroid/location/LocationRequest;
            0    6     1  numUpdates  I
    MethodParameters:
            Name  Flags
      numUpdates  

  public int getNumUpdates();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.location.LocationRequest this
         0: .line 507
            aload 0 /* this */
            getfield android.location.LocationRequest.mNumUpdates:I
            ireturn
        end local 0 // android.location.LocationRequest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/location/LocationRequest;

  public void decrementNumUpdates();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // android.location.LocationRequest this
         0: .line 512
            aload 0 /* this */
            getfield android.location.LocationRequest.mNumUpdates:I
            ldc 2147483647
            if_icmpeq 2
         1: .line 513
            aload 0 /* this */
            dup
            getfield android.location.LocationRequest.mNumUpdates:I
            iconst_1
            isub
            putfield android.location.LocationRequest.mNumUpdates:I
         2: .line 515
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.location.LocationRequest.mNumUpdates:I
            ifge 4
         3: .line 516
            aload 0 /* this */
            iconst_0
            putfield android.location.LocationRequest.mNumUpdates:I
         4: .line 518
      StackMap locals:
      StackMap stack:
            return
        end local 0 // android.location.LocationRequest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Landroid/location/LocationRequest;

  public android.location.LocationRequest setProvider(java.lang.String);
    descriptor: (Ljava/lang/String;)Landroid/location/LocationRequest;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.location.LocationRequest this
        start local 1 // java.lang.String provider
         0: .line 524
            aload 1 /* provider */
            invokestatic android.location.LocationRequest.checkProvider:(Ljava/lang/String;)V
         1: .line 525
            aload 0 /* this */
            aload 1 /* provider */
            putfield android.location.LocationRequest.mProvider:Ljava/lang/String;
         2: .line 526
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String provider
        end local 0 // android.location.LocationRequest this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Landroid/location/LocationRequest;
            0    3     1  provider  Ljava/lang/String;
    RuntimeVisibleAnnotations: 
      android.annotation.SystemApi()
    MethodParameters:
          Name  Flags
      provider  

  public java.lang.String getProvider();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.location.LocationRequest this
         0: .line 532
            aload 0 /* this */
            getfield android.location.LocationRequest.mProvider:Ljava/lang/String;
            areturn
        end local 0 // android.location.LocationRequest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/location/LocationRequest;
    RuntimeVisibleAnnotations: 
      android.annotation.SystemApi()

  public android.location.LocationRequest setSmallestDisplacement(float);
    descriptor: (F)Landroid/location/LocationRequest;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.location.LocationRequest this
        start local 1 // float meters
         0: .line 538
            fload 1 /* meters */
            invokestatic android.location.LocationRequest.checkDisplacement:(F)V
         1: .line 539
            aload 0 /* this */
            fload 1 /* meters */
            putfield android.location.LocationRequest.mSmallestDisplacement:F
         2: .line 540
            aload 0 /* this */
            areturn
        end local 1 // float meters
        end local 0 // android.location.LocationRequest this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Landroid/location/LocationRequest;
            0    3     1  meters  F
    RuntimeVisibleAnnotations: 
      android.annotation.SystemApi()
    MethodParameters:
        Name  Flags
      meters  

  public float getSmallestDisplacement();
    descriptor: ()F
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.location.LocationRequest this
         0: .line 546
            aload 0 /* this */
            getfield android.location.LocationRequest.mSmallestDisplacement:F
            freturn
        end local 0 // android.location.LocationRequest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/location/LocationRequest;
    RuntimeVisibleAnnotations: 
      android.annotation.SystemApi()

  public void setWorkSource(android.os.WorkSource);
    descriptor: (Landroid/os/WorkSource;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.location.LocationRequest this
        start local 1 // android.os.WorkSource workSource
         0: .line 561
            aload 0 /* this */
            aload 1 /* workSource */
            putfield android.location.LocationRequest.mWorkSource:Landroid/os/WorkSource;
         1: .line 562
            return
        end local 1 // android.os.WorkSource workSource
        end local 0 // android.location.LocationRequest this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Landroid/location/LocationRequest;
            0    2     1  workSource  Landroid/os/WorkSource;
    RuntimeVisibleAnnotations: 
      android.annotation.SystemApi()
    MethodParameters:
            Name  Flags
      workSource  

  public android.os.WorkSource getWorkSource();
    descriptor: ()Landroid/os/WorkSource;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.location.LocationRequest this
         0: .line 567
            aload 0 /* this */
            getfield android.location.LocationRequest.mWorkSource:Landroid/os/WorkSource;
            areturn
        end local 0 // android.location.LocationRequest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/location/LocationRequest;
    RuntimeVisibleAnnotations: 
      android.annotation.SystemApi()

  public void setHideFromAppOps(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.location.LocationRequest this
        start local 1 // boolean hideFromAppOps
         0: .line 586
            aload 0 /* this */
            iload 1 /* hideFromAppOps */
            putfield android.location.LocationRequest.mHideFromAppOps:Z
         1: .line 587
            return
        end local 1 // boolean hideFromAppOps
        end local 0 // android.location.LocationRequest this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    2     0            this  Landroid/location/LocationRequest;
            0    2     1  hideFromAppOps  Z
    RuntimeVisibleAnnotations: 
      android.annotation.SystemApi()
    MethodParameters:
                Name  Flags
      hideFromAppOps  

  public boolean getHideFromAppOps();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.location.LocationRequest this
         0: .line 592
            aload 0 /* this */
            getfield android.location.LocationRequest.mHideFromAppOps:Z
            ireturn
        end local 0 // android.location.LocationRequest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/location/LocationRequest;
    RuntimeVisibleAnnotations: 
      android.annotation.SystemApi()

  private static void checkInterval(long);
    descriptor: (J)V
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // long millis
         0: .line 596
            lload 0 /* millis */
            lconst_0
            lcmp
            ifge 2
         1: .line 597
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "invalid interval: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            lload 0 /* millis */
            invokevirtual java.lang.StringBuilder.append:(J)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 599
      StackMap locals:
      StackMap stack:
            return
        end local 0 // long millis
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0  millis  J
    MethodParameters:
        Name  Flags
      millis  

  private static void checkQuality(int);
    descriptor: (I)V
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // int quality
         0: .line 602
            iload 0 /* quality */
            lookupswitch { // 6
                  100: 1
                  102: 1
                  104: 1
                  200: 1
                  201: 1
                  203: 1
              default: 2
          }
         1: .line 609
      StackMap locals:
      StackMap stack:
            goto 3
         2: .line 611
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "invalid quality: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 0 /* quality */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 613
      StackMap locals:
      StackMap stack:
            return
        end local 0 // int quality
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0  quality  I
    MethodParameters:
         Name  Flags
      quality  

  private static void checkDisplacement(float);
    descriptor: (F)V
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // float meters
         0: .line 616
            fload 0 /* meters */
            fconst_0
            fcmpg
            ifge 2
         1: .line 617
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "invalid displacement: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            fload 0 /* meters */
            invokevirtual java.lang.StringBuilder.append:(F)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 619
      StackMap locals:
      StackMap stack:
            return
        end local 0 // float meters
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0  meters  F
    MethodParameters:
        Name  Flags
      meters  

  private static void checkProvider(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // java.lang.String name
         0: .line 622
            aload 0 /* name */
            ifnonnull 2
         1: .line 623
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "invalid provider: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* name */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 625
      StackMap locals:
      StackMap stack:
            return
        end local 0 // java.lang.String name
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  name  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      name  

  public int describeContents();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.location.LocationRequest this
         0: .line 655
            iconst_0
            ireturn
        end local 0 // android.location.LocationRequest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/location/LocationRequest;

  public void writeToParcel(android.os.Parcel, int);
    descriptor: (Landroid/os/Parcel;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // android.location.LocationRequest this
        start local 1 // android.os.Parcel parcel
        start local 2 // int flags
         0: .line 660
            aload 1 /* parcel */
            aload 0 /* this */
            getfield android.location.LocationRequest.mQuality:I
            invokevirtual android.os.Parcel.writeInt:(I)V
         1: .line 661
            aload 1 /* parcel */
            aload 0 /* this */
            getfield android.location.LocationRequest.mFastestInterval:J
            invokevirtual android.os.Parcel.writeLong:(J)V
         2: .line 662
            aload 1 /* parcel */
            aload 0 /* this */
            getfield android.location.LocationRequest.mInterval:J
            invokevirtual android.os.Parcel.writeLong:(J)V
         3: .line 663
            aload 1 /* parcel */
            aload 0 /* this */
            getfield android.location.LocationRequest.mExpireAt:J
            invokevirtual android.os.Parcel.writeLong:(J)V
         4: .line 664
            aload 1 /* parcel */
            aload 0 /* this */
            getfield android.location.LocationRequest.mNumUpdates:I
            invokevirtual android.os.Parcel.writeInt:(I)V
         5: .line 665
            aload 1 /* parcel */
            aload 0 /* this */
            getfield android.location.LocationRequest.mSmallestDisplacement:F
            invokevirtual android.os.Parcel.writeFloat:(F)V
         6: .line 666
            aload 1 /* parcel */
            aload 0 /* this */
            getfield android.location.LocationRequest.mHideFromAppOps:Z
            ifeq 7
            iconst_1
            goto 8
      StackMap locals:
      StackMap stack: android.os.Parcel
         7: iconst_0
      StackMap locals: android.location.LocationRequest android.os.Parcel int
      StackMap stack: android.os.Parcel int
         8: invokevirtual android.os.Parcel.writeInt:(I)V
         9: .line 667
            aload 1 /* parcel */
            aload 0 /* this */
            getfield android.location.LocationRequest.mLowPowerMode:Z
            ifeq 10
            iconst_1
            goto 11
      StackMap locals:
      StackMap stack: android.os.Parcel
        10: iconst_0
      StackMap locals: android.location.LocationRequest android.os.Parcel int
      StackMap stack: android.os.Parcel int
        11: invokevirtual android.os.Parcel.writeInt:(I)V
        12: .line 668
            aload 1 /* parcel */
            aload 0 /* this */
            getfield android.location.LocationRequest.mProvider:Ljava/lang/String;
            invokevirtual android.os.Parcel.writeString:(Ljava/lang/String;)V
        13: .line 669
            aload 1 /* parcel */
            aload 0 /* this */
            getfield android.location.LocationRequest.mWorkSource:Landroid/os/WorkSource;
            iconst_0
            invokevirtual android.os.Parcel.writeParcelable:(Landroid/os/Parcelable;I)V
        14: .line 670
            return
        end local 2 // int flags
        end local 1 // android.os.Parcel parcel
        end local 0 // android.location.LocationRequest this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   15     0    this  Landroid/location/LocationRequest;
            0   15     1  parcel  Landroid/os/Parcel;
            0   15     2   flags  I
    MethodParameters:
        Name  Flags
      parcel  
      flags   

  public static java.lang.String qualityToString(int);
    descriptor: (I)Ljava/lang/String;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // int quality
         0: .line 674
            iload 0 /* quality */
            lookupswitch { // 6
                  100: 1
                  102: 2
                  104: 3
                  200: 4
                  201: 5
                  203: 6
              default: 7
          }
         1: .line 676
      StackMap locals:
      StackMap stack:
            ldc "ACCURACY_FINE"
            areturn
         2: .line 678
      StackMap locals:
      StackMap stack:
            ldc "ACCURACY_BLOCK"
            areturn
         3: .line 680
      StackMap locals:
      StackMap stack:
            ldc "ACCURACY_CITY"
            areturn
         4: .line 682
      StackMap locals:
      StackMap stack:
            ldc "POWER_NONE"
            areturn
         5: .line 684
      StackMap locals:
      StackMap stack:
            ldc "POWER_LOW"
            areturn
         6: .line 686
      StackMap locals:
      StackMap stack:
            ldc "POWER_HIGH"
            areturn
         7: .line 688
      StackMap locals:
      StackMap stack:
            ldc "???"
            areturn
        end local 0 // int quality
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0  quality  I
    MethodParameters:
         Name  Flags
      quality  

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // android.location.LocationRequest this
         0: .line 694
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 1 /* s */
        start local 1 // java.lang.StringBuilder s
         1: .line 695
            aload 1 /* s */
            ldc "Request["
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield android.location.LocationRequest.mQuality:I
            invokestatic android.location.LocationRequest.qualityToString:(I)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         2: .line 696
            aload 0 /* this */
            getfield android.location.LocationRequest.mProvider:Ljava/lang/String;
            ifnull 3
            aload 1 /* s */
            bipush 32
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield android.location.LocationRequest.mProvider:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         3: .line 697
      StackMap locals: java.lang.StringBuilder
      StackMap stack:
            aload 0 /* this */
            getfield android.location.LocationRequest.mQuality:I
            sipush 200
            if_icmpeq 6
         4: .line 698
            aload 1 /* s */
            ldc " requested="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         5: .line 699
            aload 0 /* this */
            getfield android.location.LocationRequest.mInterval:J
            aload 1 /* s */
            invokestatic android.util.TimeUtils.formatDuration:(JLjava/lang/StringBuilder;)V
         6: .line 701
      StackMap locals:
      StackMap stack:
            aload 1 /* s */
            ldc " fastest="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         7: .line 702
            aload 0 /* this */
            getfield android.location.LocationRequest.mFastestInterval:J
            aload 1 /* s */
            invokestatic android.util.TimeUtils.formatDuration:(JLjava/lang/StringBuilder;)V
         8: .line 703
            aload 0 /* this */
            getfield android.location.LocationRequest.mExpireAt:J
            ldc 9223372036854775807
            lcmp
            ifeq 12
         9: .line 704
            aload 0 /* this */
            getfield android.location.LocationRequest.mExpireAt:J
            invokestatic android.os.SystemClock.elapsedRealtime:()J
            lsub
            lstore 2 /* expireIn */
        start local 2 // long expireIn
        10: .line 705
            aload 1 /* s */
            ldc " expireIn="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        11: .line 706
            lload 2 /* expireIn */
            aload 1 /* s */
            invokestatic android.util.TimeUtils.formatDuration:(JLjava/lang/StringBuilder;)V
        end local 2 // long expireIn
        12: .line 708
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.location.LocationRequest.mNumUpdates:I
            ldc 2147483647
            if_icmpeq 14
        13: .line 709
            aload 1 /* s */
            ldc " num="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield android.location.LocationRequest.mNumUpdates:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            pop
        14: .line 711
      StackMap locals:
      StackMap stack:
            aload 1 /* s */
            ldc " lowPowerMode="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield android.location.LocationRequest.mLowPowerMode:Z
            invokevirtual java.lang.StringBuilder.append:(Z)Ljava/lang/StringBuilder;
            pop
        15: .line 712
            aload 1 /* s */
            bipush 93
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
        16: .line 713
            aload 1 /* s */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 1 // java.lang.StringBuilder s
        end local 0 // android.location.LocationRequest this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   17     0      this  Landroid/location/LocationRequest;
            1   17     1         s  Ljava/lang/StringBuilder;
           10   12     2  expireIn  J
}
SourceFile: "LocationRequest.java"
NestMembers:
  android.location.LocationRequest$1
InnerClasses:
  android.location.LocationRequest$1
  public abstract Creator = android.os.Parcelable$Creator of android.os.Parcelable
    RuntimeVisibleAnnotations: 
      android.annotation.SystemApi()