HomeSort by relevance Sort by last modified time
    Searched refs:ifs (Results 1 - 22 of 22) sorted by null

  /system/core/toolbox/
iftop.c 100 static int get_interfaces(struct if_stats *ifs)
143 ret = sscanf(p, "%" STR(IFNAMSIZ) "s", ifs->name);
153 c = strchr(ifs->name, ':');
160 "%*u %*u\n", &ifs->rx_bytes, &ifs->rx_packets,
161 &ifs->rx_errors, &ifs->rx_dropped, &ifs->tx_bytes,
162 &ifs->tx_packets, &ifs->tx_errors, &ifs->tx_dropped)
228 struct if_stats ifs[2][MAX_IF]; local
    [all...]
  /external/libppp/src/
route.c 213 static char **ifs; /* Figure these out once */ local
216 if (idx > route_nifs || (idx > 0 && ifs[idx-1] == NULL)) {
223 if (ifs) {
224 free(ifs);
225 ifs = NULL;
263 newifs = (char **)realloc(ifs, sizeof(char *) * have);
269 if (ifs) {
270 free(ifs);
271 ifs = NULL;
276 ifs = newifs
    [all...]
  /system/core/sh/
miscbltin.c 77 * Note that if IFS=' :' then read x y should work so that:
95 const char *ifs; local
120 if ((ifs = bltinlookup("IFS", 1)) == NULL)
121 ifs = " \t\n";
144 if (strchr(ifs, c))
151 /* Ignore leading IFS whitespace */
157 /* Only one non-whitespace IFS per word */
179 /* Last variable needs all IFS chars */
192 /* Remove trailing IFS chars *
    [all...]
expand.c 77 * for IFS characters.
90 struct ifsregion ifsfirst; /* first struct in list of ifs regions */
188 const char *ifs = 0; local
192 ifs = ifsset() ? ifsval() : " \t\n";
248 if (flag & EXP_IFS_SPLIT & ifs_split && strchr(ifs, c) != NULL) {
909 * string for IFS characters.
939 * Break the argument string into pieces based upon IFS and add the
941 * searched for IFS characters have been stored by recordregion.
951 const char *ifs; local
960 /* Return entire argument, IFS doesn't apply to any of it *
    [all...]
  /external/javassist/src/main/javassist/
CtClassType.java 308 String[] ifs = file.getInterfaces();
309 int num = ifs.length;
311 if (ifs[i].equals(cname))
318 if (classPool.get(ifs[i]).subtypeOf(clazz))
704 String[] ifs = getClassFile2().getInterfaces(); local
705 int num = ifs.length;
708 ifc[i] = classPool.get(ifs[i]);
715 String[] ifs; local
717 ifs = new String[0];
720 ifs = new String[num]
876 CtClass[] ifs = cc.getInterfaces(); local
918 CtClass[] ifs = getInterfaces(); local
1095 CtClass[] ifs = cc.getInterfaces(); local
1159 CtClass[] ifs = cc.getInterfaces(); local
1652 CtClass[] ifs = getInterfaces(); local
    [all...]
  /external/stlport/test/unit/
codecvt_test.cpp 495 wifstream ifs("test.txt"); // a file containing 4098 wchars
497 ifs.imbue( locale(locale(), new my_codecvt) );
498 ifs.get();
499 ifs.seekg(0);
500 ifs.imbue( locale() );
501 ifs.ignore(4096);
502 int ch = ifs.get();
  /ndk/tests/device/test-gnustl-full/unit/
codecvt_test.cpp 497 wifstream ifs("test.txt"); // a file containing 4098 wchars
499 ifs.imbue( locale(locale(), new my_codecvt) );
500 ifs.get();
501 ifs.seekg(0);
502 ifs.imbue( locale() );
503 ifs.ignore(4096);
504 int ch = ifs.get();
  /ndk/tests/device/test-stlport/unit/
codecvt_test.cpp 497 wifstream ifs("test.txt"); // a file containing 4098 wchars
499 ifs.imbue( locale(locale(), new my_codecvt) );
500 ifs.get();
501 ifs.seekg(0);
502 ifs.imbue( locale() );
503 ifs.ignore(4096);
504 int ch = ifs.get();
  /external/dhcpcd/
dhcpcd.c 776 struct if_state *ifs = iface->state; local
777 struct if_options *ifo = ifs->options;
1258 struct if_state *ifs; local
1261 ifs = iface->state;
1263 ifs = iface->state = xzalloc(sizeof(*ifs));
1265 ifs->state = DHS_INIT;
1266 ifs->reason = "PREINIT";
1267 ifs->nakoff = 1;
1273 if (ifs->options->options & DHCPCD_REQUEST
1299 struct interface *ifs, *ifp, *ifn, *ifl = NULL; local
1474 struct interface *ifl, *ifn, *ifp, *ifs, *ift; local
    [all...]
net.c 337 struct interface *ifp, *ifs, *ifl; local
359 ifs = ifl = NULL;
373 for (ifp = ifs; ifp; ifp = ifp->next)
521 ifs = ifp;
530 return ifs;
  /external/javassist/src/main/javassist/compiler/
MemberResolver.java 155 CtClass[] ifs = clazz.getInterfaces(); local
156 int size = ifs.length;
158 Method r = lookupMethod(ifs[i], methodName,
  /external/wpa_supplicant_8/wpa_supplicant/
events.c 1257 struct wpa_supplicant *ifs; local
    [all...]
p2p_supplicant.c 131 struct wpa_supplicant *ifs; local
141 for (ifs = wpa_s->global->ifaces; ifs; ifs = ifs->next) {
142 if (ifs->sta_scan_pending &&
146 "completed on interface %s", ifs->ifname);
148 wpa_supplicant_req_scan(ifs, 0, 0);
204 for (ifs = wpa_s->global->ifaces; ifs; ifs = ifs->next)
5406 struct wpa_supplicant *ifs; local
    [all...]
  /external/oprofile/module/ia64/
IA64minstate.h 173 st8 [r16]=rCRIFS, 16; /* save cr.ifs */ \
277 #define SAVE_MIN_WITH_COVER DO_SAVE_MIN(cover, mov rCRIFS=cr.ifs,)
279 DO_SAVE_MIN(cover, mov rCRIFS=cr.ifs, mov r15=r19)
  /frameworks/base/tools/aidl/
generate_java_rpc.cpp 158 IfStatement* ifs = new IfStatement(); local
159 ifs->expression = new MethodCall(new StringLiteralExpression(method->name.data), "equals",
161 StatementBlock* block = ifs->statements = new StatementBlock;
163 this->dispatchIfStatement = ifs;
166 this->dispatchIfStatement->elseif = ifs;
167 this->dispatchIfStatement = ifs;
    [all...]
  /ndk/sources/host-tools/make-3.81/
job.c 2929 char *shell, *ifs; local
    [all...]
  /external/ppp/pppd/
sys-linux.c 1753 struct ifreq ifs[MAX_IFS]; local
1878 struct ifreq ifs[MAX_IFS]; local
    [all...]
  /external/javassist/src/main/javassist/util/proxy/
ProxyFactory.java 365 public void setInterfaces(Class[] ifs) {
366 interfaces = ifs;
1023 Class[] ifs = clazz.getInterfaces(); local
    [all...]
  /external/javassist/src/main/javassist/bytecode/
SignatureAttribute.java 666 ClassType[] ifs local
668 return new ClassSignature(tp, superClass, ifs);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.mortbay.jetty.util_6.1.23.v201004211559.jar 
  /prebuilts/misc/common/jython/
jython.jar 
  /external/mksh/src/
edit.c 763 const char *ifs = str_val(local("IFS", 0)); local
768 vstrchr(ifs, s[add])) {
    [all...]

Completed in 879 milliseconds