Searched refs:DIR (Results 1 - 25 of 512) sorted by relevance

1234567891011>>

/external/vulkan-validation-layers/loader/
H A Ddirent_on_windows.h18 typedef struct DIR DIR; typedef in typeref:struct:DIR
24 DIR *opendir(const char *);
25 int closedir(DIR *);
26 struct dirent *readdir(DIR *);
27 void rewinddir(DIR *);
/external/fio/os/windows/posix/include/
H A Ddirent.h18 typedef struct dirent_ctx DIR; typedef in typeref:struct:dirent_ctx
20 DIR *opendir(const char *dirname);
21 struct dirent *readdir(DIR *dirp);
22 int closedir(DIR *dirp);
/external/autotest/contrib/
H A Dshow_offload_failures14 DIR=$1
15 if [ ! -d $AUTOTEST/$DIR ]; then
16 echo "$DIR is not a directory in $AUTOTEST" >&2
30 gsutil ls -R "$GSURI/$DIR/*" | sed "s=^$GSURI/==p"
31 find $DIR -type f
/external/mockftpserver/tags/2.x_Before_IDEA/src/test/groovy/org/mockftpserver/fake/command/
H A DRmdCommandHandlerTest.groovy37 def DIR = "/usr"
40 assert fileSystem.createDirectory(DIR)
41 commandHandler.handleCommand(createCommand([DIR]), session)
43 assert fileSystem.exists(DIR) == false
48 assert fileSystem.createDirectory(p(DIR,SUB))
49 session.setAttribute(SessionKeys.CURRENT_DIRECTORY, DIR)
52 assert fileSystem.exists(p(DIR,SUB)) == false
56 commandHandler.handleCommand(createCommand([DIR]), session)
57 assertSessionReply(ReplyCodes.EXISTING_FILE_ERROR, DIR)
61 assert fileSystem.createFile(DIR)
[all...]
/external/llvm/utils/
H A Dfindsym.pl17 opendir DIR,$Directory;
18 my @files = readdir DIR;
19 closedir DIR;
/external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
H A DCwdCommandHandlerTest.groovy34 def DIR = "/usr"
37 createDirectory(DIR)
38 handleCommand([DIR])
39 assertSessionReply(ReplyCodes.CWD_OK, ['cwd', DIR])
40 assert session.getAttribute(SessionKeys.CURRENT_DIRECTORY) == DIR
45 createDirectory(p(DIR, SUB))
46 session.setAttribute(SessionKeys.CURRENT_DIRECTORY, DIR)
49 assert session.getAttribute(SessionKeys.CURRENT_DIRECTORY) == p(DIR, SUB)
53 handleCommand([DIR])
54 assertSessionReply(ReplyCodes.READ_FILE_ERROR, ['filesystem.doesNotExist', DIR])
[all...]
H A DRmdCommandHandlerTest.groovy36 static final DIR = p(PARENT, "usr")
39 createDirectory(DIR)
40 handleCommand([DIR])
41 assertSessionReply(ReplyCodes.RMD_OK, ['rmd', DIR])
42 assert fileSystem.exists(DIR) == false
47 createDirectory(p(DIR, SUB))
48 session.setAttribute(SessionKeys.CURRENT_DIRECTORY, DIR)
51 assert fileSystem.exists(p(DIR, SUB)) == false
55 handleCommand([DIR])
56 assertSessionReply(ReplyCodes.READ_FILE_ERROR, ['filesystem.doesNotExist', DIR])
[all...]
/external/mockftpserver/tags/2.0/src/test/groovy/org/mockftpserver/fake/command/
H A DCwdCommandHandlerTest.groovy34 def DIR = "/usr"
37 createDirectory(DIR)
38 handleCommand([DIR])
39 assertSessionReply(ReplyCodes.CWD_OK, ['cwd', DIR])
40 assert session.getAttribute(SessionKeys.CURRENT_DIRECTORY) == DIR
45 createDirectory(p(DIR, SUB))
46 session.setAttribute(SessionKeys.CURRENT_DIRECTORY, DIR)
49 assert session.getAttribute(SessionKeys.CURRENT_DIRECTORY) == p(DIR, SUB)
53 handleCommand([DIR])
54 assertSessionReply(ReplyCodes.READ_FILE_ERROR, ['filesystem.doesNotExist', DIR])
[all...]
H A DRmdCommandHandlerTest.groovy36 static final DIR = p(PARENT, "usr")
39 createDirectory(DIR)
40 handleCommand([DIR])
41 assertSessionReply(ReplyCodes.RMD_OK, ['rmd', DIR])
42 assert fileSystem.exists(DIR) == false
47 createDirectory(p(DIR, SUB))
48 session.setAttribute(SessionKeys.CURRENT_DIRECTORY, DIR)
51 assert fileSystem.exists(p(DIR, SUB)) == false
55 handleCommand([DIR])
56 assertSessionReply(ReplyCodes.READ_FILE_ERROR, ['filesystem.doesNotExist', DIR])
[all...]
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
H A DCwdCommandHandlerTest.groovy34 def DIR = "/usr"
37 createDirectory(DIR)
38 handleCommand([DIR])
39 assertSessionReply(ReplyCodes.CWD_OK, ['cwd', DIR])
40 assert session.getAttribute(SessionKeys.CURRENT_DIRECTORY) == DIR
45 createDirectory(p(DIR, SUB))
46 session.setAttribute(SessionKeys.CURRENT_DIRECTORY, DIR)
49 assert session.getAttribute(SessionKeys.CURRENT_DIRECTORY) == p(DIR, SUB)
53 handleCommand([DIR])
54 assertSessionReply(ReplyCodes.READ_FILE_ERROR, ['filesystem.doesNotExist', DIR])
[all...]
H A DRmdCommandHandlerTest.groovy36 static final DIR = p(PARENT, "usr")
39 createDirectory(DIR)
40 handleCommand([DIR])
41 assertSessionReply(ReplyCodes.RMD_OK, ['rmd', DIR])
42 assert fileSystem.exists(DIR) == false
47 createDirectory(p(DIR, SUB))
48 session.setAttribute(SessionKeys.CURRENT_DIRECTORY, DIR)
51 assert fileSystem.exists(p(DIR, SUB)) == false
55 handleCommand([DIR])
56 assertSessionReply(ReplyCodes.READ_FILE_ERROR, ['filesystem.doesNotExist', DIR])
[all...]
/external/mockftpserver/tags/2.0-rc1/src/test/groovy/org/mockftpserver/fake/command/
H A DCwdCommandHandlerTest.groovy34 def DIR = "/usr"
37 createDirectory(DIR)
38 handleCommand([DIR])
39 assertSessionReply(ReplyCodes.CWD_OK, ['cwd', DIR])
40 assert session.getAttribute(SessionKeys.CURRENT_DIRECTORY) == DIR
45 createDirectory(p(DIR, SUB))
46 session.setAttribute(SessionKeys.CURRENT_DIRECTORY, DIR)
49 assert session.getAttribute(SessionKeys.CURRENT_DIRECTORY) == p(DIR, SUB)
53 handleCommand([DIR])
54 assertSessionReply(ReplyCodes.READ_FILE_ERROR, ['filesystem.doesNotExist', DIR])
[all...]
H A DRmdCommandHandlerTest.groovy36 static final DIR = p(PARENT, "usr")
39 createDirectory(DIR)
40 handleCommand([DIR])
41 assertSessionReply(ReplyCodes.RMD_OK, ['rmd', DIR])
42 assert fileSystem.exists(DIR) == false
47 createDirectory(p(DIR, SUB))
48 session.setAttribute(SessionKeys.CURRENT_DIRECTORY, DIR)
51 assert fileSystem.exists(p(DIR, SUB)) == false
55 handleCommand([DIR])
56 assertSessionReply(ReplyCodes.READ_FILE_ERROR, ['filesystem.doesNotExist', DIR])
[all...]
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
H A DCwdCommandHandlerTest.groovy34 def DIR = "/usr"
37 createDirectory(DIR)
38 handleCommand([DIR])
39 assertSessionReply(ReplyCodes.CWD_OK, ['cwd', DIR])
40 assert session.getAttribute(SessionKeys.CURRENT_DIRECTORY) == DIR
45 createDirectory(p(DIR, SUB))
46 session.setAttribute(SessionKeys.CURRENT_DIRECTORY, DIR)
49 assert session.getAttribute(SessionKeys.CURRENT_DIRECTORY) == p(DIR, SUB)
53 handleCommand([DIR])
54 assertSessionReply(ReplyCodes.READ_FILE_ERROR, ['filesystem.doesNotExist', DIR])
[all...]
H A DRmdCommandHandlerTest.groovy36 static final DIR = p(PARENT, "usr")
39 createDirectory(DIR)
40 handleCommand([DIR])
41 assertSessionReply(ReplyCodes.RMD_OK, ['rmd', DIR])
42 assert fileSystem.exists(DIR) == false
47 createDirectory(p(DIR, SUB))
48 session.setAttribute(SessionKeys.CURRENT_DIRECTORY, DIR)
51 assert fileSystem.exists(p(DIR, SUB)) == false
55 handleCommand([DIR])
56 assertSessionReply(ReplyCodes.READ_FILE_ERROR, ['filesystem.doesNotExist', DIR])
[all...]
/external/mockftpserver/tags/2.0.1/src/test/groovy/org/mockftpserver/fake/command/
H A DCwdCommandHandlerTest.groovy34 def DIR = "/usr"
37 createDirectory(DIR)
38 handleCommand([DIR])
39 assertSessionReply(ReplyCodes.CWD_OK, ['cwd', DIR])
40 assert session.getAttribute(SessionKeys.CURRENT_DIRECTORY) == DIR
45 createDirectory(p(DIR, SUB))
46 session.setAttribute(SessionKeys.CURRENT_DIRECTORY, DIR)
49 assert session.getAttribute(SessionKeys.CURRENT_DIRECTORY) == p(DIR, SUB)
53 handleCommand([DIR])
54 assertSessionReply(ReplyCodes.READ_FILE_ERROR, ['filesystem.doesNotExist', DIR])
[all...]
H A DRmdCommandHandlerTest.groovy36 static final DIR = p(PARENT, "usr")
39 createDirectory(DIR)
40 handleCommand([DIR])
41 assertSessionReply(ReplyCodes.RMD_OK, ['rmd', DIR])
42 assert fileSystem.exists(DIR) == false
47 createDirectory(p(DIR, SUB))
48 session.setAttribute(SessionKeys.CURRENT_DIRECTORY, DIR)
51 assert fileSystem.exists(p(DIR, SUB)) == false
55 handleCommand([DIR])
56 assertSessionReply(ReplyCodes.READ_FILE_ERROR, ['filesystem.doesNotExist', DIR])
[all...]
/external/mockftpserver/tags/2.0.2/src/test/groovy/org/mockftpserver/fake/command/
H A DCwdCommandHandlerTest.groovy34 def DIR = "/usr"
37 createDirectory(DIR)
38 handleCommand([DIR])
39 assertSessionReply(ReplyCodes.CWD_OK, ['cwd', DIR])
40 assert session.getAttribute(SessionKeys.CURRENT_DIRECTORY) == DIR
45 createDirectory(p(DIR, SUB))
46 session.setAttribute(SessionKeys.CURRENT_DIRECTORY, DIR)
49 assert session.getAttribute(SessionKeys.CURRENT_DIRECTORY) == p(DIR, SUB)
53 handleCommand([DIR])
54 assertSessionReply(ReplyCodes.READ_FILE_ERROR, ['filesystem.doesNotExist', DIR])
[all...]
H A DRmdCommandHandlerTest.groovy36 static final DIR = p(PARENT, "usr")
39 createDirectory(DIR)
40 handleCommand([DIR])
41 assertSessionReply(ReplyCodes.RMD_OK, ['rmd', DIR])
42 assert fileSystem.exists(DIR) == false
47 createDirectory(p(DIR, SUB))
48 session.setAttribute(SessionKeys.CURRENT_DIRECTORY, DIR)
51 assert fileSystem.exists(p(DIR, SUB)) == false
55 handleCommand([DIR])
56 assertSessionReply(ReplyCodes.READ_FILE_ERROR, ['filesystem.doesNotExist', DIR])
[all...]
/external/mockftpserver/tags/2.1/src/test/groovy/org/mockftpserver/fake/command/
H A DCwdCommandHandlerTest.groovy34 def DIR = "/usr"
37 createDirectory(DIR)
38 handleCommand([DIR])
39 assertSessionReply(ReplyCodes.CWD_OK, ['cwd', DIR])
40 assert session.getAttribute(SessionKeys.CURRENT_DIRECTORY) == DIR
45 createDirectory(p(DIR, SUB))
46 session.setAttribute(SessionKeys.CURRENT_DIRECTORY, DIR)
49 assert session.getAttribute(SessionKeys.CURRENT_DIRECTORY) == p(DIR, SUB)
53 handleCommand([DIR])
54 assertSessionReply(ReplyCodes.READ_FILE_ERROR, ['filesystem.doesNotExist', DIR])
[all...]
H A DRmdCommandHandlerTest.groovy36 static final DIR = p(PARENT, "usr")
39 createDirectory(DIR)
40 handleCommand([DIR])
41 assertSessionReply(ReplyCodes.RMD_OK, ['rmd', DIR])
42 assert fileSystem.exists(DIR) == false
47 createDirectory(p(DIR, SUB))
48 session.setAttribute(SessionKeys.CURRENT_DIRECTORY, DIR)
51 assert fileSystem.exists(p(DIR, SUB)) == false
55 handleCommand([DIR])
56 assertSessionReply(ReplyCodes.READ_FILE_ERROR, ['filesystem.doesNotExist', DIR])
[all...]
/external/mockftpserver/tags/2.2/src/test/groovy/org/mockftpserver/fake/command/
H A DCwdCommandHandlerTest.groovy34 def DIR = "/usr"
37 createDirectory(DIR)
38 handleCommand([DIR])
39 assertSessionReply(ReplyCodes.CWD_OK, ['cwd', DIR])
40 assert session.getAttribute(SessionKeys.CURRENT_DIRECTORY) == DIR
45 createDirectory(p(DIR, SUB))
46 session.setAttribute(SessionKeys.CURRENT_DIRECTORY, DIR)
49 assert session.getAttribute(SessionKeys.CURRENT_DIRECTORY) == p(DIR, SUB)
53 handleCommand([DIR])
54 assertSessionReply(ReplyCodes.READ_FILE_ERROR, ['filesystem.doesNotExist', DIR])
[all...]
/external/mockftpserver/tags/2.3/src/test/groovy/org/mockftpserver/fake/command/
H A DCwdCommandHandlerTest.groovy34 def DIR = "/usr"
37 createDirectory(DIR)
38 handleCommand([DIR])
39 assertSessionReply(ReplyCodes.CWD_OK, ['cwd', DIR])
40 assert session.getAttribute(SessionKeys.CURRENT_DIRECTORY) == DIR
45 createDirectory(p(DIR, SUB))
46 session.setAttribute(SessionKeys.CURRENT_DIRECTORY, DIR)
49 assert session.getAttribute(SessionKeys.CURRENT_DIRECTORY) == p(DIR, SUB)
53 handleCommand([DIR])
54 assertSessionReply(ReplyCodes.READ_FILE_ERROR, ['filesystem.doesNotExist', DIR])
[all...]
/external/mockftpserver/tags/2.4/src/test/groovy/org/mockftpserver/fake/command/
H A DCwdCommandHandlerTest.groovy34 def DIR = "/usr"
37 createDirectory(DIR)
38 handleCommand([DIR])
39 assertSessionReply(ReplyCodes.CWD_OK, ['cwd', DIR])
40 assert session.getAttribute(SessionKeys.CURRENT_DIRECTORY) == DIR
45 createDirectory(p(DIR, SUB))
46 session.setAttribute(SessionKeys.CURRENT_DIRECTORY, DIR)
49 assert session.getAttribute(SessionKeys.CURRENT_DIRECTORY) == p(DIR, SUB)
53 handleCommand([DIR])
54 assertSessionReply(ReplyCodes.READ_FILE_ERROR, ['filesystem.doesNotExist', DIR])
[all...]
/external/mockftpserver/tags/2.5/src/test/groovy/org/mockftpserver/fake/command/
H A DCwdCommandHandlerTest.groovy34 def DIR = "/usr"
37 createDirectory(DIR)
38 handleCommand([DIR])
39 assertSessionReply(ReplyCodes.CWD_OK, ['cwd', DIR])
40 assert session.getAttribute(SessionKeys.CURRENT_DIRECTORY) == DIR
45 createDirectory(p(DIR, SUB))
46 session.setAttribute(SessionKeys.CURRENT_DIRECTORY, DIR)
49 assert session.getAttribute(SessionKeys.CURRENT_DIRECTORY) == p(DIR, SUB)
53 handleCommand([DIR])
54 assertSessionReply(ReplyCodes.READ_FILE_ERROR, ['filesystem.doesNotExist', DIR])
[all...]

Completed in 2480 milliseconds

1234567891011>>