HomeSort by relevance Sort by last modified time
    Searched defs:dirname (Results 1 - 25 of 86) sorted by null

1 2 3 4

  /external/openssh/openbsd-compat/
dirname.c 1 /* $OpenBSD: dirname.c,v 1.13 2005/08/08 08:05:33 espie Exp $ */
19 /* OPENBSD ORIGINAL: lib/libc/gen/dirname.c */
29 dirname(const char *path) function
  /external/chromium_org/chrome/test/chromeos/autotest/files/client/deps/chrome_test/
common.py 6 dirname = os.path.dirname(sys.modules[__name__].__file__) variable
7 client_dir = os.path.abspath(os.path.join(dirname, "../../"))
  /external/chromium_org/chrome/test/chromeos/autotest/files/client/deps/page_cycler_dep/
common.py 6 dirname = os.path.dirname(sys.modules[__name__].__file__) variable
7 client_dir = os.path.abspath(os.path.join(dirname, "../../"))
  /external/chromium_org/chrome/test/chromeos/autotest/files/client/deps/perf_data_dep/
common.py 6 dirname = os.path.dirname(sys.modules[__name__].__file__) variable
7 client_dir = os.path.abspath(os.path.join(dirname, "../../"))
  /external/chromium_org/chrome/test/chromeos/autotest/files/client/deps/pyauto_dep/
common.py 6 dirname = os.path.dirname(sys.modules[__name__].__file__) variable
7 client_dir = os.path.abspath(os.path.join(dirname, "../../"))
  /external/chromium_org/chrome/test/chromeos/autotest/files/client/deps/telemetry_dep/
common.py 6 dirname = os.path.dirname(sys.modules[__name__].__file__) variable
7 client_dir = os.path.abspath(os.path.join(dirname, "../../"))
  /bionic/libc/bionic/
libgen.cpp 40 GLOBAL_INIT_THREAD_LOCAL_BUFFER(dirname); variable
48 char* dirname(const char* path) { function
49 LOCAL_INIT_THREAD_LOCAL_BUFFER(char*, dirname, MAXPATHLEN);
  /external/chromium_org/tools/gn/
generate_test_gn_data.cc 79 base::FilePath dirname = RepoPathToPathName(repo_path); local
80 base::FilePath filename = dirname.AppendASCII("BUILD.gn");
85 file_util::CreateDirectory(dirname);
  /external/chromium_org/v8/tools/
android-run.py 39 from os.path import join, dirname, abspath namespace
90 workspace = abspath(join(dirname(sys.argv[0]), '..'))
nacl-run.py 34 from os.path import join, dirname, abspath namespace
  /external/v8/tools/
test-wrapper-gypbuild.py 38 from os.path import join, dirname, abspath namespace
215 workspace = abspath(join(dirname(sys.argv[0]), '..'))
  /hardware/invensense/60xx/libsensors_iio/
SensorBase.cpp 91 const char *dirname = "/dev/input"; local
96 dir = opendir(dirname);
99 strcpy(devname, dirname);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_import.py 15 from os.path import dirname, join, exists, sep namespace
90 base_path = dirname(self.filename)
94 if not exists(join(dirname(base_path), "__init__.py")):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_import.py 15 from os.path import dirname, join, exists, sep namespace
90 base_path = dirname(self.filename)
94 if not exists(join(dirname(base_path), "__init__.py")):
  /bionic/tests/
property_benchmark.cpp 36 char *dirname = mkdtemp(dir_template); local
37 if (!dirname) {
45 pa_dirname = dirname;
  /external/e2fsprogs/intl/
bindtextdom.c 134 const char *dirname = *dirnamep; local
136 if (dirname == NULL)
138 *dirnamep = binding->dirname;
144 char *result = binding->dirname;
145 if (strcmp (dirname, result) != 0)
147 if (strcmp (dirname, INTUSE(_nl_default_dirname)) == 0)
152 result = strdup (dirname);
154 size_t len = strlen (dirname) + 1;
157 memcpy (result, dirname, len);
163 if (binding->dirname != INTUSE(_nl_default_dirname)
234 const char *dirname = *dirnamep; local
    [all...]
  /external/v8/test/cctest/
testcfg.py 30 from os.path import join, dirname, exists namespace
  /hardware/invensense/60xx/libsensors/
SensorBase.cpp 93 const char *dirname = "/dev/input"; local
98 dir = opendir(dirname);
101 strcpy(devname, dirname);
  /hardware/invensense/65xx/libsensors_iio/
SensorBase.cpp 99 const char *dirname = "/dev/input"; local
104 dir = opendir(dirname);
107 strcpy(devname, dirname);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
file_util.py 115 dir = os.path.dirname(dst)
172 from os.path import exists, isfile, isdir, basename, dirname namespace
191 if not isdir(dirname(dst)):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
file_util.py 115 dir = os.path.dirname(dst)
172 from os.path import exists, isfile, isdir, basename, dirname namespace
191 if not isdir(dirname(dst)):
  /external/chromium_org/native_client_sdk/src/build_tools/
make_simple.py 234 dirname = target_info.get('product_dir', '$(BUILDDIR)/$(BUILDTYPE)') variable
235 params['product'] = os.path.join(dirname, params['product'])
  /external/chromium_org/webkit/browser/fileapi/
dump_file_system.cc 89 const std::string dirname = paths.top().second; local
99 dirname + "/" + FilePathToString(base::FilePath(info.name));
  /external/v8/test/message/
testcfg.py 30 from os.path import join, dirname, exists, basename, isdir namespace
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/test/
test_email_torture.py 23 from os.path import join, dirname, abspath namespace
24 path = abspath(join(dirname(testfile), os.pardir, 'moredata', filename))

Completed in 863 milliseconds

1 2 3 4