/external/ltp/utils/ffsb-6.0-rc2/ |
D | ffsb_fc.c | 100 void fc_set_callout(ffsb_config_t * fc, char *callout) in fc_set_callout() argument 102 free(fc->callout); in fc_set_callout() 103 fc->callout = ffsb_strdup(callout); in fc_set_callout() 108 return fc->callout; in fc_get_callout()
|
D | main.c | 71 char *callout = NULL; in main() local 137 callout = fc_get_callout(&fc); in main() 138 if (callout) { in main() 139 printf("executing callout: \n %s\n", callout); in main() 140 if (ffsb_system(callout) < 0) { in main()
|
D | ffsb.h | 73 char *callout; /* we will try and exec this */ member 102 void fc_set_callout(ffsb_config_t *fc, char *callout);
|
D | README | 66 callout - calls and external command and waits for its termination 73 callout). 254 callout=synchronize.sh myhostname
|
D | parser.c | 1022 fc->callout = get_config_str(profile_conf->global, "callout"); in init_config()
|
/external/ppp/pppd/ |
D | main.c | 1304 struct callout { struct 1308 struct callout *c_next; argument 1311 static struct callout *callout = NULL; /* Callout list */ variable 1323 struct callout *newp, *p, **pp; 1328 if ((newp = (struct callout *) malloc(sizeof(struct callout))) == NULL) 1343 for (pp = &callout; (p = *pp); pp = &p->c_next) 1361 struct callout **copp, *freep; 1366 for (copp = &callout; (freep = *copp); copp = &freep->c_next) 1381 struct callout *p; in calltimeout() 1383 while (callout != NULL) { in calltimeout() [all …]
|
/external/pcre/dist2/src/ |
D | pcre2_jit_match.c | 135 arguments.callout = mcontext->callout; in pcre2_jit_match() 147 arguments.callout = NULL; in pcre2_jit_match()
|
D | pcre2_context.c | 345 int (*callout)(pcre2_callout_block *, void *), void *callout_data) in pcre2_set_callout() 347 mcontext->callout = callout; in pcre2_set_callout()
|
D | pcre2_intmodedep.h | 582 int (*callout)(pcre2_callout_block *, void *); member 821 int (*callout)(pcre2_callout_block *,void *); /* Callout function or NULL */ member 846 int (*callout)(pcre2_callout_block *,void *); /* Callout function or NULL */ member
|
D | pcre2_dfa_match.c | 2621 if (mb->callout != NULL) in internal_dfa_match() 2652 if ((rrc = (mb->callout)(&cb, mb->callout_data)) < 0) in internal_dfa_match() 2991 if (mb->callout != NULL) in internal_dfa_match() 3022 if ((rrc = (mb->callout)(&cb, mb->callout_data)) < 0) in internal_dfa_match() 3217 mb->callout = NULL; in pcre2_dfa_match() 3228 mb->callout = mcontext->callout; in pcre2_dfa_match()
|
D | pcre2_match.c | 1318 if (mb->callout != NULL) in match() 1349 if ((rrc = mb->callout(&cb, mb->callout_data)) > 0) in match() 1744 if (mb->callout != NULL) in match() 1776 if ((rrc = mb->callout(&cb, mb->callout_data)) > 0) in match() 6627 mb->callout = mcontext->callout; in pcre2_match()
|
D | config.h.in | 268 /* Define to any value to enable callout script support in pcre2grep. */
|
D | config.h.generic | 277 /* Define to any value to enable callout script support in pcre2grep. */
|
/external/pcre/dist2/doc/ |
D | pcre2test.txt | 512 callout_info show callout information 594 mation that is requested. For each callout, either its number or string 899 callout_capture show captures at callout time 901 callout_fail=<n>[:<m>] control callout failure 902 callout_none do not supply a callout function 990 A callout function is supplied when pcre2test calls the library match- 992 set, the current captured groups are output when a callout occurs. 995 only one number, 1 is returned instead of 0 when a callout of that num- 996 ber is reached. If two numbers are given, 1 is returned when callout 999 description of the output when a callout it taken. [all …]
|
D | pcre2.txt | 134 pcre2callout details of the callout feature 805 The first argument to the callout function gives the current depth of 807 ment of pcre2_set_compile_recursion_guard(). The callout function 815 A callout function 843 This sets up a "callout" function, which PCRE2 will call at specified 1246 If this bit is set, pcre2_compile() automatically inserts callout 1248 the callout facility, see the pcre2callout documentation. 1935 function is called for every callout in the pattern in the order in 1936 which they appear. Its first argument is a pointer to a callout enumer- 1938 passed to pcre2_callout_enumerate(). The contents of the callout enu- [all …]
|
D | pcre2grep.txt | 738 callout facility. However, this support can be disabled when pcre2grep 743 A callout in a PCRE2 pattern is of the form (?C<arg>) where the argu- 776 characters in the callout argument will cause premature termination of 779 character) cause the callout to be ignored. If running the program
|
/external/pcre/dist2/ |
D | HACKING | 548 or OP_SCOND. However, if automatic callouts are enabled, a callout is inserted 550 callout at this point. Only assertion conditions may have callouts preceding 573 A callout can nowadays have either a numerical argument or a string argument. 580 In the case of a numeric callout, after these two values there is a single code 581 unit containing the callout number, in the range 0-255, with 255 being used for 591 and followed by a binary zero. When a callout function is called, a pointer to 593 the application needs it. In the 8-bit library, the callout in /X(?C'abc')Y/ is
|
D | configure.ac | 151 # Handle --disable-pcre2grep-callout (enabled by default) but not supported 154 AC_ARG_ENABLE(pcre2grep-callout, 155 AS_HELP_STRING([--disable-pcre2grep-callout], 156 [disable callout script support in pcre2grep]), 561 # Currently pcre2grep callout string is not supported under Windows. 569 Define to any value to enable callout script support in pcre2grep.])
|
D | ChangeLog | 57 11. A pattern such as /(?<=((?C)0))/, which has a callout inside a lookbehind 59 callout was taken, making the program appearing to loop. 209 8. A callout with a string argument containing an opening square bracket, for 241 17. A missing closing parenthesis for a callout with a string argument was not 252 whose condition was an assertion preceded by an explicit callout with a string 543 (c) Within the text argument of a callout
|
/external/v8/tools/turbolizer/ |
D | turbo-visualizer.css | 64 -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/swiftshader/third_party/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/libnl/doc/ |
D | libnl.css | 722 -webkit-touch-callout: none; 1117 -webkit-touch-callout: none;
|
/external/libjpeg-turbo/doc/html/ |
D | doxygen.css | 733 -webkit-touch-callout: none; 1145 -webkit-touch-callout: none;
|
/external/regex-re2/doc/ |
D | syntax.txt | 351 (?C) PCRE callout NOT SUPPORTED pcre
|