Searched defs:stop (Results 1 - 5 of 5) sorted by relevance
/httpd/build/rpm/ |
H A D | htcacheclean.init | 33 # Short-Description: start and stop Apache htcacheclean 65 stop() { function 78 stop) 79 stop 86 stop 91 stop 96 echo $"Usage: $prog {start|stop|restart|condrestart|status|help}"
|
H A D | httpd.init | 33 # Short-Description: start and stop Apache HTTP Server 94 stop() { function 114 stop) 115 stop 127 stop 132 stop 150 echo $"Usage: $prog {start|stop|restart|condrestart|reload|status|graceful|help|configtest}"
|
/httpd/support/ |
H A D | htdigest.c | 78 static void getword(char *word, char *line, char stop) argument 82 for (x = 0; ((line[x]) && (line[x] != stop)); x++)
|
/httpd/modules/cache/ |
H A D | mod_cache.c | 347 * If a stop filter is specified, processing will stop once this filter is 351 ap_filter_rec_t *to, ap_filter_rec_t *stop) { 353 while (next && next->frec != stop) { 1085 * indicating do not cache, or stop now if you are 350 cache_replace_filter(ap_filter_t *next, ap_filter_rec_t *from, ap_filter_rec_t *to, ap_filter_rec_t *stop) argument
|
/httpd/server/ |
H A D | util.c | 666 AP_DECLARE(char *) ap_getword_nc(apr_pool_t *atrans, char **line, char stop) argument 668 return ap_getword(atrans, (const char **) line, stop); 671 AP_DECLARE(char *) ap_getword(apr_pool_t *atrans, const char **line, char stop) argument 677 while ((*pos != stop) && *pos) { 684 if (stop) { 685 while (*pos == stop) { 722 char stop) 724 return ap_getword_nulls(atrans, (const char **) line, stop); 728 char stop) 730 const char *pos = ap_strchr_c(*line, stop); 721 ap_getword_nulls_nc(apr_pool_t *atrans, char **line, char stop) argument 727 ap_getword_nulls(apr_pool_t *atrans, const char **line, char stop) argument [all...] |
Completed in 1520 milliseconds