Searched defs:bundle (Results 1 - 25 of 88) sorted by relevance

1234

/frameworks/base/telephony/java/android/telephony/
H A DCellLocation.java55 * @param bundle Bundle from intent notifier
60 public static CellLocation newFromBundle(Bundle bundle) { argument
65 return new CdmaCellLocation(bundle);
67 return new GsmCellLocation(bundle);
76 public abstract void fillInNotifierBundle(Bundle bundle); argument
/frameworks/support/compat/java/android/support/v4/app/
H A DBundleCompat.java34 * @param bundle The bundle to get the {@link IBinder}.
38 public static IBinder getBinder(Bundle bundle, String key) { argument
40 return BundleCompatJellybeanMR2.getBinder(bundle, key);
42 return BundleCompatGingerbread.getBinder(bundle, key);
49 * @param bundle The bundle to insert the {@link IBinder}.
53 public static void putBinder(Bundle bundle, String key, IBinder binder) { argument
55 BundleCompatJellybeanMR2.putBinder(bundle, key, binder);
57 BundleCompatGingerbread.putBinder(bundle, ke
[all...]
/frameworks/support/compat/jellybean/android/support/v4/app/
H A DBundleUtil.java10 * Get an array of Bundle objects from a parcelable array field in a bundle.
11 * Update the bundle to have a typed array so fetches in the future don't need
14 public static Bundle[] getBundleArrayFromBundle(Bundle bundle, String key) { argument
15 Parcelable[] array = bundle.getParcelableArray(key);
21 bundle.putParcelableArray(key, typedArray);
/frameworks/support/compat/jellybean-mr2/android/support/v4/app/
H A DBundleCompatJellybeanMR2.java23 public static IBinder getBinder(Bundle bundle, String key) { argument
24 return bundle.getBinder(key);
27 public static void putBinder(Bundle bundle, String key, IBinder binder) { argument
28 bundle.putBinder(key, binder);
/frameworks/support/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/widget/
H A DSwipeRefreshLayoutActivityList.java31 public void onCreate(Bundle bundle) { argument
32 super.onCreate(bundle);
H A DBaseSwipeRefreshLayoutActivity.java91 public void onCreate(Bundle bundle) { argument
92 super.onCreate(bundle);
/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/widget/
H A DSwipeRefreshLayoutActivityList.java31 public void onCreate(Bundle bundle) { argument
32 super.onCreate(bundle);
H A DBaseSwipeRefreshLayoutActivity.java91 public void onCreate(Bundle bundle) { argument
92 super.onCreate(bundle);
/frameworks/base/core/java/android/os/
H A DSynchronousResultReceiver.java37 @Nullable public Bundle bundle; field in class:SynchronousResultReceiver.Result
39 public Result(int resultCode, @Nullable Bundle bundle) { argument
41 this.bundle = bundle;
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/
H A DUserManagerServiceTest.java57 Bundle bundle = createBundle();
58 UserManagerService.writeApplicationRestrictionsLP(bundle, atomicFile);
62 bundle = UserManagerService.readApplicationRestrictionsLP(atomicFile);
63 System.out.println("readApplicationRestrictionsLocked bundle: " + bundle);
64 assertBundle(bundle);
87 Bundle bundle = new Bundle();
88 bundle.putString("bundle_string", "bundle_string");
89 bundle.putInt("bundle_int", 1);
90 result.putBundle("bundle", bundl
102 assertBundle(Bundle bundle) argument
[all...]
/frameworks/base/tools/aapt/
H A DMain.cpp234 int handleCommand(Bundle* bundle) argument
237 // bundle->getCommand(), bundle->getVerbose(), bundle->getForce());
238 //for (int i = 0; i < bundle->getFileSpecCount(); i++)
239 // printf(" %d: '%s'\n", i, bundle->getFileSpecEntry(i));
241 switch (bundle->getCommand()) {
242 case kCommandVersion: return doVersion(bundle);
243 case kCommandList: return doList(bundle);
244 case kCommandDump: return doDump(bundle);
263 Bundle bundle; local
[all...]
H A DCacheUpdater.h53 // Constructor to set bundle to pass to preProcessImage
55 : bundle(b) { };
106 preProcessImageToCache(bundle, source, dest);
109 Bundle* bundle; member in class:SystemCacheUpdater
/frameworks/support/compat/gingerbread/android/support/v4/app/
H A DBundleCompatGingerbread.java35 public static IBinder getBinder(Bundle bundle, String key) { argument
48 return (IBinder) sGetIBinderMethod.invoke(bundle, key);
58 public static void putBinder(Bundle bundle, String key, IBinder binder) { argument
72 sPutIBinderMethod.invoke(bundle, key, binder);
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
H A DHalMockUtils.java87 Bundle bundle = new Bundle();
98 bundle.putInt(key, field.optInt(VALUE_KEY));
105 bundle.putByteArray(key, bArray);
111 if (DBG) Log.d(TAG, "convertJsonToBundle: returning bundle=" + bundle);
112 return bundle;
115 public static JSONObject convertBundleToJson(Bundle bundle) throws JSONException { argument
116 if (VDBG) Log.v(TAG, "convertBundleToJson: bundle=" + bundle.toString());
119 for (String key : bundle
[all...]
/frameworks/base/core/java/android/view/textservice/
H A DTextServicesManager.java118 public SpellCheckerSession newSpellCheckerSession(Bundle bundle, Locale locale, argument
177 session.getSpellCheckerSessionListener(), bundle);
/frameworks/base/packages/ExtServices/src/android/ext/services/notification/
H A DRanker.java187 private void adjustNotificationBundling(String packageName, List<String> keys, boolean bundle, argument
191 adjustments.add(createBundlingAdjustment(packageName, key, bundle, user));
201 private Adjustment createBundlingAdjustment(String packageName, String key, boolean bundle, argument
204 if (bundle) {
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DGenerationRegistry.java69 public void addGenerationData(Bundle bundle, int key) { argument
76 bundle.putParcelable(Settings.CALL_METHOD_TRACK_GENERATION_KEY,
78 bundle.putInt(Settings.CALL_METHOD_GENERATION_INDEX_KEY, index);
79 bundle.putInt(Settings.CALL_METHOD_GENERATION_KEY,
/frameworks/base/packages/SystemUI/src/com/android/systemui/tv/pip/
H A DPipMenuActivity.java42 protected void onCreate(Bundle bundle) { argument
43 super.onCreate(bundle);
H A DPipOnboardingActivity.java40 protected void onCreate(Bundle bundle) { argument
41 super.onCreate(bundle);
H A DPipOverlayActivity.java75 protected void onCreate(Bundle bundle) { argument
76 super.onCreate(bundle);
/frameworks/base/services/core/java/com/android/server/updates/
H A DSELinuxPolicyInstallReceiver.java47 super("/data/security/bundle", "sepolicy_bundle", "metadata/", "version");
58 private int[] readChunkLengths(BufferedInputStream bundle) throws IOException { argument
60 chunks[0] = readInt(bundle);
61 chunks[1] = readInt(bundle);
62 chunks[2] = readInt(bundle);
63 chunks[3] = readInt(bundle);
64 chunks[4] = readInt(bundle);
65 chunks[5] = readInt(bundle);
66 chunks[6] = readInt(bundle);
/frameworks/base/telecomm/java/android/telecom/
H A DAuthenticatorService.java63 String s, String s2, String[] strings, Bundle bundle)
70 Account account, Bundle bundle)
77 Account account, String s, Bundle bundle)
89 Account account, String s, Bundle bundle)
62 addAccount(AccountAuthenticatorResponse accountAuthenticatorResponse, String s, String s2, String[] strings, Bundle bundle) argument
69 confirmCredentials(AccountAuthenticatorResponse accountAuthenticatorResponse, Account account, Bundle bundle) argument
76 getAuthToken(AccountAuthenticatorResponse accountAuthenticatorResponse, Account account, String s, Bundle bundle) argument
88 updateCredentials(AccountAuthenticatorResponse accountAuthenticatorResponse, Account account, String s, Bundle bundle) argument
/frameworks/base/telephony/java/android/telephony/gsm/
H A DGsmCellLocation.java40 * Initialize the object from a bundle.
42 public GsmCellLocation(Bundle bundle) { argument
43 mLac = bundle.getInt("lac", -1);
44 mCid = bundle.getInt("cid", -1);
45 mPsc = bundle.getInt("psc", -1);
/frameworks/base/tools/layoutlib/bridge/src/android/animation/
H A DAnimationThread.java60 public int compareTo(MessageBundle bundle) { argument
61 if (mUptimeMillis < bundle.mUptimeMillis) {
119 MessageBundle bundle = mQueue.poll();
120 if (bundle == null) {
124 // sleep enough for this bundle to be on time
126 if (currentTime < bundle.mUptimeMillis) {
128 sleep(bundle.mUptimeMillis - currentTime);
147 // process the bundle. If the animation is not finished, this will enqueue
155 bundle.mTarget.handleMessage(bundle
[all...]
/frameworks/native/include/binder/
H A DPersistableBundle.h39 PersistableBundle(const PersistableBundle& bundle) = default; member in class:android::os::PersistableBundle

Completed in 2128 milliseconds

1234