Searched refs:results (Results 1 - 25 of 101) sorted by last modified time

12345

/frameworks/wilhelm/src/
H A DAndroid.mk62 # (otherwise a warning log on error results only)
/frameworks/support/v4/java/android/support/v4/app/
H A DRemoteInput.java34 /** Extra added to a clip data intent object to hold the results bundle. */
181 * Get the remote input results bundle from an intent. The returned Bundle will
192 * Populate an intent object with the results gathered from remote input. This method
193 * should only be called by remote input collection services when sending results to a
195 * @param remoteInputs The remote inputs for which results are being provided
197 * field of the intent will be modified to contain the results.
198 * @param results A bundle holding the remote input results. This bundle should
203 Bundle results) {
204 IMPL.addResultsToIntent(remoteInputs, intent, results);
202 addResultsToIntent(RemoteInput[] remoteInputs, Intent intent, Bundle results) argument
211 addResultsToIntent(RemoteInput[] remoteInputs, Intent intent, Bundle results) argument
223 addResultsToIntent(RemoteInput[] remoteInputs, Intent intent, Bundle results) argument
235 addResultsToIntent(RemoteInput[] remoteInputs, Intent intent, Bundle results) argument
247 addResultsToIntent(RemoteInput[] remoteInputs, Intent intent, Bundle results) argument
[all...]
/frameworks/support/v4/java/android/support/v4/provider/
H A DRawDocumentFile.java124 final ArrayList<DocumentFile> results = new ArrayList<DocumentFile>();
128 results.add(new RawDocumentFile(this, file));
131 return results.toArray(new DocumentFile[results.size()]);
/frameworks/support/v4/java/android/support/v4/widget/
H A DCursorFilter.java25 * delegate methods to run the queries and convert the results into String
52 FilterResults results = new FilterResults();
54 results.count = cursor.getCount();
55 results.values = cursor;
57 results.count = 0;
58 results.values = null;
60 return results;
64 protected void publishResults(CharSequence constraint, FilterResults results) { argument
67 if (results.values != null && results
[all...]
/frameworks/support/v4/jellybean/android/support/v4/app/
H A DRemoteInputCompatJellybean.java26 public static final String RESULTS_CLIP_LABEL = "android.remoteinput.results";
28 /** Extra added to a clip data intent object to hold the results bundle. */
95 Bundle results) {
98 Object result = results.get(remoteInput.getResultKey());
94 addResultsToIntent(RemoteInputCompatBase.RemoteInput[] remoteInputs, Intent intent, Bundle results) argument
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardEntryCommitter.java83 final ContentProviderResult[] results = mContentResolver.applyBatch(
89 return ((results == null || results.length == 0 || results[0] == null)
90 ? null : results[0].uri);
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
H A DImageProcessingTest.java101 Log.v(TAG, "results for iteration " + i + " is " + bmValue);
107 Bundle results = new Bundle();
108 results.putString(TEST_NAME, testName);
109 results.putInt(ITERATIONS, mIteration);
110 results.putFloat(BENCHMARK, avgResult);
111 getInstrumentation().sendStatus(INSTRUMENTATION_IN_PROGRESS, results);
/frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
H A DIPControlsJB.java159 mResultView = (TextView) findViewById(R.id.results);
257 Log.v(TAG, "Saved results in: " + resultFile.getAbsolutePath());
279 float r[] = data.getFloatArrayExtra("results");
H A DImageProcessingTest.java116 Log.v(TAG, "results for iteration " + i + " is " + bmValue);
122 Bundle results = new Bundle();
123 results.putString(TEST_NAME, testName);
124 results.putInt(ITERATIONS, mIteration);
125 results.putFloat(BENCHMARK, avgResult);
126 getInstrumentation().sendStatus(INSTRUMENTATION_IN_PROGRESS, results);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DSearchBar.java642 if (DEBUG) Log.v(TAG, "Got results" + matches);
655 ArrayList<String> results = bundle.getStringArrayList(
657 if (DEBUG) Log.v(TAG, "onPartialResults " + bundle + " results " +
658 (results == null ? results : results.size()));
659 if (results == null || results.size() == 0) {
665 final String stableText = results.get(0);
670 final String pendingText = results
[all...]
/frameworks/support/v4/api20/android/support/v4/app/
H A DRemoteInputCompatApi20.java60 Intent intent, Bundle results) {
61 RemoteInput.addResultsToIntent(fromCompat(remoteInputs), intent, results);
59 addResultsToIntent(RemoteInputCompatBase.RemoteInput[] remoteInputs, Intent intent, Bundle results) argument
/frameworks/support/v4/api21/android/support/v4/provider/
H A DDocumentsContractApi21.java50 final ArrayList<Uri> results = new ArrayList<Uri>();
60 results.add(documentUri);
68 return results.toArray(new Uri[results.size()]);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DRttService.java180 void reportResult(RttRequest request, RttManager.RttResult[] results) { argument
182 new RttManager.ParcelableRttResults(results);
H A DWifiNative.java346 * Format of results:
358 * RANGE=ALL gets all scan results
359 * RANGE=ID- gets results from ID
1209 public int max_scan_cache_size; // in number of scan results??
1213 public int max_scan_reporting_threshold; // in number of scan results??
1284 if (DBG) Log.i(TAG, "Got a full scan results event, ssid = " + result.SSID + ", " +
1431 synchronized public static void onHotlistApFound(int id, ScanResult[] results) { argument
1434 sHotlistEventHandler.onHotlistApFound(results);
1482 synchronized static void onSignificantWifiChange(int id, ScanResult[] results) { argument
1485 sSignificantWifiChangeHandler.onChangesFound(results);
1541 onRttResults(int id, RttManager.RttResult[] results) argument
[all...]
H A DWifiScanningServiceImpl.java266 public void onHotlistApFound(ScanResult[] results) { argument
268 sendMessage(CMD_HOTLIST_AP_FOUND, 0, 0, results);
272 public void onChangesFound(ScanResult[] results) { argument
274 sendMessage(CMD_WIFI_CHANGE_DETECTED, 0, 0, results);
315 if (DBG) log("ignored scan results available event");
382 ScanResult[] results = WifiNative.getScanResults();
385 ci2.reportScanResults(results);
400 ScanResult[] results = (ScanResult[])msg.obj;
401 if (DBG) Log.d(TAG, "Found " + results.length + " results");
510 reportScanResults(ScanResult[] results) argument
518 reportScanResults(ScanResult[] results, int handler) argument
560 deliverScanResults(int handler, ScanResult results[]) argument
617 reportHotlistResults(ScanResult[] results) argument
670 reportWifiChanged(ScanResult[] results) argument
681 reportWifiStabilized(ScanResult[] results) argument
1138 reportWifiChanged(ScanResult results[]) argument
1145 reportWifiStabilized(ScanResult results[]) argument
1371 reconfigureScan(ScanResult[] results, int period) argument
1501 deliverScanResults(int handler, ScanResult results[]) argument
1512 onChangesFound(ScanResult results[]) argument
[all...]
/frameworks/opt/net/wifi/service/jni/
H A Dcom_android_server_wifi_WifiNative.cpp420 wifi_scan_result results[256]; local
424 ALOGD("getting scan results on interface[%d] = %p", iface, handle);
426 int result = wifi_get_cached_gscan_results(handle, 1, num_results, results, &num_results);
448 setStringField(env, scanResult, "SSID", results[i].ssid);
451 sprintf(bssid, "%02x:%02x:%02x:%02x:%02x:%02x", results[i].bssid[0],
452 results[i].bssid[1], results[i].bssid[2], results[i].bssid[3],
453 results[i].bssid[4], results[
552 onHotlistApFound(wifi_request_id id, unsigned num_results, wifi_scan_result *results) argument
666 onSignificantWifiChange(wifi_request_id id, unsigned num_results, wifi_significant_change_result **results) argument
883 onRttResults(wifi_request_id id, unsigned num_results, wifi_rtt_result results[]) argument
[all...]
/frameworks/opt/net/wifi/service/lib/
H A Dwifi_hal.cpp70 int max, wifi_scan_result *results, int *num) {
75 wifi_scan_result *results, int *num) {
69 wifi_get_cached_gscan_results(wifi_interface_handle iface, byte flush, int max, wifi_scan_result *results, int *num) argument
74 wifi_get_cached_gscan_results(wifi_interface_handle iface, byte flush, wifi_scan_result *results, int *num) argument
/frameworks/opt/net/wifi/service/tools/halutil/
H A Dhalutil.cpp293 printMsg("Received scan results available event\n");
295 putEventInCache(EVENT_TYPE_SCAN_RESULTS_AVAILABLE, "New scan results are available");
430 static int scanOnce(wifi_band band, wifi_scan_result *results, int num_results) { argument
432 saved_scan_results = results;
468 printMsg("fetched 0 scan results, waiting for more..\n");
471 printMsg("fetched %d scan results\n", retrieved_num_results);
477 printScanResult(results[i]);
497 wifi_scan_result results[256]; local
498 memset(results, 0, sizeof(wifi_scan_result) * 256);
499 printMsg("Retrieve Scan results availabl
530 sortScanResultsByRssi(wifi_scan_result *results, int num_results) argument
534 removeDuplicateScanResults(wifi_scan_result *results, int num) argument
576 onHotlistAPFound(wifi_request_id id, unsigned num_results, wifi_scan_result *results) argument
585 onHotlistAPLost(wifi_request_id id, unsigned num_results, wifi_scan_result *results) argument
596 wifi_scan_result results[256]; local
676 wifi_scan_result results[256]; local
778 onSignificantWifiChange(wifi_request_id id, unsigned num_results, wifi_significant_change_result **results) argument
789 wifi_scan_result results[256]; local
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaServiceCategoryProgramHandler.java116 * Broadcast receiver to handle results of ordered broadcast. Sends the SCPD results
130 loge("SCP results error: result code = " + resultCode);
135 loge("SCP results error: missing extras");
140 loge("SCP results error: missing sender extra.");
143 ArrayList<CdmaSmsCbProgramResults> results
144 = extras.getParcelableArrayList("results");
145 if (results == null) {
146 loge("SCP results error: missing results extr
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/sms/
H A DBearerData.java357 * of the results of a Service Category Program Data request.
892 ArrayList<CdmaSmsCbProgramResults> results = bData.serviceCategoryProgramResults;
893 outStream.write(8, (results.size() * 4)); // 4 octets per program result
894 for (CdmaSmsCbProgramResults result : results) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DIccFileHandler.java108 ArrayList<byte[]> results; field in class:IccFileHandler.LoadLinearFixedContext
409 lc.results = new ArrayList<byte[]>(lc.mCountRecords);
463 lc.results.add(result.payload);
468 sendResult(response, lc.results, null);
/frameworks/opt/timezonepicker/src/com/android/timezonepicker/
H A DTimeZoneFilterTypeAdapter.java173 FilterResults results = new FilterResults();
180 results.values = null;
181 results.count = 0;
182 return results;
253 results.values = filtered;
254 results.count = filtered.size();
255 return results;
401 results) {
402 if (results.values == null || results
400 publishResults(CharSequence constraint, FilterResults results) argument
[all...]
/frameworks/native/opengl/tests/hwc/
H A DhwcCommit.cpp307 const vector<uint32_t>& results);
333 * measurements on that format and report the results.
589 // Display overlap results
1532 const vector<uint32_t>& results)
1540 for (vector<uint32_t>::const_iterator it = results.begin();
1541 it != results.end(); ++it) {
1531 printOverlapLine(size_t indent, const string formatStr, const vector<uint32_t>& results) argument
/frameworks/opt/chips/src/com/android/ex/chips/
H A DBaseRecipientAdapter.java61 * The preferred number of results to be retrieved. This number may be
126 /** Used to temporarily hold results in Cursor objects. */
177 * Used to pass results from {@link DefaultFilter#performFiltering(CharSequence)} to
213 final FilterResults results = new FilterResults();
219 // Return empty results.
220 return results;
256 results.values = new DefaultFilterResult(
259 results.count = 1;
269 return results;
273 protected void publishResults(final CharSequence constraint, FilterResults results) { argument
401 publishResults(final CharSequence constraint, FilterResults results) argument
[all...]
H A DRecipientAlternatesAdapter.java72 public void matchesFound(Map<String, RecipientEntry> results); argument
267 * In certain situations, we may have two results for one address, where one of the
268 * results is just the email address, and the other has a name and photo, so we want

Completed in 517 milliseconds

12345