Home
last modified time | relevance | path

Searched refs:targetMethod (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/core/java/android/hardware/camera2/dispatch/
DMethodNameInvoker.java71 Method targetMethod = mMethods.get(methodName); in invoke() local
72 if (targetMethod == null) { in invoke()
77 targetMethod = method; in invoke()
78 mMethods.put(methodName, targetMethod); in invoke()
83 if (targetMethod == null) { in invoke()
90 return (K) mTarget.dispatch(targetMethod, params); in invoke()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/
DSupplicantP2pIfaceHal.java732 int targetMethod = wpsInfoToConfigMethod(config.wps.setup); in provisionDiscovery() local
733 if (targetMethod == RESULT_NOT_VALID) { in provisionDiscovery()
737 if (targetMethod == ISupplicantP2pIface.WpsProvisionMethod.DISPLAY) { in provisionDiscovery()
739 targetMethod = ISupplicantP2pIface.WpsProvisionMethod.KEYPAD; in provisionDiscovery()
740 } else if (targetMethod == ISupplicantP2pIface.WpsProvisionMethod.KEYPAD) { in provisionDiscovery()
742 targetMethod = ISupplicantP2pIface.WpsProvisionMethod.DISPLAY; in provisionDiscovery()
760 result.setResult(mISupplicantP2pIface.provisionDiscovery(macAddress, targetMethod)); in provisionDiscovery()