HomeSort by relevance Sort by last modified time
    Searched refs:iface (Results 226 - 250 of 386) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libusb/libusb/
libusbi.h 580 int (*claim_interface)(struct libusb_device_handle *handle, int iface);
597 int (*release_interface)(struct libusb_device_handle *handle, int iface);
614 int iface, int altsetting);
  /external/wpa_supplicant_8/hostapd/
ctrl_iface.c 768 static int hostapd_ctrl_iface_enable(struct hostapd_iface *iface)
770 if (hostapd_enable_iface(iface) < 0) {
778 static int hostapd_ctrl_iface_reload(struct hostapd_iface *iface)
780 if (hostapd_reload_iface(iface) < 0) {
788 static int hostapd_ctrl_iface_disable(struct hostapd_iface *iface)
790 if (hostapd_disable_iface(iface) < 0) {
951 if (hostapd_ctrl_iface_enable(hapd->iface))
954 if (hostapd_ctrl_iface_reload(hapd->iface))
957 if (hostapd_ctrl_iface_disable(hapd->iface))
982 os_strlen(hapd->conf->iface) + 2
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
soc-dapm.h 135 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
141 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), \
147 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
soc-dapm.h 135 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
141 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), \
147 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
  /dalvik/dx/src/com/android/dx/command/dump/
Main.java 19 import com.android.dx.cf.iface.ParseException;
SsaDumper.java 21 import com.android.dx.cf.iface.Member;
22 import com.android.dx.cf.iface.Method;
  /dalvik/dx/src/com/android/dx/dex/cf/
CfTranslator.java 23 import com.android.dx.cf.iface.Field;
24 import com.android.dx.cf.iface.FieldList;
25 import com.android.dx.cf.iface.Method;
26 import com.android.dx.cf.iface.MethodList;
  /external/clang/lib/ARCMigrate/
TransProperties.cpp 94 ObjCInterfaceDecl *iface = D->getClassInterface(); local
95 if (!iface)
98 collectProperties(iface, AtProps);
144 for (ObjCCategoryDecl *Cat = iface->getCategoryList();
  /external/libppp/src/
Makefile 9 iface.c ip.c ipcp.c ipv6cp.c iplist.c lcp.c link.c log.c lqr.c main.c \
tcpmss.c 60 #include "iface.h"
165 MAXMSS(bundle->iface->mtu));
bundle.c 95 #include "iface.h"
709 if (bundle.iface != NULL) { /* Already allocated ! */
769 bundle.iface = iface_Create(ifname);
770 if (bundle.iface == NULL) {
852 iface_Destroy(bundle.iface);
853 bundle.iface = NULL;
893 iface_Clear(bundle.iface, &bundle.ncp, 0, IFACE_CLEAR_ALL);
904 iface_ClearFlags(bundle->iface->name, IFF_UP);
920 iface_Clear(bundle->iface, &bundle->ncp, 0, IFACE_CLEAR_ALL);
941 iface_Destroy(bundle->iface);
    [all...]
route.c 80 #include "iface.h"
395 log_Printf(LogDEBUG, "route_IfDelete (%d)\n", bundle->iface->index);
435 if (rtm->rtm_index == bundle->iface->index &&
486 log_Printf(LogDEBUG, "route_UpdateMTU (%d)\n", bundle->iface->index);
520 sa[RTAX_GATEWAY] && rtm->rtm_index == bundle->iface->index) {
525 ncprange_ntoa(&dst), bundle->iface->mtu);
780 add_scope((struct sockaddr *)&sadst, bundle->iface->index);
793 add_scope((struct sockaddr *)&sagw, bundle->iface->index);
896 rtmes.m_rtm.rtm_rmx.rmx_mtu = bundle->iface->mtu;
  /external/doclava/src/com/google/doclava/
MethodInfo.java 68 for (ClassInfo iface : queue) {
69 for (MethodInfo me : iface.methods()) {
106 for (ClassInfo iface : queue) {
107 for (MethodInfo me : iface.methods()) {
139 for (ClassInfo iface : queue) {
140 for (MethodInfo me : iface.methods()) {
165 for (ClassInfo iface : queue) {
166 for (MethodInfo me : iface.methods()) {
169 return iface;
  /external/wpa_supplicant_8/wpa_supplicant/
wpa_supplicant.c     [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/net/
NetworkPanel.java 750 // iface and set are currently ignored, which groups those
754 entry.iface = null; //cols[1];
792 public String iface; field in class:NetworkPanel.NetworkSnapshot.Entry
819 final Entry existing = findEntry(entry.iface, entry.uid, entry.set, entry.tag);
835 public Entry findEntry(String iface, int uid, int set, int tag) {
838 && equal(entry.iface, iface)) {
855 leftEntry.iface, leftEntry.uid, leftEntry.set, leftEntry.tag);
859 resultEntry.iface = leftEntry.iface;
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_new_handlers.c 517 * wpas_dbus_handler_create_interface - Request registration of a network iface
580 * Try to get the wpa_supplicant record for this iface, return
590 struct wpa_interface iface; local
591 os_memset(&iface, 0, sizeof(iface));
592 iface.driver = driver;
593 iface.ifname = ifname;
594 iface.confname = confname;
595 iface.bridge_ifname = bridge_ifname;
597 if ((wpa_s = wpa_supplicant_add_iface(global, &iface))) {
1447 char *iface = NULL, *net_id = NULL; local
1546 char *iface = NULL, *net_id = NULL; local
1597 char *iface = NULL, *net_id = NULL; local
    [all...]
  /external/wpa_supplicant_8/src/drivers/
driver_atheros.c 62 char iface[IFNAMSIZ + 1]; member in struct:atheros_driver_data
189 os_strlcpy(iwr.ifr_name, drv->iface, IFNAMSIZ);
208 __func__, drv->iface, op,
222 os_strlcpy(iwr.ifr_name, drv->iface, IFNAMSIZ);
229 "(%s) arg %d)", __func__, drv->iface, op,
974 drv->sock_raw = l2_packet_init(drv->iface, NULL, ETH_P_80211_RAW,
    [all...]
  /cts/tools/cfassembler/src/dxconvext/
ClassFileParser.java 22 import com.android.dx.cf.iface.Member;
23 import com.android.dx.cf.iface.ParseObserver;
  /dalvik/dx/src/com/android/dx/command/annotool/
AnnotationLister.java 22 import com.android.dx.cf.iface.AttributeList;
23 import com.android.dx.cf.iface.Attribute;
  /dalvik/tests/068-classloader/src/
Main.java 264 IGetDoubled iface = (IGetDoubled) obj; local
267 DoubledExtendOkay de = iface.getDoubled();
  /external/guava/guava/src/com/google/common/eventbus/
EventBus.java 176 for (Class<?> iface : clazz.getInterfaces()) {
177 parents.add(iface);
  /external/iproute2/misc/
arpd.c 51 __u32 iface; member in struct:dbkey
336 key.iface = ndm->ndm_ifindex;
372 respond_to_kernel(key.iface, key.addr, dbdat.data, dbdat.size);
510 key.iface = sll.sll_ifindex;
701 if (sscanf(buf, "%u%s%s", &k.iface, ipbuf, macbuf) != 3) {
732 if (handle_if(key->iface)) {
736 key->iface,
741 key->iface,
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCResultSetMetaData.java 215 public <T> T unwrap(java.lang.Class<T> iface) throws SQLException {
219 public boolean isWrapperFor(java.lang.Class iface) throws SQLException {
JDBCStatement.java 317 public <T> T unwrap(java.lang.Class<T> iface) throws SQLException {
321 public boolean isWrapperFor(java.lang.Class iface) throws SQLException {
  /external/wpa_supplicant_8/wpa_supplicant/examples/
wpas-dbus-new-signals.py 150 iface = dbus.Interface(if_obj, WPAS_DBUS_INTERFACES_INTERFACE)
151 iface.connect_to_signal("ScanDone", scanDone2,

Completed in 1198 milliseconds

1 2 3 4 5 6 7 8 91011>>