Home | History | Annotate | Download | only in pending

Lines Matching defs:args

47   unsigned long args[4] = { BRCTL_GET_PORT_LIST,
51 args[1] = (unsigned long)ifindices;
53 ifr.ifr_data = (char *)args;
61 unsigned long args[4] = { BRCTL_GET_BRIDGE_INFO,
66 ifr.ifr_data = (char *)args;
78 unsigned long args[4] = { BRCTL_GET_BRIDGES,
82 num = ioctl(TT.sockfd, SIOCGIFBR, args); //ret is num of bridges found
116 unsigned long args[4] = {BRCTL_ADD_BRIDGE, (unsigned long) br, 0, 0};
122 xioctl(TT.sockfd, SIOCSIFBR, args);
129 unsigned long args[4] = {BRCTL_DEL_BRIDGE, (unsigned long) br, 0, 0};
135 xioctl(TT.sockfd, SIOCSIFBR, args);
143 unsigned long args[4] = {BRCTL_ADD_IF, 0, 0, 0};
150 args[1] = index;
152 ifr.ifr_data = (char *)args;
161 unsigned long args[4] = {BRCTL_DEL_IF, 0, 0, 0};
168 args[1] = index;
170 ifr.ifr_data = (char *)args;
195 unsigned long args[4] = {cmd, val, 0, 0};
198 ifr.ifr_data = (char *)args;
262 unsigned long args[4] = {cmd, 0, val, 0};
272 args[1] = i;
274 ifr.ifr_data = (char *)args;
323 if (toys.optc < t->nargs) help_exit("check args");