Home
last modified time | relevance | path

Searched refs:tmppath (Results 1 – 10 of 10) sorted by relevance

/external/libcups/cups/
Dtempfile.c42 char tmppath[1024]; /* Temporary directory */ in cupsTempFd() local
58 GetTempPathA(sizeof(tmppath), tmppath); in cupsTempFd()
59 tmpdir = tmppath; in cupsTempFd()
75 if (confstr(_CS_DARWIN_USER_TEMP_DIR, tmppath, sizeof(tmppath))) in cupsTempFd()
76 tmpdir = tmppath; in cupsTempFd()
Dppd-util.c229 char tmppath[1024]; /* Temporary directory */ in cupsGetPPD3() local
236 if (confstr(_CS_DARWIN_USER_TEMP_DIR, tmppath, sizeof(tmppath))) in cupsGetPPD3()
237 tmpdir = tmppath; in cupsGetPPD3()
/external/libvpx/libvpx/test/
Dvideo_source.h65 char tmppath[MAX_PATH]; in GetTempOutFile() local
66 if (GetTempPathA(MAX_PATH, tmppath)) { in GetTempOutFile()
68 if (GetTempFileNameA(tmppath, "lvx", 0, fname)) { in GetTempOutFile()
/external/libaom/libaom/test/
Dvideo_source.h64 char tmppath[MAX_PATH]; in GetTempOutFile() local
65 if (GetTempPathA(MAX_PATH, tmppath)) { in GetTempOutFile()
67 if (GetTempFileNameA(tmppath, "lvx", 0, fname)) { in GetTempOutFile()
/external/igt-gpu-tools/runner/
Dsettings.c515 char *tmppath = strdup(path); in _dirname() local
516 char *tmpname = dirname(tmppath); in _dirname()
518 free(tmppath); in _dirname()
524 char *tmppath = strdup(path); in _basename() local
525 char *tmpname = basename(tmppath); in _basename()
527 free(tmppath); in _basename()
/external/bcc/src/cc/
Dbcc_elf.c459 char *tmppath; in find_debug_via_debuglink() local
468 tmppath = strdup(binpath); in find_debug_via_debuglink()
469 bindir = dirname(tmppath); in find_debug_via_debuglink()
496 free(tmppath); in find_debug_via_debuglink()
/external/libpcap/
Dpcap.c2139 char *scheme, *tmpuserinfo, *tmphost, *tmpport, *tmppath; local
2153 &tmpport, &tmppath, errbuf) == -1) {
2164 if (name && tmppath)
2165 pcap_strlcpy(name, tmppath, PCAP_BUF_SIZE);
2168 free(tmppath);
2199 if (name && tmppath)
2200 pcap_strlcpy(name, tmppath, PCAP_BUF_SIZE);
2203 free(tmppath);
2215 if (name && tmppath)
2216 pcap_strlcpy(name, tmppath, PCAP_BUF_SIZE);
[all …]
/external/elfutils/debuginfod/
Ddebuginfod.cxx1476 char* tmppath = NULL; in handle_buildid_r_match() local
1477 rc = asprintf (&tmppath, "%s/debuginfod.XXXXXX", tmpdir.c_str()); in handle_buildid_r_match()
1480 defer_dtor<void*,void> tmmpath_freer (tmppath, free); in handle_buildid_r_match()
1481 fd = mkstemp (tmppath); in handle_buildid_r_match()
1491 unlink (tmppath); in handle_buildid_r_match()
1507 tmppath, archive_entry_size(e), in handle_buildid_r_match()
1517 tmppath, archive_entry_size(e), in handle_buildid_r_match()
2545 char* tmppath = NULL; in archive_classify() local
2546 rc = asprintf (&tmppath, "%s/debuginfod.XXXXXX", tmpdir.c_str()); in archive_classify()
2549 defer_dtor<void*,void> tmmpath_freer (tmppath, free); in archive_classify()
[all …]
/external/igt-gpu-tools/tests/
Dsw_sync.c278 char tmppath[] = "/tmp/igt-XXXXXX"; in test_sync_merge_invalid() local
292 fence_invalid = mkstemp(tmppath); in test_sync_merge_invalid()
297 unlink(tmppath); in test_sync_merge_invalid()
/external/autotest/server/
Dautotest.py532 tmppath = utils.get(control_file, local_copy=True)
565 cfile += open(tmppath).read()
566 open(tmppath, "w").write(cfile)
574 host.send_file(tmppath, atrun.remote_control_file)
575 if os.path.abspath(tmppath) != os.path.abspath(control_file):
576 os.remove(tmppath)