Home
last modified time | relevance | path

Searched refs:flag (Results 1 – 7 of 7) sorted by relevance

/mOS-networking-stack/samples/lighttpd-1.4.32/m4/
H A Dltoptions.m427 # saved as a flag.
162 # implement the --enable-shared flag, and supports the 'shared' and
216 # implement the --enable-static flag, and support the 'static' and
270 # implement the --enable-fast-install flag, and support the 'fast-install'
326 # implement the --with-aix-soname flag, and support the `aix-soname=aix'
354 # Even when GNU compilers ignore OBJECT_MODE but need '-maix64' flag,
379 # implement the --with-pic flag, and support the 'pic-only' and 'no-pic'
H A Dlibtool.m43358 # find reload flag for linker
3680 # Check to see if the nm accepts a BSD-compat flag.
3888 [Compiler flag to turn off builtin functions])
4252 # The "-static" flag exists, but is broken.
4360 # CC pic flag -KPIC is the default.
4574 # The "-static" flag exists, but is broken.
4864 # Check to make sure the PIC flag actually works.
4881 [How to pass a linker flag through the compiler])
4883 # Check to make sure the static flag actually works.
4892 [Compiler flag to prevent dynamic linking])
[all …]
/mOS-networking-stack/samples/lighttpd-1.4.32/
H A Dcompile193 for flag in $arg; do
195 linker_opts="$linker_opts $flag"
H A Dltmain.sh4046 echo "flag during linking and do at least one of the following:"
4059 $ECHO " - use the '$flag' linker flag"
7212 for flag in $args; do
7214 func_quote_for_eval "$flag"
7228 for flag in $args; do
7230 func_quote_for_eval "$flag"
9559 eval flag=\"$hardcode_libdir_flag_spec\"
9560 func_append dep_rpath " $flag"
9767 func_append linker_flags " $flag"
10290 func_append rpath " $flag"
[all …]
H A Daclocal.m41088 # Set option NAME. Presently that only means defining a flag for this option.
H A Dconfigure9644 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag work…
9645 $as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; }
/mOS-networking-stack/core/src/
H A Dtcp_out.c519 int flag = 0; in SendControlPacket() local
523 flag = TCP_FLAG_SYN; in SendControlPacket()
527 flag = TCP_FLAG_SYN | TCP_FLAG_ACK; in SendControlPacket()
533 flag = TCP_FLAG_ACK; in SendControlPacket()
540 flag = TCP_FLAG_FIN | TCP_FLAG_ACK; /* Send FIN/ACK here */ in SendControlPacket()
545 flag = (cur_stream->snd_nxt == sndvar->fss) ? in SendControlPacket()
549 flag = TCP_FLAG_FIN | TCP_FLAG_ACK; in SendControlPacket()
568 return SendTCPPacket(mtcp, cur_stream, cur_ts, flag, NULL, 0); in SendControlPacket()