Searched defs:tmpname (Results 1 - 6 of 6) sorted by relevance

/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/openssl/crypto/asn1/
H A Dasn_mime.c803 char *tmpname, *tmpval, *p; local
806 if(!(tmpname = BUF_strdup(name))) return NULL;
807 for(p = tmpname ; *p; p++) {
814 } else tmpname = NULL;
827 mhdr->name = tmpname;
835 char *tmpname, *tmpval, *p; local
839 tmpname = BUF_strdup(name);
840 if(!tmpname) return 0;
841 for(p = tmpname ; *p; p++) {
848 } else tmpname
[all...]
/external/libxml2/
H A Drelaxng.c5821 char tmpname[32]; local
5823 snprintf(tmpname, 32, "interleave%d", ctxt->nbInterleaves++);
5824 if (xmlHashAddEntry(ctxt->interleaves, BAD_CAST tmpname, cur) <
5828 (const xmlChar *) tmpname, NULL);
5926 char tmpname[32]; local
5928 snprintf(tmpname, 32, "interleave%d", ctxt->nbInterleaves++);
5929 if (xmlHashAddEntry(ctxt->interleaves, BAD_CAST tmpname, cur) <
5933 (const xmlChar *) tmpname, NULL);
H A Dxmlschemas.c18162 const xmlChar *tmpname; local
18197 tmpname = xmlDictLookup(pctxt->dict, BAD_CAST buf, -1);
18199 XML_SCHEMA_TYPE_SIMPLE, tmpname, type->targetNamespace,
/external/valgrind/main/coregrind/m_debuginfo/
H A Dreadpdb.c2408 HChar tmpname[100], tmpnameroot[50]; local
2418 VG_(memset)(tmpname, 0, sizeof(tmpname));
2419 fd = VG_(mkstemp)( tmpnameroot, tmpname );
2422 "Find PDB file: Can't create /tmp file %s\n", tmpname);
2428 sh -c "strings (pename) | egrep '\.pdb|\.PDB' > (tmpname)"
2434 /* (sh) -c "(strings) (pename) | (egrep) 'pdb' > (tmpname) */
2436 + VG_(strlen)(egrep) + VG_(strlen)(tmpname)
2441 sh, strings, pename, egrep, tmpname);
2456 SysRes sr = VG_(stat)(tmpname,
[all...]

Completed in 237 milliseconds