Home
last modified time | relevance | path

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

/third_party/cups-filters/backend/
Dbeh.c50 char tmpfilename[1024], buf[8192]; in main() local
147 snprintf(tmpfilename, sizeof(tmpfilename), "%s/beh-XXXXXX", tmpdir); in main()
148 fd = mkstemp(tmpfilename); in main()
160 filename = tmpfilename; in main()
162 tmpfilename[0] = '\0'; in main()
182 if (strlen(tmpfilename) > 0) in main()
183 unlink(tmpfilename); in main()
/third_party/openssl/test/recipes/
D90-test_sslapi.t30 (undef, my $tmpfilename) = tempfile();
34 "passwd.txt"), $tmpfilename, "default",
45 "passwd.txt"), $tmpfilename, "fips",
54 unlink $tmpfilename;
/third_party/cups-filters/filter/foomatic-rip/
Dpdf.c293 char tmpfilename[PATH_MAX] = ""; in print_pdf() local
303 snprintf(tmpfilename, PATH_MAX, "%s/foomatic-XXXXXX", temp_dir()); in print_pdf()
304 fd = mkstemp(tmpfilename); in print_pdf()
314 filename = tmpfilename; in print_pdf()
319 if (!isempty(tmpfilename)) in print_pdf()
320 unlink(tmpfilename); in print_pdf()
Dfoomaticrip.c563 char tmpfilename[PATH_MAX] = ""; in print_file() local
620 snprintf(tmpfilename, PATH_MAX, "%s/foomatic-XXXXXX", temp_dir()); in print_file()
621 fd = mkstemp(tmpfilename); in print_file()
630 filename = tmpfilename; in print_file()
693 if ( *tmpfilename ) in print_file()
694 unlink(tmpfilename); in print_file()
713 snprintf(tmpfilename, PATH_MAX, "%s/foomatic-XXXXXX", temp_dir()); in print_file()
714 fd = mkstemp(tmpfilename); in print_file()
732 ret = print_ps(tmpfile, NULL, 0, tmpfilename); in print_file()
734 unlink(tmpfilename); in print_file()
/third_party/gstreamer/gstplugins_base/tests/check/libs/
Dallocators.c41 char tmpfilename[] = "/tmp/dmabuf-test.XXXXXX"; in GST_START_TEST() local
47 fd = mkstemp (tmpfilename); in GST_START_TEST()
49 fail_unless (g_unlink (tmpfilename) == 0); in GST_START_TEST()
/third_party/gstreamer/gstplugins_base/tests/check/pipelines/
Dtcp.c326 char tmpfilename[] = "/tmp/tcp-test.XXXXXX"; in GST_START_TEST() local
333 orig_fd = mkstemp (tmpfilename); in GST_START_TEST()
335 fail_unless (unlink (tmpfilename) == 0); in GST_START_TEST()
/third_party/ltp/testcases/kernel/syscalls/sendmsg/
Dsendmsg01.c622 static char tmpfilename[1024]; variable
630 strcpy(tmpfilename, "sockXXXXXX"); in setup4()
631 tfd = mkstemp(tmpfilename); in setup4()
/third_party/ffmpeg/libavformat/
Ddashdec.c1638 char *tmpfilename; in get_current_fragment() local
1644 tmpfilename = av_mallocz(c->max_url_size); in get_current_fragment()
1645 if (!tmpfilename) { in get_current_fragment()
1649 …ff_dash_fill_tmpl_params(tmpfilename, c->max_url_size, pls->url_template, 0, pls->cur_seq_no, 0, g… in get_current_fragment()
1650 seg->url = av_strireplace(pls->url_template, pls->url_template, tmpfilename); in get_current_fragment()
1656 av_free(tmpfilename); in get_current_fragment()
1661 av_free(tmpfilename); in get_current_fragment()
/third_party/openssl/test/
Dsslapitest.c96 static char *tmpfilename = NULL; variable
1351 out = BIO_new_file(tmpfilename, "wb"); in execute_test_ktls_sendfile()
1360 in = BIO_new_file(tmpfilename, "rb"); in execute_test_ktls_sendfile()
6985 if (!TEST_true(create_new_vfile(userid, password, tmpfilename))) in test_srp()
6987 tstsrpfile = tmpfilename; in test_srp()
9911 || !TEST_ptr(tmpfilename = test_get_argument(2)) in setup_tests()