Searched defs:scanResultType (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/bluetooth/le/
H A DScanSettings.java174 private ScanSettings(int scanMode, int callbackType, int scanResultType, argument
178 mScanResultType = scanResultType;
275 * @param scanResultType Type for scan result, could be either
278 * @throws IllegalArgumentException If the {@code scanResultType} is invalid.
282 public Builder setScanResultType(int scanResultType) { argument
283 if (scanResultType < SCAN_RESULT_TYPE_FULL
284 || scanResultType > SCAN_RESULT_TYPE_ABBREVIATED) {
286 "invalid scanResultType - " + scanResultType);
288 mScanResultType = scanResultType;
[all...]

Completed in 82 milliseconds