Searched refs:callout (Results 1 – 13 of 13) sorted by relevance
/external/ppp/pppd/ |
D | main.c | 1240 struct callout { struct 1244 struct callout *c_next; argument 1247 static struct callout *callout = NULL; /* Callout list */ variable 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; (freep = *copp); copp = &freep->c_next) 1317 struct callout *p; in calltimeout() 1319 while (callout != NULL) { in calltimeout() [all …]
|
/external/pcre/doc/ |
D | pcretest.txt | 339 \C+ show the current captured substrings at callout 341 \C- do not supply a callout function 342 \C!n return 1 instead of 0 when callout number n is 344 \C!n!m return 1 instead of 0 when callout number n is 346 \C*n pass the number n (may be negative) as callout 347 data; this is used as the callout return value 591 If the pattern contains any callout requests, pcretest's callout func- 593 tions. By default, the called function displays the callout number, the 594 start and current positions in the text at the callout time, and the 600 indicates that callout number 0 occurred for a match attempt starting [all …]
|
D | pcre.txt | 83 pcrecallout details of the callout feature 988 by the caller to a "callout" function, which PCRE will then call at 1032 callout function pointed to by pcre_callout, are shared by all threads. 1226 If this bit is set, pcre_compile() automatically inserts callout items, 1228 callout facility, see the pcrecallout documentation. 2020 The callout_data field is used in conjunction with the "callout" fea- 2441 use by callout functions that want to yield a distinctive error code. 2689 of the callout facility, which is described in the pcrecallout documen- 2692 What you have to do is to insert a callout right at the end of the pat- 2693 tern. When your callout function is called, extract and save the cur- [all …]
|
/external/chromium/chrome/browser/resources/ntp4/ |
D | tile_page.css | 35 -webkit-touch-callout: none;
|
/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/chromium/chrome/browser/resources/touch_ntp/ |
D | newtab.css | 89 -webkit-touch-callout: none;
|
/external/pcre/ |
D | NEWS | 309 1. There's an "automatic callout" feature that inserts callouts before every 310 item in the regex, and there's a new callout field that gives the position 394 with (?{...}). The facility is termed a "callout". The way it is done in PCRE
|
D | pcre.h.generic | 262 non-recursive case for "frames". There is also an optional callout function
|
D | pcre.h.in | 262 non-recursive case for "frames". There is also an optional callout function
|
D | HACKING | 419 OP_CALLOUT is followed by one byte of data that holds a callout number in the 420 range 0 to 254 for manual callouts, or 255 for an automatic callout. In both
|
D | pcretest.c | 858 static int callout(pcre_callout_block *cb) in callout() function 2157 pcre_callout = callout; in main()
|
D | ChangeLog | 661 9. If auto-callout was enabled in a pattern with a conditional group whose 697 exec(), but without supplying a callout function, matching went wrong. 2763 3. Documentation bug: the value of the capture_top field in a callout is *one 3085 provides with (?{...}). The facility is termed a "callout". The way it is done 3091 This provides a means of identifying different callout points. When PCRE 3099 29. pcretest is upgraded to test the callout functionality. It provides a 3100 callout function that displays information. By default, it shows the start of 3105 \C- do not supply a callout function 3106 \C!n return 1 when callout number n is reached 3107 \C!n!m return 1 when callout number n is reached for the mth time [all …]
|
/external/bluetooth/glib/docs/reference/glib/ |
D | regex-syntax.sgml | 2521 If you want to obtain intermediate values, a callout 2629 Perl code. The feature is called "callout". The caller of PCRE provides 2638 callout points, you can put a number less than 256 after the letter C. 2639 The default value is zero. For example, this pattern has two callout 2654 During matching, when PCRE reaches a callout point (and pcre_callout is 2656 of the callout, the position in the pattern, and, optionally, one item 2657 of data originally supplied by the caller of pcre_exec(). The callout 2658 …o backtrack, or to fail altogether. A complete description of the interface to the callout function
|