Home | History | Annotate | Download | only in tests

Lines Matching refs:PersistableBundle

31 using android::os::PersistableBundle;
79 cout << "Confirming passing and returning PersistableBundle objects works."
82 PersistableBundle empty_bundle, returned;
85 cout << "Binder call failed for empty PersistableBundle." << endl;
89 cout << "Failed to repeat empty PersistableBundle." << endl;
93 PersistableBundle non_empty_bundle;
107 PersistableBundle nested_bundle;
118 cout << "Failed to repeat PersistableBundle object." << endl;
122 cout << "Attempting to reverse an array of PersistableBundle objects."
124 PersistableBundle first;
125 PersistableBundle second;
126 PersistableBundle third;
130 const vector<PersistableBundle> original{first, second, third};
132 vector<PersistableBundle> repeated;
133 vector<PersistableBundle> reversed;
141 cout << "Failed to reverse an array of PersistableBundle objects." << endl;