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

/frameworks/base/core/java/android/net/
H A DConnectivityManager.java1181 * @param percentage The quality of the connection 0 is bad, 100 is good
1187 public void reportInetCondition(int networkType, int percentage) { argument
1189 mService.reportInetCondition(networkType, percentage);
/frameworks/av/media/libstagefright/
H A DAwesomePlayer.cpp716 int percentage = 100.0 * (double)cachedDurationUs / mDurationUs; local
717 if (percentage > 100) {
718 percentage = 100;
721 notifyListener_l(MEDIA_BUFFERING_UPDATE, percentage);
766 int percentage = 100.0 * (double)cachedDurationUs / mDurationUs; local
767 if (percentage > 100) {
768 percentage = 100;
771 notifyListener_l(MEDIA_BUFFERING_UPDATE, percentage);
/frameworks/base/services/java/com/android/server/
H A DConnectivityService.java3267 public void reportInetCondition(int networkType, int percentage) { argument
3268 if (VDBG) log("reportNetworkCondition(" + networkType + ", " + percentage + ")");
3277 (percentage > 50 ? "connected" : "disconnected") + " (" + percentage + ") on " +
3285 EVENT_INET_CONDITION_CHANGE, networkType, percentage));

Completed in 132 milliseconds