Searched refs:CaptivePortal (Results 1 – 13 of 13) sorted by relevance
32 public class CaptivePortal implements Parcelable { class75 public CaptivePortal(@NonNull IBinder binder) { in CaptivePortal() method in CaptivePortal89 public static final @android.annotation.NonNull Parcelable.Creator<CaptivePortal> CREATOR90 = new Parcelable.Creator<CaptivePortal>() {92 public CaptivePortal createFromParcel(Parcel in) {93 return new CaptivePortal(in.readStrongBinder());97 public CaptivePortal[] newArray(int size) {98 return new CaptivePortal[size];
66 void useCaptivePortal(CaptivePortal o); in useCaptivePortal()71 f.useCaptivePortal(new CaptivePortal(cp.asBinder())); in runCaptivePortalTest()79 assertEquals(result.mCode, CaptivePortal.APP_RETURN_DISMISSED); in testReportCaptivePortalDismissed()85 assertEquals(result.mCode, CaptivePortal.APP_RETURN_UNWANTED); in testIgnoreNetwork()91 assertEquals(result.mCode, CaptivePortal.APP_RETURN_WANTED_AS_IS); in testUseNetwork()98 assertEquals(result.mCode, CaptivePortal.APP_REQUEST_REEVALUATION_REQUIRED); in testReevaluateNetwork()
23 import android.net.CaptivePortal104 val captivePortal: CaptivePortal? = signInIntent.getParcelableExtra(EXTRA_CAPTIVE_PORTAL) in testCaptivePortalApp_Reevaluate_Nopermission()
35 import android.net.CaptivePortal;141 protected CaptivePortal mCaptivePortal;
70 import android.net.CaptivePortal;233 public static class MockCaptivePortal extends CaptivePortal {
48 // The CaptivePortal API info
1 Landroid/net/CaptivePortal;-><init>(Landroid/os/IBinder;)V2 Landroid/net/CaptivePortal;->APP_RETURN_DISMISSED:I3 Landroid/net/CaptivePortal;->APP_RETURN_UNWANTED:I4 Landroid/net/CaptivePortal;->APP_RETURN_WANTED_AS_IS:I5 Landroid/net/CaptivePortal;->mBinder:Landroid/os/IBinder;6 Landroid/net/CaptivePortal;->useNetwork()V
20 import static android.net.CaptivePortal.APP_RETURN_DISMISSED;21 import static android.net.CaptivePortal.APP_RETURN_UNWANTED;22 import static android.net.CaptivePortal.APP_RETURN_WANTED_AS_IS;
4 public class CaptivePortal implements android.os.Parcelable {9 …field @NonNull public static final android.os.Parcelable.Creator<android.net.CaptivePortal> CREATO…
4 public class CaptivePortal implements android.os.Parcelable {
20 import static android.net.CaptivePortal.APP_RETURN_DISMISSED;21 import static android.net.CaptivePortal.APP_RETURN_WANTED_AS_IS;
167 import android.net.CaptivePortal;6254 new CaptivePortal(new CaptivePortalImpl(network).asBinder()));6274 if (response == CaptivePortal.APP_RETURN_WANTED_AS_IS) {6276 } else if (response == CaptivePortal.APP_RETURN_UNWANTED) {6292 if (request == CaptivePortal.APP_REQUEST_REEVALUATION_REQUIRED) {
278 import android.net.CaptivePortal;4897 final CaptivePortal captivePortal = signInIntent4905 .notifyCaptivePortalAppFinished(CaptivePortal.APP_RETURN_UNWANTED);