OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:didWrite
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/third_party/WebKit/public/platform/
WebFileWriterClient.h
43
virtual void
didWrite
(long long bytes, bool complete) = 0;
48
// Called if the write or truncate fails, or if it is cancelled before the write or truncate completes. Completion of an operation will be signalled exactly once, either by didFail, didTruncate, or
didWrite
(..., true).
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
FileWriterSync.h
59
virtual void
didWrite
(long long bytes, bool complete) OVERRIDE;
FileWriter.h
69
virtual void
didWrite
(long long bytes, bool complete) OVERRIDE;
FileWriterSync.cpp
91
void FileWriterSync::
didWrite
(long long bytes, bool complete)
FileWriter.cpp
174
void FileWriter::
didWrite
(long long bytes, bool complete)
/external/chromium_org/content/child/fileapi/
webfilewriter_base.cc
45
// success [of the write/truncate, in a
DidWrite
(XXX, true)/DidSucceed() call]
49
// In the write case, there could also be queued up non-terminal
DidWrite
calls
73
void WebFileWriterBase::
DidWrite
(int64 bytes, bool complete) {
79
client_->
didWrite
(bytes, complete);
webfilewriter_base_unittest.cc
99
DidWrite
(1, true);
103
DidWrite
(1, false);
104
DidWrite
(1, false);
105
DidWrite
(1, true);
107
DidWrite
(1, false);
109
DidWrite
(1, false);
110
DidWrite
(1, false);
114
DidWrite
(1, false);
116
DidWrite
(1, false);
117
DidWrite
(1, false)
[
all
...]
Completed in 626 milliseconds