Searched defs:callout (Results 1 - 2 of 2) sorted by relevance

/external/ppp/pppd/
H A Dmain.c1240 struct callout { struct
1244 struct callout *c_next;
1247 static struct callout *callout = NULL; /* Callout list */ variable in typeref:struct:callout
1259 struct callout *newp, *p, **pp;
1264 if ((newp = (struct callout *) malloc(sizeof(struct callout))) == NULL)
1279 for (pp = &callout; (p = *pp); pp = &p->c_next)
1297 struct callout **copp, *freep;
1302 for (copp = &callout; (free
[all...]
/external/pcre/dist/
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...]

Completed in 1629 milliseconds