HomeSort by relevance Sort by last modified time
    Searched defs:dir (Results 76 - 100 of 902) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/webkit/browser/fileapi/
file_system_url.cc 53 const char* dir; member in struct:fileapi::__anon15375
66 if (inner_path == kValidTypes[i].dir) {
sandbox_origin_database_unittest.cc 33 base::ScopedTempDir dir; local
34 ASSERT_TRUE(dir.CreateUniqueTempDir());
35 const base::FilePath kFSDir = dir.path().Append(kFileSystemDirName);
63 base::ScopedTempDir dir; local
64 ASSERT_TRUE(dir.CreateUniqueTempDir());
65 const base::FilePath kFSDir = dir.path().Append(kFileSystemDirName);
91 base::ScopedTempDir dir; local
92 ASSERT_TRUE(dir.CreateUniqueTempDir());
93 const base::FilePath kFSDir = dir.path().Append(kFileSystemDirName);
119 base::ScopedTempDir dir; local
146 base::ScopedTempDir dir; local
195 base::ScopedTempDir dir; local
275 base::ScopedTempDir dir; local
    [all...]
  /external/clang/test/SemaCXX/
constexpr-turing.cpp 8 enum Dir { L, R };
11 Dir dir; member in struct:Action
21 constexpr Tape(const Tape &old, Dir dir) :
22 l(dir == L ? old.l ? old.l->l : 0 : &old),
23 val(dir == L ? old.l ? old.l->val : false
25 r(dir == R ? old.r ? old.r->r : 0 : &old) {}
31 constexpr Tape move(const Tape &old, Dir dir) { return Tape(old, dir);
    [all...]
  /external/clang/unittests/Basic/
FileManagerTest.cpp 77 const DirectoryEntry *dir = file->getDir(); local
78 ASSERT_TRUE(dir != NULL);
79 EXPECT_STREQ(".", dir->getName());
84 dir = file->getDir();
85 ASSERT_TRUE(dir != NULL);
86 EXPECT_STREQ("x/y", dir->getName());
97 EXPECT_EQ(NULL, manager.getDirectory("virtual/dir/foo"));
98 EXPECT_EQ(NULL, manager.getDirectory("virtual/dir"));
107 manager.getVirtualFile("virtual/dir/bar.h", 100, 0);
108 EXPECT_EQ(NULL, manager.getDirectory("virtual/dir/foo"))
110 const DirectoryEntry *dir = manager.getDirectory("virtual\/dir"); local
139 const DirectoryEntry *dir = file->getDir(); local
163 const DirectoryEntry *dir = file->getDir(); local
    [all...]
  /external/e2fsprogs/lib/ext2fs/
namei.c 27 static errcode_t follow_link(ext2_filsys fs, ext2_ino_t root, ext2_ino_t dir,
37 printf("follow_link: root=%lu, dir=%lu, inode=%lu, lc=%d\n",
38 root, dir, inode, link_count);
62 retval = open_namei(fs, root, dir, pathname, ei.i_size, 1,
75 static errcode_t dir_namei(ext2_filsys fs, ext2_ino_t root, ext2_ino_t dir,
88 dir = root;
101 retval = ext2fs_lookup (fs, dir, thisname, len, buf, &inode);
103 retval = follow_link (fs, root, dir, inode,
104 link_count, buf, &dir);
109 *res_inode = dir;
119 ext2_ino_t dir, inode; local
    [all...]
  /external/icu4c/layout/
ArabicLayoutEngine.cpp 185 le_int32 i, dir = 1, out = 0; local
189 dir = -1;
194 for (i = 0; i < count; i += 1, out += dir) {
  /external/qemu/android/utils/
dirscanner.c 94 DIR* dir; member in struct:DirScanner
101 s->dir = opendir(s->root);
103 if (s->dir == NULL)
113 if (s->dir) {
114 closedir(s->dir);
115 s->dir = NULL;
124 if (!s || s->dir == NULL)
130 s->entry = readdir(s->dir);
  /external/skia/dm/
DMWriteTask.cpp 34 void WriteTask::makeDirOrFail(SkString dir) {
35 if (!sk_mkdir(dir.c_str())) {
41 SkString dir(FLAGS_writePath[0]);
42 this->makeDirOrFail(dir);
44 dir = SkOSPath::SkPathJoin(dir.c_str(), fSuffixes[i].c_str());
45 this->makeDirOrFail(dir);
47 SkString path = SkOSPath::SkPathJoin(dir.c_str(), fGmName.c_str());
80 const SkString dir = SkOSPath::SkPathJoin(root, suffixes[0].c_str()); local
86 //SkDebugf("dir %s, filename %s\n", dir.c_str(), filename.c_str())
    [all...]
  /external/tcpdump/
print-sl.c 116 int dir; local
119 dir = p[SLX_DIR];
120 putchar(dir == SLIPDIR_IN ? 'I' : 'O');
147 lastlen[dir][lastconn] = length - (hlen << 2);
154 length, dir);
192 u_int length, int dir)
209 printf(" *SA+%d", lastlen[dir][lastconn]);
213 printf(" *S+%d", lastlen[dir][lastconn]);
237 lastlen[dir][lastconn] = length - (hlen << 2);
238 printf(" %d (%ld)", lastlen[dir][lastconn], (long)(cp - chdr))
    [all...]
  /frameworks/av/media/libstagefright/id3/
testid3.cpp 119 DIR *dir = opendir(path); local
121 if (dir == NULL) {
125 rewinddir(dir);
128 while ((ent = readdir(dir)) != NULL) {
150 closedir(dir);
151 dir = NULL;
  /frameworks/base/core/jni/
android_text_AndroidCharacter.cpp 76 int dir = u_charDirection(c); local
77 if (dir < 0 || dir >= U_CHAR_DIRECTION_COUNT)
78 dir = PROPERTY_UNDEFINED;
80 dir = directionality_map[dir];
82 dest[i++] = dir;
83 dest[i] = dir;
86 int dir = u_charDirection(c); local
87 if (dir < 0 || dir >= U_CHAR_DIRECTION_COUNT
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
sobeloperator.cpp 85 unsigned char* dir = dirPtr; local
  /hardware/invensense/60xx/libsensors/
SensorBase.cpp 96 DIR *dir; local
98 dir = opendir(dirname);
99 if(dir == NULL)
104 while((de = readdir(dir))) {
125 closedir(dir);
  /hardware/invensense/65xx/libsensors_iio/
SensorBase.cpp 102 DIR *dir; local
104 dir = opendir(dirname);
105 if(dir == NULL)
110 while((de = readdir(dir))) {
134 closedir(dir);
  /libcore/
NativeCode.mk 36 define include-core-native-dir
61 $(foreach dir, \
63 $(eval $(call include-core-native-dir,$(dir))))
  /libcore/crypto/src/main/java/org/conscrypt/
TrustedCertificateStore.java 189 File dir = file.getParentFile(); local
190 dir.mkdirs();
191 dir.setReadable(true, false);
192 dir.setExecutable(true, false);
237 private void addAliases(Set<String> result, String prefix, File dir) {
238 String[] files = dir.list();
306 private File getCertificateFile(File dir, final X509Certificate x) {
313 return findCert(dir, x.getSubjectX500Principal(), selector, File.class);
437 File dir, X500Principal subject, CertSelector selector, Class<T> desiredReturnType) {
441 File file = file(dir, hash, index)
    [all...]
  /ndk/sources/host-tools/make-3.81/
vmsdir.h 55 typedef struct DIR
57 struct direct dir; member in struct:DIR
64 } DIR;
70 extern DIR *opendir PARAMS (());
71 extern struct direct *readdir PARAMS ((DIR *dfd));
73 extern int closedir PARAMS ((DIR *dfd));
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/lint/
ProjectLintConfigurationTest.java 43 File dir = getTargetDir(); local
44 if (!dir.exists()) {
45 boolean ok = dir.mkdirs();
46 assertTrue(dir.getPath(), ok);
48 Project project = client.getProject(dir, dir);
75 File dir = getTargetDir(); local
76 assertTrue(dir.mkdirs());
77 Project project = client.getProject(dir, dir);
133 File dir = getTargetDir(); local
    [all...]
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
AbstractDirectory.java 316 final ClusterChainDirectory dir = local
323 dot.setStartCluster(dir.getStorageCluster());
325 dir.addEntry(dot);
333 dir.addEntry(dotDot);
335 dir.flush();
  /cts/tests/tests/os/src/android/os/cts/
FileAccessPermissionTest.java 50 * Test /system dir access.
86 public boolean accept(File dir, String filename) {
96 * Test dir which app can and cannot access.
99 // test /data/app dir.
107 // test app data dir.
108 File dir = getContext().getFilesDir(); local
109 assertTrue(dir.canRead());
110 assertTrue(dir.canWrite());
111 File newFile = new File(dir, System.currentTimeMillis() + "test.txt");
119 // test not app data dir
    [all...]
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/login/
ConfigurationTest.java 159 File dir = new File(tmpUserHome); local
160 if (!dir.exists()) {
161 dir.mkdirs();
162 dir.deleteOnExit();
  /bionic/libc/kernel/common/linux/netfilter_ipv4/
ip_conntrack_tuple.h 84 u_int8_t dir; member in struct:ip_conntrack_tuple::__anon470
  /bionic/libthread_db/
libthread_db.c 221 DIR * dir; local
226 dir = opendir(path);
227 if (!dir) {
232 while ((entry = readdir(dir)) != NULL) {
243 closedir(dir);
  /bootable/recovery/minzip/
DirUtil.c 186 DIR *dir; local
201 dir = opendir(path);
202 if (dir == NULL) {
208 while ((de = readdir(dir)) != NULL) {
224 closedir(dir);
230 if (closedir(dir) < 0) {
260 DIR *dir = opendir(path); local
261 if (dir == NULL)
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sample/
SampleTestActivity.java 79 File dir = getExternalCacheDir (); local
81 File file = new File(dir, FILE_NAME);

Completed in 332 milliseconds

1 2 34 5 6 7 8 91011>>