/external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/ |
CwdCommandHandlerTest.groovy | 40 assert session.getAttribute(SessionKeys.CURRENT_DIRECTORY) == DIR 46 session.setAttribute(SessionKeys.CURRENT_DIRECTORY, DIR) 49 assert session.getAttribute(SessionKeys.CURRENT_DIRECTORY) == p(DIR, SUB) 55 assert session.getAttribute(SessionKeys.CURRENT_DIRECTORY) == null 62 assert session.getAttribute(SessionKeys.CURRENT_DIRECTORY) == null 70 assert session.getAttribute(SessionKeys.CURRENT_DIRECTORY) == null
|
CdupCommandHandlerTest.groovy | 41 assert session.getAttribute(SessionKeys.CURRENT_DIRECTORY) == DIR 48 assert session.getAttribute(SessionKeys.CURRENT_DIRECTORY) == '/' 57 assert session.getAttribute(SessionKeys.CURRENT_DIRECTORY) == SUBDIR
|
PwdCommandHandlerTest.groovy | 38 session.setAttribute(SessionKeys.CURRENT_DIRECTORY, DIR)
|
MkdCommandHandlerTest.groovy | 51 session.setAttribute(SessionKeys.CURRENT_DIRECTORY, '/')
|
NlstCommandHandlerTest.groovy | 59 session.setAttribute(SessionKeys.CURRENT_DIRECTORY, DIR)
|
RmdCommandHandlerTest.groovy | 48 session.setAttribute(SessionKeys.CURRENT_DIRECTORY, DIR)
|
RnfrCommandHandlerTest.groovy | 46 session.setAttribute(SessionKeys.CURRENT_DIRECTORY, "/")
|
ListCommandHandlerTest.groovy | 74 session.setAttribute(SessionKeys.CURRENT_DIRECTORY, DIR)
|
PassCommandHandlerTest.groovy | 154 assert session.getAttribute(SessionKeys.CURRENT_DIRECTORY) == currentDirectory
|
UserCommandHandlerTest.groovy | 128 assert session.getAttribute(SessionKeys.CURRENT_DIRECTORY) == currentDirectory
|
_AbstractFakeCommandHandlerTest.groovy | 142 session.setAttribute(SessionKeys.CURRENT_DIRECTORY, "/usr/me")
|
AbstractFakeCommandHandlerTestCase.groovy | 273 session.setAttribute(SessionKeys.CURRENT_DIRECTORY, path)
|
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/session/ |
SessionKeys.java | 25 public static final String CURRENT_DIRECTORY = "currentDirectory";
|
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/command/ |
CdupCommandHandler.java | 39 String currentDirectory = (String) getRequiredSessionAttribute(session, SessionKeys.CURRENT_DIRECTORY);
49 session.setAttribute(SessionKeys.CURRENT_DIRECTORY, path);
|
PwdCommandHandler.java | 36 String currentDirectory = (String) session.getAttribute(SessionKeys.CURRENT_DIRECTORY);
|
CwdCommandHandler.java | 50 session.setAttribute(SessionKeys.CURRENT_DIRECTORY, path);
|
AbstractFakeCommandHandler.java | 319 String currentDirectory = (String) session.getAttribute(SessionKeys.CURRENT_DIRECTORY);
394 session.setAttribute(SessionKeys.CURRENT_DIRECTORY, userAccount.getHomeDirectory());
|
/external/libchrome/base/process/ |
launch_posix.cc | 322 const char* current_directory = nullptr; local 323 if (!options.current_directory.empty()) { 324 current_directory = options.current_directory.value().c_str(); 482 if (current_directory != nullptr) { 483 RAW_CHECK(chdir(current_directory) == 0);
|
launch.h | 154 base::FilePath current_directory; member in struct:base::LaunchOptions
|
/ndk/sources/host-tools/make-3.81/ |
main.c | 907 PATH_VAR (current_directory); 1090 if (getcwd_fs (current_directory, GET_PATH_MAX) == 0) 1092 if (getcwd (current_directory, GET_PATH_MAX) == 0) 1098 error (NILF, "getwd: %s", current_directory); 1100 current_directory[0] = '\0'; 1104 directory_before_chdir = xstrdup (current_directory); [all...] |
/external/llvm/lib/Support/ |
Path.cpp | 776 static std::error_code make_absolute(const Twine ¤t_directory, 795 current_directory.toVector(current_dir); 833 std::error_code make_absolute(const Twine ¤t_directory, 835 return make_absolute(current_directory, path, true);
|
/external/ImageMagick/MagickCore/ |
utility.c | 1588 *current_directory; local [all...] |
/external/llvm/include/llvm/Support/ |
FileSystem.h | 271 /// Makes \a path absolute using the \a current_directory if it is not already. 272 /// An empty \a path will result in the \a current_directory. 280 std::error_code make_absolute(const Twine ¤t_directory,
|