Searched refs:dst (Results 1 - 10 of 10) sorted by relevance

/httpd/build/
H A Dinstall.sh50 dst=""
91 dst="$dstarg"
99 if [ -d $dst ]; then
100 dst="$dst/`basename $src`"
103 # Add a possible extension (such as ".exe") to src and dst
105 dst="$dst$ext"
108 dstdir=`dirname $dst`
121 $rmcmd $dst
[all...]
/httpd/server/
H A Dvhost.c690 char *dst; local
693 for (dst = host; *dst; dst++) {
694 if (apr_isxdigit(*dst)) {
695 if (apr_isupper(*dst)) {
696 *dst = apr_tolower(*dst);
699 else if (*dst == ':') {
700 if (*(dst
723 char *dst; local
[all...]
H A Dutil_script.c677 char *dst = buf; local
682 while ((dst < dst_end) && !done && e != APR_BRIGADE_SENTINEL(bb)
693 *dst = '\0';
698 while ((src < src_end) && (dst < dst_end) && !done) {
703 *dst++ = *src;
715 *dst = 0;
H A Dutil.c387 char *dst; local
433 *result = dst = apr_palloc(p, len + 1);
439 dst = vb->buf + vb->strlen;
456 *dst++ = c;
460 memcpy(dst, source + pmatch[no].rm_so, len);
461 dst += len;
465 *dst = '\0';
/httpd/modules/dav/fs/
H A Drepos.c323 /* Copy or move src to dst; src_finfo is used to propagate permissions
324 * bits across if non-NULL; dst_finfo must be non-NULL iff dst already
330 const char *dst,
351 if ((status = apr_file_perms_set(dst, perms)) != APR_SUCCESS) {
371 status = apr_file_open(&outf, dst, APR_WRITE | APR_CREATE | APR_TRUNCATE
390 if ((lcl_status = apr_file_remove(dst, p)) != APR_SUCCESS) {
417 if ((lcl_status = apr_file_remove(dst, p)) != APR_SUCCESS) {
449 "inconsistent state.", src, dst));
452 else if ((lcl_status = apr_file_remove(dst, p)) != APR_SUCCESS) {
485 const char *dst; local
326 dav_fs_copymove_file( int is_move, apr_pool_t * p, const char *src, const char *dst, const apr_finfo_t *src_finfo, const apr_finfo_t *dst_finfo, dav_buffer *pbuf) argument
553 dav_fs_copymoveset(int is_move, apr_pool_t *p, const dav_resource *src, const dav_resource *dst, dav_buffer *pbuf) argument
1209 dav_fs_copymove_resource( int is_move, const dav_resource *src, const dav_resource *dst, int depth, dav_response **response) argument
1271 dav_fs_copy_resource( const dav_resource *src, dav_resource *dst, int depth, dav_response **response) argument
1302 dav_fs_move_resource( dav_resource *src, dav_resource *dst, dav_response **response) argument
[all...]
/httpd/modules/aaa/
H A Dmod_auth_digest.c1475 static void copy_uri_components(apr_uri_t *dst, argument
1478 dst->scheme = src->scheme;
1481 dst->scheme = (char *) "http";
1485 dst->hostname = apr_pstrdup(r->pool, src->hostname);
1486 ap_unescape_url(dst->hostname);
1489 dst->hostname = (char *) ap_get_server_name(r);
1493 dst->port = src->port;
1496 dst->port = ap_get_server_port(r);
1500 dst->path = apr_pstrdup(r->pool, src->path);
1501 ap_unescape_url(dst
[all...]
/httpd/modules/proxy/
H A Dmod_proxy.h328 #define PROXY_STRNCPY(dst, src) ap_proxy_strncpy((dst), (src), (sizeof(dst)))
563 PROXY_DECLARE(apr_status_t) ap_proxy_strncpy(char *dst, const char *src,
H A Dproxy_util.c92 PROXY_DECLARE(apr_status_t) ap_proxy_strncpy(char *dst, const char *src,
104 *dst = '\0';
107 thenil = apr_cpystrn(dst, src, dlen);
108 thelen = thenil - dst;
/httpd/modules/metadata/
H A Dmod_setenvif.c238 char *dst = unescaped; local
244 } while ((*dst++ = *src++));
/httpd/modules/dav/main/
H A Dmod_dav.h1906 * If the copy is successful, the dst resource object is
1911 dav_resource *dst,
1920 * If the move is successful, the src and dst resource objects are
1926 dav_resource *dst,

Completed in 98 milliseconds