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

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiNative.java205 private native static boolean startSupplicantNative(boolean p2pSupported); argument
206 public boolean startSupplicant(boolean p2pSupported) { argument
208 return startSupplicantNative(p2pSupported);
214 private native static boolean killSupplicantNative(boolean p2pSupported); argument
215 public boolean killSupplicant(boolean p2pSupported) { argument
217 return killSupplicantNative(p2pSupported);
H A DWifiMonitor.java638 public synchronized void killSupplicant(boolean p2pSupported) { argument
644 Log.e(TAG, "killSupplicant p2p" + p2pSupported
647 mWifiNative.killSupplicant(p2pSupported);
/frameworks/opt/net/wifi/service/jni/
H A Dcom_android_server_wifi_WifiNative.cpp125 static jboolean android_net_wifi_startSupplicant(JNIEnv* env, jclass, jboolean p2pSupported) argument
127 return (::wifi_start_supplicant(p2pSupported) == 0);
130 static jboolean android_net_wifi_killSupplicant(JNIEnv* env, jclass, jboolean p2pSupported) argument
132 return (::wifi_stop_supplicant(p2pSupported) == 0);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/
H A DWifiP2pServiceImpl.java578 P2pStateMachine(String name, Looper looper, boolean p2pSupported) { argument
598 if (p2pSupported) {

Completed in 1762 milliseconds