Searched refs:ep (Results 1 - 13 of 13) sorted by relevance

/httpd/modules/filters/
H A Dregexp.c133 char *ep, char *endbuf, int seof)
163 if (ep >= endbuf)
167 lastep = ep;
169 *ep++ = CCEOF;
178 *ep++ = CDOT;
194 *ep++ = CDOL;
198 if (&ep[17] >= endbuf)
201 *ep++ = CCL;
204 ep[i] = 0;
218 if (&ep[3
132 sed_compile(sed_commands_t *commands, sed_comp_args *compargs, char *ep, char *endbuf, int seof) argument
390 _advance(char *lp, char *ep, step_vars_storage *vars) argument
[all...]
H A Dregexp.h54 #define PLACE(c) ep[c >> 3] |= bittab[c & 07]
55 #define ISTHERE(c) (ep[c >> 3] & bittab[c & 07])
71 char *ep, char *endbuf, int seof);
H A Dsed0.c40 char *x1, char *ep, char *x3, char x4);
930 char *ep, *tsp; local
934 ep = expbuf;
935 if(ep + 0377 > &commands->respace[RESIZE-1]) {
949 memset(ep, 0, 0400);
958 if((ep[cint] = *tsp++) == '\\' && *tsp == 'n') {
959 ep[cint] = '\n';
962 if(ep[cint] == commands->sseof || ep[cint] == '\0') {
978 if(ep[
987 comple(sed_commands_t *commands, sed_comp_args *compargs, char *x1, char *ep, char *x3, char x4) argument
[all...]
H A Dmod_include.c827 const char *newp = NULL, *ep, *key = NULL; local
830 ep = ap_strchr_c(++p, '}');
831 if (!ep) {
837 if (p < ep) {
838 key = apr_pstrmemdup(ctx->dpool, p, ep - p);
839 newp = ep + 1;
844 ep = p;
845 while (*ep == '_' || apr_isalnum(*ep)) {
846 ++ep;
931 const char *ep; local
2828 const char *p, *ep; local
2903 const char *p, *ep; local
2997 const char *ep = data + len; local
3096 const char *ep = data + len; local
3120 const char *ep = data + len; local
3163 const char *ep = data + len; local
[all...]
/httpd/server/mpm/simple/
H A Dsimple_event.c43 simple_timer_t *ep = NULL; local
65 ep = APR_RING_FIRST(&sc->timer_ring);
67 ep != APR_RING_SENTINEL(&sc->timer_ring, simple_timer_t, link))
69 if (ep->expires < elem->expires) {
72 APR_RING_INSERT_BEFORE(ep, elem, link);
77 ep = APR_RING_NEXT(ep, link);
94 simple_timer_run(simple_timer_t *ep) argument
96 apr_pool_cleanup_kill(ep->pool, ep, simple_timer_pool_cleanu
[all...]
H A Dsimple_run.c138 simple_timer_t *ep = (simple_timer_t *) baton; local
140 simple_timer_run(ep);
148 simple_timer_t *ep = NULL; local
194 for (ep = APR_RING_FIRST(&sc->timer_ring);
195 ep != APR_RING_SENTINEL(&sc->timer_ring,
197 ep = APR_RING_NEXT(ep, link)) {
198 if (ep->expires < tnow) {
199 simple_timer_t *next = APR_RING_PREV(ep, link);
201 APR_RING_REMOVE(ep, lin
[all...]
H A Dsimple_event.h35 simple_timer_run(simple_timer_t *ep);
/httpd/support/
H A Dsuexec.c227 char **ep; local
255 for (ep = envp; *ep && cidx < AP_ENVBUF-1; ep++) {
256 if (strncmp(*ep, "HTTP_", 5) == 0) {
257 if (strncmp(*ep + 5, "PROXY=", 6) == 0) {
265 cleanenv[cidx] = *ep;
271 if (!strncmp(*ep, safe_env_lst[idx],
273 cleanenv[cidx] = *ep;
/httpd/modules/metadata/
H A Dmod_version.c78 char *p = version_string, *ep; local
91 ep = version_string + strlen(version_string);
92 while (p <= ep && c < 3) {
110 if (p < ep) { /* syntax error */
/httpd/server/mpm/motorz/
H A Dmotorz.c227 motorz_timer_t *ep = (motorz_timer_t *)baton; local
228 motorz_conn_t *scon = (motorz_conn_t *)ep->baton;
232 ep->cb(ep->mz, ep->baton);
/httpd/server/
H A Dutil.c2072 unsigned char *d, *ep; local
2081 ep = d + buflen - 1;
2083 for (; d < ep && *s; ++s) {
2087 if (d >= ep) {
2115 if (d >= ep - 2) {
2116 ep = --d; /* break the for loop as well */
H A Dcore.c1235 const char *s, *e, *ep; local
1245 ep = word + strlen(word);
1299 current->len = s ? s - word : ep - word;
/httpd/modules/proxy/
H A Dmod_proxy_ftp.c775 char *ep; local
788 port = strtol(p + 4, &ep, 10);
789 if (errno || port < 1 || port > 65535 || ep[0] != p[1] || ep[1] != ')') {

Completed in 1863 milliseconds