HomeSort by: relevance | last modified time | path
    Searched defs:template (Results 1 - 14 of 14) sorted by relevancy

  /src/regress/sys/fs/ffs/
Makefile 42 regress: template
53 clean: clean-tmpfs clean-template clean-dump
62 clean-template:
118 template: target
  /src/tests/kernel/
t_mqueue.c 112 char template[32]; local in function:ATF_TC_BODY
115 strlcpy(template, "./t_mqueue.XXXXXX", sizeof(template));
116 tmpdir = mkdtemp(template);
  /src/tests/lib/libc/stdlib/
t_mktemp.c 68 char template[] = "I will barf/XXXXXX"; local in function:ATF_TC_BODY
69 ATF_REQUIRE(mktemp(template) != NULL);
82 char *template; local in function:ATF_TC_BODY
91 template = malloc(tlen);
92 ATF_REQUIRE(template != NULL);
94 ATF_REQUIRE(strcpy(template, path) != NULL);
95 ATF_REQUIRE(mktemp(template) != NULL);
96 ATF_REQUIRE(strlen(template) == strlen(path));
97 ATF_REQUIRE(strcmp(template, path) != 0);
98 ATF_REQUIRE(strncmp(template, "/tmp/mktemp.", 12) == 0)
121 char template[] = "\/tmp\/mktemp.XXXXXX"; local in function:ATF_TC_BODY
146 char template[] = "\/tmp\/mktemp.XXXyyy"; local in function:ATF_TC_BODY
173 char template[] = "\/tmp\/mktemp.XXXXXX"; local in function:ATF_TC_BODY
200 char template[] = "\/tmp\/mktemp.XXXXXX"; local in function:ATF_TC_BODY
235 char template[] = "\/tmp\/mktemp.XXXyyy"; local in function:ATF_TC_BODY
    [all...]
  /src/sys/arch/x68k/stand/installboot/
installboot.c 57 char template[] = _PATH_TMP "/installbootXXXXXX"; variable in typeref:typename:char[]
227 target = template;
  /src/usr.sbin/ypserv/makedbm/
makedbm.c 233 static const char template[] = "ypdbXXXXXX"; local in function:create_database
261 if (strlen(database) + strlen(template) + strlen(YPDB_SUFFIX) >
266 database, template);
  /src/usr.sbin/ypserv/mkalias/
mkalias.c 160 static const char template[] = "ypdbXXXXXX"; local in function:main
231 if (strlen(output) + strlen(template) + strlen(YPDB_SUFFIX) >
236 output, template);
  /src/usr.bin/xlint/lint1/
main1.c 104 char template[] = "/tmp/lint.XXXXXX"; local in function:gcc_builtins
107 if ((fd = mkstemp(template)) == -1)
109 (void)unlink(template);
  /src/usr.sbin/ypserv/ypxfr/
ypxfr.c 411 static const char template[] = "ypdbXXXXXX"; local in function:create_db
415 YP_DB_PATH, domain, template);
  /src/libexec/ftpd/
conf.c 144 char *class, *word, *arg, *template; local in function:parse_conf
162 template = NULL;
184 (template != NULL && strcasecmp(class, template) == 0) ||
466 } else if (strcasecmp(word, "template") == 0) {
469 REASSIGN(template, EMPTYSTR(arg) ? NULL : ftpd_strdup(arg));
503 REASSIGN(template, NULL);
  /src/usr.sbin/acpitools/aml/
aml_parse.c 102 struct aml_field *template);
104 struct aml_field *template,
697 aml_parse_field(struct aml_environ *env, struct aml_field *template)
714 template->bitlen = width;
719 template->bitoffset += 15;
720 template->bitoffset &= (~15);
723 template->bitoffset += 31;
724 template->bitoffset &= (~31);
726 template->bitoffset += 7;
727 template->bitoffset &= (~7)
827 struct aml_field template; local in function:aml_parse_defindexfield
872 struct aml_field template; local in function:aml_parse_defbankfield
    [all...]
  /src/sys/netipsec/
ipsec.c 953 static const struct sockaddr_in template = { local in function:ipsec4_setspidx_ipaddr
959 spidx->src.sin = template;
960 spidx->dst.sin = template;
  /src/usr.sbin/user/
user.c 737 char template[MaxFileNameLen]; local in function:setdefaults
745 (void)snprintf(template, sizeof(template), "%s.XXXXXX",
747 if ((fd = mkstemp(template)) < 0) {
788 ret = ((rename(template, _PATH_USERMGMT_CONF) == 0) &&
  /src/lib/libedit/
readline.c 1287 char template[sizeof(_history_tmp_template)]; local in function:history_truncate_file
1299 strcpy(template, _history_tmp_template);
1300 if ((fd = mkstemp(template)) == -1) {
1410 unlink(template);
  /src/sys/netinet/
sctp_output.c 3993 sctp_prepare_chunk(struct sctp_tmit_chunk *template,
3999 memset(template, 0, sizeof(struct sctp_tmit_chunk));
4000 template->sent = SCTP_DATAGRAM_UNSENT;
4017 template->rec.data.timetodrop.tv_sec = srcv->sinfo_timetolive;
4021 SCTP_GETTIME_TIMEVAL(&template->rec.data.timetodrop);
4025 timeradd(&template->rec.data.timetodrop, &tv,
4026 &template->rec.data.timetodrop);
4028 timevaladd(&template->rec.data.timetodrop, &tv);
4033 template->rec.data.stream_seq = strq->next_sequence_sent;
4035 template->rec.data.stream_seq = 0
4133 struct sctp_tmit_chunk template; local in function:sctp_msg_append
9602 struct sctp_tmit_chunk template; local in function:sctp_copy_it_in
    [all...]

Completed in 25 milliseconds