| /src/external/bsd/unbound/dist/iterator/ |
| iter_fwd.h | 101 * @param fwd: to delete. 103 void forwards_delete(struct iter_forwards* fwd); 107 * @param fwd: where to store. 111 int forwards_apply_cfg(struct iter_forwards* fwd, struct config_file* cfg); 120 * @param fwd: forward storage. 126 struct delegpt* forwards_find(struct iter_forwards* fwd, uint8_t* qname, 139 * @param fwd: forward storage. 146 struct delegpt* forwards_lookup(struct iter_forwards* fwd, 151 * @param fwd: forward storage. 156 struct delegpt* forwards_lookup_root(struct iter_forwards* fwd, [all...] |
| iter_fwd.c | 70 struct iter_forwards* fwd = (struct iter_forwards*)calloc(1, local 72 if(!fwd) 74 lock_rw_init(&fwd->lock); 75 return fwd; 92 static void fwd_del_tree(struct iter_forwards* fwd) 94 if(fwd->tree) 95 traverse_postorder(fwd->tree, &delfwdnode, NULL); 96 free(fwd->tree); 100 forwards_delete(struct iter_forwards* fwd) 102 if(!fwd) [all...] |
| iter_utils.h | 342 * @param fwd: the forwards. 346 int iter_get_next_root(struct iter_hints* hints, struct iter_forwards* fwd, 405 * Lookup if no_cache is set in stub or fwd. 408 * @param retdpname: returns NULL or the deepest enclosing name of fwd or stub. 416 * @return true if no_cache is set in stub or fwd.
|
| /src/external/bsd/flex/dist/src/ |
| ecs.c | 71 * fwd is the forward linked-list of equivalence class members. bck 77 int cre8ecs (int fwd[], int bck[], int num) 91 for (j = fwd[i]; j != NIL; j = fwd[j]) 103 * int lenccl, fwd[llsiz], bck[llsiz], llsiz, NUL_mapping; 104 * void mkeccl( unsigned char ccls[], int lenccl, int fwd[llsiz], int bck[llsiz], 108 * number of elements in the ccl, fwd is the forward link-list of equivalent 114 void mkeccl (unsigned char ccls[], int lenccl, int fwd[], int bck[], int llsiz, int NUL_mapping) 137 for (i = fwd[cclm]; i != NIL && i <= llsiz; i = fwd[i]) { /* look for the symbol in the character class * [all...] |
| /src/external/mpl/dhcp/bind/dist/lib/dns/ |
| forward.c | 77 dns_forwarder_t *fwd, *nfwd; local 84 for (fwd = ISC_LIST_HEAD(*fwdrs); fwd != NULL; 85 fwd = ISC_LIST_NEXT(fwd, link)) 88 *nfwd = *fwd; 106 fwd = ISC_LIST_HEAD(forwarders->fwdrs); 107 ISC_LIST_UNLINK(forwarders->fwdrs, fwd, link); 108 isc_mem_put(fwdtable->mctx, fwd, sizeof(*fwd)); 119 dns_forwarder_t *fwd; local 219 dns_forwarder_t *fwd; local [all...] |
| /src/external/mpl/bind/dist/lib/dns/ |
| forward.c | 96 dns_forwarder_t *fwd = NULL, *nfwd = NULL; local 103 for (fwd = ISC_LIST_HEAD(*fwdrs); fwd != NULL; 104 fwd = ISC_LIST_NEXT(fwd, link)) 107 *nfwd = *fwd; 109 if (fwd->tlsname != NULL) { 113 dns_name_dup(fwd->tlsname, fwdtable->mctx, 136 dns_forwarder_t *fwd = NULL; local 147 fwd = isc_mem_get(fwdtable->mctx, sizeof(*fwd)) 205 dns_forwarder_t *fwd = NULL; local 245 dns_forwarders_t *fwd = pval; local [all...] |
| /src/external/mpl/dhcp/dist/contrib/ |
| 3.0b1-lease-convert | 28 switch (ns-update (delete (1, 1, ddns-fwd-name, leased-address))) { 30 unset ddns-fwd-name; 97 if (m!^(\s+)(ddns-fwd-name|ddns-rev-name)\s+(\"[^\"]+\"\s*;)!) { 100 # If there's one of them, then it will always be the -fwd-. There
|
| /src/crypto/external/bsd/openssh/dist/ |
| mux.c | 75 /* Context for stdio fwd open confirmation callback */ 566 format_forward(u_int ftype, struct Forward *fwd) 573 (fwd->listen_path != NULL) ? fwd->listen_path : 574 (fwd->listen_host == NULL) ? 576 fwd->listen_host, fwd->listen_port, 577 (fwd->connect_path != NULL) ? fwd->connect_path : 578 fwd->connect_host, fwd->connect_port) 723 struct Forward fwd; local 888 struct Forward fwd, *found_fwd; local [all...] |
| readconf.c | 417 struct Forward *fwd; local 428 fwd = &options->local_forwards[options->num_local_forwards++]; 430 fwd->listen_host = newfwd->listen_host; 431 fwd->listen_port = newfwd->listen_port; 432 fwd->listen_path = newfwd->listen_path; 433 fwd->connect_host = newfwd->connect_host; 434 fwd->connect_port = newfwd->connect_port; 435 fwd->connect_path = newfwd->connect_path; 446 struct Forward *fwd; local 457 fwd = &options->remote_forwards[options->num_remote_forwards++] 1188 struct Forward fwd; local 3841 const struct Forward *fwd; local [all...] |
| serverloop.c | 786 struct Forward fwd; local 788 memset(&fwd, 0, sizeof(fwd)); 799 if ((r = sshpkt_get_cstring(ssh, &fwd.listen_host, NULL)) != 0 || 803 fwd.listen_host, port); 805 fwd.listen_port = (int)port; 811 (!want_reply && fwd.listen_port == 0)) { 816 success = channel_setup_remote_fwd_listener(ssh, &fwd, 825 if ((r = sshpkt_get_cstring(ssh, &fwd.listen_host, NULL)) != 0 || 830 fwd.listen_host, port) [all...] |
| channels.c | 3886 struct Forward *fwd, int *allocated_listen_port, 3898 if (is_client && fwd->connect_path != NULL) { 3899 host = fwd->connect_path; 3902 fwd->listen_host : fwd->connect_host; 3914 addr = channel_fwd_bind_addr(ssh, fwd->listen_host, &wildcard, 3927 snprintf(strport, sizeof strport, "%d", fwd->listen_port); 3959 fwd->listen_port == 0 && allocated_listen_port != NULL && 4003 * fwd->listen_port == 0 requests a dynamically allocated port - 4007 fwd->listen_port == 0 & [all...] |
| clientloop.c | 992 struct Forward fwd; local 994 memset(&fwd, 0, sizeof(fwd)); 1056 if (!parse_forward(&fwd, s, 1, 0)) { 1061 ok = channel_request_rforward_cancel(ssh, &fwd) == 0; 1063 ok = channel_cancel_lport_listener(ssh, &fwd, 1066 ok = channel_cancel_lport_listener(ssh, &fwd, 1077 if (!parse_forward(&fwd, s, 0, remote) && 1078 !parse_forward(&fwd, s, 1, remote)) { 1082 } else if (!parse_forward(&fwd, s, dynamic, remote)) [all...] |
| ssh.c | 645 struct Forward fwd; local 912 if (parse_forward(&fwd, optarg, 1, 0)) { 914 fwd.listen_port == PORT_STREAMLOCAL ? 915 fwd.listen_path : fwd.listen_host; 916 options.stdio_forward_port = fwd.listen_port; 917 free(fwd.connect_host); 989 if (parse_forward(&fwd, optarg, 0, 0)) 990 add_local_forward(&options, &fwd); 1000 if (parse_forward(&fwd, optarg, 0, 1) | [all...] |
| /src/sys/dev/pci/ |
| if_tlregs.h | 156 uint32_t fwd; member in struct:tl_Rx_list 169 uint32_t fwd; member in struct:tl_Tx_list
|
| if_tl.c | 717 sc->hw_Rx_list[i - 1].fwd = 722 sc->hw_Rx_list[TL_NBUF - 1].fwd = 0; 724 sc->hw_Tx_list[TL_NBUF - 1].fwd = 0; 1042 Rx->hw_list->fwd = 0; 1043 sc->last_Rx->hw_list->fwd = htole32(Rx->hw_listaddr); 1374 sc->last_Tx->hw_list->fwd = htole32(Tx->hw_listaddr); 1381 if (sc->last_Tx->hw_list->fwd & 0x7) 1385 sc->last_Rx->hw_list->fwd);
|
| /src/lib/libform/ |
| internals.h | 74 struct _formi_tab_stops *fwd; member in struct:_formi_tab_stops
|
| internals.c | 250 new->tabs->fwd = NULL; 252 tp = tp->fwd; 256 if ((newt->fwd = malloc(sizeof(*newt->fwd))) == NULL) { 260 newt = tp->fwd; 270 memcpy(newt->fwd, tp, sizeof(*newt->fwd)); 271 newt->fwd->back = newt; 272 newt = newt->fwd; 273 newt->fwd = NULL [all...] |
| /src/usr.bin/ul/ |
| ul.c | 83 static void fwd(struct CHAR *, size_t); 205 fwd(obuf, obuf_size); 390 fwd(struct CHAR *obuf, size_t obuf_size) function 405 fwd(obuf, obuf_size);
|
| /src/external/mpl/bind/dist/bin/tests/system/nsec3/ans7/ |
| ans.py | 465 fwd = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) 466 fwd.settimeout(3) 467 fwd.sendto(data, ("10.53.0.6", PORT)) 469 response, _ = fwd.recvfrom(65535) 486 fwd.close()
|
| /src/external/cddl/osnet/dist/tools/ctf/cvt/ |
| dwarf.c | 134 hash_t *dw_fwdhash; /* hash of fwd decls by name */ 953 tdesc_t *fwd = arg1, *sou = arg2; local 955 debug(3, "tdp %u: mapped forward %s to sou %u\n", fwd->t_id, 956 tdesc_name(fwd), sou->t_id); 957 fwd->t_tdesc = sou; 1785 die_fwd_resolve(tdesc_t *fwd, tdesc_t **fwdp, void *private __unused) 1787 if (fwd->t_flags & TDESC_F_RESOLVED) 1790 if (fwd->t_tdesc != NULL) { 1791 debug(3, "tdp %u: unforwarded %s\n", fwd->t_id, 1792 tdesc_name(fwd)); [all...] |
| merge.c | 874 fwd_redir(tdesc_t *fwd, tdesc_t **fwdp, void *private) 879 if (!alist_find(map, (void *)fwd, (void **)&defn)) 916 tdesc_t *fwd = name; local 932 alist_add(rmd->rmd_map, (void *)fwd, (void *)defn);
|
| /src/external/bsd/unbound/dist/smallapp/ |
| unbound-checkconf.c | 983 struct iter_forwards* fwd = forwards_create(); local 984 if(!fwd || !forwards_apply_cfg(fwd, cfg)) { 987 forwards_delete(fwd);
|
| /src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
| aggregate.d | 692 if (sizeok == Sizeok.fwd) 736 if (sizeok == Sizeok.fwd)
|
| aggregate.h | 31 fwd, // size of aggregate is ready to compute member in class:Sizeok
|
| /src/bin/ksh/ |
| vi.c | 1705 grabsearch(save, start, fwd, pat) 1706 int save, start, fwd; 1713 if ((start == 0 && fwd == 0) || (start >= hlast-1 && fwd == 1)) 1715 if (fwd) 1720 if ((hist = findhist(start, fwd, pat, anchored)) < 0) { 1721 /* if (start != 0 && fwd && match(holdbuf, pat) >= 0) { */ 1723 if (start != 0 && fwd && FILECMP(holdbuf, pat) >= 0) {
|