Searched refs:stop (Results 1 - 5 of 5) sorted by relevance
/httpd/modules/core/test/conf/ |
H A D | test62.conf | 4 $stop> 8 "Line:3-4 stop at $stop"
|
/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/include/ |
H A D | httpd.h | 1444 * @param stop The character to stop at 1445 * @return A copy of the characters up to the first stop character 1447 AP_DECLARE(char *) ap_getword(apr_pool_t *p, const char **line, char stop); 1453 * @param stop The character to stop at 1454 * @return A copy of the characters up to the first stop character 1457 AP_DECLARE(char *) ap_getword_nc(apr_pool_t *p, char **line, char stop); 1479 * Get all characters from the first occurrence of @a stop to the first "\0" 1482 * @param stop Th [all...] |
/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...] |
/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
|
Completed in 63 milliseconds