HomeSort by relevance Sort by last modified time
    Searched refs:ifc (Results 1 - 25 of 72) sorted by null

1 2 3

  /external/llvm/test/MC/AsmParser/
directive-err.s 8 .ifc a,a
23 .ifc one, two
ifc.s 5 .ifc foo, foo
13 .ifc "foo space", "foo space"
21 .ifc foo space, foo space
29 .ifc unequal, unEqual
  /external/compiler-rt/test/msan/
ioctl_custom.cc 20 struct ifconf ifc; local
21 ifc.ifc_ifcu.ifcu_req = ifreqs;
23 ifc.ifc_len = sizeof(ifreqs);
25 int res = ioctl(fd, SIOCGIFCONF, (void *)&ifc);
30 for (int i = 0; i < ifc.ifc_len / sizeof(*ifc.ifc_ifcu.ifcu_req); ++i)
  /external/strace/
sock.c 58 struct ifconf ifc; local
64 if (umove(tcp, tcp->u_arg[2], &ifc) >= 0
65 && ifc.ifc_buf == NULL)
66 tprintf(", {%d -> ", ifc.ifc_len);
217 if (umove(tcp, tcp->u_arg[2], &ifc) < 0) {
221 tprintf("%d, ", ifc.ifc_len);
223 tprintf("%lx", (unsigned long) ifc.ifc_buf);
224 } else if (ifc.ifc_buf == NULL) {
228 unsigned nifra = ifc.ifc_len / sizeof(struct ifreq);
231 if (umoven(tcp, (unsigned long) ifc.ifc_buf
    [all...]
  /system/core/fastboot/
usb_linux.c 120 struct usb_interface_descriptor *ifc; local
192 ifc = (struct usb_interface_descriptor *)ptr;
193 len -= ifc->bLength;
194 ptr += ifc->bLength;
198 info.ifc_class = ifc->bInterfaceClass;
199 info.ifc_subclass = ifc->bInterfaceSubClass;
200 info.ifc_protocol = ifc->bInterfaceProtocol;
202 for(e = 0; e < ifc->bNumEndpoints; e++) {
234 *ifc_id = ifc->bInterfaceNumber;
306 int n, in, out, ifc; local
    [all...]
usb.h 59 typedef int (*ifc_match_func)(usb_ifc_info *ifc);
  /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/libcap-ng/libcap-ng-0.7/utils/
netcap.c 212 static void report_finding(int port, const char *type, const char *ifc)
241 if (ifc)
242 printf(" %-6s", ifc);
351 static void get_interface(unsigned int iface, char *ifc)
358 *ifc = 0;
374 sscanf(buf, "%16s: %256s\n", ifc, more);
375 c = strchr(ifc, ':');
393 char more[256], ifc[32]; local
412 get_interface(iface, ifc);
414 report_finding(0, "pkt", ifc);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/
generate_injected_script_externs.py 185 ifc = read_interface(idl)
186 interface_name = interface_name_map.get(ifc.name, ifc.name)
188 for attribute in ifc.attributes:
192 for method in ifc.methods:
201 if interface_name != ifc.name:
202 output.write('\n/** @type {!%s} */\nvar %s;\n' % (interface_name, ifc.name))
  /external/libpcap/
fad-gifc.c 146 struct ifconf ifc; local
184 ifc.ifc_len = buf_size;
185 ifc.ifc_buf = buf;
187 if (ioctl(fd, SIOCGIFCONF, (char *)&ifc) < 0
195 if (ifc.ifc_len < buf_size &&
196 (buf_size - ifc.ifc_len) > sizeof(ifrp->ifr_name) + MAX_SA_LEN)
203 ifend = (struct ifreq *)(buf + ifc.ifc_len);
226 * doesn't update ifc.ifc_len, leaving it larger than the
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);
  /external/ppp/pppd/
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...]
sys-linux.c 1753 struct ifconf ifc; local
1878 struct ifconf ifc; local
    [all...]
  /external/pixman/pixman/
pixman-arm-simd-asm.h 190 .ifc base,DST
319 .ifc cond,mi
322 .ifc cond,cs
325 .ifc cond,ne
537 .ifc "last_one",""
765 .ifc "process_inner_loop",""
884 .ifc "SAVED_REG","Y"
888 .ifc "SAVED_REG","STRIDE_D"
892 .ifc "SAVED_REG","STRIDE_S"
896 .ifc "SAVED_REG","STRIDE_M
    [all...]
  /external/mdnsresponder/mDNSPosix/
mDNSUNP.c 230 struct ifconf ifc; local
259 ifc.ifc_len = len;
260 ifc.ifc_buf = buf;
261 if (ioctl(sockfd, SIOCGIFCONF, &ifc) < 0) {
266 if (ifc.ifc_len == lastlen)
268 lastlen = ifc.ifc_len;
279 for (ptr = buf; ptr < buf + ifc.ifc_len; ) {
  /libcore/libart/src/main/java/java/lang/
Class.java 681 Class<?> ifc = (Class<?>) iftable[i]; local
682 Method result = ifc.getPublicMethodRecursive(name, parameterTypes);
850 Class<?> ifc = (Class<?>) iftable[i]; local
1101 Class<?> ifc = (Class<?>) ifTable[i]; local
1147 Class<?> ifc = (Class<?>) iftable[i]; local
1478 Class<?> ifc = (Class<?>) iftable[i]; local
    [all...]
  /external/e2fsprogs/lib/uuid/
gen_uuid.c 229 struct ifconf ifc; local
258 ifc.ifc_len = sizeof(buf);
259 ifc.ifc_buf = buf;
260 if (ioctl (sd, SIOCGIFCONF, (char *)&ifc) < 0) {
264 n = ifc.ifc_len;
266 ifrp = (struct ifreq *)((char *) ifc.ifc_buf+i);
  /external/iputils/
rarpd.c 93 struct ifconf ifc; local
101 ifc.ifc_len = sizeof ibuf;
102 ifc.ifc_buf = (caddr_t)ibuf;
103 if (ioctl(fd, SIOCGIFCONF, (char *)&ifc) < 0 ||
104 ifc.ifc_len < (int)sizeof(struct ifreq)) {
119 ifend = (struct ifreq *)((char *)ibuf + ifc.ifc_len);
arping.c 843 struct ifconf ifc; local
869 ifc.ifc_buf = (char *)ifr0;
870 ifc.ifc_len = ifrsize;
872 rc = ioctl(s, SIOCGIFCONF, &ifc);
878 if (ifc.ifc_len + sizeof(*ifr0) + sizeof(struct sockaddr_storage) - sizeof(struct sockaddr) <= ifrsize)
890 ifr_end = (struct ifreq *)(((char *)ifr0) + ifc.ifc_len - sizeof(*ifr0));
rdisc.c 1104 struct ifconf ifc; local
1143 ifc.ifc_len = bufsize;
1144 ifc.ifc_buf = buf;
1145 if (ioctl(sock, SIOCGIFCONF, (char *)&ifc) < 0) {
1151 ifr = ifc.ifc_req;
1152 for (i = 0, n = ifc.ifc_len/sizeof (struct ifreq); n > 0; n--, ifr++) {
    [all...]
  /system/core/netcfg/
netcfg.c 22 #include <netutils/ifc.h>
  /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/dhcpcd/
ifaddrs.c 31 #include <netutils/ifc.h>
  /system/netd/server/
SoftapController.cpp 38 #include <netutils/ifc.h>
  /external/chromium_org/third_party/webrtc/test/channel_transport/
udp_transport_impl.cc     [all...]

Completed in 654 milliseconds

1 2 3