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

  /external/strace/
sock.c 92 struct ifconf ifc; local
98 umove(tcp, tcp->u_arg[2], &ifc);
99 if (ifc.ifc_buf == NULL)
100 tprintf(", {%d -> ", ifc.ifc_len);
212 umove(tcp, tcp->u_arg[2], &ifc);
213 tprintf("%d, ", ifc.ifc_len);
215 tprintf("%lx", (unsigned long) ifc.ifc_buf);
216 } else if (ifc.ifc_buf == NULL) {
220 unsigned nifra = ifc.ifc_len / sizeof(struct ifreq);
222 umoven(tcp, (unsigned long) ifc.ifc_buf, sizeof(ifra)
    [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/dhcpcd/
net.c 185 struct ifconf ifc; local
206 memset(&ifc, 0, sizeof(ifc));
208 ifc.ifc_len = len;
209 ifc.ifc_buf = xmalloc((size_t)len);
210 if (ioctl(s, SIOCGIFCONF, &ifc) == -1) {
213 free(ifc.ifc_buf);
217 if (ifc.ifc_len == lastlen)
219 lastlen = ifc.ifc_len;
222 free(ifc.ifc_buf)
    [all...]
  /external/e2fsprogs/lib/uuid/
gen_uuid.c 182 struct ifconf ifc; local
211 ifc.ifc_len = sizeof(buf);
212 ifc.ifc_buf = buf;
213 if (ioctl (sd, SIOCGIFCONF, (char *)&ifc) < 0) {
217 n = ifc.ifc_len;
219 ifrp = (struct ifreq *)((char *) ifc.ifc_buf+i);
  /system/core/fastboot/
usb_linux.c 98 struct usb_interface_descriptor *ifc; local
156 ifc = (void*) ptr;
157 len -= ifc->bLength;
158 ptr += ifc->bLength;
162 info.ifc_class = ifc->bInterfaceClass;
163 info.ifc_subclass = ifc->bInterfaceSubClass;
164 info.ifc_protocol = ifc->bInterfaceProtocol;
166 for(e = 0; e < ifc->bNumEndpoints; e++) {
189 *ifc_id = ifc->bInterfaceNumber;
202 int n, in, out, ifc; local
    [all...]
  /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/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...]
  /cts/tools/dx-tests/lib/
jasmin.jar 
  /dalvik/dx/etc/
jasmin.jar 
  /external/emma/lib/
emma.jar 

Completed in 1206 milliseconds