Home
last modified time | relevance | path

Searched refs:remove_file (Results 1 – 13 of 13) sorted by relevance

/third_party/skia/third_party/externals/spirv-cross/
Dtest_shaders.py42 def remove_file(path): function
91 remove_file(path)
570 remove_file(glsl_path)
578 remove_file(vulkan_glsl_path)
617 remove_file(reference)
632 remove_file(json_file)
636 remove_file(json_file)
653 remove_file(reference)
668 remove_file(glsl)
671 remove_file(glsl)
[all …]
/third_party/rust/crates/cxx/gen/build/src/
Dout.rs98 let _ = fs::remove_file(path); in best_effort_remove()
105 let _ = fs::remove_file(path); in best_effort_remove()
115 let _ = fs::remove_file(path); in best_effort_remove()
Dlib.rs465 let _ = fs::remove_file(&dst); in best_effort_copy_headers()
/third_party/ltp/testcases/kernel/firmware/fw_load_user/
Dfw_load.c55 int remove_file; member
178 if (fw[i].remove_file && remove(fw[i].file) == -1) in cleanup()
206 fi->remove_file = 1; in create_firmware()
/third_party/protobuf/conformance/
Dupdate_failure_list.py55 for remove_file in (args.remove_list or []):
56 with open(remove_file) as f:
/third_party/gstreamer/gstplugins_bad/tests/check/elements/
Dcamerabin.c914 remove_file (const gchar * fn_template, guint num) in remove_file() function
1036 remove_file (image_filename, 0); in run_single_image_capture_test()
1113 remove_file (image_filename, i); in GST_START_TEST()
1163 remove_file (video_filename, 0); in GST_START_TEST()
1236 remove_file (video_filename, i); in GST_START_TEST()
1301 remove_file (image_filename, i); in GST_START_TEST()
1303 remove_file (video_filename, i); in GST_START_TEST()
1350 remove_file (image_filename, i); in GST_START_TEST()
1430 remove_file (image_filename, i); in GST_START_TEST()
1508 remove_file (video_filename, i); in GST_START_TEST()
[all …]
/third_party/cef/tools/
Dpatch_updater.py13 from file_util import copy_file, move_file, read_file, remove_file
267 remove_file(patch_path_abs)
271 remove_file(backup_path_abs)
Dfile_util.py105 def remove_file(name, quiet=True): function
Dmake_distrib.py79 remove_file(tar_file)
305 remove_file(delete_path, options.quiet)
399 remove_file(intermediate_obj)
/third_party/rust/crates/cxx/gen/src/
Dfs.rs94 pub(crate) fn remove_file(path: impl AsRef<Path>) -> Result<()> { in remove_file() function
96 match std::fs::remove_file(path) { in remove_file()
/third_party/rust/crates/bitflags/tests/
Dcompile.rs43 fs::remove_file(&renamed)?; in prepare_stderr_files()
/third_party/rust/crates/nix/test/
Dtest_unistd.rs508 fs::remove_file(&path).unwrap(); in test_chown()
549 fs::remove_file(&path).unwrap(); in test_fchownat()
/third_party/rust/crates/tracing/tracing-appender/src/
Drolling.rs627 if let Err(error) = fs::remove_file(file.path()) { in prune_old_logs()