/external/vulkan-validation-layers/loader/ |
H A D | dirent_on_windows.h | 18 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/ltp/testcases/kernel/fs/racer/ |
H A D | fs_racer.sh | 32 DIR="$TMPDIR/race" 36 [ -e $DIR ] || mkdir $DIR 37 ./fs_racer_file_create.sh $DIR $MAX_FILES & 38 ./fs_racer_file_create.sh $DIR $MAX_FILES & 39 ./fs_racer_file_create.sh $DIR $MAX_FILES & 41 ./fs_racer_dir_create.sh $DIR $MAX_FILES & 42 ./fs_racer_dir_create.sh $DIR $MAX_FILES & 43 ./fs_racer_dir_create.sh $DIR $MAX_FILES & 45 ./fs_racer_file_rename.sh $DIR [all...] |
H A D | fs_racer_file_rename.sh | 22 DIR=$1 28 mv $DIR/$file $DIR/$new_file 2> /dev/null
|
H A D | fs_racer_file_concat.sh | 22 DIR=$1 26 cat $DIR/$file >> $DIR/$new_file 27 cat $DIR/$file/$file/$file >> $DIR/$new_file
|
H A D | fs_racer_file_list.sh | 22 DIR=$1 26 ls -R $DIR/ > /dev/null 2> /dev/null & 27 ls -R $DIR/ > /dev/null 2> /dev/null & 28 ls -R $DIR/ > /dev/null 2> /dev/null & 29 ls -R $DIR/ > /dev/null 2> /dev/null & 30 ls -R $DIR/ > /dev/null 2> /dev/null & 32 ls -R $DIR/ > /dev/null 2> /dev/null & 33 ls -R $DIR/ > /dev/null 2> /dev/null & 34 ls -R $DIR/ > /dev/null 2> /dev/null & 35 ls -R $DIR/ > /de [all...] |
H A D | fs_racer_file_rm.sh | 22 DIR=$1 27 rm -rf $DIR/$file 2> /dev/null
|
H A D | fs_racer_file_link.sh | 22 DIR=$1 28 ln -s $file $DIR/$new_file 2> /dev/null 29 ln $file $DIR/$new_file 2> /dev/null
|
H A D | fs_racer_file_symlink.sh | 22 DIR=$1 28 ln -s $file $DIR/$new_file 2> /dev/null 29 ln -s $file/$file/$file $DIR/$new_file 2> /dev/null
|
/external/openssh/regress/ |
H A D | sftp-glob.sh | 41 DIR=${BASE}/dir 42 DATA=${DIR}/file 44 GLOB1="${DIR}/g-wild*" 45 GLOB2="${DIR}/g-wildx" 46 QUOTE="${DIR}/g-quote\"" 47 SLASH="${DIR}/g-sl\\ash" 48 ESLASH="${DIR}/g-slash\\" 49 QSLASH="${DIR}/g-qs\\\"" 50 SPACE="${DIR}/g-q space" 53 mkdir -p ${DIR} [all...] |
/external/fio/os/windows/posix/include/ |
H A D | dirent.h | 18 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/syslinux/com32/include/ |
H A D | dirent.h | 15 __extern DIR *opendir(const char *); 16 __extern struct dirent *readdir(DIR *); 17 __extern int closedir(DIR *); 18 __extern DIR *fdopendir(int);
|
/external/autotest/contrib/ |
H A D | show_offload_failures | 14 DIR=$1 15 if [ ! -d $AUTOTEST/$DIR ]; then 16 echo "$DIR is not a directory in $AUTOTEST" >&2 29 gsutil ls -R "$GSURI/$DIR/*" | sed "s=^$GSURI/==p" 30 find $DIR -type f
|
/external/mockftpserver/tags/2.x_Before_IDEA/src/test/groovy/org/mockftpserver/fake/command/ |
H A D | RmdCommandHandlerTest.groovy | 37 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 D | findsym.pl | 17 opendir DIR,$Directory; 18 my @files = readdir DIR; 19 closedir DIR;
|
/external/swiftshader/third_party/LLVM/utils/ |
H A D | findsym.pl | 17 opendir DIR,$Directory; 18 my @files = readdir DIR; 19 closedir DIR;
|
/external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/ |
H A D | CwdCommandHandlerTest.groovy | 34 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.0/src/test/groovy/org/mockftpserver/fake/command/ |
H A D | CwdCommandHandlerTest.groovy | 34 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.0-rc1/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/ |
H A D | CwdCommandHandlerTest.groovy | 34 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.0-rc1/src/test/groovy/org/mockftpserver/fake/command/ |
H A D | CwdCommandHandlerTest.groovy | 34 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.0-rc3/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/ |
H A D | CwdCommandHandlerTest.groovy | 34 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.0.1/src/test/groovy/org/mockftpserver/fake/command/ |
H A D | CwdCommandHandlerTest.groovy | 34 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.0.2/src/test/groovy/org/mockftpserver/fake/command/ |
H A D | CwdCommandHandlerTest.groovy | 34 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.1/src/test/groovy/org/mockftpserver/fake/command/ |
H A D | CwdCommandHandlerTest.groovy | 34 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.2/src/test/groovy/org/mockftpserver/fake/command/ |
H A D | CwdCommandHandlerTest.groovy | 34 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 D | CwdCommandHandlerTest.groovy | 34 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...] |