OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:write_result
(Results
1 - 2
of
2
) sorted by null
/external/protobuf/src/google/protobuf/compiler/
command_line_interface.cc
326
int
write_result
;
local
328
write_result
= write(file_descriptor, data, size);
329
} while (
write_result
< 0 && errno == EINTR);
331
if (
write_result
<= 0) {
342
if (
write_result
< 0) {
351
data +=
write_result
;
352
size -=
write_result
;
[
all
...]
/external/chromium/net/socket/
socket_test_util.cc
752
net::MockWriteResult
write_result
= data_->OnWrite(data);
local
756
if (
write_result
.async) {
757
RunCallbackAsync(callback,
write_result
.result);
761
return
write_result
.result;
921
net::MockWriteResult
write_result
= data_->OnWrite(data);
local
923
if (
write_result
.async) {
925
write_result_ =
write_result
.result;
933
return
write_result
.result;
[
all
...]
Completed in 87 milliseconds