Searched refs:callout (Results 1 - 7 of 7) sorted by relevance

/external/pcre/dist/
H A Dpcre_globals.c74 PCRE_EXP_DATA_DEFN int (*PUBL(callout))(PUBL(callout_block) *) = NULL;
82 PCRE_EXP_DATA_DEFN int (*PUBL(callout))(PUBL(callout_block) *) = NULL;
H A Dpcretest.c233 #define SET_PCRE_CALLOUT8(callout) \
234 pcre_callout = callout
320 #define SET_PCRE_CALLOUT16(callout) \
321 pcre16_callout = (int (*)(pcre16_callout_block *))callout
412 #define SET_PCRE_CALLOUT32(callout) \
413 pcre32_callout = (int (*)(pcre32_callout_block *))callout
537 #define SET_PCRE_CALLOUT(callout) \
539 SET_PCRE_CALLOUT32(callout); \
541 SET_PCRE_CALLOUT16(callout); \
543 SET_PCRE_CALLOUT8(callout)
2250 static int callout(pcre_callout_block *cb) function
[all...]
H A Dpcre_dfa_exec.c2695 /* Because of the way auto-callout works during compile, a callout item
2702 if (PUBL(callout) != NULL)
2705 cb.version = 1; /* Version 1 of the callout block */
2724 if ((rrc = (*PUBL(callout))(&cb)) < 0) return rrc; /* Abandon */
2727 code += PRIV(OP_lengths)[OP_CALLOUT]; /* Skip callout data */
3055 if (PUBL(callout) != NULL)
3058 cb.version = 1; /* Version 1 of the callout block */
3077 if ((rrc = (*PUBL(callout))(&cb)) < 0) return rrc; /* Abandon */
3238 /* Set up study, callout, an
[all...]
H A Dpcregexp.pas434 the match. Yield zero unless more callouts than the fail count, or the callout
H A Dpcre_exec.c1298 pointing to the condition or callout. */
1303 /* Because of the way auto-callout works during compile, a callout item is
1308 if (PUBL(callout) != NULL)
1311 cb.version = 2; /* Version 1 of the callout block */
1332 if ((rrc = (*PUBL(callout))(&cb)) > 0) RRETURN(MATCH_NOMATCH);
1336 /* Advance ecode past the callout, so it now points to the condition. We
1698 /* The callout item calls an external function, if one is provided, passing
1703 if (PUBL(callout) != NULL)
1706 cb.version = 2; /* Version 1 of the callout bloc
[all...]
H A Dpcre_jit_compile.c6314 if (PUBL(callout) == NULL)
6348 return (*PUBL(callout))(callout_block);
/external/ppp/pppd/
H A Dmain.c1307 struct callout { struct
1311 struct callout *c_next;
1314 static struct callout *callout = NULL; /* Callout list */ variable in typeref:struct:callout
1326 struct callout *newp, *p, **pp;
1331 if ((newp = (struct callout *) malloc(sizeof(struct callout))) == NULL)
1346 for (pp = &callout; (p = *pp); pp = &p->c_next)
1364 struct callout **copp, *freep;
1369 for (copp = &callout; (free
[all...]

Completed in 136 milliseconds