Home
last modified time | relevance | path

Searched refs:src (Results 1 – 25 of 35) sorted by relevance

12

/lighttpd1.4/src/
H A DSConscript114 'mod_ajp13' : { 'src' : [ 'mod_ajp13.c' ] },
117 'mod_cgi' : { 'src' : [ 'mod_cgi.c' ] },
121 'mod_proxy' : { 'src' : [ 'mod_proxy.c' ] },
122 'mod_rrdtool' : { 'src' : [ 'mod_rrdtool.c' ] },
124 'mod_ssi' : { 'src' : [ 'mod_ssi.c' ] },
125 'mod_status' : { 'src' : [ 'mod_status.c' ] },
126 'mod_userdir' : { 'src' : [ 'mod_userdir.c' ] },
182 staticsrc = src + common_src
190 staticsrc += modules[module]['src']
211 ## turn all src-files into objects
[all …]
H A Ddata_config.c22 data_config *src = (data_config *)s; in data_config_copy() local
25 ds->comp = src->comp; in data_config_copy()
26 if (!buffer_is_unset(&src->key)) { in data_config_copy()
27 buffer_copy_buffer(&ds->key, &src->key); in data_config_copy()
28 ds->comp_key = ds->key.ptr + (src->comp_key - src->key.ptr); in data_config_copy()
30 buffer_copy_buffer(&ds->comp_tag, &src->comp_tag); in data_config_copy()
31 array_copy_array(ds->value, src->value); in data_config_copy()
H A Darray.c14 data_string *src = (data_string *)s; in array_data_string_copy() local
16 if (!buffer_is_unset(&src->key)) buffer_copy_buffer(&ds->key, &src->key); in array_data_string_copy()
24 data_string *ds_src = (data_string *)src; in array_data_string_insert_dup()
55 data_integer *src = (data_integer *)s; in array_data_integer_copy() local
57 if (!buffer_is_unset(&src->key)) buffer_copy_buffer(&di->key, &src->key); in array_data_integer_copy()
58 di->value = src->value; in array_data_integer_copy()
84 data_array *src = (data_array *)s; in array_data_array_copy() local
86 if (!buffer_is_unset(&src->key)) buffer_copy_buffer(&da->key, &src->key); in array_data_array_copy()
144 if (0 == src->size) return; in array_copy_array()
146 array_extend(dst, src->size); in array_copy_array()
[all …]
H A Dchunk.c564 if (NULL == src->first) return; in chunkqueue_append_chunkqueue()
567 cq->first = src->first; in chunkqueue_append_chunkqueue()
569 cq->last->next = src->first; in chunkqueue_append_chunkqueue()
571 cq->last = src->last; in chunkqueue_append_chunkqueue()
574 src->first = NULL; in chunkqueue_append_chunkqueue()
575 src->last = NULL; in chunkqueue_append_chunkqueue()
576 src->bytes_out = src->bytes_in; in chunkqueue_append_chunkqueue()
708 chunk * const c = src->first; in chunkqueue_steal()
715 src->first = c->next; in chunkqueue_steal()
716 if (c == src->last) src->last = NULL; in chunkqueue_steal()
[all …]
H A Dmod_webdav.c1927 UNUSED(src); in webdav_prop_move_uri()
1948 force_assert(0 != src->used); in webdav_prop_move_uri_col()
1968 UNUSED(src); in webdav_prop_move_uri_col()
2036 UNUSED(src); in webdav_prop_copy_uri()
2844 if (src == dst && 0 == rc) { in webdav_copytmp_rename()
2865 if (src == dst) { in webdav_copytmp_rename()
2978 webdav_delete_file(pconf, src); in webdav_copymove_file()
3259 src->path.ptr[ (src->path.used = src_path_used) -1]='\0'; in webdav_copymove_dir()
3260 src->rel_path.ptr[(src->rel_path.used = src_rel_path_used)-1]='\0'; in webdav_copymove_dir()
3295 src->path.ptr[ (src->path.used = src_path_used) -1] = '\0'; in webdav_copymove_dir()
[all …]
H A Dbuffer.h40 void buffer_move(buffer * restrict b, buffer * restrict src);
296 static inline void buffer_copy_buffer(buffer * restrict b, const buffer * restrict src);
297 static inline void buffer_copy_buffer(buffer * restrict b, const buffer * restrict src) { in buffer_copy_buffer() argument
298 buffer_copy_string_len(b, BUF_PTR_LEN(src)); in buffer_copy_buffer()
302 static inline void buffer_append_buffer(buffer * restrict b, const buffer * restrict src);
303 static inline void buffer_append_buffer(buffer * restrict b, const buffer * restrict src) { in buffer_append_buffer() argument
304 buffer_append_string_len(b, BUF_PTR_LEN(src)); in buffer_append_buffer()
H A Dbuffer.c38 void buffer_move(buffer * restrict b, buffer * restrict src) { in buffer_move() argument
41 tmp = *src; *src = *b; *b = tmp; in buffer_move()
824 char *src = len ? memchr(b->ptr, '%', len) : NULL; in buffer_urldecode_path() local
825 if (NULL == src) return; in buffer_urldecode_path()
827 char *dst = src; in buffer_urldecode_path()
830 unsigned char high = ((unsigned char *)src)[1]; in buffer_urldecode_path()
831 unsigned char low = high ? hex2int(((unsigned char *)src)[2]) : 0xFF; in buffer_urldecode_path()
835 src += 2; in buffer_urldecode_path()
838 while ((*++dst = *++src) != '%' && *src) ; in buffer_urldecode_path()
839 } while (*src); in buffer_urldecode_path()
H A Dchunk.h95 void chunkqueue_append_chunkqueue(chunkqueue * restrict cq, chunkqueue * restrict src);
148 void chunkqueue_steal(chunkqueue * restrict dest, chunkqueue * restrict src, off_t len);
149 int chunkqueue_steal_with_tempfiles(chunkqueue * restrict dest, chunkqueue * restrict src, off_t le…
150 void chunkqueue_append_cq_range (chunkqueue *dst, const chunkqueue *src, off_t offset, off_t len);
H A Dsys-setjmp.c91 off_t sys_setjmp_eval3(off_t(*cb)(void *, const void *, off_t), void *dst, const void *src, off_t l… in sys_setjmp_eval3() argument
95 rv = cb(dst, src, len); in sys_setjmp_eval3()
H A Darray.h10 struct data_unset *(*copy)(const struct data_unset *src); \
12 void (*insert_dup)(struct data_unset *dst, struct data_unset *src);
64 void array_copy_array(array *dst, const array *src);
H A Dlog.c211 char * const src = (char *)ck_malloc(n); in __attribute_nonnull__() local
212 memcpy(src, s+i, n); /*(note: not '\0'-terminated)*/ in __attribute_nonnull__()
214 buffer_append_string_c_escaped(b, src, n); in __attribute_nonnull__()
215 free(src); in __attribute_nonnull__()
H A Dhttp_chunk.c176 static int http_chunk_append_cq_to_tempfile(request_st * const r, chunkqueue * const src, const siz… in http_chunk_append_cq_to_tempfile() argument
184 if (0 != chunkqueue_steal_with_tempfiles(cq, src, len, errh)) in http_chunk_append_cq_to_tempfile()
255 int http_chunk_transfer_cqlen(request_st * const r, chunkqueue * const src, const size_t len) { in http_chunk_transfer_cqlen() argument
261 return http_chunk_append_cq_to_tempfile(r, src, len); in http_chunk_transfer_cqlen()
266 chunkqueue_steal(cq, src, len); in http_chunk_transfer_cqlen()
H A DMakefile.am9 LEMON=$(top_builddir)/src/lemon$(BUILD_EXEEXT)
69 src = server.c response.c connections.c h2.c reqpool.c \ macro
96 src += $(builtin_mods)
116 src += $(common_src)
378 $(src) \
487 lighttpd_SOURCES = $(src)
H A Dsys-setjmp.h15 off_t sys_setjmp_eval3(off_t(*cb)(void *, const void *, off_t), void *dst, const void *src, off_t l…
H A Dalgo_xxhash.h1496 static void* XXH_memcpy(void* dest, const void* src, size_t size) in XXH_memcpy() argument
1498 return memcpy(dest,src,size); in XXH_memcpy()
2292 return XXH_readBE32(src); in XXH32_hashFromCanonical()
2693 return XXH_readBE64(src); in XXH64_hashFromCanonical()
3896 XXH_ASSERT(((size_t)src & 63) == 0); /* control alignment */ in XXH3_initCustomSecret_avx512()
3905 remote_const_void.cp = src + i; in XXH3_initCustomSecret_avx512()
4002 XXH_ASSERT(((size_t)src & 31) == 0); /* control alignment */ in XXH3_initCustomSecret_avx2()
4006 dest[0] = _mm256_add_epi64(_mm256_stream_load_si256(src+0), seed); in XXH3_initCustomSecret_avx2()
5578 XXH128_hashFromCanonical(const XXH128_canonical_t* src) in XXH128_hashFromCanonical() argument
5581 h.high64 = XXH_readBE64(src); in XXH128_hashFromCanonical()
[all …]
H A Dhttp_chunk.h15 int http_chunk_transfer_cqlen(request_st *r, chunkqueue *src, size_t len);
H A Dalgo_sha1.c72 BYTE64QUAD16 src; in SHA1_Transform() local
76 memcpy(src.c, buffer, sizeof(sha1_byte) * 64); in SHA1_Transform()
77 block = &src; in SHA1_Transform()
/lighttpd1.4/src/ls-hpack/
H A Dlshpack.c721 src += 2; in lshpack_enc_huff_encode()
729 src += 2; in lshpack_enc_huff_encode()
750 src -= 2; in lshpack_enc_huff_encode()
1314 src = *src_p; in lshpack_dec_dec_int()
1317 val = *src++; in lshpack_dec_dec_int()
1322 *src_p = src; in lshpack_dec_dec_int()
1332 B = *src++; in lshpack_dec_dec_int()
1345 *src_p = src; in lshpack_dec_dec_int()
1479 (*src) += len; in hdec_dec_str()
1626 s = *src; in lshpack_dec_decode()
[all …]
H A Dlshpack.h203 const unsigned char **src, const unsigned char *src_end,
/lighttpd1.4/tests/
H A DREADME46 repo=$PWD # from root of src repository
50 $repo/src/lighttpd -D -f lighttpd.conf -m $repo/src/.libs
57 repo=$PWD # from root of src repository
61 gdb --args $repo/src/lighttpd -D -f lighttpd.conf -m $repo/src/.libs
/lighttpd1.4/
H A Ddistribute.sh.in30 MD5SRPM=`md5sum /home/jan/rpmbuild/SRPMS/${NAME}-1.src.rpm| cut -b 1-32`
47 - ${NAME}-1.src.rpm
48 ${DLNAME}-1.src.rpm
67 - ${NAME}-1.src.rpm
H A Dmeson.build11 subdir('src') subdir
15 # $ meson $src
H A DMakefile.am1 SUBDIRS=src doc tests subdir
H A DCMakeLists.txt25 add_subdirectory(src build)
H A DINSTALL173 * edit src/Makefile.am and, in the section under 'if LIGHTTPD_STATIC',
175 * create src/plugin-static.h with list of modules as PLUGIN_INIT(mod_foo)

12