OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:appendfiletoupload
(Results
1 - 7
of
7
) sorted by null
/external/webkit/Source/WebKit/android/WebCoreSupport/
WebRequest.h
67
void
appendFileToUpload
(const std::string& filename);
WebRequest.cpp
169
void WebRequest::
appendFileToUpload
(const std::string& filename)
171
//
AppendFileToUpload
is only valid before calling start
172
ASSERT(m_loadState == Created, "
appendFileToUpload
called on a WebRequest not in CREATED state: (%s)", m_url.c_str());
174
m_request->
AppendFileToUpload
(filePath);
WebUrlLoaderClient.cpp
152
thread->message_loop()->PostTask(FROM_HERE, NewRunnableMethod(m_request.get(), &WebRequest::
appendFileToUpload
, filename));
/external/chromium/webkit/glue/
resource_loader_bridge.h
332
// For HTTP(S) POST requests, the AppendDataToUpload and
AppendFileToUpload
342
void
AppendFileToUpload
(const FilePath& file_path) {
weburlloader_impl.cc
466
bridge_->
AppendFileToUpload
(
/external/chromium/net/url_request/
url_request.h
327
void
AppendFileToUpload
(const FilePath& file_path) {
url_request_unittest.cc
799
r.
AppendFileToUpload
(path);
802
r.
AppendFileToUpload
(FilePath(FILE_PATH_LITERAL(
[
all
...]
Completed in 120 milliseconds