Home
last modified time | relevance | path

Searched refs:Bundle (Results 1 – 25 of 530) sorted by relevance

12345678910>>...22

/frameworks/base/tools/aapt/
DMain.h17 extern int doVersion(Bundle* bundle);
18 extern int doList(Bundle* bundle);
19 extern int doDump(Bundle* bundle);
20 extern int doAdd(Bundle* bundle);
21 extern int doRemove(Bundle* bundle);
22 extern int doPackage(Bundle* bundle);
26 extern android::status_t writeAPK(Bundle* bundle,
30 extern android::status_t buildResources(Bundle* bundle,
33 extern android::status_t writeResourceSymbols(Bundle* bundle,
36 extern android::status_t writeProguardFile(Bundle* bundle, const sp<AaptAssets>& assets);
[all …]
/frameworks/base/core/tests/coretests/src/android/os/
DPerformanceCollectorTest.java51 Bundle snapshot = (Bundle)readPrivateField("mPerfSnapshot", mPerfCollector); in testBeginSnapshotNoWriter()
60 Bundle snapshot = mPerfCollector.endSnapshot(); in testEndSnapshotNoWriter()
71 Bundle measurement = (Bundle)readPrivateField("mPerfMeasurement", mPerfCollector); in testStartTimingNoWriter()
80 Bundle iteration = mPerfCollector.addIteration("timing1"); in testAddIterationNoWriter()
93 Bundle timing = mPerfCollector.stopTiming("timing4"); in testStopTimingNoWriter()
111 Bundle snapshot = (Bundle)readPrivateField("mPerfSnapshot", mPerfCollector); in testBeginSnapshot()
122 Bundle snapshot1 = mPerfCollector.endSnapshot(); in testEndSnapshot()
123 Bundle snapshot2 = writer.snapshotResults; in testEndSnapshot()
138 Bundle measurement = (Bundle)readPrivateField("mPerfMeasurement", mPerfCollector); in testStartTiming()
147 Bundle iteration = mPerfCollector.addIteration("timing5"); in testAddIteration()
[all …]
/frameworks/base/core/java/android/accounts/
DAbstractAccountAuthenticator.java19 import android.os.Bundle;
120 String authTokenType, String[] features, Bundle options) in addAccount()
129 final Bundle result = AbstractAccountAuthenticator.this.addAccount( in addAccount()
154 Account account, Bundle options) throws RemoteException { in confirmCredentials()
160 final Bundle result = AbstractAccountAuthenticator.this.confirmCredentials( in confirmCredentials()
192 Bundle result = new Bundle(); in getAuthTokenLabel()
219 Account account, String authTokenType, Bundle loginOptions) in getAuthToken()
227 final Bundle result = AbstractAccountAuthenticator.this.getAuthToken( in getAuthToken()
252 String authTokenType, Bundle loginOptions) throws RemoteException { in updateCredentials()
259 final Bundle result = AbstractAccountAuthenticator.this.updateCredentials( in updateCredentials()
[all …]
DAccountManager.java25 import android.os.Bundle;
251 public static Bundle sanitizeResult(Bundle result) { in sanitizeResult()
255 final Bundle newResult = new Bundle(result); in sanitizeResult()
430 public Boolean bundleToResult(Bundle bundle) throws AuthenticatorException { in hasFeatures()
474 public Account[] bundleToResult(Bundle bundle) throws AuthenticatorException {
504 public boolean addAccountExplicitly(Account account, String password, Bundle userdata) {
542 public Boolean bundleToResult(Bundle bundle) throws AuthenticatorException {
737 Bundle bundle = getAuthToken(account, authTokenType, notifyAuthFailure, null /* callback */,
806 public AccountManagerFuture<Bundle> getAuthToken(
807 final Account account, final String authTokenType, final Bundle options,
[all …]
DIAccountAuthenticator.aidl21 import android.os.Bundle;
32 String authTokenType, in String[] requiredFeatures, in Bundle options); in addAccount()
38 in Bundle options); in confirmCredentials()
44 String authTokenType, in Bundle options); in getAuthToken()
55 String authTokenType, in Bundle options); in updateCredentials()
DIAccountManager.aidl22 import android.os.Bundle;
36 boolean addAccount(in Account account, String password, in Bundle extras); in addAccount()
47 in Bundle options); in getAuthToken()
50 in Bundle options); in addAcount()
52 String authTokenType, boolean expectActivityLaunch, in Bundle options); in updateCredentials()
56 in Bundle options, boolean expectActivityLaunch); in confirmCredentials()
DAccountAuthenticatorActivity.java21 import android.os.Bundle;
39 private Bundle mResultBundle = null;
47 public final void setAccountAuthenticatorResult(Bundle result) { in setAccountAuthenticatorResult()
56 protected void onCreate(Bundle icicle) { in onCreate()
DChooseAccountActivity.java19 import android.os.Bundle;
33 private Bundle mResult;
36 public void onCreate(Bundle savedInstanceState) { in onCreate()
65 Bundle bundle = new Bundle(); in onListItemClick()
/frameworks/base/core/java/android/os/
DPerformanceCollector.java86 public void writeEndSnapshot(Bundle results); in writeEndSnapshot()
109 public void writeStopTiming(Bundle results); in writeStopTiming()
281 private Bundle mPerfSnapshot;
282 private Bundle mPerfMeasurement;
349 public Bundle endSnapshot() { in endSnapshot()
365 mPerfMeasurement = new Bundle(); in startTiming()
387 public Bundle addIteration(String label) { in addIteration()
391 Bundle iteration = new Bundle(); in addIteration()
411 public Bundle stopTiming(String label) { in stopTiming()
456 mPerfSnapshot = new Bundle(); in startPerformanceSnapshot()
[all …]
DRemoteCallback.java29 final Bundle mResult;
31 DeliverResult(Bundle result) { in DeliverResult()
41 public void sendResult(Bundle bundle) { in sendResult()
51 protected void onResult(Bundle bundle) { in onResult()
65 public void sendResult(Bundle bundle) throws RemoteException { in sendResult()
69 protected abstract void onResult(Bundle bundle); in onResult()
DResultReceiver.java35 final Bundle mResultData;
37 MyRunnable(int resultCode, Bundle resultData) { in MyRunnable()
48 public void send(int resultCode, Bundle resultData) { in send()
74 public void send(int resultCode, Bundle resultData) { in send()
99 protected void onReceiveResult(int resultCode, Bundle resultData) { in onReceiveResult()
/frameworks/base/core/java/android/speech/
DRecognitionListener.java19 import android.os.Bundle;
32 void onReadyForSpeech(Bundle params); in onReadyForSpeech()
75 void onResults(Bundle results); in onResults()
89 void onPartialResults(Bundle partialResults); in onPartialResults()
97 void onEvent(int eventType, Bundle params); in onEvent()
DIRecognitionListener.aidl19 import android.os.Bundle;
33 void onReadyForSpeech(in Bundle params); in onReadyForSpeech()
71 void onResults(in Bundle results); in onResults()
78 void onPartialResults(in Bundle results); in onPartialResults()
86 void onEvent(in int eventType, in Bundle params); in onEvent()
/frameworks/base/core/java/android/content/
DBroadcastReceiver.java21 import android.os.Bundle;
297 public final void setResultExtras(Bundle extras) { in setResultExtras()
313 public final Bundle getResultExtras(boolean makeMap) { in getResultExtras()
314 Bundle e = mResultExtras; in getResultExtras()
316 if (e == null) mResultExtras = e = new Bundle(); in getResultExtras()
342 public final void setResult(int code, String data, Bundle extras) { in setResult()
457 private Bundle mResultExtras;
DAbstractThreadedSyncAdapter.java20 import android.os.Bundle;
78 Bundle extras) { in startSync()
126 Bundle extras = new Bundle(); in initialize()
141 private final Bundle mExtras;
144 Account account, Bundle extras) { in SyncThread()
208 public abstract void onPerformSync(Account account, Bundle extras, in onPerformSync()
DSyncOperation.java20 import android.os.Bundle;
31 public Bundle extras;
37 public SyncOperation(Account account, int source, String authority, Bundle extras, in SyncOperation()
42 this.extras = new Bundle(extras); in SyncOperation()
72 this.extras = new Bundle(other.extras); in SyncOperation()
99 public static void extrasToStringBuilder(Bundle bundle, StringBuilder sb, boolean asKey) { in extrasToStringBuilder()
DPeriodicSync.java20 import android.os.Bundle;
34 public final Bundle extras;
39 public PeriodicSync(Account account, String authority, Bundle extras, long period) { in PeriodicSync()
42 this.extras = new Bundle(extras); in PeriodicSync()
/frameworks/base/core/java/android/nfc/
DINfcAdapterExtras.aidl19 import android.os.Bundle;
26 Bundle open(IBinder b); in open()
27 Bundle close(); in close()
28 Bundle transceive(in byte[] data_in); in transceive()
/frameworks/base/core/java/android/app/
DActivityGroup.java22 import android.os.Bundle;
48 protected void onCreate(Bundle savedInstanceState) { in onCreate()
50 Bundle states = savedInstanceState != null in onCreate()
51 ? (Bundle) savedInstanceState.getBundle(STATES_KEY) : null; in onCreate()
62 protected void onSaveInstanceState(Bundle outState) { in onSaveInstanceState()
64 Bundle state = mLocalActivityManager.saveInstanceState(); in onSaveInstanceState()
DIInstrumentationWatcher.aidl21 import android.os.Bundle;
27 in Bundle results); in instrumentationStatus()
29 in Bundle results); in instrumentationFinished()
/frameworks/base/core/tests/coretests/src/android/widget/focus/
DListOfInternalSelectionViews.java20 import android.os.Bundle;
102 …public static Bundle getBundleFor(int numItems, int numRowsPerItem, double itemScreenHeightFactor)… in getBundleFor()
103 Bundle bundle = new Bundle(); in getBundleFor()
111 protected void onCreate(Bundle icicle) { in onCreate()
115 Bundle extras = getIntent().getExtras(); in onCreate()
130 private void initFromBundle(Bundle icicle) { in initFromBundle()
/frameworks/base/test-runner/tests/src/android/test/
DInstrumentationTestRunnerTest.java21 import android.os.Bundle;
106 instrumentationTestRunner.onCreate(new Bundle()); in testUnhandledException()
131 Bundle args = new Bundle(); in testDelayParameter()
155 Bundle args = new Bundle(); in testAnnotationParameter()
168 Bundle args = new Bundle(); in testNotAnnotationParameter()
195 private Bundle createBundle(String key, String value) { in createBundle()
196 Bundle bundle = new Bundle(); in createBundle()
210 private Bundle mResults;
239 public void finish(int resultCode, Bundle results) { in finish()
/frameworks/base/core/java/android/preference/
DPreferenceActivity.java23 import android.os.Bundle;
83 private Bundle mSavedInstanceState;
104 protected void onCreate(Bundle savedInstanceState) { in onCreate()
128 protected void onSaveInstanceState(Bundle outState) { in onSaveInstanceState()
133 Bundle container = new Bundle(); in onSaveInstanceState()
140 protected void onRestoreInstanceState(Bundle state) { in onRestoreInstanceState()
141 Bundle container = state.getBundle(PREFERENCES_TAG); in onRestoreInstanceState()
/frameworks/base/core/tests/coretests/src/android/app/activity/
DTestedActivity.java24 import android.os.Bundle;
32 public void onCreate(Bundle icicle) in onCreate()
37 protected void onRestoreInstanceState(Bundle state) in onRestoreInstanceState()
48 protected void onSaveInstanceState(Bundle outState) in onSaveInstanceState()
/frameworks/base/core/java/android/database/
DIBulkCursor.java22 import android.os.Bundle;
69 Bundle getExtras() throws RemoteException; in getExtras()
71 Bundle respond(Bundle extras) throws RemoteException; in respond()

12345678910>>...22