Searched defs:mBundle (Results 1 - 3 of 3) sorted by relevance

/packages/apps/Mms/src/com/android/mms/transaction/
H A DTransactionBundle.java70 private final Bundle mBundle; field in class:TransactionBundle
78 mBundle = new Bundle();
79 mBundle.putInt(TRANSACTION_TYPE, transactionType);
94 mBundle.putString(URI, uri);
103 mBundle = bundle;
109 mBundle.putString(MMSC_URL, mmscUrl);
110 mBundle.putString(PROXY_ADDRESS, proxyAddress);
111 mBundle.putInt(PROXY_PORT, proxyPort);
122 return mBundle;
126 return mBundle
[all...]
/packages/apps/QuickSearchBox/tests/partial/src/com/android/quicksearchbox/tests/partial/
H A DPartialSuggestionProvider.java63 Bundle mBundle; field in class:PartialSuggestionProvider.MutableMatrixCursor
71 if (mBundle == null) mBundle = new Bundle();
72 return mBundle;
/packages/apps/CertInstaller/src/com/android/certinstaller/
H A DCredentialHelper.java64 private HashMap<String, byte[]> mBundle = new HashMap<String, byte[]>(); field in class:CredentialHelper
94 mBundle.put(key, bytes);
101 outStates.putSerializable(DATA_KEY, mBundle);
121 mBundle = (HashMap) savedStates.getSerializable(DATA_KEY);
179 return mBundle.containsKey(KeyChain.EXTRA_PKCS12);
183 return mBundle.containsKey(Credentials.EXTRA_PUBLIC_KEY)
184 && mBundle.containsKey(Credentials.EXTRA_PRIVATE_KEY);
211 return !mBundle.isEmpty();
215 return mBundle.get(key);
219 mBundle
[all...]

Completed in 66 milliseconds