HomeSort by relevance Sort by last modified time
    Searched defs:ifc (Results 1 - 19 of 19) sorted by null

  /external/strace/
sock.c 88 struct ifconf ifc; local
94 if (umove(tcp, tcp->u_arg[2], &ifc) >= 0
95 && ifc.ifc_buf == NULL)
96 tprintf(", {%d -> ", ifc.ifc_len);
248 if (umove(tcp, tcp->u_arg[2], &ifc) < 0) {
252 tprintf("%d, ", ifc.ifc_len);
254 tprintf("%lx", (unsigned long) ifc.ifc_buf);
255 } else if (ifc.ifc_buf == NULL) {
259 unsigned nifra = ifc.ifc_len / sizeof(struct ifreq);
262 if (umoven(tcp, (unsigned long) ifc.ifc_buf
    [all...]
  /external/dnsmasq/src/
bpf.c 35 struct ifconf ifc; local
50 ifc.ifc_len = len;
51 ifc.ifc_buf = ifconf.iov_base;
53 if (ioctl(fd, SIOCGIFCONF, &ifc) == -1)
60 if (ifc.ifc_len == lastlen)
62 lastlen = ifc.ifc_len;
66 for (ptr = ifc.ifc_buf; ptr < (char *)(ifc.ifc_buf + ifc.ifc_len); ptr += len)
  /external/libpcap/
fad-glifc.c 89 struct lifconf ifc; local
151 ifc.lifc_len = buf_size;
152 ifc.lifc_buf = buf;
153 ifc.lifc_family = AF_UNSPEC;
154 ifc.lifc_flags = 0;
156 if (ioctl(fd4, SIOCGLIFCONF, (char *)&ifc) < 0) {
169 ifend = (struct lifreq *)(buf + ifc.lifc_len);
fad-gifc.c 276 struct ifconf ifc; local
314 ifc.ifc_len = buf_size;
315 ifc.ifc_buf = buf;
317 if (ioctl(fd, SIOCGIFCONF, (char *)&ifc) < 0
325 if (ifc.ifc_len < buf_size &&
326 (buf_size - ifc.ifc_len) > sizeof(ifrp->ifr_name) + MAX_SA_LEN)
333 ifend = (struct ifreq *)(buf + ifc.ifc_len);
356 * doesn't update ifc.ifc_len, leaving it larger than the
  /external/chromium/third_party/libjingle/source/talk/base/
network.cc 243 struct ifconf ifc; local
244 ifc.ifc_len = 64 * sizeof(struct ifreq);
245 ifc.ifc_buf = new char[ifc.ifc_len];
247 if (ioctl(fd, SIOCGIFCONF, &ifc) < 0) {
251 assert(ifc.ifc_len < static_cast<int>(64 * sizeof(struct ifreq)));
253 struct ifreq* ptr = reinterpret_cast<struct ifreq*>(ifc.ifc_buf);
255 reinterpret_cast<struct ifreq*>(ifc.ifc_buf + ifc.ifc_len);
279 delete [] ifc.ifc_buf
    [all...]
  /external/mdnsresponder/mDNSPosix/
mDNSUNP.c 223 struct ifconf ifc; local
252 ifc.ifc_len = len;
253 ifc.ifc_buf = buf;
254 if (ioctl(sockfd, SIOCGIFCONF, &ifc) < 0) {
259 if (ifc.ifc_len == lastlen)
261 lastlen = ifc.ifc_len;
272 for (ptr = buf; ptr < buf + ifc.ifc_len; ) {
  /system/core/fastboot/
usb_linux.c 103 struct usb_interface_descriptor *ifc; local
164 ifc = (void*) ptr;
165 len -= ifc->bLength;
166 ptr += ifc->bLength;
170 info.ifc_class = ifc->bInterfaceClass;
171 info.ifc_subclass = ifc->bInterfaceSubClass;
172 info.ifc_protocol = ifc->bInterfaceProtocol;
174 for(e = 0; e < ifc->bNumEndpoints; e++) {
197 *ifc_id = ifc->bInterfaceNumber;
210 int n, in, out, ifc; local
    [all...]
  /external/e2fsprogs/lib/uuid/
gen_uuid.c 225 struct ifconf ifc; local
254 ifc.ifc_len = sizeof(buf);
255 ifc.ifc_buf = buf;
256 if (ioctl (sd, SIOCGIFCONF, (char *)&ifc) < 0) {
260 n = ifc.ifc_len;
262 ifrp = (struct ifreq *)((char *) ifc.ifc_buf+i);
  /external/ppp/pppd/plugins/rp-pppoe/
if.c 151 struct ifconf ifc; local
156 ifc.ifc_len = sizeof(inbuf);
157 ifc.ifc_buf = inbuf;
158 if (ioctl(sock, SIOCGIFCONF, &ifc) < 0) {
161 ifr = ifc.ifc_req;
163 for (i = 0; i < ifc.ifc_len; ) {
164 ifr = (struct ifreq *)((caddr_t)ifc.ifc_req + i);
  /external/valgrind/main/coregrind/m_syswrap/
syswrap-linux.c 4169 struct vki_ifconf *ifc = (struct vki_ifconf *) ARG3; local
5385 struct vki_ifconf *ifc = (struct vki_ifconf *) ARG3; local
    [all...]
syswrap-darwin.c 829 struct vki_ifconf *ifc = (struct vki_ifconf *) ARG3; local
831 (Addr)(ifc->vki_ifc_buf), ifc->ifc_len );
977 struct vki_ifconf *ifc = (struct vki_ifconf *) ARG3; local
978 if (ifc->vki_ifc_buf != NULL)
979 POST_MEM_WRITE( (Addr)(ifc->vki_ifc_buf), ifc->ifc_len );
    [all...]
  /hardware/libhardware_legacy/wifi/
wifi.c 340 char ifc[PROPERTY_VALUE_MAX]; local
366 property_get("wifi.interface", ifc, WIFI_TEST_INTERFACE);
368 strcpy(ifc, CONTROL_IFACE_PATH);
373 int mlen = strlen(ifc);
375 if (strncmp(ifc, iptr, mlen) != 0) {
376 ALOGE("ctrl_interface != %s", ifc);
382 memcpy(iptr, ifc, strlen(ifc));
  /external/dhcpcd/
dhcpcd.c 102 static int ifc; variable
1247 if (ifc) {
1248 for (i = 0; i < ifc; i++)
1251 if (i >= ifc)
    [all...]
  /external/emma/core/java12/com/vladium/emma/instr/
InstrVisitor.java 302 final CONSTANT_Class_info ifc = (CONSTANT_Class_info) constants.get (interfaces.get (i)); local
303 final String ifcName = ifc.getName (cls);
    [all...]
  /external/ppp/pppd/
sys-linux.c 1752 struct ifconf ifc; local
1877 struct ifconf ifc; local
    [all...]
sys-solaris.c 386 struct ifconf ifc; local
416 ifc.ifc_len = req_size;
417 ifc.ifc_buf = req;
418 if (ioctl(fd, SIOCGIFCONF, &ifc) < 0) {
429 pifreq = ifc.ifc_req;
431 for (i = ifc.ifc_len / sizeof(struct ifreq); i > 0; i--, pifreq++) {
2154 struct ifconf ifc; local
2397 struct ifconf ifc; local
    [all...]
  /external/javassist/src/main/javassist/
CtClassType.java 706 CtClass[] ifc = new CtClass[num]; local
708 ifc[i] = classPool.get(ifs[i]);
710 return ifc;
    [all...]
  /dalvik/dx/etc/
jasmin.jar 
  /external/emma/lib/
emma.jar 

Completed in 1722 milliseconds