Home
last modified time | relevance | path

Searched refs:dst (Results 1 – 19 of 19) sorted by relevance

/mOS-networking-stack/samples/lighttpd-1.4.32/
H A Dinstall-sh80 dst=
254 dst=$src
255 dstdir=$dst
272 dst=$dst_arg
276 if test -d "$dst"; then
281 dstdir=$dst
282 dst=$dstdir/`basename "$src"`
285 dstdir=`dirname "$dst"`
476 test ! -f "$dst" ||
477 $doit $rmcmd -f "$dst" 2>/dev/null ||
[all …]
/mOS-networking-stack/samples/lighttpd-1.4.32/src/
H A Ddata_string.c35 static int data_string_insert_dup(data_unset *dst, data_unset *src) { in data_string_insert_dup() argument
36 data_string *ds_dst = (data_string *)dst; in data_string_insert_dup()
51 static int data_response_insert_dup(data_unset *dst, data_unset *src) { in data_response_insert_dup() argument
52 data_string *ds_dst = (data_string *)dst; in data_response_insert_dup()
H A Dmod_webdav.c536 if (-1 == unlink(dst->path->ptr)) { in webdav_delete_file()
561 dst->rel_path->ptr, in webdav_delete_file()
562 dst->rel_path->used - 1, in webdav_delete_file()
717 dst->rel_path->ptr, in webdav_copy_file()
718 dst->rel_path->used - 1, in webdav_copy_file()
796 dst->rel_path->ptr, in webdav_copy_dir()
797 dst->rel_path->used - 1, in webdav_copy_dir()
910 dst->rel_path->ptr, in webdav_get_property()
911 dst->rel_path->used - 1, in webdav_get_property()
975 dst, prop->prop, prop->ns, b_200)) { in webdav_get_props()
[all …]
H A Dbuffer.c881 char *dst; in buffer_urldecode_internal() local
886 dst = (char*) url->ptr; in buffer_urldecode_internal()
890 *dst = ' '; in buffer_urldecode_internal()
892 *dst = '%'; in buffer_urldecode_internal()
903 *dst = high; in buffer_urldecode_internal()
908 *dst = *src; in buffer_urldecode_internal()
911 dst++; in buffer_urldecode_internal()
915 *dst = '\0'; in buffer_urldecode_internal()
916 url->used = (dst - url->ptr) + 1; in buffer_urldecode_internal()
H A Ddata_integer.c33 static int data_integer_insert_dup(data_unset *dst, data_unset *src) { in data_integer_insert_dup() argument
34 UNUSED(dst); in data_integer_insert_dup()
H A Ddata_count.c33 static int data_count_insert_dup(data_unset *dst, data_unset *src) { in data_count_insert_dup() argument
34 data_count *ds_dst = (data_count *)dst; in data_count_insert_dup()
H A Ddata_array.c35 static int data_array_insert_dup(data_unset *dst, data_unset *src) { in data_array_insert_dup() argument
36 UNUSED(dst); in data_array_insert_dup()
H A Ddata_fastcgi.c35 static int data_fastcgi_insert_dup(data_unset *dst, data_unset *src) { in data_fastcgi_insert_dup() argument
36 UNUSED(dst); in data_fastcgi_insert_dup()
H A Dhttp-header-glue.c163 char dst[INET6_ADDRSTRLEN]; in http_response_redirect_to_directory() local
171 dst, sizeof(dst))); in http_response_redirect_to_directory()
H A Ddata_config.c46 static int data_config_insert_dup(data_unset *dst, data_unset *src) { in data_config_insert_dup() argument
47 UNUSED(dst); in data_config_insert_dup()
H A Dmod_cgi.c715 char *dst; in cgi_env_add() local
719 dst = malloc(key_len + val_len + 2); in cgi_env_add()
720 memcpy(dst, key, key_len); in cgi_env_add()
721 dst[key_len] = '='; in cgi_env_add()
722 memcpy(dst + key_len + 1, val, val_len); in cgi_env_add()
723 dst[key_len + 1 + val_len] = '\0'; in cgi_env_add()
733 env->ptr[env->used++] = dst; in cgi_env_add()
H A Darray.h26 int (*insert_dup)(struct data_unset *dst, struct data_unset *src); \
H A Dmod_scgi.c611 char *dst; in env_add() local
616 dst = malloc(key_len + val_len + 3); in env_add()
617 memcpy(dst, key, key_len); in env_add()
618 dst[key_len] = '='; in env_add()
620 memcpy(dst + key_len + 1, val, val_len + 1); in env_add()
623 if (0 == strncmp(dst, env->ptr[i], key_len + 1)) { in env_add()
626 env->ptr[i] = dst; in env_add()
639 env->ptr[env->used++] = dst; in env_add()
H A Dstat_cache.c319 static int buffer_copy_dirname(buffer *dst, buffer *file) { in buffer_copy_dirname() argument
326 buffer_copy_string_len(dst, file->ptr, i); in buffer_copy_dirname()
H A Dmod_fastcgi.c758 char *dst; in env_add() local
763 dst = malloc(key_len + val_len + 3); in env_add()
764 memcpy(dst, key, key_len); in env_add()
765 dst[key_len] = '='; in env_add()
766 memcpy(dst + key_len + 1, val, val_len); in env_add()
767 dst[key_len + 1 + val_len] = '\0'; in env_add()
770 if (0 == strncmp(dst, env->ptr[i], key_len + 1)) { in env_add()
773 env->ptr[i] = dst; in env_add()
786 env->ptr[env->used++] = dst; in env_add()
H A Dconfigparser.y86 array *dst = ((data_array *)op1)->value; in configparser_merge_data() local
94 array_insert_unique(dst, du->copy(du)); in configparser_merge_data()
H A Dconfigparser.c89 array *dst = ((data_array *)op1)->value; in configparser_merge_data() local
97 array_insert_unique(dst, du->copy(du)); in configparser_merge_data()
/mOS-networking-stack/core/src/include/
H A Dnetmap_user.h274 uint64_t *dst = (uint64_t *)_dst; in nm_pkt_copy() local
277 memcpy(dst, src, l); in nm_pkt_copy()
281 *dst++ = *src++; in nm_pkt_copy()
282 *dst++ = *src++; in nm_pkt_copy()
283 *dst++ = *src++; in nm_pkt_copy()
284 *dst++ = *src++; in nm_pkt_copy()
285 *dst++ = *src++; in nm_pkt_copy()
286 *dst++ = *src++; in nm_pkt_copy()
287 *dst++ = *src++; in nm_pkt_copy()
288 *dst++ = *src++; in nm_pkt_copy()
/mOS-networking-stack/core/src/bpf/
H A Dsf_optimize.c2140 struct bpf_insn *dst; local
2160 p->offset = dst - fstart;
2187 dst->k = src->s.k;
2246 ++dst;
2253 bids[dst - fstart] = p->id + 1;
2255 dst->code = (u_short) p->s.code;
2256 dst->k = p->s.k;
2271 dst->jt = extrajmps;
2277 dst->jt = off;
2290 dst->jf = extrajmps;
[all …]