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

12

/frameworks/testing/androidtestlib/src/com/android/test/
H A DBundleTest.java37 public void injectBundle(Bundle bundle); argument
/frameworks/base/telephony/java/android/telephony/
H A DCellLocation.java58 * @param bundle Bundle from intent notifier
63 public static CellLocation newFromBundle(Bundle bundle) { argument
68 return new CdmaCellLocation(bundle);
70 return new GsmCellLocation(bundle);
79 public abstract void fillInNotifierBundle(Bundle bundle); argument
/frameworks/testing/androidtestlib/tests/src/com/android/test/
H A DMyBundleTestCase.java34 public void injectBundle(Bundle bundle) { argument
35 mBundle = bundle;
/frameworks/base/tools/aapt/
H A DCacheUpdater.h48 // Constructor to set bundle to pass to preProcessImage
50 : bundle(b) { };
101 preProcessImageToCache(bundle, source, dest);
104 Bundle* bundle; member in class:SystemCacheUpdater
H A DMain.cpp203 int handleCommand(Bundle* bundle) argument
206 // bundle->getCommand(), bundle->getVerbose(), bundle->getForce());
207 //for (int i = 0; i < bundle->getFileSpecCount(); i++)
208 // printf(" %d: '%s'\n", i, bundle->getFileSpecEntry(i));
210 switch (bundle->getCommand()) {
211 case kCommandVersion: return doVersion(bundle);
212 case kCommandList: return doList(bundle);
213 case kCommandDump: return doDump(bundle);
231 Bundle bundle; local
[all...]
/frameworks/testing/androidtestlib/src/com/android/test/runner/
H A DAndroidRunnerBuilder.java36 public AndroidRunnerBuilder(boolean canUseSuiteMethod, Instrumentation instr, Bundle bundle, argument
39 mAndroidJUnit3Builder = new AndroidJUnit3Builder(instr, bundle, skipExecution);
40 mAndroidJUnit4Builder = new AndroidJUnit4Builder(instr, bundle, skipExecution);
/frameworks/testing/androidtestlib/src/com/android/test/runner/junit3/
H A DAndroidJUnit3ClassRunner.java31 public AndroidJUnit3ClassRunner(Class<?> klass, Bundle bundle, Instrumentation instr) { argument
32 super(new AndroidTestSuite(klass.asSubclass(TestCase.class), bundle, instr));
H A DAndroidJUnit3Builder.java36 public AndroidJUnit3Builder(Instrumentation instr, Bundle bundle, boolean skipExecution) { argument
38 mBundle = bundle;
H A DAndroidTestSuite.java42 AndroidTestSuite(Class<?> clazz, Bundle bundle, Instrumentation instrumentation) { argument
44 mBundle = bundle;
48 AndroidTestSuite(String name, Bundle bundle, Instrumentation instrumentation) { argument
50 mBundle = bundle;
/frameworks/testing/androidtestlib/src/com/android/test/runner/junit4/
H A DAndroidJUnit4Builder.java39 public AndroidJUnit4Builder(Instrumentation instr, Bundle bundle, boolean skipExecution) { argument
41 mBundle = bundle;
H A DAndroidJUnit4ClassRunner.java51 public AndroidJUnit4ClassRunner(Class<?> klass, Instrumentation instr, Bundle bundle) argument
55 mBundle = bundle;
/frameworks/testing/androidtestlib/src/com/android/test/runner/listener/
H A DInstrumentationRunListener.java44 public void sendStatus(int code, Bundle bundle) { argument
45 getInstrumentation().sendStatus(code, bundle);
53 * @param resultBundle the instrumentation result bundle. Can be used to inject key-value pairs
/frameworks/base/core/java/android/os/
H A DRemoteCallback.java41 public void sendResult(Bundle bundle) { argument
42 mHandler.post(new DeliverResult(bundle));
51 protected void onResult(Bundle bundle) { argument
65 public void sendResult(Bundle bundle) throws RemoteException { argument
66 mTarget.sendResult(bundle);
69 protected abstract void onResult(Bundle bundle); argument
/frameworks/base/core/java/android/view/textservice/
H A DTextServicesManager.java106 public SpellCheckerSession newSpellCheckerSession(Bundle bundle, Locale locale, argument
165 session.getSpellCheckerSessionListener(), bundle);
/frameworks/base/services/java/com/android/server/updates/
H A DSELinuxPolicyInstallReceiver.java47 super("/data/security/bundle", "sepolicy_bundle", "metadata/", "version");
79 private int[] readChunkLengths(BufferedInputStream bundle) throws IOException { argument
81 chunks[0] = readInt(bundle);
82 chunks[1] = readInt(bundle);
83 chunks[2] = readInt(bundle);
84 chunks[3] = readInt(bundle);
/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", mLac);
44 mCid = bundle.getInt("cid", mCid);
45 mPsc = bundle.getInt("psc", mPsc);
/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/support/v7/mediarouter/src/android/support/v7/media/
H A DMediaRouteDiscoveryRequest.java51 private MediaRouteDiscoveryRequest(Bundle bundle) { argument
52 mBundle = bundle;
115 * Converts this object to a bundle for serialization.
117 * @return The contents of the object represented as a bundle.
124 * Creates an instance from a bundle.
126 * @param bundle The bundle, or null if none.
127 * @return The new instance, or null if the bundle was null.
129 public static MediaRouteDiscoveryRequest fromBundle(Bundle bundle) { argument
130 return bundle !
[all...]
H A DMediaRouteProviderDescriptor.java39 private MediaRouteProviderDescriptor(Bundle bundle, argument
41 mBundle = bundle;
100 * Converts this object to a bundle for serialization.
102 * @return The contents of the object represented as a bundle.
109 * Creates an instance from a bundle.
111 * @param bundle The bundle, or null if none.
112 * @return The new instance, or null if the bundle was null.
114 public static MediaRouteProviderDescriptor fromBundle(Bundle bundle) { argument
115 return bundle !
[all...]
H A DMediaRouteSelector.java55 private MediaRouteSelector(Bundle bundle, List<String> controlCategories) { argument
56 mBundle = bundle;
189 * Converts this object to a bundle for serialization.
191 * @return The contents of the object represented as a bundle.
198 * Creates an instance from a bundle.
200 * @param bundle The bundle, or null if none.
201 * @return The new instance, or null if the bundle was null.
203 public static MediaRouteSelector fromBundle(Bundle bundle) { argument
204 return bundle !
[all...]
H A DMediaSessionStatus.java85 private MediaSessionStatus(Bundle bundle) { argument
86 mBundle = bundle;
119 * Gets a bundle of extras for this status object.
154 * Converts this object to a bundle for serialization.
156 * @return The contents of the object represented as a bundle.
163 * Creates an instance from a bundle.
165 * @param bundle The bundle, or null if none.
166 * @return The new instance, or null if the bundle was null.
168 public static MediaSessionStatus fromBundle(Bundle bundle) { argument
[all...]
/frameworks/base/telephony/java/android/telephony/cdma/
H A DCdmaCellLocation.java66 * Initialize the object from a bundle.
68 public CdmaCellLocation(Bundle bundle) { argument
69 this.mBaseStationId = bundle.getInt("baseStationId", mBaseStationId);
70 this.mBaseStationLatitude = bundle.getInt("baseStationLatitude", mBaseStationLatitude);
71 this.mBaseStationLongitude = bundle.getInt("baseStationLongitude", mBaseStationLongitude);
72 this.mSystemId = bundle.getInt("systemId", mSystemId);
73 this.mNetworkId = bundle.getInt("networkId", mNetworkId);
/frameworks/base/core/java/android/net/http/
H A DSslCertificate.java91 * Saves the certificate state to a bundle
93 * @return A bundle with the certificate stored in it or null if fails
99 Bundle bundle = new Bundle();
100 bundle.putString(ISSUED_TO, certificate.getIssuedTo().getDName());
101 bundle.putString(ISSUED_BY, certificate.getIssuedBy().getDName());
102 bundle.putString(VALID_NOT_BEFORE, certificate.getValidNotBefore());
103 bundle.putString(VALID_NOT_AFTER, certificate.getValidNotAfter());
107 bundle.putByteArray(X509_CERTIFICATE, x509Certificate.getEncoded());
111 return bundle;
115 * Restores the certificate stored in the bundle
119 restoreState(Bundle bundle) argument
[all...]
/frameworks/base/core/java/android/service/textservice/
H A DSpellCheckerService.java244 Bundle bundle, Session session) {
248 mBundle = bundle;
317 String locale, ISpellCheckerSessionListener listener, Bundle bundle) {
322 new InternalISpellCheckerSession(locale, listener, bundle, session);
243 InternalISpellCheckerSession(String locale, ISpellCheckerSessionListener listener, Bundle bundle, Session session) argument
316 getISpellCheckerSession( String locale, ISpellCheckerSessionListener listener, Bundle bundle) argument
/frameworks/base/core/tests/coretests/src/android/app/activity/
H A DServiceTest.java195 void startExpectResult(Intent service, Bundle bundle) { argument
196 bundle.putIBinder(REPORT_OBJ_NAME, mStartReceiver);
201 getContext().startService(new Intent(service).putExtras(bundle));
205 getContext().startService(new Intent(service).putExtras(bundle));

Completed in 590 milliseconds

12