/third_party/ffmpeg/libavformat/ |
D | hdsenc.c | 51 char temp_filename[1024]; member 164 char filename[1024], temp_filename[1024]; in write_manifest() local 172 snprintf(temp_filename, sizeof(temp_filename), "%s/index.f4m.tmp", s->url); in write_manifest() 173 ret = s->io_open(s, &out, temp_filename, AVIO_FLAG_WRITE, NULL); in write_manifest() 175 av_log(s, AV_LOG_ERROR, "Unable to open %s for writing\n", temp_filename); in write_manifest() 205 return ff_rename(temp_filename, filename, s); in write_manifest() 223 char filename[1024], temp_filename[1024]; in write_abst() local 239 snprintf(temp_filename, sizeof(temp_filename), in write_abst() 241 ret = s->io_open(s, &out, temp_filename, AVIO_FLAG_WRITE, NULL); in write_abst() 243 av_log(s, AV_LOG_ERROR, "Unable to open %s for writing\n", temp_filename); in write_abst() [all …]
|
D | librtmp.c | 53 char *temp_filename; member 79 av_freep(&ctx->temp_filename); in rtmp_close() 158 if (!(ctx->temp_filename = filename = av_malloc(len))) in rtmp_open() 252 av_freep(&ctx->temp_filename); in rtmp_open()
|
D | smoothstreamingenc.c | 210 char filename[1024], temp_filename[1024]; in write_manifest() local 215 snprintf(temp_filename, sizeof(temp_filename), "%s/Manifest.tmp", s->url); in write_manifest() 216 ret = s->io_open(s, &out, temp_filename, AVIO_FLAG_WRITE, NULL); in write_manifest() 218 av_log(s, AV_LOG_ERROR, "Unable to open %s for writing\n", temp_filename); in write_manifest() 279 return ff_rename(temp_filename, filename, s); in write_manifest()
|
D | dashenc.c | 1148 char temp_filename[1024]; in write_manifest() local 1159 snprintf(temp_filename, sizeof(temp_filename), use_rename ? "%s.tmp" : "%s", s->url); in write_manifest() 1161 ret = dashenc_io_open(s, &c->mpd_out, temp_filename, &opts); in write_manifest() 1164 return handle_io_open_error(s, ret, temp_filename); in write_manifest() 1253 dashenc_io_close(s, &c->mpd_out, temp_filename); in write_manifest() 1256 if ((ret = ff_rename(temp_filename, s->url, s)) < 0) in write_manifest() 1277 snprintf(temp_filename, sizeof(temp_filename), use_rename ? "%s.tmp" : "%s", filename_hls); in write_manifest() 1280 ret = dashenc_io_open(s, &c->m3u8_out, temp_filename, &opts); in write_manifest() 1283 return handle_io_open_error(s, ret, temp_filename); in write_manifest() 1342 dashenc_io_close(s, &c->m3u8_out, temp_filename); in write_manifest() [all …]
|
D | hlsenc.c | 1392 char temp_filename[MAX_URL_SIZE]; local 1408 …snprintf(temp_filename, sizeof(temp_filename), use_temp_file ? "%s.tmp" : "%s", hls->master_m3u8_u… 1409 ret = hlsenc_io_open(s, &hls->m3u8_out, temp_filename, &options); 1413 temp_filename); 1534 hlsenc_io_close(s, &hls->m3u8_out, temp_filename); 1536 ff_rename(temp_filename, hls->master_m3u8_url, s); 1547 char temp_filename[MAX_URL_SIZE]; local 1583 snprintf(temp_filename, sizeof(temp_filename), use_temp_file ? "%s.tmp" : "%s", vs->m3u8_name); 1584 …if ((ret = hlsenc_io_open(s, byterange_mode ? &hls->m3u8_out : &vs->out, temp_filename, &options))… 1663 ret = hlsenc_io_close(s, byterange_mode ? &hls->m3u8_out : &vs->out, temp_filename); [all …]
|
/third_party/boost/tools/quickbook/test/python/ |
D | run_tests.py | 64 output_filename = temp_filename('.qbk') 69 deps_filename = temp_filename('.txt') 74 locations_filename = temp_filename('.txt') 177 def temp_filename(extension): function
|
/third_party/python/Lib/test/ |
D | test_netrc.py | 13 temp_fd, temp_filename = tempfile.mkstemp() 16 self.addCleanup(os.unlink, temp_filename) 17 return netrc.netrc(temp_filename)
|
/third_party/googletest/googletest/scripts/ |
D | upload.py | 1175 unused, temp_filename = line.split(':', 1) 1179 temp_filename = temp_filename.strip().replace('\\', '/') 1180 if temp_filename != filename: 1182 new_filename = temp_filename
|
/third_party/glib/gio/ |
D | glocalfileoutputstream.c | 845 char **temp_filename, in handle_overwrite_open() argument 1058 *temp_filename = tmp_filename; in handle_overwrite_open()
|