Searched refs:fwd (Results 1 - 25 of 28) sorted by relevance

12

/freebsd-10.0-release/contrib/flex/
H A Decs.c71 * fwd is the forward linked-list of equivalence class members. bck
77 int cre8ecs (fwd, bck, num)
78 int fwd[], bck[], num;
92 for (j = fwd[i]; j != NIL; j = fwd[j])
104 * int lenccl, fwd[llsiz], bck[llsiz], llsiz, NUL_mapping;
105 * void mkeccl( Char ccls[], int lenccl, int fwd[llsiz], int bck[llsiz],
109 * number of elements in the ccl, fwd is the forward link-list of equivalent
115 void mkeccl (ccls, lenccl, fwd, bck, llsiz, NUL_mapping)
117 int lenccl, fwd[], bc
[all...]
/freebsd-10.0-release/contrib/unbound/iterator/
H A Diter_fwd.h95 * @param fwd: to delete.
97 void forwards_delete(struct iter_forwards* fwd);
101 * @param fwd: where to store.
105 int forwards_apply_cfg(struct iter_forwards* fwd, struct config_file* cfg);
112 * @param fwd: forward storage.
118 struct delegpt* forwards_lookup(struct iter_forwards* fwd,
123 * @param fwd: forward storage.
127 struct delegpt* forwards_lookup_root(struct iter_forwards* fwd,
132 * @param fwd: the forward storage
136 int forwards_next_root(struct iter_forwards* fwd, uint16_
[all...]
H A Diter_fwd.c71 struct iter_forwards* fwd = (struct iter_forwards*)calloc(1, local
73 if(!fwd)
75 return fwd;
92 static void fwd_del_tree(struct iter_forwards* fwd) argument
94 if(fwd->tree)
95 traverse_postorder(fwd->tree, &delfwdnode, NULL);
96 free(fwd->tree);
100 forwards_delete(struct iter_forwards* fwd) argument
102 if(!fwd)
104 fwd_del_tree(fwd);
110 forwards_insert_data(struct iter_forwards* fwd, uint16_t c, uint8_t* nm, size_t nmlen, int nmlabs, struct delegpt* dp) argument
143 forwards_insert(struct iter_forwards* fwd, uint16_t c, struct delegpt* dp) argument
151 fwd_init_parents(struct iter_forwards* fwd) argument
250 read_forwards(struct iter_forwards* fwd, struct config_file* cfg) argument
277 fwd_add_stub_hole(struct iter_forwards* fwd, uint16_t c, uint8_t* nm) argument
290 make_stub_holes(struct iter_forwards* fwd, struct config_file* cfg) argument
311 forwards_apply_cfg(struct iter_forwards* fwd, struct config_file* cfg) argument
328 forwards_lookup(struct iter_forwards* fwd, uint8_t* qname, uint16_t qclass) argument
362 forwards_lookup_root(struct iter_forwards* fwd, uint16_t qclass) argument
369 forwards_next_root(struct iter_forwards* fwd, uint16_t* dclass) argument
419 forwards_get_mem(struct iter_forwards* fwd) argument
433 fwd_zone_find(struct iter_forwards* fwd, uint16_t c, uint8_t* nm) argument
444 forwards_add_zone(struct iter_forwards* fwd, uint16_t c, struct delegpt* dp) argument
458 forwards_delete_zone(struct iter_forwards* fwd, uint16_t c, uint8_t* nm) argument
469 forwards_add_stub_hole(struct iter_forwards* fwd, uint16_t c, uint8_t* nm) argument
479 forwards_delete_stub_hole(struct iter_forwards* fwd, uint16_t c, uint8_t* nm) argument
[all...]
H A Diter_utils.h286 * @param fwd: the forwards.
290 int iter_get_next_root(struct iter_hints* hints, struct iter_forwards* fwd,
H A Diter_utils.c882 iter_get_next_root(struct iter_hints* hints, struct iter_forwards* fwd, argument
887 int r2 = forwards_next_root(fwd, &c2);
/freebsd-10.0-release/crypto/openssh/
H A Dmux.c512 format_forward(u_int ftype, Forward *fwd) argument
519 (fwd->listen_host == NULL) ?
521 fwd->listen_host, fwd->listen_port,
522 fwd->connect_host, fwd->connect_port);
526 (fwd->listen_host == NULL) ?
528 fwd->listen_host, fwd->listen_port);
532 (fwd
630 Forward fwd; local
779 Forward fwd, *found_fwd; local
1596 mux_client_forward(int fd, int cancel_flag, u_int ftype, Forward *fwd) argument
[all...]
H A Dreadconf.c283 Forward *fwd; local
304 fwd = &options->local_forwards[options->num_local_forwards++];
306 fwd->listen_host = newfwd->listen_host;
307 fwd->listen_port = newfwd->listen_port;
308 fwd->connect_host = newfwd->connect_host;
309 fwd->connect_port = newfwd->connect_port;
320 Forward *fwd; local
325 fwd = &options->remote_forwards[options->num_remote_forwards++];
327 fwd->listen_host = newfwd->listen_host;
328 fwd
420 Forward fwd; local
1540 parse_forward(Forward *fwd, const char *fwdspec, int dynamicfwd, int remotefwd) argument
[all...]
H A Dclientloop.c878 Forward fwd; local
880 bzero(&fwd, sizeof(fwd));
881 fwd.listen_host = fwd.connect_host = NULL;
976 if (!parse_forward(&fwd, s, dynamic, remote)) {
981 if (!channel_setup_local_fwd_listener(fwd.listen_host,
982 fwd.listen_port, fwd.connect_host,
983 fwd
[all...]
H A Dssh.c252 Forward fwd; local
483 if (parse_forward(&fwd, optarg, 1, 0)) {
484 stdio_forward_host = fwd.listen_host;
485 stdio_forward_port = fwd.listen_port;
486 free(fwd.connect_host);
565 if (parse_forward(&fwd, optarg, 0, 0))
566 add_local_forward(&options, &fwd);
576 if (parse_forward(&fwd, optarg, 0, 1)) {
577 add_remote_forward(&options, &fwd);
587 if (parse_forward(&fwd, optar
[all...]
/freebsd-10.0-release/crypto/openssh/regress/
H A Dforwarding.sh12 fwd=""
18 # fwd chain: $a -> $b -> $c
19 fwd="$fwd -L$a:127.0.0.1:$b -R$b:127.0.0.1:$c"
26 ${SSH} -$p -F $OBJ/ssh_config -f $fwd somehost sleep 10
H A Dcfgmatch.sh8 fwd="-L $fwdport:127.0.0.1:$PORT"
16 ${SSH} -q -$p $fwd "$@" somehost \
/freebsd-10.0-release/sys/contrib/octeon-sdk/cvmx-malloc/
H A Dmalloc.c2926 mchunkptr fwd; /* misc temp for linking */ local
3068 fwd = bck->fd;
3073 fwd = bck->fd;
3075 if (fwd != bck) {
3078 fwd = bck;
3086 while ((unsigned long)(size) < (unsigned long)(fwd->size)) {
3087 fwd = fwd->fd;
3089 bck = fwd->bk;
3096 victim->fd = fwd;
3295 mchunkptr fwd; /* misc temp for linking */ local
3441 mchunkptr fwd; local
3541 mchunkptr fwd; /* misc temp for linking */ local
[all...]
/freebsd-10.0-release/contrib/tcsh/
H A Dtw.init.c321 size_t fwd, i; local
328 for (i = 0, fwd = 0; i + 1 < tw_cmd.nlist; i++) {
330 fwd++; /* increase the forward ref. count */
331 else if (fwd)
332 tw_cmd.list[i - fwd] = tw_cmd.list[i];
335 if (fwd)
336 tw_cmd.list[i - fwd] = tw_cmd.list[i];
337 tw_cmd.nlist -= fwd;
H A Dtw.parse.c532 int fwd, i; local
534 for (i = 0, fwd = 0; av[i] != NULL; i++)
536 fwd++;
541 else if (fwd)
542 av[i - fwd] = av[i];
544 if (fwd)
545 av[i - fwd] = av[i];
/freebsd-10.0-release/contrib/unbound/smallapp/
H A Dunbound-checkconf.c431 struct iter_forwards* fwd = forwards_create(); local
432 if(!fwd || !forwards_apply_cfg(fwd, cfg)) {
435 forwards_delete(fwd);
/freebsd-10.0-release/usr.bin/ul/
H A Dul.c93 static void fwd(void);
224 fwd();
419 fwd(void) function
434 fwd();
/freebsd-10.0-release/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Ddwarf.c133 hash_t *dw_fwdhash; /* hash of fwd decls by name */
869 tdesc_t *fwd = arg1, *sou = arg2; local
871 debug(3, "tdp %u: mapped forward %s to sou %u\n", fwd->t_id,
872 tdesc_name(fwd), sou->t_id);
873 fwd->t_tdesc = sou;
1617 die_fwd_resolve(tdesc_t *fwd, tdesc_t **fwdp, void *private __unused) argument
1619 if (fwd->t_flags & TDESC_F_RESOLVED)
1622 if (fwd->t_tdesc != NULL) {
1623 debug(3, "tdp %u: unforwarded %s\n", fwd->t_id,
1624 tdesc_name(fwd));
[all...]
H A Dmerge.c872 fwd_redir(tdesc_t *fwd, tdesc_t **fwdp, void *private) argument
877 if (!alist_find(map, (void *)fwd, (void **)&defn))
912 tdesc_t *fwd = name; local
928 alist_add(rmd->rmd_map, (void *)fwd, (void *)defn);
/freebsd-10.0-release/tools/regression/ipfw/fwd/
H A Dvimage-fwd.sh32 # Test ipfw fwd for IPv4 and IPv6 using VIMAGE, testing that as well.
134 jexec ${mjid} /sbin/ipfw add 100 fwd ${_fip}${_fport} ${_p} from ${_sip} to ${_dip}
177 jexec ${mjid} /sbin/ipfw add 100 fwd ${_fip} ${_p} from ${_sip} to ${_dip}
/freebsd-10.0-release/contrib/unbound/daemon/
H A Dremote.c1492 struct iter_forwards* fwd = worker->env.fwds; local
1494 if(!fwd) {
1499 (void)print_root_fwds(ssl, fwd, root);
1507 forwards_delete_zone(fwd, LDNS_RR_CLASS_IN, root);
1512 if(!forwards_add_zone(fwd, LDNS_RR_CLASS_IN, dp)) {
1568 struct iter_forwards* fwd = worker->env.fwds; local
1583 if(!forwards_add_zone(fwd, LDNS_RR_CLASS_IN, dp)) {
1596 struct iter_forwards* fwd = worker->env.fwds; local
1604 forwards_delete_zone(fwd, LDNS_RR_CLASS_IN, nm);
1613 struct iter_forwards* fwd local
1652 struct iter_forwards* fwd = worker->env.fwds; local
[all...]
/freebsd-10.0-release/sys/contrib/ipfilter/netinet/
H A Dip_ftp_pxy.c2005 int fwd; local
2030 fwd = 1;
2038 if (fwd) {
2046 if (fwd == 1 && s[1] == ':') {
2053 fwd = 0;
2054 } else if (fwd == 0 && s[-1] == ':') {
2065 if (fwd) {
2073 if (fwd)
/freebsd-10.0-release/sys/contrib/ngatm/netnatm/msg/
H A Dunistruct.h146 u_int fwd_cpcs; /* max fwd cpcs blocksize */
156 u_int fwd_cpcs; /* max fwd cpcs blocksize */
846 enum uni_qos fwd; member in struct:uni_ie_qos
1187 struct uni_abr_rec fwd, bwd; member in struct:uni_ie_abradd
H A Duni_ie.c3404 uni_print_entry(cx, "fwd", "(");
3455 uni_printf(cx, "fwd");
3463 uni_printf(cx, "fwd");
4063 uni_print_tbl("fwd", ie->fwd, class_tbl, cx);
4082 switch(ie->fwd) {
4103 switch(ie->fwd) {
4130 APP_BYTE(msg, ie->fwd);
4140 APP_BYTE(msg, ie->fwd);
4154 ie->fwd
[all...]
/freebsd-10.0-release/sys/dev/advansys/
H A Dadvlib.h752 u_int8_t fwd; member in struct:adv_risc_q
779 u_int8_t fwd; member in struct:asc_risc_sg_list_q
/freebsd-10.0-release/sys/netinet/
H A Dsctp_output.c4894 /* ok skip fwd */
9262 struct sctp_tmit_chunk *chk, *fwd; local
9281 fwd = NULL;
9369 /* Clean up the fwd-tsn list */
9376 * fwd-tsn with it all.
9536 for (fwd = TAILQ_NEXT(chk, sctp_next); fwd != NULL; fwd = TAILQ_NEXT(fwd, sctp_next)) {
9537 if (fwd
[all...]

Completed in 652 milliseconds

12