Searched refs:curdir (Results 1 - 25 of 121) sorted by relevance

12345

/external/ltp/lib/tests/
H A Dtst_dataroot02.c43 char curdir[PATH_MAX], tmp[PATH_MAX]; local
45 if (getcwd(curdir, PATH_MAX) == NULL)
51 snprintf(tmp, PATH_MAX, "%s/datafiles", curdir);
H A Dtst_dataroot03.c43 char curdir[PATH_MAX], tmp[PATH_MAX]; local
45 if (getcwd(curdir, PATH_MAX) == NULL)
51 snprintf(tmp, PATH_MAX, "%s/datafiles", curdir);
/external/v8/
H A D.ycm_extra_conf.py66 curdir = os.path.normpath(os.path.dirname(filename))
67 while not (PathExists(curdir, 'v8') and PathExists(curdir, 'v8', 'DEPS')
68 and (PathExists(curdir, '.gclient')
69 or PathExists(curdir, 'v8', '.git'))):
70 nextdir = os.path.normpath(os.path.join(curdir, '..'))
71 if nextdir == curdir:
73 curdir = nextdir
74 return os.path.join(curdir, 'v8')
/external/ltp/testcases/kernel/mem/hugetlb/lib/
H A Dhugetlb.c56 char *curdir = NULL; local
61 curdir = getcwd(curdir, size);
62 if (curdir == NULL)
63 tst_brkm(TBROK | TERRNO, cleanup_fn, "getcwd(curdir)");
80 ipc_key = ftok(curdir, ascii_a + random() % 26);
/external/python/cpython2/Tools/scripts/
H A Dlll.py12 if name not in (os.curdir, os.pardir):
18 if not args: args = [os.curdir]
/external/python/cpython2/Lib/distutils/tests/
H A D__init__.py21 here = os.path.dirname(__file__) or os.curdir
H A Dtest_build_ext.py340 curdir = os.getcwd()
341 wanted = os.path.join(curdir, 'src', 'lxml', 'etree' + ext)
347 cmd.build_lib = os.path.join(curdir, 'tmpdir')
348 wanted = os.path.join(curdir, 'tmpdir', 'lxml', 'etree' + ext)
357 wanted = os.path.join(curdir, 'tmpdir', 'twisted', 'runner',
364 wanted = os.path.join(curdir, 'twisted', 'runner', 'portmap' + ext)
376 curdir = os.getcwd()
378 wanted = os.path.join(curdir, 'src', 'lxml', 'etree' + ext)
401 curdir = os.getcwd()
403 wanted = os.path.join(curdir, 'sr
[all...]
/external/ltp/testcases/kernel/fs/fs_readonly/
H A Dtest_robind.sh145 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/*
/external/ltp/lib/
H A Dtst_resource.c44 char curdir[PATH_MAX]; local
57 if (getcwd(curdir, PATH_MAX) == NULL) {
62 startdir = curdir;
/external/flatbuffers/android/jni/
H A Drun_flatc.py23 FLATC_SEARCH_PATHS = [os.path.curdir, 'Release', 'Debug']
/external/ltp/testcases/kernel/syscalls/ipc/lib/
H A Dlibipc.c53 char *curdir = NULL; local
59 if (NULL == (curdir = getcwd(curdir, size))) {
73 if ((ipc_key = ftok(curdir, proj_id)) == -1) {
/external/python/cpython2/Lib/
H A Duser.py29 home = os.curdir # Default
H A Dglob.py49 for name in glob1(os.curdir, basename):
73 dirname = os.curdir
H A Dcompileall.py53 name != os.curdir and name != os.pardir and \
125 if (not dir or dir == os.curdir) and skip_curdir:
/external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/
H A Dgen_archrast.py171 curdir = os.path.dirname(os.path.abspath(__file__))
172 template_file = os.sep.join([curdir, 'templates', 'ar_event_h.template'])
181 curdir = os.path.dirname(os.path.abspath(__file__))
182 template_file = os.sep.join([curdir, 'templates', 'ar_event_cpp.template'])
191 curdir = os.path.dirname(os.path.abspath(__file__))
192 template_file = os.sep.join([curdir, 'templates', 'ar_eventhandler_h.template'])
202 curdir = os.path.dirname(os.path.abspath(__file__))
203 template_file = os.sep.join([curdir, 'templates', 'ar_eventhandlerfile_h.template'])
/external/skia/tools/
H A Dmerge_static_libs.py27 curdir = os.getcwd()
49 os.chdir(curdir)
/external/autotest/site_utils/lib/
H A Dinfra.py27 curdir = os.getcwd()
33 os.chdir(curdir)
/external/guice/util/
H A DcompareBuilds.sh43 curdir=`pwd`
85 cd "$curdir"
/external/python/cpython2/Lib/test/
H A Dtest_aepack.py66 o = Carbon.File.FSSpec(os.curdir)
78 o = Carbon.File.FSSpec(os.curdir).NewAliasMinimal()
/external/chromium-trace/catapult/common/node_runner/node_runner/
H A Dnode_util.py35 old_dir = os.path.abspath(os.curdir)
/external/clang/utils/analyzer/
H A DSATestAdd.py61 CurDir = os.path.abspath(os.curdir)
/external/python/cpython2/Demo/comparisons/
H A Dsystemtest.py49 if name == os.curdir or name == os.pardir:
/external/python/cpython2/Mac/scripts/
H A Dbgenall.py33 sys.path.insert(0, os.curdir)
/external/antlr/antlr-3.4/runtime/Python/
H A Dez_setup.py60 version=DEFAULT_VERSION, download_base=DEFAULT_URL, to_dir=os.curdir,
101 version=DEFAULT_VERSION, download_base=DEFAULT_URL, to_dir=os.curdir,
/external/python/cpython2/Demo/threads/
H A Dfind.py109 args = [os.curdir]
139 if name not in (os.curdir, os.pardir):

Completed in 1132 milliseconds

12345