/src/distrib/utils/more/ |
linenum.c | 100 static struct linenum anchor; /* Anchor of the list */ variable in typeref:struct:linenum 101 static struct linenum *freelist; /* Anchor of the unused entries */ 127 * Initialize the anchor. 129 anchor.next = anchor.prev = &anchor; 130 anchor.gap = 0; 131 anchor.pos = (off_t)0; 132 anchor.line = 1 [all...] |
/src/sys/dist/pf/net/ |
pf_ruleset.c | 173 struct pf_anchor *anchor; local in function:pf_find_ruleset 179 anchor = pf_find_anchor(path); 180 if (anchor == NULL) 183 return (&anchor->ruleset); 191 struct pf_anchor *anchor = NULL /* XXX gcc */; local in function:pf_find_or_create_ruleset 207 parent = ruleset->anchor; 229 anchor = (struct pf_anchor *)rs_malloc(sizeof(*anchor)); 230 if (anchor == NULL) { 234 memset(anchor, 0, sizeof(*anchor)) [all...] |
pf_ioctl.c | 364 struct pf_anchor *anchor; local in function:pfdetach 420 while ((anchor = RB_MIN(pf_anchor_global, &pf_anchors)) != NULL) { 422 if (pf_begin_rules(&ticket, i, anchor->name) == 0) 423 pf_commit_rules(ticket, i, anchor->name); 476 pf_get_pool(char *anchor, u_int32_t ticket, u_int8_t rule_action, 484 ruleset = pf_find_ruleset(anchor); 552 * the anchor under our feet. 909 pf_begin_rules(u_int32_t *ticket, int rs_num, const char *anchor) 916 rs = pf_find_or_create_ruleset(anchor); 929 pf_rollback_rules(u_int32_t ticket, int rs_num, char *anchor) 2588 struct pf_anchor *anchor; local in function:pfioctl 2612 struct pf_anchor *anchor; local in function:pfioctl [all...] |
pfvar.h | 550 struct pf_anchor *anchor; member in struct:pf_rule 754 union pf_rule_ptr anchor; member in struct:pf_state 817 u_int32_t anchor; member in struct:pfsync_state 899 struct pf_anchor *anchor; member in struct:pf_ruleset 915 int refcnt; /* anchor rules */ 1343 char anchor[MAXPATHLEN]; member in struct:pfioc_pooladdr 1352 char anchor[MAXPATHLEN]; member in struct:pfioc_rule 1454 char anchor[MAXPATHLEN]; member in struct:pfioc_trans::pfioc_trans_e
|
/src/usr.bin/fpr/ |
fpr.c | 326 int anchor; local in function:flush 346 anchor = 0; 347 while (anchor <= highcol) { 348 height = line[anchor].count; 351 anchor++; 353 putchar(*(line[anchor].str)); 354 line[anchor].count = 0; 355 anchor++; 357 i = anchor; 360 for (j = anchor; j <= i; j++) [all...] |
/src/dist/pf/sbin/pfctl/ |
pfctl_parser.h | 77 int asd; /* anchor stack depth */ 87 struct pf_anchor *anchor, *alast; member in struct:pfctl
|
/src/sys/fs/udf/ |
udf_subr.c | 853 DPRINTF(VOLUMES, ("Not an anchor\n")); 936 DPRINTF(VOLUMES, ("Read anchor %d at sector %d\n", anch, 1120 struct anchor_vdp *anchor, *anchor2; local in function:udf_read_vds_space 1130 * check if 2nd anchor is different from 1st; if so, go for 2nd. This 1135 anchor = ump->anchors[0]; 1137 assert(anchor); 1141 if (memcmp(&anchor->main_vds_ex, &anchor2->main_vds_ex, size)) 1142 anchor = anchor2; 1146 main_loc = udf_rw32(anchor->main_vds_ex.loc); 1147 main_len = udf_rw32(anchor->main_vds_ex.len) [all...] |