| /src/external/bsd/tradcpp/dist/ |
| eval.h | 32 bool eval(struct place *p, char *expr);
|
| macro.h | 33 struct place; 38 void macro_define_plain(struct place *, const char *macro, 39 struct place *, const char *expansion); 40 void macro_define_params(struct place *, const char *macro, 41 struct place *, const char *params, 42 struct place *, const char *expansion); 43 void macro_define_magic(struct place *, const char *macro); 47 char *macroexpand(struct place *, const char *buf, size_t len, 50 void macro_sendline(struct place *, const char *buf, size_t len); 51 void macro_sendeof(struct place *); [all...] |
| files.h | 30 struct place; 38 void file_readquote(struct place *, const char *name); 39 void file_readbracket(struct place *, const char *name); 40 void file_readabsolute(struct place *, const char *name);
|
| place.h | 41 struct place { struct 51 void place_setnowhere(struct place *p); 52 void place_setbuiltin(struct place *p, unsigned num); 53 void place_setcommandline(struct place *p, unsigned word, unsigned column); 54 void place_setfilestart(struct place *p, const struct placefile *pf); 56 void place_addcolumns(struct place *, unsigned cols); 57 void place_addlines(struct place *, unsigned lines); 59 const char *place_getname(const struct place *); 60 const char *place_getparsedir(const struct place *incplace); 61 bool place_eq(const struct place *, const struct place *) [all...] |
| directive.h | 32 #include "place.h" 36 * the place in the current line 40 struct place current; 41 struct place nextline; 48 void directive_goteof(struct place *p);
|
| output.h | 30 void output(const struct place *p, const char *buf, size_t len);
|
| place.c | 39 #include "place.h" 42 struct place includedfrom; 63 placefile_create(const struct place *from, const char *name, 99 place_getparsedir(const struct place *place) 101 if (place->file == NULL) { 104 return place->file->dir; 109 placefile_find(const struct place *incfrom, const char *name) 126 place_changefile(struct place *p, const char *name) 144 place_addfile(const struct place *place, const char *file, bool issystem [all...] |
| utils.h | 33 struct place; 64 /* in place.c */ 66 PF(2, 3) void complain(const struct place *, const char *fmt, ...); 70 void debuglog_open(const struct place *p, /*const*/ char *file); 72 PF(2, 3) void debuglog(const struct place *p, const char *fmt, ...); 73 PF(3, 4) void debuglog2(const struct place *p, const struct place *p2,
|
| files.c | 40 #include "place.h" 180 struct place ptmp; 319 mkfilename(struct place *place, const char *dir, const char *file) 326 dir = place_getparsedir(place); 366 file_search(struct place *place, struct incdirarray *path, const char *name) 374 assert(place != NULL); 379 pf = place_addfile(place, name, true); 388 file = mkfilename(place, id->name, name) [all...] |
| /src/usr.bin/pr/ |
| egetopt.c | 75 static char *place = EMSG; /* option letter processing */ local 82 *place = savec; 86 if (!*place) { 91 ((*(place = nargv[eoptind]) != '-') && (*place != '+'))) { 92 place = EMSG; 96 delim = (int)*place; 97 if (place[1] && *++place == '-' && !place[1]) [all...] |
| /src/external/bsd/libevent/dist/WIN32-Code/ |
| getopt.c | 90 static char *place = EMSG; /* option letter processing */ local 97 if (optreset || !*place) { /* update scanning pointer */ 99 if (optind >= nargc || *(place = nargv[optind]) != '-') { 100 place = EMSG; 103 if (place[1] && *++place == '-' /* found "--" */ 104 && place[1] == '\0') { 106 place = EMSG; 110 if ((optopt = (int)*place++) == (int)':' || 118 if (!*place) [all...] |
| getopt_long.c | 80 static char *place = EMSG; /* option letter processing */ local 86 if (optreset || !*place) { /* update scanning pointer */ 88 if (optind >= nargc || *(place = nargv[optind]) != '-') { 89 place = EMSG; 92 if (place[1] && *++place == '-') { /* found "--" */ 94 place = EMSG; 98 if ((optopt = (int)*place++) == (int)':' || 106 if (!*place) 115 if (!*place) [all...] |
| /src/external/bsd/libpcap/dist/missing/ |
| getopt.c | 63 static char *place = EMSG; /* option letter processing */ local 72 if (optreset || !*place) { /* update scanning pointer */ 74 if (optind >= nargc || *(place = nargv[optind]) != '-') { 75 place = EMSG; 78 if (place[1] && *++place == '-') { /* found "--" */ 80 place = EMSG; 84 optopt = (int)*place++; 86 if (!*place) 101 if (!*place) [all...] |
| /src/external/bsd/ntp/dist/sntp/libevent/WIN32-Code/ |
| getopt.c | 91 static char *place = EMSG; /* option letter processing */ local 98 if (optreset || !*place) { /* update scanning pointer */ 100 if (optind >= nargc || *(place = nargv[optind]) != '-') { 101 place = EMSG; 104 if (place[1] && *++place == '-' /* found "--" */ 105 && place[1] == '\0') { 107 place = EMSG; 111 if ((optopt = (int)*place++) == (int)':' || 119 if (!*place) [all...] |
| getopt_long.c | 81 static char *place = EMSG; /* option letter processing */ local 87 if (optreset || !*place) { /* update scanning pointer */ 89 if (optind >= nargc || *(place = nargv[optind]) != '-') { 90 place = EMSG; 93 if (place[1] && *++place == '-') { /* found "--" */ 95 place = EMSG; 99 if ((optopt = (int)*place++) == (int)':' || 107 if (!*place) 116 if (!*place) [all...] |
| /src/crypto/external/bsd/heimdal/dist/lib/roken/ |
| getopt.c | 62 static char *place = EMSG; /* option letter processing */ local 66 if (optreset || !*place) { /* update scanning pointer */ 68 if (optind >= nargc || *(place = nargv[optind]) != '-') { 69 place = EMSG; 72 if (place[1] && *++place == '-') { /* found "--" */ 74 place = EMSG; 78 if ((optopt = (int)*place++) == (int)':' || 86 if (!*place) 100 if (!*place) [all...] |
| /src/common/lib/libc/stdlib/ |
| getopt.c | 79 static const char *place = EMSG; /* option letter processing */ local 85 if (optreset || *place == 0) { /* update scanning pointer */ 87 place = nargv[optind]; 88 if (optind >= nargc || *place++ != '-') { 90 place = EMSG; 93 optopt = *place++; 94 if (optopt == '-' && *place == 0) { 97 place = EMSG; 103 place = EMSG; 109 optopt = *place++ [all...] |
| /src/external/mpl/bind/dist/lib/isc/ |
| commandline.c | 85 static char *place = ENDOPT; local 94 if (isc_commandline_reset || *place == '\0') { 105 *(place = argv[isc_commandline_index]) != '-') 110 place = ENDOPT; 114 if (place[1] != '\0' && *++place == '-' && place[1] == '\0') { 120 place = ENDOPT; 125 isc_commandline_option = *place++; 134 if (*place == '\0') [all...] |
| /src/external/bsd/ntp/dist/libntp/ |
| getopt.c | 62 register const char *place; local 89 for (place = optstring; place != NULL && *place != '\0'; ++place) 90 if (*place == c) 93 if (place == NULL || *place == '\0' || c == ':' || c == '?') { 97 place++; 98 if (*place == ':') [all...] |
| /src/external/mpl/dhcp/bind/dist/lib/dns/ |
| gen-win32.h | 95 static char *place = ENDOPT; local 102 if (isc_commandline_reset || *place == '\0') { 110 *(place = argv[isc_commandline_index]) != '-') 115 place = ENDOPT; 119 if (place[1] != '\0' && *++place == '-' && place[1] == '\0') { 125 place = ENDOPT; 130 isc_commandline_option = *place++; 139 if (*place == '\0') [all...] |
| /src/external/mpl/dhcp/bind/dist/lib/isc/ |
| commandline.c | 86 static char *place = ENDOPT; local 95 if (isc_commandline_reset || *place == '\0') { 106 *(place = argv[isc_commandline_index]) != '-') 111 place = ENDOPT; 115 if (place[1] != '\0' && *++place == '-' && place[1] == '\0') { 121 place = ENDOPT; 126 isc_commandline_option = *place++; 135 if (*place == '\0') [all...] |
| /src/external/bsd/tcpdump/dist/missing/ |
| getopt_long.c | 94 static const char *place = EMSG; /* option letter processing */ variable 219 current_argv = place; 414 if (!*place) { /* update scanning pointer */ 416 place = EMSG; 432 if (*(place = nargv[optind]) != '-' || 434 place[1] == '\0') { 436 (place[1] == '\0' && strchr(options, '-') == NULL)) { 438 place = EMSG; /* found non-option */ 474 if (place[1] != '\0' && *++place == '-' && place[1] == '\0') [all...] |
| /src/external/bsd/libfido2/dist/openbsd-compat/ |
| getopt_long.c | 92 static char *place = EMSG; /* option letter processing */ variable 174 current_argv = place; 319 if (optreset || !*place) { /* update scanning pointer */ 322 place = EMSG; 339 if (*(place = nargv[optind]) != '-' || 340 (place[1] == '\0' && strchr(options, '-') == NULL)) { 341 place = EMSG; /* found non-option */ 377 if (place[1] != '\0' && *++place == '-' && place[1] == '\0') [all...] |
| /src/external/gpl3/binutils/dist/opcodes/ |
| ia64-opc.c | 308 PLACE matches OPCODE and is of type TYPE. */ 311 opcode_verify (ia64_insn opcode, int place, enum ia64_insn_type type) 313 if (main_table[place].opcode_type != type) 317 if (main_table[place].flags 323 if (main_table[place].flags & IA64_OPCODE_F2_EQ_F3) 338 o2 = elf64_ia64_operands + main_table[place].operands[2]; 484 int place = ia64_dis_names[disent].insn_index; 488 if (opcode_verify (opcode, place, type) 536 /* Construct an ia64_opcode entry based on OPCODE, NAME and PLACE. */ 539 make_ia64_opcode (ia64_insn opcode, const char *name, int place, int depind 476 int place = ia64_dis_names[disent].insn_index; local 565 int place = ia64_dis_names[disent].insn_index; local 693 short place; local [all...] |
| /src/external/gpl3/binutils.old/dist/opcodes/ |
| ia64-opc.c | 308 PLACE matches OPCODE and is of type TYPE. */ 311 opcode_verify (ia64_insn opcode, int place, enum ia64_insn_type type) 313 if (main_table[place].opcode_type != type) 317 if (main_table[place].flags 323 if (main_table[place].flags & IA64_OPCODE_F2_EQ_F3) 338 o2 = elf64_ia64_operands + main_table[place].operands[2]; 484 int place = ia64_dis_names[disent].insn_index; 488 if (opcode_verify (opcode, place, type) 536 /* Construct an ia64_opcode entry based on OPCODE, NAME and PLACE. */ 539 make_ia64_opcode (ia64_insn opcode, const char *name, int place, int depind 476 int place = ia64_dis_names[disent].insn_index; local 565 int place = ia64_dis_names[disent].insn_index; local 693 short place; local [all...] |