Home
last modified time | relevance | path

Searched refs:out (Results 1 – 25 of 29) sorted by relevance

12

/mOS-networking-stack/samples/lighttpd-1.4.32/src/
H A Dmod_dirlisting.c448 char *out = buf; in http_list_directory_sizefmt() local
472 out += LI_ltostr(out, size); in http_list_directory_sizefmt()
473 out[0] = '.'; in http_list_directory_sizefmt()
474 out[1] = remain + '0'; in http_list_directory_sizefmt()
475 out[2] = *u; in http_list_directory_sizefmt()
476 out[3] = '\0'; in http_list_directory_sizefmt()
478 return (out + 3 - buf); in http_list_directory_sizefmt()
560 buffer_append_string_len(out, CONST_STR_LEN( in http_list_directory_header()
634 buffer *out; in http_list_directory() local
866 buffer_append_string(out, sizebuf); in http_list_directory()
[all …]
H A Dproc_open.c102 if (pipe_open(&(proc->out), 1 SECURITY_CC) != 0) { in proc_open_pipes()
114 pipe_close(&proc->out); in proc_close_pipes()
121 pipe_close_parent(&proc->out); in proc_close_parents()
128 pipe_close_child(&proc->out); in proc_close_childs()
179 si.hStdOutput = proc->out.child; in proc_open()
308 if (out) { in proc_open_buffer()
309 proc_read_fd_to_buffer(proc.out.fd, out); in proc_open_buffer()
311 pipe_close(&proc.out); in proc_open_buffer()
341 buffer_free(out); \ in main()
347 buffer_reset(out); \ in main()
[all …]
H A Dlemon.c2636 FILE *out; in SetPrint()
2655 FILE *out; in PlinkPrint()
2821 FILE *out;
2886 FILE *out; in tplt_print()
2908 FILE *out; in emit_destructor_code()
2963 FILE *out; in emit_code()
3199 FILE *out, *in; local
3215 if( out==0 ){
3584 fclose(out);
3613 if( out ){
[all …]
H A Dmod_simple_vhost.c127 buffer_prepare_copy(out, 128); in build_doc_root()
130 buffer_copy_string_buffer(out, p->conf.server_root); in build_doc_root()
138 BUFFER_APPEND_SLASH(out); in build_doc_root()
141 buffer_append_string_buffer(out, host); in build_doc_root()
143 buffer_append_string_len(out, host->ptr, dp - host->ptr); in build_doc_root()
146 BUFFER_APPEND_SLASH(out); in build_doc_root()
151 buffer_append_string_buffer(out, p->conf.document_root); in build_doc_root()
152 BUFFER_APPEND_SLASH(out); in build_doc_root()
155 buffer_copy_string_buffer(out, con->conf.document_root); in build_doc_root()
156 BUFFER_APPEND_SLASH(out); in build_doc_root()
[all …]
H A Dbuffer.c993 out = slash; in buffer_path_simplify()
995 out--; in buffer_path_simplify()
996 while (out > start && *out != '/') { in buffer_path_simplify()
997 out--; in buffer_path_simplify()
1002 out++; in buffer_path_simplify()
1004 out = slash; in buffer_path_simplify()
1006 out++; in buffer_path_simplify()
1009 slash = out; in buffer_path_simplify()
1018 *out = pre1; in buffer_path_simplify()
1020 out++; in buffer_path_simplify()
[all …]
H A Dproc_open.h19 pipe_t in, out, err; member
25 int proc_open_buffer(const char *command, buffer *in, buffer *out, buffer *err);
H A Dhttp_auth.c88 static unsigned char * base64_decode(buffer *out, const char *in) { in base64_decode() argument
95 buffer_prepare_copy(out, in_len); in base64_decode()
97 result = (unsigned char *)out->ptr; in base64_decode()
143 out->used = k; in base64_decode()
1178 int http_auth_digest_generate_nonce(server *srv, mod_auth_plugin_data *p, buffer *fn, char out[33])… in http_auth_digest_generate_nonce()
1199 CvtHex(h, out); in http_auth_digest_generate_nonce()
H A Dconfigfile.c1049 buffer *out; in config_parse_cmd() local
1059 out = buffer_init(); in config_parse_cmd()
1065 if (0 != proc_open_buffer(cmd, NULL, out, NULL)) { in config_parse_cmd()
1070 tokenizer_init(&t, source, out->ptr, out->used); in config_parse_cmd()
1075 buffer_free(out); in config_parse_cmd()
H A DSConscript149 bin_linkflags += [ '-Wl,--export-all-symbols', '-Wl,--out-implib=build/' + implib ]
/mOS-networking-stack/scripts/
H A Dconfigure2595 [ab].out )
2639 rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out
3474 rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
3688 rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
3760 rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
4973 -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
6131 -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
7290 -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
8450 -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
9611 -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
[all …]
/mOS-networking-stack/samples/lighttpd-1.4.32/doc/outdated/
H A Dstate.txt66 The parsed request is handled by 'handlereq' and as soon as a decision out
68 HTTP-response header. In the 'write' state the prepare content is sent out
109 'handlereq' to handle all aspect which are neccesary to find out what has
H A Dperformance.txt48 in parallel for 24h) you might run into the out-of-fd problem described below. ::
98 If you want to send out a file from the webserver, it doesn't make any sense
151 If lighttpd runs out of file descriptors, it will stop accepting new
199 help to get the last few percent of performance out of the server. Be aware that
H A Dcml.txt27 …ntent is dirty inside of the application is usually more expensive than sending out the cached data
94 Moving these decisions out of the PHP script into a server module will remove the need
139 Don't forget: Webserver are built to send out static content, that is what they can do best.
H A Dssl.txt60 -keyout server.pem -out server.pem \
H A Daccesslog.txt114 this prefix is assumed to be special for lighttpd and won't be sent out
H A Dsecdownload.txt96 status 403 'Forbidden' will be sent out.
H A Dconfiguration.txt422 maximum number of seconds until a waiting, non keep-alive read times out
428 maximum number of seconds until a waiting write call times out and closes
H A Dmagnet.txt128 You can generate your own content and send it out to the clients. ::
147 Internally lighty will use the sendfile() call to send out the static files at full speed.
/mOS-networking-stack/samples/lighttpd-1.4.32/
H A Dconfigure3906 [ab].out )
3950 rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out
9718 $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2
9719 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then
9727 test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files
9728 $RM out/* && rmdir out
9751 mkdir out
9774 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then
9782 test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files
9783 $RM out/* && rmdir out
[all …]
H A DMakefile.in536 -rm -f cscope.out cscope.in.out cscope.po.out cscope.files
H A DREADME104 - Sends 416 for "out-of-range" on Range: Header
/mOS-networking-stack/core/src/
H A Dtcp_stream.c85 struct tcp_ring_fragment *out = (struct tcp_ring_fragment *)optval; in GetFragInfo() local
92 out[*len].offset = walk->head; in GetFragInfo()
93 out[*len].len = walk->tail - walk->head; in GetFragInfo()
98 out[*len].offset = 0; in GetFragInfo()
99 out[*len].len = 0; in GetFragInfo()
H A Dtcp_out.c438 goto out; in FlushTCPSendingBuffer()
495 goto out; in FlushTCPSendingBuffer()
502 goto out; in FlushTCPSendingBuffer()
509 out: in FlushTCPSendingBuffer()
/mOS-networking-stack/samples/lighttpd-1.4.32/tests/
H A DMakefile.am75 rm -f *.out
/mOS-networking-stack/samples/lighttpd-1.4.32/m4/
H A Dlibtool.m42065 mkdir out
2087 $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2
2088 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then
2096 test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files
2097 $RM out/* && rmdir out
2900 dynamic_linker='NetBSD (a.out) ld.so'
3399 cmp -s conftest.i conftest.out \
3416 cmp -s conftest.i conftest.out \
3419 rm -f conftest.i conftest2.i conftest.out
3749 cat conftest.out >&AS_MESSAGE_LOG_FD
[all …]

12