Home | History | Annotate | Download | only in wearhighbandwidthnetworking

Lines Matching defs:bandwidth

37  * This sample demonstrates how to determine if a high-bandwidth network is available for use cases
38 * that require a minimum network bandwidth, such as streaming media or downloading large files.
40 * for high-bandwidth network operations, if currently available networks are inadequate.
52 // How long the app should wait trying to connect to a sufficient high-bandwidth network before
56 // The minimum network bandwidth required by the app for high-bandwidth operations.
149 // Determine if there is a high-bandwidth network exists. Checks both the active
150 // and bound networks. Returns false if no network is available (low or high-bandwidth).
159 int bandwidth = mConnectivityManager
162 if (bandwidth >= MIN_NETWORK_BANDWIDTH_KBPS) {
170 // Before requesting a high-bandwidth network, ensure prior requests are invalidated.
173 Log.d(LOG_TAG, "Requesting high-bandwidth network");