Searched refs:tcl (Results 1 - 20 of 20) sorted by relevance

/freebsd-13-stable/contrib/unbound/util/
H A Dtcp_conn_limit.c53 struct tcl_list* tcl = (struct tcl_list*)calloc(1, local
55 if(!tcl)
57 tcl->region = regional_create();
58 if(!tcl->region) {
59 tcl_list_delete(tcl);
62 return tcl;
76 tcl_list_delete(struct tcl_list* tcl) argument
78 if(!tcl)
80 traverse_postorder(&tcl->tree, tcl_list_free_node, NULL);
81 regional_destroy(tcl
87 tcl_list_insert(struct tcl_list* tcl, struct sockaddr_storage* addr, socklen_t addrlen, int net, uint32_t limit, int complain_duplicates) argument
106 tcl_list_str_cfg(struct tcl_list* tcl, const char* str, const char* s2, int complain_duplicates) argument
132 read_tcl_list(struct tcl_list* tcl, struct config_file* cfg) argument
144 tcl_list_apply_cfg(struct tcl_list* tcl, struct config_file* cfg) argument
155 tcl_new_connection(struct tcl_addr* tcl) argument
171 tcl_close_connection(struct tcl_addr* tcl) argument
182 tcl_addr_lookup(struct tcl_list* tcl, struct sockaddr_storage* addr, socklen_t addrlen) argument
190 tcl_list_get_mem(struct tcl_list* tcl) argument
[all...]
H A Dtcp_conn_limit.h86 * @param tcl: to delete.
88 void tcl_list_delete(struct tcl_list* tcl);
92 * @param tcl: where to store.
96 int tcl_list_apply_cfg(struct tcl_list* tcl, struct config_file* cfg);
101 * @param tcl: structure for tcl storage, or NULL.
102 * @return: 0 if limit reached, 1 if tcl was NULL or limit not reached.
104 int tcl_new_connection(struct tcl_addr* tcl);
108 * @param tcl: structure for tcl storag
[all...]
/freebsd-13-stable/contrib/unbound/daemon/
H A Ddaemon.h117 struct tcl_list* tcl; member in struct:daemon
H A Ddaemon.c275 daemon->tcl = tcl_list_create();
276 if(!daemon->tcl) {
288 tcl_list_delete(daemon->tcl);
297 tcl_list_delete(daemon->tcl);
606 if(!tcl_list_apply_cfg(daemon->tcl, daemon->cfg))
782 tcl_list_delete(daemon->tcl);
H A Dworker.c1801 worker->daemon->tcl, worker->daemon->listen_sslctx,
/freebsd-13-stable/contrib/sqlite3/tea/
H A DMakefile.in126 # TCLLIBPATH seeds the auto_path in Tcl's init.tcl so we can test our
163 CONFIG_CLEAN_FILES = Makefile pkgIndex.tcl
319 cp $(srcdir)/tclconfig/install-sh $(srcdir)/tclconfig/tcl.m4 \
321 chmod 664 $(DIST_DIR)/tclconfig/tcl.m4
358 # In addition, this will generate the pkgIndex.tcl
396 echo " Install pkgIndex.tcl $(DESTDIR)$(pkglibdir)"; \
397 $(INSTALL_DATA) pkgIndex.tcl $(DESTDIR)$(pkglibdir); \
H A Dconfigure1387 --with-tcl directory containing tcl configuration
2396 # Ok, lets find the tcl configuration
2398 # the alternative search directory is invoked by --with-tcl
2405 # Check whether --with-tcl was given.
2417 # First check to see if --with-tcl was specified.
2422 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: --with-tcl argument should refer to directory containing tclConfig.sh, not to tclConfig.sh itself" >&5
2423 $as_echo "$as_me: WARNING: --with-tcl argument should refer to directory containing tclConfig.sh, not to tclConfig.sh itself" >&2;}
2437 ../tcl \
2438 `ls -dr ../tcl[
[all...]
/freebsd-13-stable/contrib/sqlite3/tea/win/
H A Dmakefile.vc120 # c:\tcl_src\win\>nmake -f makefile.vc install INSTALLDIR=c:\progra~1\tcl
320 source all.tcl
330 source all.tcl
395 @if exist $(LIBDIR) $(CPY) $(LIBDIR)\*.tcl "$(SCRIPT_INSTALL_DIR)"
397 @type << >"$(SCRIPT_INSTALL_DIR)\pkgIndex.tcl"
/freebsd-13-stable/sys/dev/aic7xxx/
H A Daic79xx.h112 #define TCL_TARGET_OFFSET(tcl) \
113 ((((tcl) >> 4) & TID) >> 4)
114 #define TCL_LUN(tcl) \
115 (tcl & (AHD_NUM_LUNS - 1))
1386 u_int ahd_find_busy_tcl(struct ahd_softc *ahd, u_int tcl);
1388 u_int tcl, u_int busyid);
1389 static __inline void ahd_unbusy_tcl(struct ahd_softc *ahd, u_int tcl);
1391 ahd_unbusy_tcl(struct ahd_softc *ahd, u_int tcl) argument
1393 ahd_busy_tcl(ahd, tcl, SCB_LIST_NULL);
H A Daic7xxx.h111 #define TCL_TARGET_OFFSET(tcl) \
112 ((((tcl) >> 4) & TID) >> 4)
113 #define TCL_LUN(tcl) \
114 (tcl & (AHC_NUM_LUNS - 1))
1191 u_int ahc_index_busy_tcl(struct ahc_softc *ahc, u_int tcl);
1192 void ahc_unbusy_tcl(struct ahc_softc *ahc, u_int tcl);
1194 u_int tcl, u_int busyid);
H A Daic7xxx.c5246 ahc_index_busy_tcl(struct ahc_softc *ahc, u_int tcl) argument
5255 ahc_outb(ahc, SCBPTR, TCL_LUN(tcl));
5256 scbid = ahc_inb(ahc, SCB_64_BTT + TCL_TARGET_OFFSET(tcl));
5259 target_offset = TCL_TARGET_OFFSET(tcl);
5267 ahc_unbusy_tcl(struct ahc_softc *ahc, u_int tcl) argument
5275 ahc_outb(ahc, SCBPTR, TCL_LUN(tcl));
5276 ahc_outb(ahc, SCB_64_BTT+TCL_TARGET_OFFSET(tcl), SCB_LIST_NULL);
5279 target_offset = TCL_TARGET_OFFSET(tcl);
5285 ahc_busy_tcl(struct ahc_softc *ahc, u_int tcl, u_int scbid) argument
5293 ahc_outb(ahc, SCBPTR, TCL_LUN(tcl));
5933 u_int tcl; local
[all...]
H A Daic79xx.c7191 ahd_index_busy_tcl(struct ahd_softc *ahd, u_int *saved_scbid, u_int tcl) argument
7198 ahd_set_scbptr(ahd, TCL_LUN(tcl)
7199 | ((TCL_TARGET_OFFSET(tcl) & 0xC) << 4));
7206 return (((TCL_TARGET_OFFSET(tcl) & 0x3) << 1) + SCB_DISCONNECTED_LISTS);
7213 ahd_find_busy_tcl(struct ahd_softc *ahd, u_int tcl) argument
7219 scb_offset = ahd_index_busy_tcl(ahd, &saved_scbptr, tcl);
7226 ahd_busy_tcl(struct ahd_softc *ahd, u_int tcl, u_int scbid) argument
7231 scb_offset = ahd_index_busy_tcl(ahd, &saved_scbptr, tcl);
7820 u_int tcl; local
7822 tcl
[all...]
/freebsd-13-stable/contrib/unbound/smallapp/
H A Dunbound-checkconf.c389 struct config_str2list* tcl; local
390 for(tcl=cfg->tcp_connection_limits; tcl; tcl = tcl->next) {
391 if(!netblockstrtoaddr(tcl->str, UNBOUND_DNS_PORT, &a, &alen,
394 tcl->str, tcl->str2);
/freebsd-13-stable/contrib/subversion/subversion/svndumpfilter/
H A Dsvndumpfilter.c247 svn_filesize_t tcl;
467 const char *tcl;
502 tcl = svn_hash_gets(headers, SVN_REPOS_DUMPFILE_TEXT_CONTENT_LENGTH);
520 if (tcl && (strcmp(kind, "file") == 0))
544 nb->tcl = tcl ? svn__atoui64(tcl) : 0;
841 nb->tcl,
875 nb->tcl,
246 svn_filesize_t tcl; member in struct:node_baton_t
465 const char *tcl; local
/freebsd-13-stable/contrib/ntp/ntpd/
H A Drefclock_parse.c1898 parsectl_t *tcl
1905 strioc.ic_dp = (char *)tcl;
1906 strioc.ic_len = sizeof (*tcl);
1970 parsectl_t *tcl
1977 strioc.ic_dp = (char *)tcl;
1978 strioc.ic_len = sizeof (*tcl);
1993 parsectl_t *tcl
2000 strioc.ic_dp = (char *)tcl;
2001 strioc.ic_len = sizeof (*tcl);
2018 parsectl_t *tcl
[all...]
/freebsd-13-stable/contrib/sqlite3/
H A DMakefile.msc4 # amalgamation tarball) using the tool/mkmsvcmin.tcl
974 tcl: $(ALL_TCL_TARGETS)
978 all: core tcl
H A Dsqlite3.c75 ** BEGIN CODE GENERATED BY tool/mkctime.tcl
781 ** END CODE GENERATED BY tool/mkctime.tcl
15704 /* See the tool/mkopcodeh.tcl script for details */
15922 ** JUMP opcode the better, so the mkopcodeh.tcl script that
[all...]
/freebsd-13-stable/contrib/file/magic/
H A DMakefile.am279 $(MAGIC_FRAGMENT_DIR)/tcl \
H A DMakefile.in552 $(MAGIC_FRAGMENT_DIR)/tcl \
/freebsd-13-stable/sys/contrib/octeon-sdk/
H A Dcvmx-lmcx-defs.h5328 uint64_t tcl : 4; /**< This register is not used */ member in struct:cvmx_lmcx_mem_cfg0::cvmx_lmcx_mem_cfg0_s
5404 uint64_t tcl : 4;

Completed in 813 milliseconds