Searched refs:destinationPath (Results 1 - 12 of 12) sorted by relevance

/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/qt/
H A Dqwebdownloaditem.cpp51 QString QWebDownloadItem::destinationPath() const function in class:QWebDownloadItem
53 return d->destinationPath;
58 d->destinationPath = destination;
91 if (d->destinationPath.isEmpty())
92 d->destinationPath = d->suggestedFilename;
94 d->downloadProxy->startTransfer(d->destinationPath);
H A Dqwebdownloaditem_p.h42 Q_PROPERTY(QString destinationPath READ destinationPath WRITE setDestinationPath)
61 QString destinationPath() const;
73 void destinationFileCreated(const QString& destinationPath);
H A Dqwebdownloaditem_p_p.h44 QString destinationPath; member in class:QWebDownloadItemPrivate
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/efl/tests/
H A Dtest_ewk2_download_job.cpp46 const char* destinationPath; member in struct:DownloadTestData
115 ASSERT_FALSE(fileExists(testData->destinationPath));
116 ewk_download_job_destination_set(download, testData->destinationPath);
117 EXPECT_STREQ(testData->destinationPath, ewk_download_job_destination_get(download));
144 ASSERT_TRUE(fileExists(testData->destinationPath));
155 char destinationPath[] = "/tmp/pdf-file.XXXXXX"; local
156 ASSERT_TRUE(mktemp(destinationPath));
160 DownloadTestData userData = { fileUrl.data(), destinationPath };
161 ASSERT_FALSE(fileExists(destinationPath));
173 unlink(destinationPath);
[all...]
/macosx-10.9.5/WebCore-7537.78.1/Modules/filesystem/
H A DDOMFileSystemBase.cpp134 static bool verifyAndGetDestinationPathForCopyOrMove(const EntryBase* source, EntryBase* parent, const String& newName, String& destinationPath) argument
154 destinationPath = parent->fullPath();
156 destinationPath = DOMFilePath::append(destinationPath, newName);
158 destinationPath = DOMFilePath::append(destinationPath, source->name());
178 String destinationPath; local
179 if (!verifyAndGetDestinationPathForCopyOrMove(source, parent, newName, destinationPath))
182 m_asyncFileSystem->move(createFileSystemURL(source), parent->filesystem()->createFileSystemURL(destinationPath), EntryCallbacks::create(successCallback, errorCallback, parent->filesystem(), destinationPath, sourc
188 String destinationPath; local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/gtk/
H A DAsyncFileSystemGtk.h37 virtual void move(const KURL& sourcePath, const KURL& destinationPath, PassOwnPtr<AsyncFileSystemCallbacks>);
38 virtual void copy(const KURL& sourcePath, const KURL& destinationPath, PassOwnPtr<AsyncFileSystemCallbacks>);
H A DAsyncFileSystemGtk.cpp65 void AsyncFileSystemGtk::move(const KURL& sourcePath, const KURL& destinationPath, PassOwnPtr<AsyncFileSystemCallbacks> callbacks) argument
70 void AsyncFileSystemGtk::copy(const KURL& sourcePath, const KURL& destinationPath, PassOwnPtr<AsyncFileSystemCallbacks> callbacks) argument
/macosx-10.9.5/WebCore-7537.78.1/platform/blackberry/
H A DAsyncFileSystemBlackBerry.cpp81 void AsyncFileSystemBlackBerry::move(const KURL& sourcePath, const KURL& destinationPath, PassOwnPtr<AsyncFileSystemCallbacks> callbacks) argument
83 m_platformFileSystem->move(fileSystemURLToPath(sourcePath), fileSystemURLToPath(destinationPath), new PlatformAsyncFileSystemCallbacks(callbacks));
86 void AsyncFileSystemBlackBerry::copy(const KURL& sourcePath, const KURL& destinationPath, PassOwnPtr<AsyncFileSystemCallbacks> callbacks) argument
88 m_platformFileSystem->copy(fileSystemURLToPath(sourcePath), fileSystemURLToPath(destinationPath), new PlatformAsyncFileSystemCallbacks(callbacks));
H A DWorkerAsyncFileSystemBlackBerry.h48 virtual void move(const KURL& sourcePath, const KURL& destinationPath, PassOwnPtr<AsyncFileSystemCallbacks>);
49 virtual void copy(const KURL& sourcePath, const KURL& destinationPath, PassOwnPtr<AsyncFileSystemCallbacks>);
65 static void moveOnMainThread(ScriptExecutionContext*, BlackBerry::Platform::WebFileSystem*, const KURL& sourcePath, const KURL& destinationPath, WorkerPlatformAsyncFileSystemCallbacks*);
66 static void copyOnMainThread(ScriptExecutionContext*, BlackBerry::Platform::WebFileSystem*, const KURL& sourcePath, const KURL& destinationPath, WorkerPlatformAsyncFileSystemCallbacks*);
H A DAsyncFileSystemBlackBerry.h53 virtual void move(const KURL& sourcePath, const KURL& destinationPath, PassOwnPtr<AsyncFileSystemCallbacks>);
54 virtual void copy(const KURL& sourcePath, const KURL& destinationPath, PassOwnPtr<AsyncFileSystemCallbacks>);
H A DWorkerAsyncFileSystemBlackBerry.cpp72 void WorkerAsyncFileSystemBlackBerry::moveOnMainThread(ScriptExecutionContext*, WebFileSystem* platformFileSystem, const KURL& sourcePath, const KURL& destinationPath, WorkerPlatformAsyncFileSystemCallbacks* callbacks) argument
74 platformFileSystem->move(fileSystemURLToPath(sourcePath), fileSystemURLToPath(destinationPath), callbacks);
77 void WorkerAsyncFileSystemBlackBerry::copyOnMainThread(ScriptExecutionContext*, WebFileSystem* platformFileSystem, const KURL& sourcePath, const KURL& destinationPath, WorkerPlatformAsyncFileSystemCallbacks* callbacks) argument
79 platformFileSystem->copy(fileSystemURLToPath(sourcePath), fileSystemURLToPath(destinationPath), callbacks);
144 void WorkerAsyncFileSystemBlackBerry::move(const KURL& sourcePath, const KURL& destinationPath, PassOwnPtr<AsyncFileSystemCallbacks> callbacks) argument
146 postTaskToMainThread(createCallbackTask(&WorkerAsyncFileSystemBlackBerry::moveOnMainThread, m_platformFileSystem.get(), sourcePath, destinationPath, new WorkerPlatformAsyncFileSystemCallbacks(callbacks, m_context, m_mode)));
149 void WorkerAsyncFileSystemBlackBerry::copy(const KURL& sourcePath, const KURL& destinationPath, PassOwnPtr<AsyncFileSystemCallbacks> callbacks) argument
151 postTaskToMainThread(createCallbackTask(&WorkerAsyncFileSystemBlackBerry::copyOnMainThread, m_platformFileSystem.get(), sourcePath, destinationPath, new WorkerPlatformAsyncFileSystemCallbacks(callbacks, m_context, m_mode)));
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/qt/
H A DQtDownloadManager.cpp85 downloadItem->d->destinationPath = WKStringCopyQString(path);
86 emit downloadItem->destinationFileCreated(downloadItem->d->destinationPath);

Completed in 251 milliseconds