OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GetErrno
(Results
1 - 4
of
4
) sorted by null
/external/protobuf/src/google/protobuf/io/
zero_copy_stream_impl.h
73
// an error occurs during the process; use
GetErrno
() to examine the error.
88
int
GetErrno
() { return copying_input_.
GetErrno
(); }
104
int
GetErrno
() { return errno_; }
151
// an error occurs during the process; use
GetErrno
() to examine the error.
171
int
GetErrno
() { return copying_output_.
GetErrno
(); }
186
int
GetErrno
() { return errno_; }
zero_copy_stream_unittest.cc
467
EXPECT_EQ(0, output.
GetErrno
());
476
EXPECT_EQ(0, input.
GetErrno
());
500
EXPECT_EQ(0, output.
GetErrno
());
510
EXPECT_EQ(0, input.
GetErrno
());
562
EXPECT_EQ(EBADF, input.
GetErrno
());
582
EXPECT_EQ(EBADF, input.
GetErrno
());
600
EXPECT_EQ(0, output.
GetErrno
());
607
EXPECT_EQ(0, input.
GetErrno
());
/external/protobuf/src/google/protobuf/
message.cc
120
return ParseFromZeroCopyStream(&input) && input.
GetErrno
() == 0;
125
return ParsePartialFromZeroCopyStream(&input) && input.
GetErrno
() == 0;
/external/protobuf/src/google/protobuf/compiler/
command_line_interface.cc
395
if (stream.
GetErrno
() != 0) {
396
cerr << filename << ": " << strerror(stream.
GetErrno
()) << endl;
400
cerr << filename << ": " << strerror(stream.
GetErrno
()) << endl;
[
all
...]
Completed in 30 milliseconds