Lines Matching defs:results

70      * instrumentation can also be launched, and results collected, by an automated system.
158 * @param results Any results to send back to the code that started the instrumentation.
160 public void sendStatus(int resultCode, Bundle results) {
163 mWatcher.instrumentationStatus(mComponent, resultCode, results);
177 * @param results Any results to send back to the code that started the
180 public void finish(int resultCode, Bundle results) {
185 results.putAll(mPerfMetrics);
187 mThread.finishInstrumentation(resultCode, results);
1238 * associated with the key. If the key doesn't already exist in results, it
1239 * adds the key/value pair to results.
1241 private void addValue(String key, int value, Bundle results) {
1242 if (results.containsKey(key)) {
1243 List<Integer> list = results.getIntegerArrayList(key);
1250 results.putIntegerArrayList(key, list);
1255 * Returns a bundle with the current results from the allocation counting.
1258 Bundle results = new Bundle();
1259 results.putLong("global_alloc_count", Debug.getGlobalAllocCount());
1260 results.putLong("global_alloc_size", Debug.getGlobalAllocSize());
1261 results.putLong("global_freed_count", Debug.getGlobalFreedCount());
1262 results.putLong("global_freed_size", Debug.getGlobalFreedSize());
1263 results.putLong("gc_invocation_count", Debug.getGlobalGcInvocationCount());
1264 return results;
1272 Bundle results = new Bundle();
1273 results.putLong("sent_transactions", Debug.getBinderSentTransactions());
1274 results.putLong("received_transactions", Debug.getBinderReceivedTransactions());
1275 return results;
1326 * activity so that it returns a new ActivityResult containing the results