Searched refs:redirect (Results 1 - 25 of 62) sorted by relevance

123

/macosx-10.10.1/apache-793/httpd/modules/mappers/
H A Dmod_imagemap.c458 static int imap_reply(request_rec *r, const char *redirect) argument
460 if (!strcasecmp(redirect, "error")) {
464 if (!strcasecmp(redirect, "nocontent")) {
468 if (redirect && *redirect) {
469 /* must be a URL, so redirect to it */
470 apr_table_setn(r->headers_out, "Location", redirect);
584 const char *redirect; local
721 redirect = imap_url(r, base, mapdflt);
722 if (!redirect) {
[all...]
H A Dmod_userdir.c204 char *redirect; local
286 redirect = apr_pstrcat(r->pool, prefix, user, userdir,
288 apr_table_setn(r->headers_out, "Location", redirect);
299 redirect = apr_pstrcat(r->pool, prefix, user, dname, NULL);
300 apr_table_setn(r->headers_out, "Location", redirect);
/macosx-10.10.1/curl-83.1.2/curl/tests/libtest/
H A Dlib1502.c49 char redirect[160]; local
54 sprintf(redirect, "google.com:%s:%s", libtest_arg2, libtest_arg3);
58 dns_cache_list = curl_slist_append(NULL, redirect);
/macosx-10.10.1/ipsec-286.1.1/ipsec-tools/racoon/
H A Dlocalconf.h91 struct redirect { struct
92 LIST_ENTRY(redirect) chain;
122 LIST_HEAD(_redirect_, redirect) redirect_addresses;
/macosx-10.10.1/xnu-2782.1.97/iokit/IOKit/
H A DIOSubMemoryDescriptor.h91 IOReturn redirect( task_t safeTask, bool redirect );
H A DIOMemoryDescriptor.h608 kIOMapUnique allows a special kind of mapping to be created that may be used with the IOMemoryMap::redirect() API. These mappings will not be shared as is the default - there will always be a unique mapping created for the caller, not an existing mapping with an extra reference.<br>
657 IOReturn redirect( task_t safeTask, bool redirect );
797 /*! @function redirect
800 @param newBackingMemory The IOMemoryDescriptor that represents the physical memory that is to be now mapped in the virtual range the IOMemoryMap represents. If newBackingMemory is NULL, any access to the mapping will hang (in vm_fault()) until access has been restored by a new call to redirect() with non-NULL newBackingMemory argument.
808 virtual IOReturn redirect(IOMemoryDescriptor * newBackingMemory,
812 virtual IOReturn redirect(IOMemoryDescriptor * newBackingMemory,
853 IOReturn redirect(
854 task_t intoTask, bool redirect );
/macosx-10.10.1/xnu-2782.1.97/iokit/Kernel/
H A DIOSubMemoryDescriptor.cpp37 IOReturn IOSubMemoryDescriptor::redirect( task_t safeTask, bool doRedirect ) function in class:IOSubMemoryDescriptor
40 super::redirect( safeTask, doRedirect );
42 return( _parent->redirect( safeTask, doRedirect ));
/macosx-10.10.1/apache-793/httpd/modules/aaa/
H A Dmod_authz_dbd.c50 int redirect; member in struct:__anon5842
61 ret->redirect = -1;
73 ret->redirect = (add->redirect == -1) ? base->redirect : add->redirect;
101 (void*)APR_OFFSETOF(authz_dbd_cfg, redirect), ACCESS_CONF,
102 "Whether to redirect to referer on successful login"),
108 "SQL query to get per-user redirect URL after login"),
153 if (cfg->redirect
[all...]
/macosx-10.10.1/bash-94.1.2/bash-3.2/
H A Dredir.c141 internal_error (_("%s: ambiguous redirect"), filename);
150 internal_error (_("%s: restricted: cannot redirect output"), filename);
206 expandable_redirection_filename (redirect)
207 REDIRECT *redirect;
209 switch (redirect->instruction)
617 do_redirection_internal (redirect, flags)
618 REDIRECT *redirect;
628 redirectee = redirect->redirectee.filename;
629 redir_fd = redirect->redirectee.dest;
630 redirector = redirect
[all...]
H A Dprint_cmd.c866 print_redirection (redirect)
867 REDIRECT *redirect;
873 redirectee = redirect->redirectee.filename;
874 redirector = redirect->redirector;
875 redir_fd = redirect->redirectee.dest;
877 switch (redirect->instruction)
908 if (redirect->redirectee.filename->flags & W_QUOTED)
911 x = sh_single_quote (redirect->here_doc_eof);
916 cprintf ("<<%s%s\n", kill_leading? "-" : "", redirect->here_doc_eof);
918 redirect
[all...]
H A Dcopy_cmd.c106 /* Copy a single redirect. */
108 copy_redirect (redirect)
109 REDIRECT *redirect;
114 FASTCOPY ((char *)redirect, (char *)new_redirect, (sizeof (REDIRECT)));
115 switch (redirect->instruction)
119 new_redirect->here_doc_eof = savestring (redirect->here_doc_eof);
133 new_redirect->redirectee.filename = copy_word (redirect->redirectee.filename);
H A Dcommand.h124 int dest; /* Place to redirect REDIRECTOR to, or ... */
125 WORD_DESC *filename; /* filename to redirect to. */
130 typedef struct redirect { struct
131 struct redirect *next; /* Next element, or NULL. */
143 REDIRECT *redirect; member in struct:element
/macosx-10.10.1/postfix-255/postfix/src/cleanup/
H A Dcleanup_state.c114 state->redirect = 0;
170 if (state->redirect)
171 myfree(state->redirect);
H A Dcleanup_extracted.c185 if (state->redirect != 0)
186 cleanup_out_string(state, REC_TYPE_RDR, state->redirect);
/macosx-10.10.1/Libc-1044.1.2/os/
H A Ddebug_private.c43 os_redirect_t redirect; member in struct:os_debug_log_globals_s
101 g->redirect = dlsym(RTLD_MAIN_ONLY, "_os_debug_log_redirect_func");
148 if (g->logfd >= 0 && !g->redirect) {
236 os_redirect_t rdr = os_debug_log_globals()->redirect;
237 // true = redirect has fully handled, don't log
H A Dassumes.c169 struct _os_redirect_assumes_s *redirect = (struct _os_redirect_assumes_s *)data; local
170 result = redirect->redirect;
H A Dassumes.h61 os_redirect_t redirect; member in struct:_os_redirect_assumes_s
71 .redirect = &func, \
/macosx-10.10.1/tcl-105/tcl_ext/expect/expect/
H A Dexp_tty.c320 int devtty) /* if true, redirect to /dev/tty */
385 char **redirect; /* location of "<" */ local
393 redirect = argv;
509 /* temporarily zap redirect */
510 char *redirect_save = *redirect;
511 *redirect = 0;
540 /* restore redirect */
541 *redirect = redirect_save;
549 char original_redirect_char = (*redirect)[0];
550 (*redirect)[
[all...]
/macosx-10.10.1/postfix-255/postfix/src/verify/
H A Dverify.c637 VSTRING *redirect; local
667 redirect = vstring_alloc(100);
680 data_redirect_map(redirect, var_verify_map) :
688 vstring_free(redirect);
/macosx-10.10.1/libdispatch-442.1.4/src/
H A Dapply.c27 _dispatch_apply_invoke2(void *ctxt, bool redirect) argument
49 if (redirect) {
63 if (redirect) {
/macosx-10.10.1/postfix-255/postfix/src/postscreen/
H A Dpostscreen.c838 VSTRING *redirect; local
870 redirect = vstring_alloc(100);
884 dict_cache_open(data_redirect_map(redirect, var_psc_cache_map),
890 vstring_free(redirect);
/macosx-10.10.1/llvmCore-3425.0.34/lib/Support/Unix/
H A DProgram.inc201 // Just redirect stderr
204 // If stdout and stderr should go to the same place, redirect stderr
207 return !MakeErrMsg(ErrMsg, "Can't redirect stderr to stdout", Err);
254 // If stdout and stderr should go to the same place, redirect stderr
257 MakeErrMsg(ErrMsg, "Can't redirect stderr to stdout");
261 // Just redirect stderr
/macosx-10.10.1/vim-55/runtime/syntax/
H A Dsieve.vim35 syn keyword sieveAction reject fileinto redirect keep discard
/macosx-10.10.1/postfix-255/postfix/src/tlsmgr/
H A Dtlsmgr.c829 VSTRING *redirect; local
897 redirect = vstring_alloc(100);
906 tls_prng_exch_open(data_redirect_file(redirect,
934 tls_scache_open(data_redirect_map(redirect, *ent->cache_db),
946 vstring_free(redirect);
/macosx-10.10.1/CPANInternal-159.1/SOAP-Lite-1.11/lib/SOAP/Transport/
H A DHTTP.pm28 my ( %redirect, %mpost, %nocompress );
180 # check cache for redirect
181 $endpoint = $redirect{$endpoint} if exists $redirect{$endpoint};
298 $redirect{$endpoint} = $self->http_response->request->url

Completed in 170 milliseconds

123