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

1 2 3 4 5 6 7 8 91011>>

  /development/host/
Android.mk 16 LOCAL_PATH := $(my-dir)
18 dir := $(wildcard $(LOCAL_PATH)/$(HOST_PREBUILT_TAG)) macro
19 ifdef dir
20 include $(call first-makefiles-under,$(dir))
  /external/compiler-rt/lib/msan/lit_tests/
readdir64.cc 19 DIR *dir = opendir("."); local
20 struct dirent *d = readdir(dir);
22 closedir(dir);
25 closedir(dir);
  /external/chromium_org/chrome/test/ui/
ui_perf_test.cc 40 base::FilePath dir; local
41 PathService::Get(chrome::DIR_TEST_TOOLS, &dir);
42 dir = dir.AppendASCII("reference_build");
44 dir = dir.AppendASCII("chrome_win");
46 dir = dir.AppendASCII("chrome_linux");
48 dir = dir.AppendASCII("chrome_mac")
    [all...]
  /external/bison/lib/
dirname-lgpl.c 78 char *dir = malloc (length + append_dot + 1); local
79 if (!dir)
81 memcpy (dir, file, length);
83 dir[length++] = '.';
84 dir[length] = '\0';
85 return dir;
  /external/chromium/chrome/browser/chromeos/notifications/
system_notification_factory.cc 34 WebTextDirection dir = WebKit::WebTextDirectionDefault; local
41 subst.push_back(dir == WebKit::WebTextDirectionRightToLeft ?
44 subst.push_back(dir == WebKit::WebTextDirectionRightToLeft ?
  /external/chromium/net/test/
python_utils_unittest.cc 48 FilePath dir; local
49 EXPECT_TRUE(GetPythonRunTime(&dir));
53 CommandLine cmd_line(dir);
  /external/e2fsprogs/lib/e2p/
iod.c 30 DIR * dir; local
55 dir = opendir (dir_name);
56 if (dir == NULL) {
60 while ((dep = readdir (dir))) {
73 closedir(dir);
  /external/e2fsprogs/lib/ext2fs/
newdir.c 31 struct ext2_dir_entry *dir = NULL; local
43 dir = (struct ext2_dir_entry *) buf;
45 retval = ext2fs_set_rec_len(fs, fs->blocksize, dir);
56 dir->inode = dir_ino;
57 dir->name_len = 1 | filetype;
58 dir->name[0] = '.';
60 dir->rec_len = EXT2_DIR_REC_LEN(1);
65 dir = (struct ext2_dir_entry *) (buf + dir->rec_len);
66 retval = ext2fs_set_rec_len(fs, rec_len, dir);
    [all...]
  /external/tcpdump/
gmt2local.c 48 register int dt, dir; local
65 dir = loc->tm_year - gmt->tm_year;
66 if (dir == 0)
67 dir = loc->tm_yday - gmt->tm_yday;
68 dt += dir * 24 * 60 * 60;
  /ndk/build/core/
build-local.mk 23 NDK_ROOT := $(dir $(lastword $(MAKEFILE_LIST)))
58 # On Windows, defining host-dir-parent is a bit more tricky because the
59 # GNU Make $(dir ...) function doesn't return an empty string when it
63 # $(dir C:) -> C: (empty expected)
64 # $(dir C:/) -> C:/ (empty expected)
65 # $(dir C:\) -> C:\ (empty expected)
66 # $(dir C:/foo) -> C:/ (correct)
67 # $(dir C:\foo) -> C:\ (correct)
69 host-dir-parent = $(strip \
71 $(eval __host_dir_parent := $(dir $(__host_dir_node)))
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/lib/
dirname.c 78 char *dir = xmalloc (length + append_dot + 1); local
79 memcpy (dir, file, length);
81 dir[length++] = '.';
82 dir[length] = '\0';
83 return dir;
  /packages/apps/Launcher3/
update_gallery_files.py 49 dir = os.path.dirname(file_path) variable
52 cmd = 'cp %s/%s %s/' % (gallery_dir, file_path, dir)
  /cts/apps/CtsVerifier/
Android.mk 17 LOCAL_PATH:= $(call my-dir)
54 cts-dir := $(HOST_OUT)/cts-verifier
55 verifier-dir-name := android-cts-verifier
56 verifier-dir := $(cts-dir)/$(verifier-dir-name)
57 verifier-zip-name := $(verifier-dir-name).zip
58 verifier-zip := $(cts-dir)/$(verifier-zip-name)
64 $(verifier-zip) : $(call intermediates-dir-for,APPS,CtsVerifier)/package.apk | $(ACP)
65 $(hide) mkdir -p $(verifier-dir)
    [all...]
  /external/droiddriver/src/com/google/android/droiddriver/util/
FileUtils.java 48 * instead of "user.dir".
61 private static void mkdirs(File dir) {
62 if (dir == null || dir.exists()) {
66 mkdirs(dir.getParentFile());
67 if (!dir.mkdir()) {
68 throw new DroidDriverException("failed to mkdir " + dir);
70 dir.setReadable(true /* readable */, false/* ownerOnly */);
71 dir.setExecutable(true /* executable */, false/* ownerOnly */);
  /external/chromium/base/memory/
scoped_temp_dir_unittest.cc 15 // Against an existing dir, it should get destroyed when leaving scope.
18 ScopedTempDir dir; local
19 EXPECT_TRUE(dir.Set(test_path));
20 EXPECT_TRUE(dir.IsValid());
25 ScopedTempDir dir; local
26 EXPECT_TRUE(dir.Set(test_path));
27 // Now the dir doesn't exist, so ensure that it gets created.
30 FilePath path = dir.Take();
32 EXPECT_FALSE(dir.IsValid());
38 ScopedTempDir dir; local
49 ScopedTempDir dir; local
68 ScopedTempDir dir; local
79 ScopedTempDir dir; local
94 ScopedTempDir dir; local
    [all...]
  /external/chromium/chrome/browser/
user_style_sheet_watcher_unittest.cc 18 ScopedTempDir dir; local
19 ASSERT_TRUE(dir.CreateUniqueTempDir());
22 FilePath style_sheet_file = dir.path().AppendASCII("User StyleSheets")
40 new UserStyleSheetWatcher(dir.path()));
  /external/chromium_org/chrome/browser/
user_style_sheet_watcher_unittest.cc 21 base::ScopedTempDir dir; local
22 ASSERT_TRUE(dir.CreateUniqueTempDir());
25 base::FilePath style_sheet_file = dir.path().AppendASCII("User StyleSheets")
43 new UserStyleSheetWatcher(NULL, dir.path()));
  /external/chromium_org/content/browser/download/
save_package_browsertest.cc 25 base::FilePath* dir) {
27 *dir = save_dir_.path().AppendASCII(prefix + "_files");
40 base::FilePath full_file_name, dir; local
41 GetDestinationPaths("a", &full_file_name, &dir);
44 dir));
54 base::FilePath full_file_name, dir; local
55 GetDestinationPaths("a", &full_file_name, &dir);
58 dir));
  /external/chromium_org/third_party/libjingle/source/talk/base/
linuxfdwalk.c 56 DIR *dir = opendir("/proc/self/fd"); local
57 if (!dir) {
60 int opendirfd = dirfd(dir);
64 while (errno = 0, (ent = readdir(dir)) != NULL) {
82 if (closedir(dir) < 0) {
  /external/chromium_org/third_party/openssl/openssl/apps/
version.c 143 int cflags=0,version=0,date=0,options=0,platform=0,dir=0; local
165 dir=1;
167 date=version=cflags=options=platform=dir=1;
213 if (dir) printf("%s\n",SSLeay_version(SSLEAY_DIR));
  /external/chromium_org/third_party/openssl/openssl/crypto/
LPdir_unix.c 61 DIR *dir; member in struct:LP_dir_context_st
86 (*ctx)->dir = opendir(directory);
87 if ((*ctx)->dir == NULL)
97 direntry = readdir((*ctx)->dir);
112 int ret = closedir((*ctx)->dir);
  /external/chromium_org/webkit/browser/fileapi/
sandbox_isolated_origin_database_unittest.cc 15 base::ScopedTempDir dir; local
16 ASSERT_TRUE(dir.CreateUniqueTempDir());
19 SandboxIsolatedOriginDatabase database(kOrigin, dir.path());
37 base::ScopedTempDir dir; local
38 ASSERT_TRUE(dir.CreateUniqueTempDir());
48 SandboxOriginDatabase database_old(dir.path());
56 base::FilePath directory_db_path = dir.path().Append(path);
65 SandboxIsolatedOriginDatabase database(kOrigin, dir.path());
76 base::FilePath directory_db_path = dir.path().Append(path);
  /external/openssl/apps/
version.c 143 int cflags=0,version=0,date=0,options=0,platform=0,dir=0; local
165 dir=1;
167 date=version=cflags=options=platform=dir=1;
213 if (dir) printf("%s\n",SSLeay_version(SSLEAY_DIR));
  /external/openssl/crypto/
LPdir_unix.c 61 DIR *dir; member in struct:LP_dir_context_st
86 (*ctx)->dir = opendir(directory);
87 if ((*ctx)->dir == NULL)
97 direntry = readdir((*ctx)->dir);
112 int ret = closedir((*ctx)->dir);
  /external/oprofile/daemon/
opd_stats.c 40 DIR * dir; local
66 if (!(dir = opendir("/dev/oprofile/stats/")))
68 while ((dirent = readdir(dir))) {
87 closedir(dir);

Completed in 1742 milliseconds

1 2 3 4 5 6 7 8 91011>>