Searched refs:percentage (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/net/
H A DIConnectivityManager.aidl76 void reportInetCondition(int networkType, int percentage);
H A DConnectivityManager.java559 * @param percentage The quality of the connection 0 is bad, 100 is good
562 public void reportInetCondition(int networkType, int percentage) { argument
564 mService.reportInetCondition(networkType, percentage);
/frameworks/base/media/libstagefright/
H A DAwesomePlayer.cpp584 int percentage = 100.0 * (double)cachedDurationUs / mDurationUs; local
585 if (percentage > 100) {
586 percentage = 100;
589 notifyListener_l(MEDIA_BUFFERING_UPDATE, percentage);
/frameworks/base/services/java/com/android/server/
H A DConnectivityService.java1741 public void reportInetCondition(int networkType, int percentage) { argument
1742 if (DBG) Slog.d(TAG, "reportNetworkCondition(" + networkType + ", " + percentage + ")");
1751 (percentage > 50 ? "connected" : "disconnected") + " (" + percentage + ") on " +
1759 EVENT_INET_CONDITION_CHANGE, networkType, percentage));

Completed in 170 milliseconds