Lines Matching refs:__ifp__

45 __ifp__="ifp";
79 # Handle the case where $__ifp__->if_blah = XX;
81 set=`echo $line| grep "$__ifp__->.* = "`
86 new=`echo if_set$word"\($__ifp__,"$value");"`
97 inc=`echo $line | grep "$__ifp__->.*++\|++$__ifp__->.*"`
103 new=`echo if_inc$word"\($__ifp__,"$value");"`
113 add=`echo $line|grep "$__ifp__->.*+= "`
118 new=`echo if_inc$word"\($__ifp__,$value);"`
130 or=`echo $line|grep "$__ifp__->.*|= "`
135 new=`echo if_set${word}bit"($__ifp__,$value, 0);"`
148 or=`echo $line|grep "$__ifp__->.*&= "`
154 new=`echo if_set${word}bit"\($__ifp__, 0,$value);"`
168 line=`echo $line | sed -e 's/'"$__ifp__"'->if_\(.*\) ^=\(.*\);/if_toggle\1('"$__ifp__"',\2);/g'`
181 word=`echo $line |awk -F"$__ifp__->if_" '{ print $2 }' | \
183 old=`echo "$__ifp__->if_"${word}`
184 new=`echo "if_get"${word}"($__ifp__)"`
206 replace_str $line "(\*$__ifp__->if_input)" "if_input"
214 replace_str $line "IFQ_DRV_IS_EMPTY(&$__ifp__->if_snd)" "if_sendq_empty($__ifp__)"
215 replace_str $line "IFQ_DRV_PREPEND(&$__ifp__->if_snd" "if_sendq_prepend($__ifp__"
216 replace_str $line "IFQ_SET_READY(&ifp->if_snd)" "if_setsendqready($__ifp__)"
217 line=`echo $line | sed -e 's/IFQ_SET_MAXLEN(&'$__ifp__'->if_snd, \(.*\))/if_setsendqlen('$__ifp__', \1)/g'`
218 line=`echo $line | sed -e 's/IFQ_DRV_DEQUEUE(&'$__ifp__'->if_snd, \(.*\))/\1 = if_dequeue('$__ifp__')/g'`
234 pat=`echo $line | grep "$__ifp__->"`
237 pat=`echo $line | grep "$__ifp__->"`
280 if [ ! -z `echo $line | grep "$__ifp__->"` ]
285 line=`echo "$line" | sed -e 's:VLAN_CAPABILITIES('$__ifp__'):if_vlancap('$__ifp__'):g'`