HomeSort by relevance Sort by last modified time
    Searched defs:dirname (Results 1 - 25 of 89) 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/fio/os/windows/posix/include/
dirent.h 15 char dirname[MAX_PATH]; member in struct:dirent_ctx
20 DIR *opendir(const char *dirname);
  /external/skia/tests/
OSPathTest.cpp 13 * Test SkOSPath::Join, SkOSPath::Basename, and SkOSPath::Dirname.
41 SkString dirname = SkOSPath::Dirname(fullName.c_str()); local
46 // dirname should be the same as dir with any trailing seperators removed.
52 if (!dirname.equals(strippedDir)) {
53 SkDebugf("OOUCH %s %s %s\n", dir.c_str(), strippedDir.c_str(), dirname.c_str());
55 REPORTER_ASSERT(reporter, dirname.equals(strippedDir));
  /system/core/init/
ueventd.h 33 const char *dirname; member in struct:ueventd_subsystem
  /bionic/libc/bionic/
libgen.cpp 159 char* dirname(const char* path) { function
  /bionic/tests/
TemporaryFile.h 75 rmdir(dirname);
78 char dirname[1024]; member in class:TemporaryDir
82 snprintf(dirname, sizeof(dirname), "%s/TemporaryDir-XXXXXX", tmp_dir);
83 return (mkdtemp(dirname) != NULL);
  /external/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
  /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")):
  /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...]
gettextP.h 142 char *dirname; member in struct:binding
  /external/lldb/source/Host/common/
Symbols.cpp 77 std::string dirname = dirspec.GetPath(); local
79 files.push_back (dirname + "/" + symbol_filename);
80 files.push_back (dirname + "/.debug/" + symbol_filename);
81 files.push_back (dirname + "/.build-id/" + uuid_str);
82 files.push_back (dirname + module_filename);
  /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)):
  /bionic/benchmarks/
property_benchmark.cpp 49 char* dirname = mkdtemp(dir_template); local
50 if (!dirname) {
59 pa_dirname = dirname;
  /hardware/invensense/6515/libsensors_iio/
SensorBase.cpp 153 const char *dirname = "/dev/input"; local
158 dir = opendir(dirname);
161 strcpy(devname, dirname);
  /hardware/invensense/65xx/libsensors_iio/
SensorBase.cpp 149 const char *dirname = "/dev/input"; local
154 dir = opendir(dirname);
157 strcpy(devname, dirname);
  /libnativehelper/tests/
JniInvocation_test.cpp 47 char* dirname = mkdtemp(dir_template); local
48 if (!dirname) {
57 pa_dirname = dirname;
  /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))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
os2emxpath.py 15 "basename","dirname","commonprefix","getsize","getmtime",
93 # Return the head (dirname) part of a path.
95 def dirname(p): function
  /prebuilts/python/linux-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))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
os2emxpath.py 15 "basename","dirname","commonprefix","getsize","getmtime",
93 # Return the head (dirname) part of a path.
95 def dirname(p): function
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/preferences/
NdkPreferencePage.java 61 String dirname = getTextControl().getText().trim(); local
62 if (!dirname.isEmpty() && !NdkManager.isValidNdkLocation(dirname)) {
  /external/elfutils/src/libdwfl/
linux-pid-attach.c 335 char dirname[64]; local
336 int i = snprintf (dirname, sizeof (dirname), "/proc/%ld/task", (long) pid);
337 assert (i > 0 && i < (ssize_t) sizeof (dirname) - 1);
338 DIR *dir = opendir (dirname);

Completed in 910 milliseconds

1 2 3 4