HomeSort by relevance Sort by last modified time
    Searched refs:subscription (Results 1 - 25 of 66) sorted by null

1 2 3

  /frameworks/base/core/java/android/service/euicc/
GetDownloadableSubscriptionMetadataResult.java 58 public final DownloadableSubscription subscription; field in class:GetDownloadableSubscriptionMetadataResult
66 * @param subscription The subscription with filled-in metadata. Should only be provided if the
70 @Nullable DownloadableSubscription subscription) {
73 this.subscription = subscription;
75 if (subscription != null) {
77 "Error result with non-null subscription: " + result);
79 this.subscription = null;
85 this.subscription = in.readTypedObject(DownloadableSubscription.CREATOR)
    [all...]
IEuiccService.aidl 34 void downloadSubscription(int slotId, in DownloadableSubscription subscription,
37 void getDownloadableSubscriptionMetadata(int slotId, in DownloadableSubscription subscription,
EuiccService.java 190 * Populate {@link DownloadableSubscription} metadata for the given downloadable subscription.
194 * @param subscription A subscription whose metadata needs to be populated.
202 int slotId, DownloadableSubscription subscription, boolean forceDeactivateSim);
219 * Download the given subscription.
223 * @param subscription The subscription to download.
224 * @param switchAfterDownload If true, the subscription should be enabled upon successful
234 DownloadableSubscription subscription, boolean switchAfterDownload,
259 * Delete the given subscription
    [all...]
  /external/wpa_supplicant_8/src/wps/
wps_upnp_i.h 79 struct subscription { struct
82 time_t timeout_time; /* when to age out the subscription */
85 * This uuid identifies the subscription and is randomly generated by
86 * us and given to the subscriber when the subscription is accepted;
152 struct subscription * subscription_start(struct upnp_wps_device_sm *sm,
154 struct subscription * subscription_renew(struct upnp_wps_device_sm *sm,
156 void subscription_destroy(struct subscription *s);
157 struct subscription * subscription_find(struct upnp_wps_device_sm *sm,
180 int event_add(struct subscription *s, const struct wpabuf *data, int probereq);
181 void event_delete_all(struct subscription *s)
    [all...]
wps_upnp_ap.c 21 struct subscription *s = eloop_ctx;
30 struct subscription *s,
77 struct subscription *s)
wps_upnp_event.c 34 #define MAX_FAILURES 10 /* Drop subscription after this many failures */
50 struct subscription *s; /* parent */
51 unsigned subscriber_sequence; /* which event for this subscription*/
86 static struct wps_event_ *event_dequeue(struct subscription *s)
92 "subscription %p", e, s);
100 void event_delete_all(struct subscription *s)
119 struct subscription *s = e->s;
122 wpa_printf(MSG_DEBUG, "WPS UPnP: Retry event %p for subscription %p",
175 struct subscription *s = e->s;
192 wpa_printf(MSG_DEBUG, "WPS UPnP: Deleting subscription %p
    [all...]
wps_upnp.c 295 static void subscr_addr_free_all(struct subscription *s)
306 /* subscr_addr_add_url -- add address(es) for one url to subscription */
307 static void subscr_addr_add_url(struct subscription *s, const char *url,
420 static void subscr_addr_list_create(struct subscription *s,
465 struct subscription *s, *tmp;
520 dl_list_for_each_safe(s, tmp, &sm->subscriptions, struct subscription,
531 * Event subscription (subscriber machines register with us to receive event
536 /* subscription_destroy -- destroy an unlinked subscription
539 void subscription_destroy(struct subscription *s)
542 wpa_printf(MSG_DEBUG, "WPS UPnP: Destroy subscription %p", s)
    [all...]
  /developers/samples/android/tv/ChannelsPrograms/Application/src/main/java/com/example/android/tv/channelsprograms/model/
MockDatabase.java 37 * Returns a subscription to mock content representing tv shows.
40 * @return a subscription with tv show data.
42 public static Subscription getTvShowSubscription(Context context) {
52 * Returns a subscription to mock content representing your videos.
55 * @return a subscription with your video data.
57 public static Subscription getVideoSubscription(Context context) {
67 * Returns a subscription to mock content representing cat videos.
70 * @return a subscription with cat videos.
72 public static Subscription getCatVideosSubscription(Context context) {
81 private static Subscription findOrCreateSubscription
89 Subscription subscription = findSubscriptionByTitle(context, title); local
    [all...]
  /external/wpa_supplicant_8/hs20/server/www/
remediation.php 3 <title>Hotspot 2.0 subscription remediation</title>
11 echo "<a href=\"redirect.php?id=" . $_GET["session_id"] . "\">Complete user subscription remediation</a><br>\n";
  /packages/services/Telephony/src/com/android/phone/
SubscriptionInfoHelper.java 33 * Helper for manipulating intents or components with subscription-related information.
35 * In settings, subscription ids and labels are passed along to indicate that settings
42 // Extra on intent containing the id of a subscription.
45 // Extra on intent containing the label of a subscription.
55 * Instantiates the helper, by extracting the subscription id and label from the intent.
65 * @return Intent containing extras for the subscription id and label if they exist.
81 public static void addExtrasToIntent(Intent intent, SubscriptionInfo subscription) {
82 if (subscription == null) {
86 intent.putExtra(SubscriptionInfoHelper.SUB_ID_EXTRA, subscription.getSubscriptionId());
88 SubscriptionInfoHelper.SUB_LABEL_EXTRA, subscription.getDisplayName().toString())
    [all...]
  /developers/samples/android/tv/ChannelsPrograms/Application/src/main/java/com/example/android/tv/channelsprograms/
MainActivity.java 28 import com.example.android.tv.channelsprograms.model.Subscription;
56 final Subscription tvShowSubscription =
60 final Subscription videoSubscription =
64 final Subscription catVideosSubscription =
71 private void setupButtonState(Button button, final Subscription subscription) {
72 boolean channelExists = subscription.getChannelId() > 0L;
75 view -> new AddChannelTask(getApplicationContext()).execute(subscription));
78 private class AddChannelTask extends AsyncTask<Subscription, Void, Long> {
87 protected Long doInBackground(Subscription... varArgs)
92 Subscription subscription = subscriptions.get(0); local
    [all...]
SyncChannelJobService.java 25 import com.example.android.tv.channelsprograms.model.Subscription;
73 List<Subscription> subscriptions = MockDatabase.getSubscriptions(mContext);
83 for (Subscription subscription : subscriptions) {
84 long channelId = TvUtil.createChannel(mContext, subscription);
85 subscription.setChannelId(channelId);
94 for (Subscription channel : subscriptions) {
AppLinkActivity.java 27 import com.example.android.tv.channelsprograms.model.Subscription;
71 Subscription subscription = local
73 if (subscription == null) {
74 Log.e(TAG, "Invalid subscription " + action.getSubscriptionName());
76 // TODO: Open an activity that has the movies for the subscription.
SyncProgramsJobService.java 33 import com.example.android.tv.channelsprograms.model.Subscription;
230 Subscription subscription = local
232 if (subscription != null) {
  /frameworks/base/telephony/java/com/android/internal/telephony/euicc/
IEuiccController.aidl 28 oneway void getDownloadableSubscriptionMetadata(in DownloadableSubscription subscription,
33 oneway void downloadSubscription(in DownloadableSubscription subscription,
  /developers/samples/android/tv/ChannelsPrograms/Application/src/main/java/com/example/android/tv/channelsprograms/util/
TvUtil.java 41 import com.example.android.tv.channelsprograms.model.Subscription;
56 * Converts a {@link Subscription} into a {@link Channel} and adds it to the tv provider.
59 * @param subscription to be converted to a channel and added to the tv provider.
63 public static long createChannel(Context context, Subscription subscription) {
65 // Checks if our subscription has been added to the channels before.
77 if (subscription.getName().equals(channel.getDisplayName())) {
89 Uri appLinkIntentUri = Uri.parse(subscription.getAppLinkIntentUri());
93 .setDisplayName(subscription.getName())
94 .setDescription(subscription.getDescription()
    [all...]
  /frameworks/base/telephony/java/android/telephony/euicc/
EuiccManager.java 59 * Intent action to provision an embedded subscription.
106 * <p>This code is an implementation detail of the embedded subscription manager and is only
114 * callbacks providing the downloadable subscription metadata.
185 * subscription APIs.
198 * <p>Requires that the calling app has carrier privileges on the active subscription on the
219 * or the calling app must be authorized to manage both the currently-active subscription and
220 * the subscription to be downloaded according to the subscription metadata. Without the former,
224 * @param subscription the subscription to download
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/euicc/
EuiccController.java 161 "Must have carrier privileges on active subscription to read EID");
172 public void getDownloadableSubscriptionMetadata(DownloadableSubscription subscription,
175 subscription, false /* forceDeactivateSim */, callingPackage, callbackIntent);
178 void getDownloadableSubscriptionMetadata(DownloadableSubscription subscription,
187 subscription, forceDeactivateSim,
189 token, subscription, callingPackage, callbackIntent));
203 DownloadableSubscription subscription,
207 mSubscription = subscription;
222 result.subscription);
254 public void downloadSubscription(DownloadableSubscription subscription,
322 DownloadableSubscription subscription = result.subscription; local
    [all...]
EuiccOperation.java 96 DownloadableSubscription subscription, String callingPackage) {
98 subscription, 0 /* subscriptionId */, false /* switchAfterDownload */,
108 DownloadableSubscription subscription, boolean switchAfterDownload,
111 subscription, 0 /* subscriptionId */, switchAfterDownload, callingPackage);
116 * permission to manage the current active subscription, or because we cannot determine the
120 DownloadableSubscription subscription, boolean switchAfterDownload,
123 subscription, 0 /* subscriptionId */, switchAfterDownload, callingPackage);
  /prebuilts/tools/common/m2/repository/de/greenrobot/eventbus/2.4.0/
eventbus-2.4.0.jar 
  /frameworks/support/lifecycle/reactivestreams/src/test/java/android/arch/lifecycle/
LiveDataReactiveStreamsTest.java 33 import org.reactivestreams.Subscription;
217 final AsyncSubject<Subscription> subscriptionSubject = AsyncSubject.create();
222 public void onSubscribe(Subscription s) {
242 // Subscription should have happened synchronously. If it didn't, this will deadlock.
243 final Subscription subscription = subscriptionSubject.blockingSingle(); local
245 subscription.request(1);
251 subscription.request(2);
268 subscription.request(1);
  /hardware/interfaces/automotive/vehicle/2.0/default/common/src/
SubscriptionManager.cpp 92 for (const auto& subscription : mSubscriptions) {
93 ALOGI("%s propId: 0x%x, propId: 0x%x", __func__, subscription.first, subscription.second.propId);
94 props.push_back(subscription.first);
  /frameworks/opt/net/wifi/tests/wifitests/assets/
r1.PerProviderSubscription.conf 59 7:CertURL=43:http://www.r2-testbed.wi-fi.org/subscription-rootcert-networkfx.der
r2.PerProviderSubscription.conf 42 7:CertURL=43:http://www.r2-testbed.wi-fi.org/subscription-rootcert-networkfx.der
ruckus.PerProviderSubscription.conf 42 7:CertURL=43:http://www.r2-testbed.wi-fi.org/subscription-rootcert-networkfx.der

Completed in 583 milliseconds

1 2 3