HomeSort by: relevance | last modified time | path
    Searched refs:ifs (Results 1 - 15 of 15) sorted by relevancy

  /src/sbin/routed/
if.c 696 struct interface ifs, ifs0, *ifp, *ifp1; local in function:ifinit
793 memcpy(&ifs, &ifs0, sizeof(ifs));
797 if (iff_up(ifs.int_if_flags)) {
800 ifs.int_name);
806 if (iff_up(ifs.int_if_flags)) {
809 ifs.int_name);
815 ifs.int_addr = S_ADDR(INFO_IFA(&info));
817 if (ntohl(ifs.int_addr)>>24 == 0
818 || ntohl(ifs.int_addr)>>24 == 0xff)
    [all...]
  /src/lib/libedit/
tokenizer.c 63 #define IFS STR("\t \n")
86 Char *ifs; /* In field separator */ local in function:TYPE
121 FUN(tok,init)(const Char *ifs)
127 tok->ifs = tok_strdup(ifs ? ifs : IFS);
128 if (tok->ifs == NULL) {
136 tok_free(tok->ifs);
144 tok_free(tok->ifs);
    [all...]
  /src/usr.sbin/ifwatchd/
ifwatchd.c 101 static SLIST_HEAD(,interface_data) ifs = SLIST_HEAD_INITIALIZER(ifs);
447 SLIST_INSERT_HEAD(&ifs, p, next);
467 SLIST_FOREACH(p, &ifs, next)
527 SLIST_FOREACH(p, &ifs, next) {
541 while (!SLIST_EMPTY(&ifs)) {
542 p = SLIST_FIRST(&ifs);
543 SLIST_REMOVE_HEAD(&ifs, next);
554 SLIST_FOREACH(p, &ifs, next)
577 SLIST_FOREACH(ifd, &ifs, next)
    [all...]
  /src/sys/net/
if_bridge.c 730 struct ifnet *ifs = bif->bif_ifp; local in function:bridge_delete_member
734 ifs->_if_input = ether_input;
735 ifs->if_bridge = NULL;
736 ifs->if_bridgeif = NULL;
741 if_linkstate_change_disestablish(ifs,
743 ether_ifdetachhook_disestablish(ifs,
748 switch (ifs->if_type) {
755 (void) ifpromisc(ifs, 0);
756 IFNET_LOCK(ifs);
757 (void) ether_disable_vlan_mtu(ifs);
784 struct ifnet *ifs = NULL; local in function:bridge_calc_csum_flags
809 struct ifnet *ifs; local in function:bridge_calc_link_state
831 struct ifnet *ifs; local in function:bridge_ioctl_add
938 struct ifnet *ifs; local in function:bridge_ioctl_del
1422 struct ifnet *ifs; local in function:bridge_ifdetach
2303 struct ifnet *ifs = NULL; local in function:bridge_rtlookup
    [all...]
  /src/lib/libc/gen/
wordexp.c 103 const char *ifs; /* IFS env. var. */ local in function:we_askshell
110 if ((ifs = getenv("IFS")) == NULL)
111 ifs = " \t\n";
112 if (asprintf(&cmd, "wordexp%c%s\n", *ifs, words) < 0)
  /src/tests/bin/sh/
t_fsplit.sh 63 oifs="$IFS"
64 IFS="$nl"
66 IFS="$oifs"
109 unset IFS
141 # Check that IFS is applied to text from ${x-...} unless it is inside
210 # Check that IFS is applied to text from ${x+...} unless it is inside
288 # repeat with an alphabetic in IFS
289 check 'IFS=q; set ${x-aqbqc}; echo $#' 3
290 check 'IFS=q; for i in ${x-aqbqc}; do echo "z${i}z"; done' \
292 check 'IFS=q; for i in ${x-"aqb"qc}; do echo "z${i}z"; done'
    [all...]
  /src/bin/sh/
miscbltin.c 82 * Note that if IFS=' :' then read x y should work so that:
207 const char *ifs; local in function:readcmd
291 if ((ifs = bltinlookup("IFS", 1)) == NULL)
292 ifs = " \t\n";
327 if (strchr(ifs, c))
334 /* Ignore leading IFS whitespace */
340 /* Only one non-whitespace IFS per word */
366 /* Last variable needs all IFS chars */
372 if (equal(*ap, "IFS")) {
    [all...]
expand.c 83 * for IFS characters.
96 struct ifsregion ifsfirst; /* first struct in list of ifs regions */
255 const char *ifs = NULL; local in function:argstr
259 ifs = ifsval();
378 if (flag & ifs_split && strchr(ifs, c) != NULL) {
1021 * Mark so that we don't apply IFS if we recurse through
1336 * string for IFS characters.
1367 * Break the argument string into pieces based upon IFS and add the
1369 * searched for IFS characters have been stored by recordregion.
1379 const char *ifs; local in function:ifsbreakup
    [all...]
  /src/sys/arch/ia64/ia64/
locore.S 204 mov cr.ifs = r0
exception.S 158 mov r25 = cr.ifs
163 st8 [r27] = r25, 8 // 0x40 IFS
386 mov r19=cr.ifs
391 // r18=ndirty, r19=ifs, r22=iip
775 mov cr.ifs=r16
support.S 105 mov cr.ifs=r0
  /src/usr.bin/make/unit-tests/
cond-func.mk 89 # .if directive, this function is 'defined'; see "struct If ifs" in cond.c.
  /src/sys/arch/ia64/include/
ia64_cpu.h 469 IA64_CR(ifs)
  /src/sbin/brconfig/
brconfig.c 544 do_bridgeflag(int sock, const char *bridge, const char *ifs, int flag,
549 strlcpy(req.ifbr_ifsname, ifs, sizeof(req.ifbr_ifsname));
  /src/bin/ksh/
edit.c 1028 const char *ifs = str_val(local("IFS", 0)); local in function:x_escape
1032 if (strchr("\\$(){}[]?*&;#|<>\"'`", s[add]) || strchr(ifs, s[add])) {

Completed in 19 milliseconds