Home
last modified time | relevance | path

Searched refs:new_dir (Results 1 – 21 of 21) sorted by relevance

/third_party/ltp/testcases/kernel/mce-test/stress/tools/fs-metadata/
Dk-thread.sh89 new_dir=$dir-new
90 cp $dir $new_dir -pr
91 run_quiet cd $new_dir
92 k_log "thread $dir: begin to traverse dir $new_dir"
94 k_log "thread $dir: end to traverse dir $new_dir"
97 k_tree_diff $dir $new_dir || result=fail
98 k_result "thread $dir: $result to compare result between dir $dir and $new_dir"
100 rm $new_dir -fr
Dfs-metadata.sh161 new_dir=$dir-new
162 cp $dir $new_dir -pr
163 run_quiet cd $new_dir
164 k_log "thread $dir: begin to traverse dir $new_dir"
166 k_log "thread $dir: end to traverse dir $new_dir"
169 k_tree_diff $dir $new_dir || result=FAIL
170 k_result "thread $dir: $result to compare result between dir $dir and $new_dir"
172 rm $new_dir -fr
/third_party/gstreamer/gstplugins_bad/ext/webrtc/
Dwebrtcsdp.c358 GstWebRTCRTPTransceiverDirection new_dir = in _get_direction_from_media() local
366 if (new_dir != GST_WEBRTC_RTP_TRANSCEIVER_DIRECTION_NONE) { in _get_direction_from_media()
370 new_dir = GST_WEBRTC_RTP_TRANSCEIVER_DIRECTION_SENDONLY; in _get_direction_from_media()
372 if (new_dir != GST_WEBRTC_RTP_TRANSCEIVER_DIRECTION_NONE) { in _get_direction_from_media()
376 new_dir = GST_WEBRTC_RTP_TRANSCEIVER_DIRECTION_SENDRECV; in _get_direction_from_media()
378 if (new_dir != GST_WEBRTC_RTP_TRANSCEIVER_DIRECTION_NONE) { in _get_direction_from_media()
382 new_dir = GST_WEBRTC_RTP_TRANSCEIVER_DIRECTION_RECVONLY; in _get_direction_from_media()
384 if (new_dir != GST_WEBRTC_RTP_TRANSCEIVER_DIRECTION_NONE) { in _get_direction_from_media()
388 new_dir = GST_WEBRTC_RTP_TRANSCEIVER_DIRECTION_INACTIVE; in _get_direction_from_media()
392 return new_dir; in _get_direction_from_media()
[all …]
Dgstwebrtcbin.c4849 GstWebRTCRTPTransceiverDirection new_dir; in _update_transceiver_from_sdp_media() local
4904 new_dir = _get_final_direction (local_dir, remote_dir); in _update_transceiver_from_sdp_media()
4905 if (new_dir == GST_WEBRTC_RTP_TRANSCEIVER_DIRECTION_NONE) { in _update_transceiver_from_sdp_media()
4912 && new_dir != GST_WEBRTC_RTP_TRANSCEIVER_DIRECTION_INACTIVE in _update_transceiver_from_sdp_media()
4913 && prev_dir != new_dir) { in _update_transceiver_from_sdp_media()
4937 if (new_dir == GST_WEBRTC_RTP_TRANSCEIVER_DIRECTION_INACTIVE) { in _update_transceiver_from_sdp_media()
4953 if (new_dir != prev_dir) { in _update_transceiver_from_sdp_media()
4961 new_dir); in _update_transceiver_from_sdp_media()
4971 if (new_dir == GST_WEBRTC_RTP_TRANSCEIVER_DIRECTION_INACTIVE) { in _update_transceiver_from_sdp_media()
4991 if (new_dir == GST_WEBRTC_RTP_TRANSCEIVER_DIRECTION_SENDONLY || in _update_transceiver_from_sdp_media()
[all …]
/third_party/rust/crates/nix/test/
Dtest_fcntl.rs68 let new_dir = tempfile::tempdir().unwrap(); in test_renameat() localVariable
70 open(new_dir.path(), OFlag::empty(), Mode::empty()).unwrap(); in test_renameat()
78 assert!(new_dir.path().join("new").exists()); in test_renameat()
98 let new_dir = tempfile::tempdir().unwrap(); in test_renameat2_behaves_like_renameat_with_no_flags() localVariable
100 open(new_dir.path(), OFlag::empty(), Mode::empty()).unwrap(); in test_renameat2_behaves_like_renameat_with_no_flags()
122 assert!(new_dir.path().join("new").exists()); in test_renameat2_behaves_like_renameat_with_no_flags()
145 let new_dir = tempfile::tempdir().unwrap(); in test_renameat2_exchange() localVariable
147 open(new_dir.path(), OFlag::empty(), Mode::empty()).unwrap(); in test_renameat2_exchange()
148 let new_path = new_dir.path().join("new"); in test_renameat2_exchange()
190 let new_dir = tempfile::tempdir().unwrap(); in test_renameat2_noreplace() localVariable
[all …]
/third_party/cef/libcef/common/
Dfile_util_impl.cc57 CefString& new_dir) { in CefCreateTempDirectoryInDirectory() argument
62 new_dir = result.value(); in CefCreateTempDirectoryInDirectory()
/third_party/python/Lib/test/test_importlib/import_/
Dtest_path.py178 new_dir = tempfile.mkdtemp()
180 os.chdir(new_dir)
182 os.rmdir(new_dir)
189 os.rmdir(new_dir)
/third_party/cef/libcef_dll/
Dlibcef_dll.cc246 cef_string_t* new_dir) { in cef_create_temp_directory_in_directory() argument
254 DCHECK(new_dir); in cef_create_temp_directory_in_directory()
255 if (!new_dir) in cef_create_temp_directory_in_directory()
260 CefString new_dirStr(new_dir); in cef_create_temp_directory_in_directory()
/third_party/openssl/crypto/x509/
Dby_dir.c54 static int new_dir(X509_LOOKUP *lu);
64 new_dir, /* new_item */
108 static int new_dir(X509_LOOKUP *lu) in new_dir() function
/third_party/gn/src/base/files/
Dfile_util_posix.cc381 FilePath* new_dir) { in CreateTemporaryDirInDirImpl() argument
409 *new_dir = FilePath(dtemp); in CreateTemporaryDirInDirImpl()
415 FilePath* new_dir) { in CreateTemporaryDirInDir() argument
418 return CreateTemporaryDirInDirImpl(base_dir, mkdtemp_template, new_dir); in CreateTemporaryDirInDir()
Dfile_util.h188 FilePath* new_dir);
Dfile_util_win.cc288 FilePath* new_dir) { in CreateTemporaryDirInDir() argument
302 *new_dir = path_to_create; in CreateTemporaryDirInDir()
/third_party/ltp/lib/
Dtst_cgroup.c873 struct cgroup_dir *new_dir; in tst_cgroup_group_mk() local
879 new_dir = SAFE_MALLOC(sizeof(*new_dir)); in tst_cgroup_group_mk()
880 cgroup_dir_mk(*dir, group_name, new_dir); in tst_cgroup_group_mk()
881 cgroup_group_add_dir(parent, cg, new_dir); in tst_cgroup_group_mk()
/third_party/cef/include/
Dcef_file_util.h86 CefString& new_dir);
/third_party/cef/include/capi/
Dcef_file_util_capi.h88 cef_string_t* new_dir);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/scripts/
Dupdate.py125 def pushd(new_dir): argument
127 os.chdir(new_dir)
/third_party/cef/libcef_dll/wrapper/
Dlibcef_dll_wrapper.cc229 CefString& new_dir) { in CefCreateTempDirectoryInDirectory() argument
240 base_dir.GetStruct(), prefix.GetStruct(), new_dir.GetWritableStruct()); in CefCreateTempDirectoryInDirectory()
Dlibcef_dll_dylib.cc1038 cef_string_t* new_dir) { in cef_create_temp_directory_in_directory() argument
1040 base_dir, prefix, new_dir); in cef_create_temp_directory_in_directory()
/third_party/ffmpeg/libavcodec/
Dmotion_est_template.c387 #define CHECK_MV_DIR(x,y,new_dir)\ argument
400 next_dir= new_dir;\
/third_party/python/Lib/test/
Dtest_ftplib.py846 new_dir = self.client.mkd('/non-ascii dir \xAE')
847 self.check_data(new_dir, '/non-ascii dir \xAE')
/third_party/libbpf/.github/actions/build-selftests/
Dvmlinux.h15583 const struct nfs_fh *new_dir; member
15743 struct inode *new_dir; member
42537 struct inode *new_dir; member