HomeSort by relevance Sort by last modified time
    Searched refs:linkspeed (Results 1 - 2 of 2) sorted by null

  /system/core/nexus/
WifiController.cpp 85 mDynamicProperties.propLinkSpeed = new IntegerPropertyHelper("LinkSpeed", true, &mLastLinkSpeed);
628 int linkspeed = mSupplicant->getLinkSpeed(); local
629 if (linkspeed != mLastLinkSpeed) {
632 mLastLinkSpeed, linkspeed);
633 mLastLinkSpeed = linkspeed;
  /frameworks/base/core/jni/
android_net_wifi_Wifi.cpp 358 int linkspeed; local
360 if (doCommand("DRIVER LINKSPEED", reply, sizeof(reply)) != 0) {
363 // reply comes back in the form "LinkSpeed XX" where XX is the
365 sscanf(reply, "%*s %u", &linkspeed);
366 return (jint)linkspeed;

Completed in 109 milliseconds