/third_party/openssl/test/recipes/ |
D | 40-test_rehash.t | 30 ok(run(app(["openssl", "rehash", curdir()])), 36 ok(run(app(["openssl", "rehash", curdir()])), 41 ok(run(app(["openssl", "rehash", curdir()])), 47 chmod 0500, curdir(); 53 isnt(run(app(["openssl", "rehash", curdir()])), 1, 56 chmod 0700, curdir(); # make it writable again, so cleanup works 76 catfile(curdir(),
|
D | 90-test_store.t | 198 catdir(curdir(), 'rehash')]))); 202 catdir(curdir(), 'rehash')]))); 205 catdir(curdir(), 'rehash')]))); 208 catdir(curdir(), 'rehash')]))); 212 catdir(curdir(), 'rehash')]))); 216 catdir(curdir(), 'rehash')]))); 418 mkdir(catdir(curdir(), 'rehash')) 420 catdir(curdir(), 'rehash')) 422 catdir(curdir(), 'rehash')) 423 && run(app(['openssl', 'rehash', catdir(curdir(), 'rehash')]))
|
D | 60-test_x509_store.t | 43 copy(srctop_file("test", "certs", "$_.pem"), curdir()); 45 ok(run(app([qw(openssl rehash), curdir()])), "Rehashing"); 48 ok(verify("ee-cert", "sslserver", curdir(), ["ca-cert"], "-show_chain"), 52 ok(!verify("ca-root2", "any", curdir(), [], "-show_chain"));
|
/third_party/boost/libs/static_string/ |
D | CMakeLists.txt | 18 function (DoGroupSources curdir rootdir folder) 19 file (GLOB children RELATIVE ${PROJECT_SOURCE_DIR}/${curdir} ${PROJECT_SOURCE_DIR}/${curdir}/*) 21 if (IS_DIRECTORY ${PROJECT_SOURCE_DIR}/${curdir}/${child}) 22 DoGroupSources (${curdir}/${child} ${rootdir} ${folder}) 24 source_group("" FILES ${PROJECT_SOURCE_DIR}/${curdir}/${child}) 26 string (REGEX REPLACE ^${rootdir} ${folder} groupname ${curdir}) 28 source_group (${groupname} FILES ${PROJECT_SOURCE_DIR}/${curdir}/${child}) 33 function (GroupSources curdir folder) 34 DoGroupSources (${curdir} ${curdir} ${folder})
|
/third_party/ltp/testcases/kernel/mem/hugetlb/lib/ |
D | hugetlb.c | 52 char *curdir = NULL; in getipckey() local 57 curdir = getcwd(curdir, size); in getipckey() 58 if (curdir == NULL) in getipckey() 76 ipc_key = ftok(curdir, ascii_a + random() % 26); in getipckey()
|
/third_party/ltp/testcases/kernel/fs/fs_readonly/ |
D | test_robind.sh | 145 local curdir=$(pwd) 151 export TMPDIR=$curdir/$dir 153 eval $command > $curdir/test.log 2>&1 161 cat $curdir/test.log 171 rm -f $curdir/test.log 172 rm -rf $curdir/$dir/*
|
/third_party/boost/libs/beast/ |
D | CMakeLists.txt | 18 function (DoGroupSources curdir rootdir folder) 19 file (GLOB children RELATIVE ${PROJECT_SOURCE_DIR}/${curdir} ${PROJECT_SOURCE_DIR}/${curdir}/*) 21 if (IS_DIRECTORY ${PROJECT_SOURCE_DIR}/${curdir}/${child}) 22 DoGroupSources (${curdir}/${child} ${rootdir} ${folder}) 24 source_group("" FILES ${PROJECT_SOURCE_DIR}/${curdir}/${child}) 26 string (REGEX REPLACE ^${rootdir} ${folder} groupname ${curdir}) 28 source_group (${groupname} FILES ${PROJECT_SOURCE_DIR}/${curdir}/${child}) 33 function (GroupSources curdir folder) 34 DoGroupSources (${curdir} ${curdir} ${folder})
|
/third_party/python/Lib/ |
D | posixpath.py | 16 curdir = '.' variable 403 curdir = b'.' 407 curdir = '.' 416 if not name or name == curdir: 473 curdir = b'.' 477 curdir = '.' 482 start = curdir 494 return curdir 515 curdir = b'.' 518 curdir = '.' [all …]
|
D | ntpath.py | 11 curdir = '.' variable 469 curdir = b'.' 475 curdir = '.' 496 if not comps[i] or comps[i] == curdir: 510 comps.append(curdir) 698 curdir = b'.' 702 curdir = '.' 706 start = curdir 732 return curdir 759 curdir = b'.' [all …]
|
/third_party/ltp/lib/tests/ |
D | tst_dataroot03.c | 43 char curdir[PATH_MAX], tmp[PATH_MAX]; in main() local 45 if (getcwd(curdir, PATH_MAX) == NULL) in main() 51 snprintf(tmp, PATH_MAX, "%s/datafiles", curdir); in main()
|
D | tst_dataroot02.c | 43 char curdir[PATH_MAX], tmp[PATH_MAX]; in main() local 45 if (getcwd(curdir, PATH_MAX) == NULL) in main() 51 snprintf(tmp, PATH_MAX, "%s/datafiles", curdir); in main()
|
/third_party/ltp/libs/libltpipc/ |
D | libipc.c | 53 char *curdir = NULL; in getipckey() local 59 if (NULL == (curdir = getcwd(curdir, size))) { in getipckey() 73 if ((ipc_key = ftok(curdir, proj_id)) == -1) { in getipckey()
|
/third_party/musl/ndk-test/script/ |
D | build.py | 61 for curdir, dirs, files in os.walk(file_path): 70 copy_tar_out = os.path.join(find_dir,'target',name,os.path.basename(curdir)) 74 tar_out = os.path.join(curdir,dirname) 96 for curdir, dirs, files in os.walk(del_file_path): 100 shutil.rmtree(os.path.join(curdir,dirname))
|
/third_party/python/Lib/test/ |
D | test_glob.py | 115 res = glob.glob(os.path.join(os.curdir, '*')) 120 res = glob.glob(os.path.join(os.fsencode(os.curdir), b'*')) 271 eq(self.rglob(os.curdir, '**'), 272 self.joins((os.curdir, ''), *((os.curdir,) + i for i in full))) 303 eq(glob.glob(join(os.curdir, '**'), recursive=True), 304 [join(os.curdir, '')] + [join(os.curdir, *i) for i in full]) 305 eq(glob.glob(join(os.curdir, '**', ''), recursive=True), 306 [join(os.curdir, '')] + [join(os.curdir, *i) for i in dirs]) 307 eq(glob.glob(join(os.curdir, '**', '*'), recursive=True), 308 [join(os.curdir, *i) for i in full]) [all …]
|
/third_party/glib/gio/tests/ |
D | g-file-info-filesystem-readonly.c | 97 gchar *curdir, *dir_to_mount, *dir_mountpoint; in test_filesystem_readonly() local 128 curdir = g_get_current_dir (); in test_filesystem_readonly() 129 dir_to_mount = g_strdup_printf ("%s/dir_bindfs_to_mount", curdir); in test_filesystem_readonly() 131 dir_mountpoint = g_strdup_printf ("%s/dir_bindfs_mountpoint", curdir); in test_filesystem_readonly() 213 g_free (curdir); in test_filesystem_readonly()
|
/third_party/libwebsockets/minimal-examples/ |
D | CMakeLists.txt | 24 MACRO(SUBDIRLIST result curdir) 25 FILE(GLOB children RELATIVE ${curdir} ${curdir}/*) 29 IF (IS_DIRECTORY ${curdir}/${child})
|
/third_party/ltp/lib/ |
D | tst_resource.c | 44 char curdir[PATH_MAX]; in tst_dataroot_init() local 57 if (getcwd(curdir, PATH_MAX) == NULL) { in tst_dataroot_init() 62 startdir = curdir; in tst_dataroot_init()
|
/third_party/python/Tools/scripts/ |
D | lll.py | 12 if name not in (os.curdir, os.pardir): 17 if not args: args = [os.curdir]
|
/third_party/boost/libs/typeof/tools/ |
D | preprocess.pl | 22 use File::Spec updir,curdir,catfile,canonpath,splitpath,file_name_is_absolute; 46 ? $0 : (File::Spec->curdir(),$0)
|
/third_party/skia/tools/ |
D | merge_static_libs.py | 31 curdir = os.getcwd() 53 os.chdir(curdir)
|
/third_party/flutter/skia/tools/ |
D | merge_static_libs.py | 27 curdir = os.getcwd() 49 os.chdir(curdir)
|
/third_party/python/Lib/distutils/tests/ |
D | test_build_ext.py | 412 curdir = os.getcwd() 413 wanted = os.path.join(curdir, 'src', 'lxml', 'etree' + ext) 419 cmd.build_lib = os.path.join(curdir, 'tmpdir') 420 wanted = os.path.join(curdir, 'tmpdir', 'lxml', 'etree' + ext) 429 wanted = os.path.join(curdir, 'tmpdir', 'twisted', 'runner', 436 wanted = os.path.join(curdir, 'twisted', 'runner', 'portmap' + ext)
|
/third_party/python/Lib/test/test_import/ |
D | __init__.py | 184 sys.path.insert(0, os.curdir) 240 sys.path.insert(0, os.curdir) 287 sys.path.insert(0, os.curdir) 326 sys.path.insert(0, os.curdir) 368 sys.path.insert(0, os.curdir) 848 sys.path.insert(0, os.curdir) 852 assert sys.path[0] == os.curdir, 'Unexpected sys.path[0]' 909 os.path.join(os.getcwd(), os.curdir, os.path.relpath(pyc_file))) 917 self.assertEqual(m.__cached__, os.path.join(os.getcwd(), os.curdir, pyc_file)) 933 os.path.join(os.getcwd(), os.curdir, os.path.relpath(pyc_file))) [all …]
|
/third_party/python/Lib/distutils/ |
D | filelist.py | 38 def findall(self, dir=os.curdir): 258 def findall(dir=os.curdir): 264 if dir == os.curdir:
|
/third_party/python/Mac/BuildScript/ |
D | build-installer.py | 723 curdir = os.getcwd() 762 os.chdir(curdir) 939 curdir = os.getcwd() 971 fn = os.path.join(curdir, patch) 982 fn = os.path.join(curdir, patchscript) 1051 os.chdir(curdir) 1128 curdir = os.getcwd() 1377 os.chdir(curdir) 1407 curdir = os.getcwd() 1495 os.chdir(curdir)
|