| /mOS-networking-stack/samples/lighttpd-1.4.32/src/ |
| H A D | mod_dirlisting.c | 418 dirls_entry_t *tmp; in http_dirls_sort() local 431 tmp = ent[i]; in http_dirls_sort() 433 ent[j] = tmp; in http_dirls_sort() 641 dirls_entry_t *tmp; in http_list_directory() local 770 tmp->size = st.st_size; in http_list_directory() 771 tmp->namelen = i; in http_list_directory() 794 tmp = dirs.ent[i]; in http_list_directory() 811 free(tmp); in http_list_directory() 816 tmp = files.ent[i]; in http_list_directory() 822 memcpy(path_file, DIRLIST_ENT_NAME(tmp), tmp->namelen + 1); in http_list_directory() [all …]
|
| H A D | proc_open.c | 316 buffer *tmp = buffer_init(); in proc_open_buffer() local 317 proc_read_fd_to_buffer(proc.err.fd, tmp); in proc_open_buffer() 318 if (tmp->used > 0 && write(2, (void*)tmp->ptr, tmp->used) < 0) { in proc_open_buffer() 322 buffer_free(tmp); in proc_open_buffer()
|
| H A D | Makefile.am | 26 echo "#define REPO_VERSION \"-devel-$$REVISION\"" > versionstamp.h.tmp; \ 28 echo "#define REPO_VERSION \"\"" > versionstamp.h.tmp; \ 30 if ! diff versionstamp.h.tmp versionstamp.h >/dev/null 2>/dev/null; then \ 31 mv versionstamp.h.tmp versionstamp.h; \ 33 rm versionstamp.h.tmp; \ 57 CLEANFILES = versionstamp.h versionstamp.h.tmp
|
| H A D | Makefile.in | 750 CLEANFILES = versionstamp.h versionstamp.h.tmp 1942 echo "#define REPO_VERSION \"-devel-$$REVISION\"" > versionstamp.h.tmp; \ 1944 echo "#define REPO_VERSION \"\"" > versionstamp.h.tmp; \ 1946 if ! diff versionstamp.h.tmp versionstamp.h >/dev/null 2>/dev/null; then \ 1947 mv versionstamp.h.tmp versionstamp.h; \ 1949 rm versionstamp.h.tmp; \
|
| /mOS-networking-stack/core/src/bpf/ |
| H A D | sf_gencode.c | 635 b = tmp; 646 b = tmp; 654 b = tmp; 4255 gen_and(tmp, b1); 4259 gen_and(tmp, b2); 4264 gen_and(tmp, b2); 4269 gen_and(tmp, b2); 4932 gen_and(tmp, b0); 5125 gen_and(tmp, b0); 6817 tmp = a1->b; [all …]
|
| H A D | sf_optimize.c | 715 struct block *tmp = JT(b); local 718 JF(b) = tmp; 1753 struct slist *tmp, *s; local 1760 tmp = (*b)->stmts; 1761 if (tmp != 0) 1762 sappend(s, tmp);
|
| /mOS-networking-stack/core/src/ |
| H A D | tcp_rb.c | 84 tcpbufseg_t *tmp; in buf_first() local 86 if ((tmp = TAILQ_FIRST(&rb->bufsegs))) in buf_first() 87 return tmp; in buf_first() 92 tmp->id = 0; in buf_first() 93 TAILQ_INSERT_TAIL(&rb->bufsegs, tmp, link); in buf_first() 95 return tmp; in buf_first() 101 tcpbufseg_t *tmp; in buf_next() local 103 if ((tmp = TAILQ_NEXT(buf, link))) in buf_next() 104 return tmp; in buf_next() 109 tmp->id = buf->id + 1; in buf_next() [all …]
|
| H A D | fhash.c | 27 register uint32_t hash = len, tmp; in SuperFastHash() local 38 tmp = (get16bits (data+2) << 11) ^ hash; in SuperFastHash() 39 hash = (hash << 16) ^ tmp; in SuperFastHash()
|
| H A D | event_callback.c | 127 struct ev_table *walk, *tmp; in CleanupEvB() local 128 for (walk = TAILQ_FIRST(&evb->evth); walk != NULL; walk = tmp) { in CleanupEvB() 129 tmp = TAILQ_NEXT(walk, link); in CleanupEvB()
|
| H A D | config.c | 1028 struct conf_block *walk, *tmp; in AllocateBlock() local 1030 for (walk = TAILQ_FIRST(&g_free_blkh); walk != NULL; walk = tmp) { in AllocateBlock() 1031 tmp = TAILQ_NEXT(walk, link); in AllocateBlock()
|
| H A D | core.c | 919 struct timer *walk, *tmp; in RunMainLoop() local 920 for (walk = TAILQ_FIRST(&mtcp->timer_list); walk != NULL; walk = tmp) { in RunMainLoop() 921 tmp = TAILQ_NEXT(walk, timer_link); in RunMainLoop()
|
| /mOS-networking-stack/scripts/ |
| H A D | configure | 4592 tmp= ac_tmp= 4609 ac_tmp=$tmp 5750 tmp= ac_tmp= 5767 ac_tmp=$tmp 6909 tmp= ac_tmp= 6926 ac_tmp=$tmp 8069 tmp= ac_tmp= 8086 ac_tmp=$tmp 9230 tmp= ac_tmp= 9247 ac_tmp=$tmp [all …]
|
| /mOS-networking-stack/samples/lighttpd-1.4.32/tests/ |
| H A D | cleanup.sh | 7 tmpdir=$top_builddir/tests/tmp/
|
| H A D | Makefile.am | 2 testdir=$(srcdir)/tmp/lighttpd/
|
| H A D | prepare.sh | 11 tmpdir=$top_builddir/tests/tmp/lighttpd
|
| H A D | Makefile.in | 585 testdir = $(srcdir)/tmp/lighttpd/ 926 } >$(TEST_SUITE_LOG).tmp || exit 1; \ 927 mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \
|
| /mOS-networking-stack/samples/lighttpd-1.4.32/doc/outdated/ |
| H A D | fastcgi.txt | 290 (( "socket" => "/tmp/php.socket", 316 (( "socket" => "/tmp/php.socket", 376 (( "socket" => "/tmp/php-fastcgi.socket", 387 (( "socket" => "/tmp/php-fastcgi.socket", 400 (( "socket" => "/tmp/php-fastcgi.socket", 421 (( "socket" => "/tmp/php-fastcgi.socket", 474 # FCGISOCKET="/tmp/php.sock"
|
| H A D | configuration.txt | 204 "socket" => basedir + server.name + "/tmp/fastcgi-" + PID + ".sock" 272 server.bind = "/tmp/lighttpd.socket"
|
| /mOS-networking-stack/samples/lighttpd-1.4.32/ |
| H A D | ltmain.sh | 245 mv conftest.tmp conftest.in 281 mv conftest.tmp conftest.in 4010 > $tmpdir/tmp-la 4011 mv -f $tmpdir/tmp-la $lib 6008 char tmp[LT_PATHMAX + 1]; 6068 tmp_len = strlen (tmp); 6071 memcpy (concat_name, tmp, tmp_len); 6094 tmp_len = strlen (tmp); 6096 memcpy (concat_name, tmp, tmp_len); 8503 for tmp in $deplibrary_names; do [all …]
|
| H A D | install-sh | 327 tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$
|
| H A D | INSTALL | 88 it does error logging in /tmp/lighttpd/error.log file. Please make sure that
|
| H A D | configure | 4611 rm -f conftest.in conftest.tmp conftest.nl conftest.out;; 4687 rm -f conftest.in conftest.tmp conftest.nl conftest.out;; 4753 rm -f conftest.in conftest.tmp conftest.nl conftest.out;; 4820 rm -f conftest.in conftest.tmp conftest.nl conftest.out;; 18142 tmp= ac_tmp= 18152 tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && 18153 test -d "$tmp" 18156 tmp=./conf$$-$RANDOM 18157 (umask 077 && mkdir "$tmp") 18159 ac_tmp=$tmp
|
| H A D | configure.ac | 577 # lighttpd may always use mmap with files it owns (created tmp files)
|
| H A D | NEWS | 661 * fixed crash if /var/tmp is not writable
|
| /mOS-networking-stack/samples/lighttpd-1.4.32/m4/ |
| H A D | libtool.m4 | 8250 cat conftest.in conftest.in >conftest.tmp 8251 mv conftest.tmp conftest.in
|