HomeSort by relevance Sort by last modified time
    Searched full:frompath (Results 1 - 25 of 32) sorted by null

1 2

  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/command/
RnfrCommandHandler.java 41 String fromPath = getRealPath(session, command.getRequiredParameter(0));
44 verifyFileSystemCondition(getFileSystem().exists(fromPath), fromPath, "filesystem.doesNotExist");
47 verifyReadPermission(session, fromPath);
49 session.setAttribute(SessionKeys.RENAME_FROM, fromPath);
RntoCommandHandler.java 44 String fromPath = (String) getRequiredSessionAttribute(session, SessionKeys.RENAME_FROM);
55 getFileSystem().rename(fromPath, toPath);
58 sendReply(session, ReplyCodes.RNTO_OK, "rnto", list(fromPath, toPath));
  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/filesystem/
TestUnixFakeFileSystem.groovy 40 void rename(String fromPath, String toPath) {
44 super.rename(fromPath, toPath)
AbstractFileSystemTestCase.groovy 126 shouldFailWithMessageContaining("fromPath") { fileSystem.rename(null, FILENAME1) }
  /system/vold/
MoveTask.cpp 118 static status_t execCp(const std::string& fromPath, const std::string& toPath,
122 uint64_t expectedBytes = GetTreeBytes(fromPath);
131 if (pushBackContents(fromPath, cmd) != OK) {
132 LOG(WARNING) << "No contents in " << fromPath;
176 std::string fromPath;
188 fromPath = mFrom->getInternalPath();
197 if (execCp(fromPath, toPath, 20, 60) != OK) {
208 if (execRm(fromPath, 85, 15) != OK) {
  /external/skia/src/animator/
SkMatrixParts.h 77 DECLARE_MEMBER_INFO(FromPath);
SkDisplayType.cpp 129 CASE_NEW(FromPath);
284 CASE_GET_INFO(FromPath);
451 { "fromPath", SkType_FromPath INIT_BOOL_FIELDS },
SkDisplayable.cpp 533 // if this is called, this breaks fromPath.xml
SkCondensedDebug.cpp 1242 48, // FromPath
SkCondensedRelease.cpp 1222 48, // FromPath
SkAnimateSchema.xsd     [all...]
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
FileSystem.java 71 * @param fromPath - the source (old) path + filename
73 * @throws AssertionError - if fromPath or toPath is null
76 public void rename(String fromPath, String toPath);
AbstractFakeFileSystem.java 251 * @param fromPath - the source (old) path + filename
253 * @throws AssertionError - if fromPath or toPath is null
256 public void rename(String fromPath, String toPath) {
258 Assert.notNull(fromPath, "fromPath");
260 FileSystemEntry entry = getRequiredEntry(fromPath);
266 String normalizedFromPath = normalize(fromPath);
282 List children = descendents(fromPath);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
TemplateHandler.java 608 String fromPath = attributes.getValue(ATTR_FROM);
616 instantiate(freemarker, paramMap, fromPath, to);
618 copyTemplateResource(fromPath, to);
621 String fromPath = attributes.getValue(ATTR_FROM);
629 merge(freemarker, paramMap, fromPath, to);
683 private File getFullPath(@NonNull String fromPath) {
684 if (fromPath.startsWith(VALUE_TEMPLATE_DIR)) {
686 + fromPath.substring(VALUE_TEMPLATE_DIR.length() + 1).replace('/',
689 return new File(mRootPath, DATA_ROOT + File.separator + fromPath);
    [all...]
  /external/chromium-trace/trace-viewer/third_party/Paste/paste/
fixture.py     [all...]
  /external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rcssmin/_setup/py3/
shell.py 326 def frompath(executable): function
  /external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rjsmin/_setup/py3/
shell.py 326 def frompath(executable): function
  /external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rcssmin/_setup/py2/
shell.py 453 def frompath(executable): function
  /external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rjsmin/_setup/py2/
shell.py 453 def frompath(executable): function
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.frameworkadmin.equinox_1.0.200.v20100505.jar 
org.eclipse.equinox.frameworkadmin_2.0.0.v20100503.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.frameworkadmin.equinox_1.0.500.v20130327-2119.jar 
org.eclipse.equinox.frameworkadmin_2.0.100.v20130327-2119.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.frameworkadmin.equinox_1.0.500.v20130327-2119.jar 
org.eclipse.equinox.frameworkadmin_2.0.100.v20130327-2119.jar 

Completed in 364 milliseconds

1 2