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

12

/freebsd-11-stable/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);
109 * @param fwd: forward storage.
114 struct delegpt* forwards_find(struct iter_forwards* fwd, uint8_t* qname,
122 * @param fwd: forward storage.
128 struct delegpt* forwards_lookup(struct iter_forwards* fwd,
133 * @param fwd: forward storage.
137 struct delegpt* forwards_lookup_root(struct iter_forwards* fwd,
[all...]
H A Diter_fwd.c70 struct iter_forwards* fwd = (struct iter_forwards*)calloc(1, local
72 if(!fwd)
74 return fwd;
91 static void fwd_del_tree(struct iter_forwards* fwd) argument
93 if(fwd->tree)
94 traverse_postorder(fwd->tree, &delfwdnode, NULL);
95 free(fwd->tree);
99 forwards_delete(struct iter_forwards* fwd) argument
101 if(!fwd)
103 fwd_del_tree(fwd);
109 forwards_insert_data(struct iter_forwards* fwd, uint16_t c, uint8_t* nm, size_t nmlen, int nmlabs, struct delegpt* dp) argument
142 forwards_insert(struct iter_forwards* fwd, uint16_t c, struct delegpt* dp) argument
150 fwd_init_parents(struct iter_forwards* fwd) argument
258 read_forwards(struct iter_forwards* fwd, struct config_file* cfg) argument
289 fwd_add_stub_hole(struct iter_forwards* fwd, uint16_t c, uint8_t* nm) argument
302 make_stub_holes(struct iter_forwards* fwd, struct config_file* cfg) argument
325 forwards_apply_cfg(struct iter_forwards* fwd, struct config_file* cfg) argument
342 forwards_find(struct iter_forwards* fwd, uint8_t* qname, uint16_t qclass) argument
356 forwards_lookup(struct iter_forwards* fwd, uint8_t* qname, uint16_t qclass) argument
390 forwards_lookup_root(struct iter_forwards* fwd, uint16_t qclass) argument
397 forwards_next_root(struct iter_forwards* fwd, uint16_t* dclass) argument
447 forwards_get_mem(struct iter_forwards* fwd) argument
461 fwd_zone_find(struct iter_forwards* fwd, uint16_t c, uint8_t* nm) argument
472 forwards_add_zone(struct iter_forwards* fwd, uint16_t c, struct delegpt* dp) argument
486 forwards_delete_zone(struct iter_forwards* fwd, uint16_t c, uint8_t* nm) argument
497 forwards_add_stub_hole(struct iter_forwards* fwd, uint16_t c, uint8_t* nm) argument
507 forwards_delete_stub_hole(struct iter_forwards* fwd, uint16_t c, uint8_t* nm) argument
[all...]
H A Diter_utils.h320 * @param fwd: the forwards.
324 int iter_get_next_root(struct iter_hints* hints, struct iter_forwards* fwd,
380 * Lookup if no_cache is set in stub or fwd.
383 * @return true if no_cache is set in stub or fwd.
/freebsd-11-stable/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-11-stable/crypto/openssh/regress/
H A Dmultiplex.sh86 rm -f ${COPY} $OBJ/unix-[123].fwd
89 $NC -N -Ul $OBJ/unix-1.fwd < ${DATA} > /dev/null &
91 ${SSH} -F $OBJ/ssh_config -S $CTL -Oforward -L$OBJ/unix-2.fwd:$OBJ/unix-1.fwd otherhost >>$TEST_SSH_LOGFILE 2>&1
92 ${SSH} -F $OBJ/ssh_config -S $CTL -Oforward -R$OBJ/unix-3.fwd:$OBJ/unix-2.fwd otherhost >>$TEST_SSH_LOGFILE 2>&1
93 $NC -U $OBJ/unix-3.fwd < /dev/null > ${COPY} 2>/dev/null
96 rm -f ${COPY} $OBJ/unix-[123].fwd
142 ${SSH} -F $OBJ/ssh_config -S $CTL -Oforward -L $OBJ/unix-1.fwd:localhost:$PORT otherhost \
144 echo "" | $NC -U $OBJ/unix-1.fwd | gre
[all...]
H A Dforwarding.sh12 fwd=""
20 # fwd chain: $a -> $b -> $c
21 fwd="$fwd -L$a:127.0.0.1:$b -R$b:127.0.0.1:$c"
32 ${SSH} -S $CTL -M -$p -F $OBJ/ssh_config -f $fwd somehost sleep 10
134 rm -f $OBJ/unix-[123].fwd
136 ${SSH} -S $CTL -M -f -F $OBJ/ssh_config -R${base}01:[$OBJ/unix-1.fwd] somehost sleep 10
137 ${SSH} -S $CTL.1 -M -f -F $OBJ/ssh_config -L[$OBJ/unix-1.fwd]:[$OBJ/unix-2.fwd] somehost sleep 10
138 ${SSH} -S $CTL.2 -M -f -F $OBJ/ssh_config -R[$OBJ/unix-2.fwd]
[all...]
H A Dcfgmatch.sh8 fwd="-L $fwdport:127.0.0.1:$PORT"
16 ${SSH} -q -$p $fwd "$@" somehost \
/freebsd-11-stable/crypto/openssh/
H A Dserverloop.c723 struct Forward fwd; local
725 memset(&fwd, 0, sizeof(fwd));
726 fwd.listen_host = packet_get_string(NULL);
727 fwd.listen_port = (u_short)packet_get_int();
729 fwd.listen_host, fwd.listen_port);
734 (!want_reply && fwd.listen_port == 0) ||
735 (fwd.listen_port != 0 &&
736 !bind_permitted(fwd
751 struct Forward fwd; local
762 struct Forward fwd; local
783 struct Forward fwd; local
[all...]
H A Dreadconf.c334 struct Forward *fwd; local
349 fwd = &options->local_forwards[options->num_local_forwards++];
351 fwd->listen_host = newfwd->listen_host;
352 fwd->listen_port = newfwd->listen_port;
353 fwd->listen_path = newfwd->listen_path;
354 fwd->connect_host = newfwd->connect_host;
355 fwd->connect_port = newfwd->connect_port;
356 fwd->connect_path = newfwd->connect_path;
367 struct Forward *fwd; local
378 fwd
846 struct Forward fwd; local
2145 parse_fwd_field(char **p, struct fwdarg *fwd) argument
2211 parse_forward(struct Forward *fwd, const char *fwdspec, int dynamicfwd, int remotefwd) argument
2501 const struct Forward *fwd; local
[all...]
H A Dmux.c107 /* Context for stdio fwd open confirmation callback */
521 format_forward(u_int ftype, struct Forward *fwd) argument
528 (fwd->listen_path != NULL) ? fwd->listen_path :
529 (fwd->listen_host == NULL) ?
531 fwd->listen_host, fwd->listen_port,
532 (fwd->connect_path != NULL) ? fwd->connect_path :
533 fwd
665 struct Forward fwd; local
833 struct Forward fwd, *found_fwd; local
1707 mux_client_forward(int fd, int cancel_flag, u_int ftype, struct Forward *fwd) argument
[all...]
H A Dchannels.c3183 channel_setup_fwd_listener_tcpip(int type, struct Forward *fwd, argument
3195 if (is_client && fwd->connect_path != NULL) {
3196 host = fwd->connect_path;
3199 fwd->listen_host : fwd->connect_host;
3211 addr = channel_fwd_bind_addr(fwd->listen_host, &wildcard,
3224 snprintf(strport, sizeof strport, "%d", fwd->listen_port);
3255 if (type == SSH_CHANNEL_RPORT_LISTENER && fwd->listen_port == 0 &&
3298 * fwd->listen_port == 0 requests a dynamically allocated port -
3301 if (type == SSH_CHANNEL_RPORT_LISTENER && fwd
3331 channel_setup_fwd_listener_streamlocal(int type, struct Forward *fwd, struct ForwardOptions *fwd_opts) argument
3447 channel_cancel_rport_listener(struct Forward *fwd) argument
3518 channel_cancel_lport_listener(struct Forward *fwd, int cport, struct ForwardOptions *fwd_opts) argument
3528 channel_setup_local_fwd_listener(struct Forward *fwd, struct ForwardOptions *fwd_opts) argument
3541 channel_setup_remote_fwd_listener(struct Forward *fwd, int *allocated_listen_port, struct ForwardOptions *fwd_opts) argument
3582 channel_request_remote_forwarding(struct Forward *fwd) argument
3797 channel_request_rforward_cancel(struct Forward *fwd) argument
[all...]
H A Dclientloop.c911 struct Forward fwd; local
913 memset(&fwd, 0, sizeof(fwd));
980 if (!parse_forward(&fwd, s, 1, 0)) {
985 ok = channel_request_rforward_cancel(&fwd) == 0;
987 ok = channel_cancel_lport_listener(&fwd,
990 ok = channel_cancel_lport_listener(&fwd,
999 if (!parse_forward(&fwd, s, dynamic, remote)) {
1004 if (!channel_setup_local_fwd_listener(&fwd,
1010 if (channel_request_remote_forwarding(&fwd) <
[all...]
H A Dssh.c524 struct Forward fwd; local
790 if (parse_forward(&fwd, optarg, 1, 0)) {
791 options.stdio_forward_host = fwd.listen_host;
792 options.stdio_forward_port = fwd.listen_port;
793 free(fwd.connect_host);
872 if (parse_forward(&fwd, optarg, 0, 0))
873 add_local_forward(&options, &fwd);
883 if (parse_forward(&fwd, optarg, 0, 1)) {
884 add_remote_forward(&options, &fwd);
894 if (parse_forward(&fwd, optar
[all...]
/freebsd-11-stable/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-11-stable/contrib/tcsh/
H A Dtw.init.c316 size_t fwd, i; local
323 for (i = 0, fwd = 0; i + 1 < tw_cmd.nlist; i++) {
325 fwd++; /* increase the forward ref. count */
326 else if (fwd)
327 tw_cmd.list[i - fwd] = tw_cmd.list[i];
330 if (fwd)
331 tw_cmd.list[i - fwd] = tw_cmd.list[i];
332 tw_cmd.nlist -= fwd;
H A Dtw.parse.c528 int fwd, i; local
530 for (i = 0, fwd = 0; av[i] != NULL; i++)
532 fwd++;
537 else if (fwd)
538 av[i - fwd] = av[i];
540 if (fwd)
541 av[i - fwd] = av[i];
/freebsd-11-stable/usr.bin/ul/
H A Dul.c95 static void fwd(void);
244 fwd();
440 fwd(void) function
455 fwd();
/freebsd-11-stable/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Ddwarf.c130 hash_t *dw_fwdhash; /* hash of fwd decls by name */
930 tdesc_t *fwd = arg1, *sou = arg2; local
932 debug(3, "tdp %u: mapped forward %s to sou %u\n", fwd->t_id,
933 tdesc_name(fwd), sou->t_id);
934 fwd->t_tdesc = sou;
1704 die_fwd_resolve(tdesc_t *fwd, tdesc_t **fwdp, void *private __unused) argument
1706 if (fwd->t_flags & TDESC_F_RESOLVED)
1709 if (fwd->t_tdesc != NULL) {
1710 debug(3, "tdp %u: unforwarded %s\n", fwd->t_id,
1711 tdesc_name(fwd));
[all...]
H A Dmerge.c863 fwd_redir(tdesc_t *fwd, tdesc_t **fwdp, void *private) argument
868 if (!alist_find(map, (void *)fwd, (void **)&defn))
903 tdesc_t *fwd = name; local
919 alist_add(rmd->rmd_map, (void *)fwd, (void *)defn);
/freebsd-11-stable/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-11-stable/contrib/unbound/smallapp/
H A Dunbound-checkconf.c830 struct iter_forwards* fwd = forwards_create(); local
831 if(!fwd || !forwards_apply_cfg(fwd, cfg)) {
834 forwards_delete(fwd);
/freebsd-11-stable/contrib/unbound/daemon/
H A Dremote.c2053 struct iter_forwards* fwd = worker->env.fwds; local
2055 if(!fwd) {
2060 (void)print_root_fwds(ssl, fwd, root);
2068 forwards_delete_zone(fwd, LDNS_RR_CLASS_IN, root);
2073 if(!forwards_add_zone(fwd, LDNS_RR_CLASS_IN, dp)) {
2129 struct iter_forwards* fwd = worker->env.fwds; local
2144 if(!forwards_add_zone(fwd, LDNS_RR_CLASS_IN, dp)) {
2157 struct iter_forwards* fwd = worker->env.fwds; local
2165 forwards_delete_zone(fwd, LDNS_RR_CLASS_IN, nm);
2174 struct iter_forwards* fwd local
2215 struct iter_forwards* fwd = worker->env.fwds; local
[all...]
/freebsd-11-stable/sys/contrib/ipfilter/netinet/
H A Dip_ftp_pxy.c1993 int fwd; local
2018 fwd = 1;
2026 if (fwd) {
2034 if (fwd == 1 && s[1] == ':') {
2041 fwd = 0;
2042 } else if (fwd == 0 && s[-1] == ':') {
2053 if (fwd) {
2061 if (fwd)
/freebsd-11-stable/lib/libc/regex/
H A Dregcomp.c75 sopno fwd; member in struct:branchc
551 bc->fwd = bc->start;
557 AHEAD(bc->fwd); /* fix previous offset */
558 bc->fwd = HERE();
573 AHEAD(bc->fwd);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbAstBuilder.cpp351 // consisting of fwd -> full and full -> full for all child -> parent indices.
370 for (TypeIndex fwd : fwd_keys) {
371 TypeIndex full = forward_to_full[fwd];
372 m_parent_types[full] = m_parent_types[fwd];
375 TypeIndex fwd = full_to_forward[full]; local
376 m_parent_types[fwd] = m_parent_types[full];

Completed in 202 milliseconds

12