/external/ppp/pppd/ |
D | main.c | 1307 struct callout { struct 1311 struct callout *c_next; argument 1314 static struct callout *callout = NULL; /* Callout list */ variable 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; (freep = *copp); copp = &freep->c_next) 1384 struct callout *p; in calltimeout() 1386 while (callout != NULL) { in calltimeout() [all …]
|
/external/pcre/dist/ |
D | pcre_globals.c | 74 PCRE_EXP_DATA_DEFN int (*PUBL(callout))(PUBL(callout_block) *) = NULL; 82 PCRE_EXP_DATA_DEFN int (*PUBL(callout))(PUBL(callout_block) *) = NULL;
|
D | pcretest.c | 233 #define SET_PCRE_CALLOUT8(callout) \ argument 234 pcre_callout = callout 320 #define SET_PCRE_CALLOUT16(callout) \ argument 321 pcre16_callout = (int (*)(pcre16_callout_block *))callout 412 #define SET_PCRE_CALLOUT32(callout) \ argument 413 pcre32_callout = (int (*)(pcre32_callout_block *))callout 537 #define SET_PCRE_CALLOUT(callout) \ argument 539 SET_PCRE_CALLOUT32(callout); \ 541 SET_PCRE_CALLOUT16(callout); \ 543 SET_PCRE_CALLOUT8(callout) [all …]
|
D | pcre_dfa_exec.c | 2702 if (PUBL(callout) != NULL) in internal_dfa_exec() 2724 if ((rrc = (*PUBL(callout))(&cb)) < 0) return rrc; /* Abandon */ in internal_dfa_exec() 3055 if (PUBL(callout) != NULL) in internal_dfa_exec() 3077 if ((rrc = (*PUBL(callout))(&cb)) < 0) return rrc; /* Abandon */ in internal_dfa_exec()
|
D | NEWS | 16 minor improvements have been implemented and bugs fixed. There is a new callout 514 1. There's an "automatic callout" feature that inserts callouts before every 515 item in the regex, and there's a new callout field that gives the position 599 with (?{...}). The facility is termed a "callout". The way it is done in PCRE
|
D | HACKING | 520 OP_CALLOUT is followed by one unit of data that holds a callout number in the 521 range 0 to 254 for manual callouts, or 255 for an automatic callout. In both
|
D | ChangeLog | 516 assertion was false, the callout that immediately followed the alternation 519 23. Allow an explicit callout to be inserted before an assertion that is the 521 callouts, which always insert a callout at this point. 1440 45. Add a pointer to the latest mark to the callout data block. 2112 9. If auto-callout was enabled in a pattern with a conditional group whose 2148 exec(), but without supplying a callout function, matching went wrong. 4214 3. Documentation bug: the value of the capture_top field in a callout is *one 4536 provides with (?{...}). The facility is termed a "callout". The way it is done 4542 This provides a means of identifying different callout points. When PCRE 4550 29. pcretest is upgraded to test the callout functionality. It provides a [all …]
|
D | pcre_exec.c | 1308 if (PUBL(callout) != NULL) in match() 1332 if ((rrc = (*PUBL(callout))(&cb)) > 0) RRETURN(MATCH_NOMATCH); in match() 1703 if (PUBL(callout) != NULL) in match() 1727 if ((rrc = (*PUBL(callout))(&cb)) > 0) RRETURN(MATCH_NOMATCH); in match()
|
D | pcre.h.in | 484 non-recursive case for "frames". There is also an optional callout function
|
D | pcre.h.generic | 484 non-recursive case for "frames". There is also an optional callout function
|
D | pcre_jit_compile.c | 6314 if (PUBL(callout) == NULL) in do_callout() 6348 return (*PUBL(callout))(callout_block); in do_callout()
|
/external/pcre/dist/doc/ |
D | pcretest.txt | 649 \C+ show the current captured substrings at callout 651 \C- do not supply a callout function 652 \C!n return 1 instead of 0 when callout number n is 654 \C!n!m return 1 instead of 0 when callout number n is 656 \C*n pass the number n (may be negative) as callout 657 data; this is used as the callout return value 932 If the pattern contains any callout requests, pcretest's callout func- 934 tions. By default, the called function displays the callout number, the 935 start and current positions in the text at the callout time, and the 941 This output indicates that callout number 0 occurred for a match [all …]
|
D | pcre.txt | 145 pcrecallout details of the callout feature 356 used for passing data to a callout function is pcre16_callout_block. 477 The subject and mark fields in the callout block that is passed to a 478 callout function point to 16-bit vectors. 687 used for passing data to a callout function is pcre32_callout_block. 805 The subject and mark fields in the callout block that is passed to a 806 callout function point to 32-bit vectors. 1812 by the caller to a "callout" function, which PCRE will then call at 1864 callout and stack-checking functions pointed to by pcre_callout and 2115 If this bit is set, pcre_compile() automatically inserts callout items, [all …]
|
/external/llvm/test/Analysis/ScalarEvolution/ |
D | avoid-infinite-recursion-1.ll | 49 …%struct.callout = type <{ %union.anon, i32, i8, i8, i8, i8, i8*, void (i8*)*, %struct.lock_object*… 112 …callout, %struct.sigacts*, i32, i32, i32, i8, i8, i8, i8, %7, %7, %struct.proc*, %7, %13, %struct.… 138 …8, i8, i8, i8, i8, %struct.pcb*, i32, i8, i8, i8, i8, [2 x i64], %struct.callout, %struct.trapfram…
|
/external/regex-re2/doc/ |
D | syntax.txt | 351 (?C) PCRE callout NOT SUPPORTED pcre
|
/external/libxml2/ |
D | ChangeLog | 13051 easier to read ( use "--param callout.graphics 1" to generate
|