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

/frameworks/base/core/java/android/bluetooth/le/
H A DScanSettings.java122 long reportDelayMillis) {
126 mReportDelayMillis = reportDelayMillis;
237 * @param reportDelayMillis Delay of report in milliseconds. Set to 0 to be notified of
240 * @throws IllegalArgumentException If {@code reportDelayMillis} < 0.
242 public Builder setReportDelay(long reportDelayMillis) { argument
243 if (reportDelayMillis < 0) {
246 mReportDelayMillis = reportDelayMillis;
121 ScanSettings(int scanMode, int callbackType, int scanResultType, long reportDelayMillis) argument

Completed in 46 milliseconds