OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:intentStore
(Results
1 - 2
of
2
) sorted by null
/packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/
FinalizationActivity.java
155
IntentStore
intentStore
= getIntentStore(this);
156
Intent intent =
intentStore
.load();
161
intentStore
.clear();
171
private static
IntentStore
getIntentStore(Context context) {
172
return new
IntentStore
(context, INTENT_STORE_NAME);
/packages/apps/ManagedProvisioning/tests/src/com/android/managedprovisioning/
IntentStoreTest.java
90
IntentStore
intentStore
= createIntentStore();
91
intentStore
.save(firstIntent);
92
Intent newIntent =
intentStore
.load();
106
IntentStore
loadingIntentStore = createIntentStore();
110
private
IntentStore
createIntentStore() {
111
return new
IntentStore
(getContext(), SAMPLE_INTENT_STORE_NAME);
Completed in 192 milliseconds