/frameworks/base/tools/aapt/ |
D | Main.h | 17 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/ |
D | PerformanceCollectorTest.java | 51 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/ |
D | AbstractAccountAuthenticator.java | 19 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 …]
|
D | AccountManager.java | 25 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 …]
|
D | IAccountAuthenticator.aidl | 21 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()
|
D | IAccountManager.aidl | 22 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()
|
D | AccountAuthenticatorActivity.java | 21 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()
|
D | ChooseAccountActivity.java | 19 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/ |
D | PerformanceCollector.java | 86 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 …]
|
D | RemoteCallback.java | 29 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()
|
D | ResultReceiver.java | 35 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/ |
D | RecognitionListener.java | 19 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()
|
D | IRecognitionListener.aidl | 19 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/ |
D | BroadcastReceiver.java | 21 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;
|
D | AbstractThreadedSyncAdapter.java | 20 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()
|
D | SyncOperation.java | 20 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()
|
D | PeriodicSync.java | 20 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/ |
D | INfcAdapterExtras.aidl | 19 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/ |
D | ActivityGroup.java | 22 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()
|
D | IInstrumentationWatcher.aidl | 21 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/ |
D | ListOfInternalSelectionViews.java | 20 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/ |
D | InstrumentationTestRunnerTest.java | 21 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/ |
D | PreferenceActivity.java | 23 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/ |
D | TestedActivity.java | 24 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/ |
D | IBulkCursor.java | 22 import android.os.Bundle; 69 Bundle getExtras() throws RemoteException; in getExtras() 71 Bundle respond(Bundle extras) throws RemoteException; in respond()
|