Home
last modified time | relevance | path

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

/external/elfutils/config/
DMakefile.am32 @tmpname=$$(mktemp $${TMPDIR:-/tmp}/elfutils.XXXXXX); \
33 date +'* %a %b %e %Y' | tr '[\n]' '[ ]' > $$tmpname; \
35 awk 'BEGIN {FS=":"} { printf $$5; exit 0}' >> $$tmpname; \
36 echo -n " <$$(whoami)@redhat.com> " >> $$tmpname; \
44 | fold -s -w 70 | sed '1!s/^[^-]/ &/' >> $$tmpname; \
45 sed "/^%changelog/r $$tmpname" $@ > $@.new; \
46 rm -f $$tmpname; \
DMakefile.in322 @MAINTAINER_MODE_TRUE@ @tmpname=$$(mktemp $${TMPDIR:-/tmp}/elfutils.XXXXXX); \
323 @MAINTAINER_MODE_TRUE@ date +'* %a %b %e %Y' | tr '[\n]' '[ ]' > $$tmpname; \
325 @MAINTAINER_MODE_TRUE@ awk 'BEGIN {FS=":"} { printf $$5; exit 0}' >> $$tmpname; \
326 @MAINTAINER_MODE_TRUE@ echo -n " <$$(whoami)@redhat.com> " >> $$tmpname; \
334 @MAINTAINER_MODE_TRUE@ | fold -s -w 70 | sed '1!s/^[^-]/ &/' >> $$tmpname; \
335 @MAINTAINER_MODE_TRUE@ sed "/^%changelog/r $$tmpname" $@ > $@.new; \
336 @MAINTAINER_MODE_TRUE@ rm -f $$tmpname; \
/external/openssh/openbsd-compat/
Dxmmap.c63 char tmpname[sizeof(MM_SWAP_TEMPLATE)] = MM_SWAP_TEMPLATE; in xmmap() local
68 tmpfd = mkstemp(tmpname); in xmmap()
73 unlink(tmpname); in xmmap()
/external/libmtp/src/
Dplaylist-spl.c135 char tmpname[] = "/tmp/mtp-spl2pl-XXXXXX"; in spl_to_playlist_t() local
136 int fd = mkstemp(tmpname); in spl_to_playlist_t()
138 …printf("failed to make temp file for %s.spl -> %s, errno=%s\n", pl->name, tmpname, strerror(errno)… in spl_to_playlist_t()
142 if(unlink(tmpname) < 0) in spl_to_playlist_t()
143 …printf("failed to delete temp file for %s.spl -> %s, errno=%s\n", pl->name, tmpname, strerror(errn… in spl_to_playlist_t()
190 char tmpname[] = "/tmp/mtp-spl2pl-XXXXXX"; // must be a var since mkstemp modifies it in playlist_t_to_spl() local
195 int fd = mkstemp(tmpname); in playlist_t_to_spl()
197 …printf("failed to make temp file for %s.spl -> %s, errno=%s\n", pl->name, tmpname, strerror(errno)… in playlist_t_to_spl()
201 if(unlink(tmpname) < 0) in playlist_t_to_spl()
202 …printf("failed to delete temp file for %s.spl -> %s, errno=%s\n", pl->name, tmpname, strerror(errn… in playlist_t_to_spl()
/external/openssl/crypto/asn1/
Dasn_mime.c803 char *tmpname, *tmpval, *p; in mime_hdr_new() local
806 if(!(tmpname = BUF_strdup(name))) return NULL; in mime_hdr_new()
807 for(p = tmpname ; *p; p++) { in mime_hdr_new()
814 } else tmpname = NULL; in mime_hdr_new()
827 mhdr->name = tmpname; in mime_hdr_new()
835 char *tmpname, *tmpval, *p; in mime_hdr_addparam() local
839 tmpname = BUF_strdup(name); in mime_hdr_addparam()
840 if(!tmpname) return 0; in mime_hdr_addparam()
841 for(p = tmpname ; *p; p++) { in mime_hdr_addparam()
848 } else tmpname = NULL; in mime_hdr_addparam()
[all …]
/external/valgrind/main/coregrind/m_debuginfo/
Dreadpdb.c2408 HChar tmpname[100], tmpnameroot[50]; in ML_() local
2418 VG_(memset)(tmpname, 0, sizeof(tmpname)); in ML_()
2419 fd = VG_(mkstemp)( tmpnameroot, tmpname ); in ML_()
2422 "Find PDB file: Can't create /tmp file %s\n", tmpname); in ML_()
2436 + VG_(strlen)(egrep) + VG_(strlen)(tmpname) in ML_()
2441 sh, strings, pename, egrep, tmpname); in ML_()
2456 SysRes sr = VG_(stat)(tmpname, &stat_buf); in ML_()
2458 VG_(umsg)("Find PDB file: can't stat %s\n", tmpname); in ML_()
2464 VG_(umsg)("Find PDB file: %s is empty\n", tmpname); in ML_()
2470 tmpname, szB); in ML_()
[all …]
/external/libxml2/
Drelaxng.c5821 char tmpname[32]; in xmlRelaxNGCheckCombine() local
5823 snprintf(tmpname, 32, "interleave%d", ctxt->nbInterleaves++); in xmlRelaxNGCheckCombine()
5824 if (xmlHashAddEntry(ctxt->interleaves, BAD_CAST tmpname, cur) < in xmlRelaxNGCheckCombine()
5828 (const xmlChar *) tmpname, NULL); in xmlRelaxNGCheckCombine()
5926 char tmpname[32]; in xmlRelaxNGCombineStart() local
5928 snprintf(tmpname, 32, "interleave%d", ctxt->nbInterleaves++); in xmlRelaxNGCombineStart()
5929 if (xmlHashAddEntry(ctxt->interleaves, BAD_CAST tmpname, cur) < in xmlRelaxNGCombineStart()
5933 (const xmlChar *) tmpname, NULL); in xmlRelaxNGCombineStart()
Dxmlschemas.c18162 const xmlChar *tmpname; in xmlSchemaFixupComplexType() local
18197 tmpname = xmlDictLookup(pctxt->dict, BAD_CAST buf, -1); in xmlSchemaFixupComplexType()
18199 XML_SCHEMA_TYPE_SIMPLE, tmpname, type->targetNamespace, in xmlSchemaFixupComplexType()