Lines Matching refs:iface
299 * Create an AP iface on the chip.
311 * @return iface HIDL interface object representing the iface if
314 createApIface() generates (WifiStatus status, IWifiApIface iface);
317 * List all the AP iface names configured on the chip.
318 * The corresponding |IWifiApIface| object for any iface are
325 * @return ifnames List of all AP iface names on the chip.
333 * @param ifname Name of the iface.
339 * @return iface HIDL interface object representing the iface if
342 getApIface(string ifname) generates (WifiStatus status, IWifiApIface iface);
349 * @param ifname Name of the iface.
359 * Create a NAN iface on the chip.
371 * @return iface HIDL interface object representing the iface if
374 createNanIface() generates (WifiStatus status, IWifiNanIface iface);
377 * List all the NAN iface names configured on the chip.
378 * The corresponding |IWifiNanIface| object for any iface are
385 * @return ifnames List of all NAN iface names on the chip.
393 * @param ifname Name of the iface.
399 * @return iface HIDL interface object representing the iface if
402 getNanIface(string ifname) generates (WifiStatus status, IWifiNanIface iface);
409 * @param ifname Name of the iface.
419 * Create a P2P iface on the chip.
431 * @return iface HIDL interface object representing the iface if
434 createP2pIface() generates (WifiStatus status, IWifiP2pIface iface);
437 * List all the P2P iface names configured on the chip.
438 * The corresponding |IWifiP2pIface| object for any iface are
445 * @return ifnames List of all P2P iface names on the chip.
453 * @param ifname Name of the iface.
459 * @return iface HIDL interface object representing the iface if
462 getP2pIface(string ifname) generates (WifiStatus status, IWifiP2pIface iface);
469 * @param ifname Name of the iface.
479 * Create an STA iface on the chip.
491 * @return iface HIDL interface object representing the iface if
494 createStaIface() generates (WifiStatus status, IWifiStaIface iface);
497 * List all the STA iface names configured on the chip.
498 * The corresponding |IWifiStaIface| object for any iface are
505 * @return ifnames List of all STA iface names on the chip.
513 * @param ifname Name of the iface.
519 * @return iface HIDL interface object representing the iface if
522 getStaIface(string ifname) generates (WifiStatus status, IWifiStaIface iface);
529 * @param ifname Name of the iface.
542 * a) Bound to a specific iface by passing in the corresponding |IWifiIface|
543 * object in |iface| param, OR
544 * b) Let the implementation decide the iface to use for RTT operations by
545 * passing null in |iface| param.
547 * @param boundIface HIDL interface object representing the iface if
548 * the responder must be bound to a specific iface, null otherwise.