Home
last modified time | relevance | path

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

/external/elfutils/config/
DMakefile.am39 @tmpname=$$(mktemp $${TMPDIR:-/tmp}/elfutils.XXXXXX); \
40 date +'* %a %b %e %Y' | tr '[\n]' '[ ]' > $$tmpname; \
42 awk 'BEGIN {FS=":"} { printf $$5; exit 0}' >> $$tmpname; \
43 echo -n " <$$(whoami)@gmail.com> " >> $$tmpname; \
51 | fold -s -w 70 | sed '1!s/^[^-]/ &/' >> $$tmpname; \
52 sed "/^%changelog/r $$tmpname" $@ > $@.new; \
53 rm -f $$tmpname; \
/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/vboot_reference/cgpt/
Dcgpt_find.c182 char tmpname[BUFSIZE]; in is_wholedev() local
195 sprintf(tmpname, "%s/%s/device", SYS_BLOCK_DIR, basename); in is_wholedev()
197 if (0 != lstat(tmpname, &statbuf)) in is_wholedev()
/external/toybox/kconfig/
Dconfdata.c403 char dirname[128], tmpname[128], newname[128]; in conf_write() local
435 sprintf(tmpname, "%s.tmpconfig.%d", dirname, (int)getpid()); in conf_write()
436 out = fopen(tmpname, "w"); in conf_write()
438 *tmpname = 0; in conf_write()
558 if (*tmpname) { in conf_write()
562 if (rename(tmpname, newname)) in conf_write()
/external/valgrind/coregrind/m_debuginfo/
Dreadpdb.c2483 HChar tmpname[VG_(mkstemp_fullname_bufsz)(sizeof tmpnameroot - 1)]; in ML_() local
2493 VG_(memset)(tmpname, 0, sizeof(tmpname)); in ML_()
2494 fd = VG_(mkstemp)( tmpnameroot, tmpname ); in ML_()
2497 "Find PDB file: Can't create temporary file %s\n", tmpname); in ML_()
2511 + VG_(strlen)(egrep) + VG_(strlen)(tmpname) in ML_()
2515 sh, strings, pename, egrep, tmpname); in ML_()
2530 SysRes sr = VG_(stat)(tmpname, &stat_buf); in ML_()
2532 VG_(umsg)("LOAD_PDB_DEBUGINFO: Find PDB file: can't stat %s\n", tmpname); in ML_()
2538 VG_(umsg)("LOAD_PDB_DEBUGINFO: Find PDB file: %s is empty\n", tmpname); in ML_()
2544 tmpname, szB); in ML_()
[all …]
/external/chromium-trace/catapult/telemetry/telemetry/internal/platform/profiler/
Dmonsoon.py61 tmpname = '/tmp/monsoon.%s.%s' % (os.uname()[0], os.path.basename(port))
62 self._tempfile = open(tmpname, 'w')
/external/opencv3/3rdparty/libjasper/
Djas_stream.c348 char *tmpname; in jas_stream_tmpfile() local
369 tmpname = tempnam(NULL, NULL); in jas_stream_tmpfile()
370 strcpy(obj->pathname, tmpname); in jas_stream_tmpfile()
371 free(tmpname); in jas_stream_tmpfile()
/external/libxml2/
Drelaxng.c5823 char tmpname[32]; in xmlRelaxNGCheckCombine() local
5825 snprintf(tmpname, 32, "interleave%d", ctxt->nbInterleaves++); in xmlRelaxNGCheckCombine()
5826 if (xmlHashAddEntry(ctxt->interleaves, BAD_CAST tmpname, cur) < in xmlRelaxNGCheckCombine()
5830 (const xmlChar *) tmpname, NULL); in xmlRelaxNGCheckCombine()
5928 char tmpname[32]; in xmlRelaxNGCombineStart() local
5930 snprintf(tmpname, 32, "interleave%d", ctxt->nbInterleaves++); in xmlRelaxNGCombineStart()
5931 if (xmlHashAddEntry(ctxt->interleaves, BAD_CAST tmpname, cur) < in xmlRelaxNGCombineStart()
5935 (const xmlChar *) tmpname, NULL); in xmlRelaxNGCombineStart()
Dxmlschemas.c18192 const xmlChar *tmpname; in xmlSchemaFixupComplexType() local
18227 tmpname = xmlDictLookup(pctxt->dict, BAD_CAST buf, -1); in xmlSchemaFixupComplexType()
18229 XML_SCHEMA_TYPE_SIMPLE, tmpname, type->targetNamespace, in xmlSchemaFixupComplexType()