HomeSort by: relevance | last modified time | path
    Searched refs:tmpl (Results 1 - 25 of 223) sorted by relevancy

1 2 3 4 5 6 7 8 9

  /src/external/gpl2/groff/dist/src/libs/libgroff/
mksdir.cpp 33 int mksdir(char *tmpl)
35 return gen_tempname(tmpl, 1);
mkstemp.cpp 33 int mkstemp(char *tmpl)
35 return gen_tempname(tmpl, 0);
tmpname.cpp 70 int gen_tempname(char *tmpl, int dir)
74 size_t len = strlen(tmpl);
75 if (len < 6 || strcmp(&tmpl[len - 6], "XXXXXX"))
79 char *XXXXXX = &tmpl[len - 6];
107 int fd = dir ? mkdir(tmpl, S_IRUSR | S_IWUSR | S_IXUSR)
108 : open(tmpl, O_RDWR | O_CREAT | O_EXCL, S_IRUSR | S_IWUSR);
  /src/sys/arch/hpcmips/stand/dspgen/
config.sh 36 tmpl=tmpl
40 tmpl=tmpl.evc3
48 . dspgen/do_subst.sh < dspgen/${TYPE}.$tmpl \
  /src/external/gpl2/lvm2/dist/daemons/dmeventd/plugins/
Makefile 22 include ../../../make.tmpl
Makefile.in 22 include ../../../make.tmpl
  /src/external/gpl3/gdb/dist/gnulib/import/
tempname.h 39 /* Generate a temporary file name based on TMPL. TMPL must match the
42 gen_tempname. TMPL is overwritten with the result.
52 extern int gen_tempname (char *tmpl, int suffixlen, int flags, int kind);
54 extern int gen_tempname_len (char *tmpl, int suffixlen, int flags, int kind,
61 extern int try_tempname (char *tmpl, int suffixlen, void *args,
64 extern int try_tempname_len (char *tmpl, int suffixlen, void *args,
tempname.c 107 P_tmpdir, /tmp that exists. Copies into TMPL a template suitable
110 enough space in TMPL. */
112 __path_search (char *tmpl, size_t tmpl_len, const char *dir, const char *pfx,
164 sprintf (tmpl, "%.*s/%.*sXXXXXX", (int) dlen, dir, (int) plen, pfx);
175 try_file (char *tmpl, void *flags)
178 return __open (tmpl,
184 try_dir (char *tmpl, _GL_UNUSED void *flags)
186 return __mkdir (tmpl, S_IRUSR | S_IWUSR | S_IXUSR);
190 try_nocreate (char *tmpl, _GL_UNUSED void *flags)
194 if (__lstat64 (tmpl, &st) == 0 || errno == EOVERFLOW
    [all...]
  /src/external/gpl3/gdb.old/dist/gnulib/import/
tempname.h 39 /* Generate a temporary file name based on TMPL. TMPL must match the
42 gen_tempname. TMPL is overwritten with the result.
52 extern int gen_tempname (char *tmpl, int suffixlen, int flags, int kind);
54 extern int gen_tempname_len (char *tmpl, int suffixlen, int flags, int kind,
61 extern int try_tempname (char *tmpl, int suffixlen, void *args,
64 extern int try_tempname_len (char *tmpl, int suffixlen, void *args,
tempname.c 107 P_tmpdir, /tmp that exists. Copies into TMPL a template suitable
110 enough space in TMPL. */
112 __path_search (char *tmpl, size_t tmpl_len, const char *dir, const char *pfx,
164 sprintf (tmpl, "%.*s/%.*sXXXXXX", (int) dlen, dir, (int) plen, pfx);
175 try_file (char *tmpl, void *flags)
178 return __open (tmpl,
184 try_dir (char *tmpl, _GL_UNUSED void *flags)
186 return __mkdir (tmpl, S_IRUSR | S_IWUSR | S_IXUSR);
190 try_nocreate (char *tmpl, _GL_UNUSED void *flags)
194 if (__lstat64 (tmpl, &st) == 0 || errno == EOVERFLOW
    [all...]
  /src/sys/net/agr/
ieee8023_tlv.c 39 const struct tlv_template *tmpl, bool check_type)
46 if ((check_type && tlv->tlv_type != tmpl->tmpl_type) ||
47 tlv->tlv_length != tmpl->tmpl_length) {
50 if (tmpl->tmpl_type == 0) {
55 tmpl++;
  /src/external/mit/xorg/share/cf/
Makefile 9 FILES= Amoeba.cf DGUX.cf FreeBSD.cf Imake.cf Imake.rules Imake.tmpl \
10 Library.tmpl Mips.cf Motif.rules Motif.tmpl NetBSD.cf Oki.cf \
11 OpenBSD.cf QNX4.cf QNX4.rules Server.tmpl ServerLib.tmpl \
12 Threads.tmpl Win32.cf Win32.rules WinLib.tmpl X11.rules \
13 X11.tmpl apollo.cf bsd.cf bsdLib.rules bsdLib.tmpl bsdi.cf \
14 cde.rules cde.tmpl convex.cf cray.cf cygwin.cf cygwin.rules
    [all...]
  /src/crypto/external/apache2/openssl/dist/external/perl/Text-Template-1.56/t/
inline-comment.t 11 my $tmpl = Text::Template->new(
17 is $tmpl->fill_in(HASH => $vars), 'Hello Bob';
nested-tags.t 19 my $tmpl = Text::Template->new(
24 is $tmpl->fill_in, ' {{$NEXT}} ';
preprocess.t 30 my $tmpl;
32 $tmpl = Text::Template::Preprocess->new(TYPE => 'STRING', SOURCE => $t) or die;
36 $tmpl = Text::Template::Preprocess->new(TYPE => 'FILEHANDLE', SOURCE => $tfh) or die;
38 $tmpl->preprocessor($py) if ($test & 1) == 1;
40 my $o = $tmpl->fill_in(@args, HASH => { x => 119, 'y' => 23, z => 5 });
basic.t 67 open my $tmpl, '<', $TEMPFILE or die "failed to open $TEMPFILE: $!";
69 $template = Text::Template->new(type => 'FILEHANDLE', source => $tmpl);
80 close $tmpl;
103 $tmpl = Text::Template->new(TYPE => 'STRING', SOURCE => 'B{"\\}"}C{"\\{"}D');
106 $text = $tmpl->fill_in();
111 $tmpl = Text::Template->new(TYPE => 'STRING', SOURCE => qq{A{"\t"}B});
116 $text = $tmpl->fill_in();
141 my $tmpl = Text::Template->new(TYPE => 'STRING', SOURCE => $test);
142 my $text = $tmpl->fill_in;
151 $tmpl = undef
    [all...]
  /src/crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.56/t/
inline-comment.t 11 my $tmpl = Text::Template->new(
17 is $tmpl->fill_in(HASH => $vars), 'Hello Bob';
nested-tags.t 19 my $tmpl = Text::Template->new(
24 is $tmpl->fill_in, ' {{$NEXT}} ';
preprocess.t 30 my $tmpl;
32 $tmpl = Text::Template::Preprocess->new(TYPE => 'STRING', SOURCE => $t) or die;
36 $tmpl = Text::Template::Preprocess->new(TYPE => 'FILEHANDLE', SOURCE => $tfh) or die;
38 $tmpl->preprocessor($py) if ($test & 1) == 1;
40 my $o = $tmpl->fill_in(@args, HASH => { x => 119, 'y' => 23, z => 5 });
basic.t 67 open my $tmpl, '<', $TEMPFILE or die "failed to open $TEMPFILE: $!";
69 $template = Text::Template->new(type => 'FILEHANDLE', source => $tmpl);
80 close $tmpl;
103 $tmpl = Text::Template->new(TYPE => 'STRING', SOURCE => 'B{"\\}"}C{"\\{"}D');
106 $text = $tmpl->fill_in();
111 $tmpl = Text::Template->new(TYPE => 'STRING', SOURCE => qq{A{"\t"}B});
116 $text = $tmpl->fill_in();
141 my $tmpl = Text::Template->new(TYPE => 'STRING', SOURCE => $test);
142 my $text = $tmpl->fill_in;
151 $tmpl = undef
    [all...]
  /src/usr.sbin/mopd/common/
rc.c 42 int32_t tmpl; local
76 tmpl = mopGetLong(pkt,&idx);
77 (void)fprintf(fd,"Verification : %08x\n",tmpl);
162 tmpl = mopGetLong(pkt,&idx);
163 (void)fprintf(fd,"Bytes rec : %08x %d\n",tmpl,tmpl);
165 tmpl = mopGetLong(pkt,&idx);
166 (void)fprintf(fd,"Bytes snd : %08x %d\n",tmpl,tmpl);
168 tmpl = mopGetLong(pkt,&idx)
    [all...]
  /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
tmpdir.h 23 P_tmpdir, /tmp that exists. Copies into TMPL a template suitable
26 enough space in TMPL. */
27 extern int path_search (char *tmpl, size_t tmpl_len, const char *dir, const char *pfx, bool try_tmpdir);
  /src/crypto/external/bsd/openssl.old/dist/external/perl/Text-Template-1.46/t/
12-preprocess.t 33 my $tmpl;
35 $tmpl = new Text::Template::Preprocess
39 $tmpl = new Text::Template::Preprocess
42 $tmpl->preprocessor($py) if ($test & 1) == 1;
44 my $o = $tmpl->fill_in(@args,
  /src/tests/bin/df/
getmntinfo.c 66 other_variants(const struct statvfs *tmpl, const int *minfree, int minfreecnt,
76 *sf = *tmpl;
93 static const struct statvfs tmpl = { local
112 *getnewstatvfs() = tmpl;
113 other_variants(&tmpl, minfree, sizeof(minfree) / sizeof(minfree[0]),
124 static const struct statvfs tmpl = { local
145 *getnewstatvfs() = tmpl;
146 other_variants(&tmpl, minfree, sizeof(minfree) / sizeof(minfree[0]),
156 static const struct statvfs tmpl = { local
175 *getnewstatvfs() = tmpl;
185 static const struct statvfs tmpl = { local
    [all...]
  /src/external/gpl2/lvm2/dist/daemons/
Makefile 33 include ../make.tmpl

Completed in 40 milliseconds

1 2 3 4 5 6 7 8 9