/frameworks/native/aidl/binder/android/os/ |
PersistableBundle.aidl | 20 parcelable PersistableBundle cpp_header "binder/PersistableBundle.h";
|
/external/wpa_supplicant_8/wpa_supplicant/binder/fi/w1/wpa_supplicant/ |
ISupplicantCallbacks.aidl | 12 import android.os.PersistableBundle;
|
ISupplicant.aidl | 12 import android.os.PersistableBundle; 41 IIface CreateInterface(in PersistableBundle args);
|
/frameworks/base/core/java/android/service/carrier/ |
ICarrierService.aidl | 19 import android.os.PersistableBundle; 31 PersistableBundle getCarrierConfig(in CarrierIdentifier id);
|
CarrierService.java | 21 import android.os.PersistableBundle; 87 * PersistableBundle} may be overridden by the system's default configuration service. 92 * @return a {@link PersistableBundle} object containing the configuration or null if default 95 public abstract PersistableBundle onLoadConfig(CarrierIdentifier id); 139 public PersistableBundle getCarrierConfig(CarrierIdentifier id) {
|
/frameworks/base/telephony/java/com/android/internal/telephony/ |
ICarrierConfigLoader.aidl | 19 import android.os.PersistableBundle; 26 PersistableBundle getConfigForSubId(int subId);
|
/frameworks/base/core/java/android/content/ |
IRestrictionsManager.aidl | 21 import android.os.PersistableBundle; 31 in PersistableBundle requestData); 32 void notifyPermissionResponse(in String packageName, in PersistableBundle response);
|
/frameworks/base/core/java/android/os/ |
PersistableBundle.java | 37 public final class PersistableBundle extends BaseBundle implements Cloneable, Parcelable, 40 public static final PersistableBundle EMPTY; 43 EMPTY = new PersistableBundle(); 53 (value instanceof PersistableBundle) || (value == null) || 58 * Constructs a new, empty PersistableBundle. 60 public PersistableBundle() { 66 * Constructs a new, empty PersistableBundle sized to hold the given number of 67 * elements. The PersistableBundle will grow as needed. 69 * @param capacity the initial capacity of the PersistableBundle 71 public PersistableBundle(int capacity) [all...] |
/frameworks/base/core/java/android/service/trust/ |
ITrustAgentService.aidl | 18 import android.os.PersistableBundle; 30 oneway void onConfigure(in List<PersistableBundle> options, IBinder token);
|
/cts/hostsidetests/devicepolicy/app/DeviceAndProfileOwner/src/com/android/cts/deviceandprofileowner/ |
TrustAgentInfoTest.java | 21 import android.os.PersistableBundle; 29 private static final PersistableBundle CONFIG = new PersistableBundle(); 55 List<PersistableBundle> configs = 79 private static void assertPersistableBundleList(List<PersistableBundle> actual) { 82 PersistableBundle bundle = actual.get(0);
|
/cts/hostsidetests/devicepolicy/app/ManagedProfile/src/com/android/cts/managedprofile/ |
TrustAgentInfoTest.java | 21 import android.os.PersistableBundle; 34 private static final PersistableBundle CHILD_CONFIG = new PersistableBundle(); 35 private static final PersistableBundle PARENT_CONFIG = new PersistableBundle(); 71 List<PersistableBundle> parentConfig = 74 List<PersistableBundle> childConfig = mDevicePolicyManager.getTrustAgentConfiguration( 100 List<PersistableBundle> parentConfig = 103 List<PersistableBundle> childConfig = 115 List<PersistableBundle> configs = getDevicePolicyManager(isParent [all...] |
/packages/services/Telephony/src/com/android/phone/vvm/omtp/ |
TelephonyVvmConfigManager.java | 21 import android.os.PersistableBundle; 49 private static Map<String, PersistableBundle> sCachedConfigs; 51 private final Map<String, PersistableBundle> mConfigs; 66 public PersistableBundle getConfig(String mccMnc) { 73 private static Map<String, PersistableBundle> loadConfigs(XmlPullParser parser) { 74 Map<String, PersistableBundle> configs = new ArrayMap<>(); 78 if (!(object instanceof PersistableBundle)) { 79 throw new IllegalArgumentException("PersistableBundle expected, got " + object); 81 PersistableBundle bundle = (PersistableBundle) object [all...] |
/frameworks/native/include/binder/ |
PersistableBundle.h | 32 * C++ implementation of PersistableBundle, a mapping from String values to 35 class PersistableBundle : public Parcelable { 37 PersistableBundle() = default; 38 virtual ~PersistableBundle() = default; 39 PersistableBundle(const PersistableBundle& bundle) = default; 49 * Setters for PersistableBundle. Adds a a key-value pair instantiated with 63 void putPersistableBundle(const String16& key, const PersistableBundle& value); 66 * Getters for PersistableBundle. If |key| exists, these methods write the 80 bool getPersistableBundle(const String16& key, PersistableBundle* out) const [all...] |
/cts/tests/tests/telephony/src/android/telephony/cts/ |
CarrierServiceTest.java | 20 import android.os.PersistableBundle; 48 public PersistableBundle onLoadConfig(CarrierIdentifier id) { return null; }
|
/frameworks/native/libs/binder/ |
PersistableBundle.cpp | 17 #define LOG_TAG "PersistableBundle" 19 #include <binder/PersistableBundle.h> 88 status_t PersistableBundle::writeToParcel(Parcel* parcel) const { 120 status_t PersistableBundle::readFromParcel(const Parcel* parcel) { 134 bool PersistableBundle::empty() const { 138 size_t PersistableBundle::size() const { 152 size_t PersistableBundle::erase(const String16& key) { 166 void PersistableBundle::putBoolean(const String16& key, bool value) { 171 void PersistableBundle::putInt(const String16& key, int32_t value) { 176 void PersistableBundle::putLong(const String16& key, int64_t value) [all...] |
/cts/tests/tests/text/src/android/text/style/cts/ |
TtsSpanTest.java | 20 import android.os.PersistableBundle; 27 PersistableBundle bundle; 31 bundle = new PersistableBundle(); 41 PersistableBundle args = t.getArgs(); 78 PersistableBundle args = t.getArgs(); 97 PersistableBundle args = t.getArgs(); 113 PersistableBundle args = t.getArgs(); 128 PersistableBundle args = t.getArgs(); 135 PersistableBundle args = t.getArgs(); 148 PersistableBundle args = t.getArgs() [all...] |
/frameworks/base/core/java/android/service/restrictions/ |
RestrictionsReceiver.java | 24 import android.os.PersistableBundle; 36 * {@link RestrictionsManager#notifyPermissionResponse(String, PersistableBundle)}. 65 String packageName, String requestType, String requestId, PersistableBundle request); 80 PersistableBundle request = (PersistableBundle)
|
/system/connectivity/shill/binder/android/system/connectivity/shill/ |
IManager.aidl | 19 import android.os.PersistableBundle; 95 IBinder ConfigureService(in PersistableBundle properties);
|
/packages/apps/CarrierConfig/src/com/android/carrierconfig/ |
DefaultCarrierConfigService.java | 5 import android.os.PersistableBundle; 30 * return the PersistableBundle from that file. Assets are preferred over Resources because resource 54 public PersistableBundle onLoadConfig(CarrierIdentifier id) { 62 PersistableBundle config = null; 78 config = new PersistableBundle(); 84 PersistableBundle vendorConfig = readConfigFromXml(vendorInput, id); 95 * Parses an XML document and returns a PersistableBundle. 99 * by {@link PersistableBundle#restoreFromXml}. All the matching bundles will be flattened and 117 * @return a possibly empty PersistableBundle containing the config values. 119 static PersistableBundle readConfigFromXml(XmlPullParser parser, CarrierIdentifier id [all...] |
/system/tools/aidl/tests/ |
aidl_test_client_parcelables.cpp | 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 [all...] |
/cts/hostsidetests/shortcuts/deviceside/upgrade/src/android/content/pm/cts/shortcut/upgrade/ |
ShortcutManagerPreUpgradeTest.java | 24 import android.os.PersistableBundle; 40 final PersistableBundle b1 = new PersistableBundle(); 49 final PersistableBundle b2 = new PersistableBundle();
|
/packages/apps/ManagedProvisioning/tests/src/com/android/managedprovisioning/ |
TestUtils.java | 21 import android.os.PersistableBundle; 120 public static PersistableBundle createTestAdminExtras() { 121 PersistableBundle adminExtras = new PersistableBundle(); 133 PersistableBundle nestedBundle = new PersistableBundle();
|
/developers/build/prebuilts/gradle/ActiveNotifications/Application/src/main/java/com/example/android/activenotifications/ |
ActiveNotificationsActivity.java | 24 import android.os.PersistableBundle; 44 public void onCreate(Bundle savedInstanceState, PersistableBundle persistentState) {
|
/developers/samples/android/notification/ActiveNotifications/Application/src/main/java/com/example/android/activenotifications/ |
ActiveNotificationsActivity.java | 24 import android.os.PersistableBundle; 44 public void onCreate(Bundle savedInstanceState, PersistableBundle persistentState) {
|
/development/samples/browseable/ActiveNotifications/src/com.example.android.activenotifications/ |
ActiveNotificationsActivity.java | 24 import android.os.PersistableBundle; 44 public void onCreate(Bundle savedInstanceState, PersistableBundle persistentState) {
|