HomeSort by relevance Sort by last modified time
    Searched full:advertising (Results 1 - 25 of 1770) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/bluetooth/le/
AdvertiseCallback.java 20 * Bluetooth LE advertising callbacks, used to deliver advertising operation status.
32 * Failed to start advertising as the advertise data to be broadcasted is larger than 31 bytes.
37 * Failed to start advertising because no advertising instance is available.
42 * Failed to start advertising as the advertising is already started.
58 * that the advertising has been started successfully.
60 * @param settingsInEffect The actual settings used for advertising, which may be different from
67 * Callback when advertising could not be started
    [all...]
AdvertiseSettings.java 23 * The {@link AdvertiseSettings} provide a way to adjust advertising preferences for each
29 * Perform Bluetooth LE advertising in low power mode. This is the default and preferred
30 * advertising mode as it consumes the least power.
35 * Perform Bluetooth LE advertising in balanced power mode. This is balanced between advertising
41 * Perform Bluetooth LE advertising in low latency, high power mode. This has the highest power
42 * consumption and should not be used for continuous background advertising.
48 * to restrict the visibility range of advertising packets.
64 * advertising packet.
101 * Returns the TX power level for advertising
    [all...]
BluetoothLeAdvertiser.java 37 * stopping advertising. An advertiser can broadcast up to 31 bytes of advertisement data
79 * Start Bluetooth LE Advertising. On success, the {@code advertiseData} will be broadcasted.
84 * @param settings Settings for Bluetooth LE advertising.
86 * @param callback Callback for advertising status.
94 * Start Bluetooth LE Advertising. The {@code advertiseData} will be broadcasted if the
101 * @param settings Settings for Bluetooth LE advertising.
104 * @param callback Callback for advertising status.
146 * Stop Bluetooth LE advertising. The {@code callback} must be the same one use in
151 * @param callback {@link AdvertiseCallback} identifies the advertising instance to stop.
176 // Flags field is omitted if the advertising is not connectable
    [all...]
  /developers/build/prebuilts/gradle/BluetoothAdvertisements/Application/src/main/java/com/example/android/bluetoothadvertisements/
AdvertiserService.java 20 * Manages BLE Advertising independent of the main app.
21 * If the app goes off screen (or gets killed completely) advertising can continue because this
52 * Length of time to allow advertising before automatically shutting off. (10 minutes)
108 * Starts a delayed Runnable that will cause the BLE Advertising to timeout and stop after a
116 Log.d(TAG, "AdvertiserService has reached timeout of "+TIMEOUT+" milliseconds, stopping advertising.");
125 * Starts BLE Advertising.
128 Log.d(TAG, "Service: Starting Advertising");
143 * Stops BLE Advertising.
146 Log.d(TAG, "Service: Stopping Advertising");
171 /* For example - this will cause advertising to fail (exceeds size limit) *
    [all...]
AdvertiserFragment.java 33 * Allows user to start & stop Bluetooth LE Advertising of their device.
38 * Lets user toggle BLE Advertising.
43 * Listens for notifications that the {@code AdvertiserService} has failed to start advertising.
56 * Receives Advertising error codes from {@code AdvertiserService} and displays error messages
57 * to the user. Sets the advertising toggle to 'false.'
109 * and register the Receiver to be notified if Advertising fails.
127 * When app goes off screen, unregister the Advertising failure Receiver to stop memory leaks.
128 * (and because the app doesn't care if Advertising fails while the UI isn't active)
144 * Called when switch is toggled - starts or stops advertising.
159 * Starts BLE Advertising by starting {@code AdvertiserService}
    [all...]
  /developers/samples/android/connectivity/bluetooth/BluetoothAdvertisements/Application/src/main/java/com/example/android/bluetoothadvertisements/
AdvertiserService.java 20 * Manages BLE Advertising independent of the main app.
21 * If the app goes off screen (or gets killed completely) advertising can continue because this
52 * Length of time to allow advertising before automatically shutting off. (10 minutes)
108 * Starts a delayed Runnable that will cause the BLE Advertising to timeout and stop after a
116 Log.d(TAG, "AdvertiserService has reached timeout of "+TIMEOUT+" milliseconds, stopping advertising.");
125 * Starts BLE Advertising.
128 Log.d(TAG, "Service: Starting Advertising");
143 * Stops BLE Advertising.
146 Log.d(TAG, "Service: Stopping Advertising");
171 /* For example - this will cause advertising to fail (exceeds size limit) *
    [all...]
AdvertiserFragment.java 33 * Allows user to start & stop Bluetooth LE Advertising of their device.
38 * Lets user toggle BLE Advertising.
43 * Listens for notifications that the {@code AdvertiserService} has failed to start advertising.
56 * Receives Advertising error codes from {@code AdvertiserService} and displays error messages
57 * to the user. Sets the advertising toggle to 'false.'
109 * and register the Receiver to be notified if Advertising fails.
127 * When app goes off screen, unregister the Advertising failure Receiver to stop memory leaks.
128 * (and because the app doesn't care if Advertising fails while the UI isn't active)
144 * Called when switch is toggled - starts or stops advertising.
159 * Starts BLE Advertising by starting {@code AdvertiserService}
    [all...]
  /development/samples/browseable/BluetoothAdvertisements/src/com.example.android.bluetoothadvertisements/
AdvertiserService.java 20 * Manages BLE Advertising independent of the main app.
21 * If the app goes off screen (or gets killed completely) advertising can continue because this
52 * Length of time to allow advertising before automatically shutting off. (10 minutes)
108 * Starts a delayed Runnable that will cause the BLE Advertising to timeout and stop after a
116 Log.d(TAG, "AdvertiserService has reached timeout of "+TIMEOUT+" milliseconds, stopping advertising.");
125 * Starts BLE Advertising.
128 Log.d(TAG, "Service: Starting Advertising");
143 * Stops BLE Advertising.
146 Log.d(TAG, "Service: Stopping Advertising");
171 /* For example - this will cause advertising to fail (exceeds size limit) *
    [all...]
AdvertiserFragment.java 33 * Allows user to start & stop Bluetooth LE Advertising of their device.
38 * Lets user toggle BLE Advertising.
43 * Listens for notifications that the {@code AdvertiserService} has failed to start advertising.
56 * Receives Advertising error codes from {@code AdvertiserService} and displays error messages
57 * to the user. Sets the advertising toggle to 'false.'
109 * and register the Receiver to be notified if Advertising fails.
127 * When app goes off screen, unregister the Advertising failure Receiver to stop memory leaks.
128 * (and because the app doesn't care if Advertising fails while the UI isn't active)
144 * Called when switch is toggled - starts or stops advertising.
159 * Starts BLE Advertising by starting {@code AdvertiserService}
    [all...]
  /system/bt/vnd/include/
vendor_api.h 29 ** Advertising packet filter VSC specific definitions
  /developers/build/prebuilts/gradle/BluetoothAdvertisements/Application/src/main/res/values/
strings.xml 11 <string name="start_error_prefix">Start Advertising failed: </string>
31 <string name="advertising_timedout">Advertising stopped due to timeout.</string>
  /developers/samples/android/connectivity/bluetooth/BluetoothAdvertisements/Application/src/main/res/values/
strings.xml 11 <string name="start_error_prefix">Start Advertising failed: </string>
31 <string name="advertising_timedout">Advertising stopped due to timeout.</string>
  /development/samples/browseable/BluetoothAdvertisements/res/values/
strings.xml 11 <string name="start_error_prefix">Start Advertising failed: </string>
31 <string name="advertising_timedout">Advertising stopped due to timeout.</string>
  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
AdvertiseManager.java 43 * Manages Bluetooth LE advertising operations and interacts with bluedroid stack. TODO: add tests.
54 // Message for advertising operations.
81 * Start a {@link HandlerThread} that handles advertising operations.
95 * Start BLE advertising.
110 * Stop BLE advertising.
159 // Handler class that handles BLE advertising operations.
205 // Handles stop advertising.
224 // Note numOfAdvtInstances includes the standard advertising instance.
226 // advertising.
244 // Add some randomness to the advertising min/max interval so the controller can do som
    [all...]
  /frameworks/base/docs/html/distribute/monetize/
premium.jd 18 include advertising or use <a href=
27 monetized by paying for them up front instead of advertising or in-app
36 <a href="{@docRoot}distribute/monetize/ads.html">advertising</a> models.
  /external/e2fsprogs/lib/et/
internal.h 7 * advertising or publicity pertaining to distribution of the software
  /external/e2fsprogs/lib/ss/
data.c 8 * advertising or publicity pertaining to distribution of the software
mit-sipb-copyright.h 12 used in advertising or publicity pertaining to distribution
  /system/bt/vnd/ble/
vendor_hcidefs.h 47 ** Advertising data payload filter VSC
  /developers/build/prebuilts/gradle/BluetoothAdvertisements/Application/src/main/
AndroidManifest.xml 39 <!-- Service to handle BLE Advertising - Using a service allows advertising to continue
  /developers/samples/android/connectivity/bluetooth/BluetoothAdvertisements/Application/src/main/
AndroidManifest.xml 39 <!-- Service to handle BLE Advertising - Using a service allows advertising to continue
  /development/samples/browseable/BluetoothAdvertisements/
AndroidManifest.xml 39 <!-- Service to handle BLE Advertising - Using a service allows advertising to continue
  /libcore/benchmarks/src/benchmarks/regression/
DnsBenchmark.java 35 "uac.advertising.com",
36 "servedby.advertising.com",
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
BleAdvertiserHardwareScanFilterActivity.java 129 showMessage("Start advertising, this should be scanned");
132 showMessage("Start advertising, this should not be scanned");
136 showMessage("Stop advertising");
  /developers/build/prebuilts/gradle/BluetoothAdvertisements/
README.md 13 The functionality is split into two fragments - one for Advertising, one for Scanning.
15 ScannerFragment activates BLE Scanning for 5 seconds and displays a list of found devices which are advertising
19 AdvertiserFragment allows the user to toggle BLE Advertising of that device. It broadcasts basic

Completed in 688 milliseconds

1 2 3 4 5 6 7 8 91011>>