Searched refs:tmpname (Results 1 - 8 of 8) sorted by relevance

/external/elfutils/src/config/
H A DMakefile.am35 @tmpname=$$(mktemp $${TMPDIR:-/tmp}/elfutils.XXXXXX); \
36 date +'* %a %b %e %Y' | tr '[\n]' '[ ]' > $$tmpname; \
38 awk 'BEGIN {FS=":"} { printf $$5; exit 0}' >> $$tmpname; \
39 echo -n " <$$(whoami)@gmail.com> " >> $$tmpname; \
47 | fold -s -w 70 | sed '1!s/^[^-]/ &/' >> $$tmpname; \
48 sed "/^%changelog/r $$tmpname" $@ > $@.new; \
49 rm -f $$tmpname; \
/external/openssh/openbsd-compat/
H A Dxmmap.c63 char tmpname[sizeof(MM_SWAP_TEMPLATE)] = MM_SWAP_TEMPLATE; local
68 tmpfd = mkstemp(tmpname);
73 unlink(tmpname);
/external/libmtp/src/
H A Dplaylist-spl.c135 char tmpname[] = "/tmp/mtp-spl2pl-XXXXXX"; local
136 int fd = mkstemp(tmpname);
138 printf("failed to make temp file for %s.spl -> %s, errno=%s\n", pl->name, tmpname, strerror(errno));
142 if(unlink(tmpname) < 0)
143 printf("failed to delete temp file for %s.spl -> %s, errno=%s\n", pl->name, tmpname, strerror(errno));
190 char tmpname[] = "/tmp/mtp-spl2pl-XXXXXX"; // must be a var since mkstemp modifies it local
195 int fd = mkstemp(tmpname);
197 printf("failed to make temp file for %s.spl -> %s, errno=%s\n", pl->name, tmpname, strerror(errno));
201 if(unlink(tmpname) < 0)
202 printf("failed to delete temp file for %s.spl -> %s, errno=%s\n", pl->name, tmpname, strerro
[all...]
/external/vboot_reference/cgpt/
H A Dcgpt_find.c182 char tmpname[BUFSIZE]; local
195 sprintf(tmpname, "%s/%s/device", SYS_BLOCK_DIR, basename);
197 if (0 != lstat(tmpname, &statbuf))
/external/toybox/kconfig/
H A Dconfdata.c403 char dirname[128], tmpname[128], newname[128]; local
435 sprintf(tmpname, "%s.tmpconfig.%d", dirname, (int)getpid());
436 out = fopen(tmpname, "w");
438 *tmpname = 0;
558 if (*tmpname) {
562 if (rename(tmpname, newname))
/external/valgrind/coregrind/m_debuginfo/
H A Dreadpdb.c2483 HChar tmpname[VG_(mkstemp_fullname_bufsz)(sizeof tmpnameroot - 1)]; local
2493 VG_(memset)(tmpname, 0, sizeof(tmpname));
2494 fd = VG_(mkstemp)( tmpnameroot, tmpname );
2497 "Find PDB file: Can't create temporary file %s\n", tmpname);
2503 sh -c "strings (pename) | egrep '\.pdb$|\.PDB$' > (tmpname)"
2509 /* (sh) -c "(strings) (pename) | (egrep) 'pdb' > (tmpname) */
2511 + VG_(strlen)(egrep) + VG_(strlen)(tmpname)
2515 sh, strings, pename, egrep, tmpname);
2530 SysRes sr = VG_(stat)(tmpname,
[all...]
/external/libxml2/
H A Drelaxng.c5819 char tmpname[32]; local
5821 snprintf(tmpname, 32, "interleave%d", ctxt->nbInterleaves++);
5822 if (xmlHashAddEntry(ctxt->interleaves, BAD_CAST tmpname, cur) <
5826 (const xmlChar *) tmpname, NULL);
5924 char tmpname[32]; local
5926 snprintf(tmpname, 32, "interleave%d", ctxt->nbInterleaves++);
5927 if (xmlHashAddEntry(ctxt->interleaves, BAD_CAST tmpname, cur) <
5931 (const xmlChar *) tmpname, NULL);
H A Dxmlschemas.c18192 const xmlChar *tmpname; local
18227 tmpname = xmlDictLookup(pctxt->dict, BAD_CAST buf, -1);
18229 XML_SCHEMA_TYPE_SIMPLE, tmpname, type->targetNamespace,

Completed in 427 milliseconds