OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:write_response
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/webkit/browser/fileapi/
file_writer_delegate.cc
137
int
write_response
=
local
142
if (
write_response
> 0) {
146
weak_factory_.GetWeakPtr(),
write_response
));
147
} else if (net::ERR_IO_PENDING !=
write_response
) {
148
OnError(NetErrorToPlatformFileError(
write_response
));
152
void FileWriterDelegate::OnDataWritten(int
write_response
) {
153
if (
write_response
> 0) {
154
OnProgress(
write_response
, false);
155
cursor_->DidConsume(
write_response
);
156
bytes_written_ +=
write_response
;
[
all
...]
sandbox_file_stream_writer.cc
198
int
write_response
) {
202
if (
write_response
<= 0) {
205
callback.Run(
write_response
);
209
if (total_bytes_written_ +
write_response
+ initial_offset_ > file_size_) {
214
MakeTuple(url_,
write_response
- overlapped));
216
total_bytes_written_ +=
write_response
;
220
callback.Run(
write_response
);
file_writer_delegate.h
71
void OnDataWritten(int
write_response
);
sandbox_file_stream_writer.h
66
void DidWrite(const net::CompletionCallback& callback, int
write_response
);
Completed in 58 milliseconds