HomeSort by relevance Sort by last modified time
    Searched refs:error_code (Results 176 - 200 of 915) sorted by null

1 2 3 4 5 6 78 91011>>

  /prebuilts/ndk/current/platforms/android-24/arch-arm64/usr/include/linux/
n_r3964.h 45 int error_code; member in struct:r3964_client_message
  /prebuilts/ndk/current/platforms/android-24/arch-mips/usr/include/linux/
n_r3964.h 45 int error_code; member in struct:r3964_client_message
  /prebuilts/ndk/current/platforms/android-24/arch-mips64/usr/include/linux/
n_r3964.h 45 int error_code; member in struct:r3964_client_message
  /prebuilts/ndk/current/platforms/android-24/arch-x86/usr/include/linux/
n_r3964.h 45 int error_code; member in struct:r3964_client_message
  /prebuilts/ndk/current/platforms/android-24/arch-x86_64/usr/include/linux/
n_r3964.h 45 int error_code; member in struct:r3964_client_message
  /external/llvm/include/llvm/Object/
FunctionIndexObjectFile.h 44 std::error_code printSymbolName(raw_ostream &OS,
47 return std::error_code();
96 std::error_code
COFF.h 573 std::error_code getString(uint32_t offset, StringRef &Res) const;
580 std::error_code initSymbolTablePtr();
581 std::error_code initImportTablePtr();
582 std::error_code initDelayImportTablePtr();
583 std::error_code initExportTablePtr();
584 std::error_code initBaseRelocPtr();
658 std::error_code getSectionName(DataRefImpl Sec,
662 std::error_code getSectionContents(DataRefImpl Sec,
680 COFFObjectFile(MemoryBufferRef Object, std::error_code &EC);
717 std::error_code getPE32Header(const pe32_header *&Res) const
    [all...]
  /external/llvm/include/llvm/Support/
Program.h 75 std::error_code ChangeStdinToBinary();
76 std::error_code ChangeStdoutToBinary();
164 /// \returns non-zero error_code if failed
165 std::error_code
ErrorOr.h 58 /// have an error_code and optional user data that describes why it failed.
65 /// if (error_code ec = buffer.getError())
103 new (getErrorStorage()) std::error_code(make_error_code(ErrorCode));
106 ErrorOr(std::error_code EC) : HasError(true) {
107 new (getErrorStorage()) std::error_code(EC);
179 std::error_code getError() const {
180 return HasError ? *getErrorStorage() : std::error_code();
205 new (getErrorStorage()) std::error_code(Other.getError());
237 new (getErrorStorage()) std::error_code(Other.getError());
272 std::error_code *getErrorStorage()
    [all...]
  /external/llvm/lib/Support/
DataStream.cpp 64 std::error_code OpenFile(const std::string &Filename) {
68 return std::error_code();
80 if (std::error_code e = s->OpenFile(Filename)) {
Path.cpp 160 static std::error_code createUniqueEntity(const Twine &Model, int &ResultFD,
194 if (std::error_code EC =
202 return std::error_code();
206 std::error_code EC =
209 return std::error_code();
216 if (std::error_code EC =
222 return std::error_code();
713 std::error_code getUniqueID(const Twine Path, UniqueID &Result) {
715 std::error_code EC = status(Path, Status);
719 return std::error_code();
    [all...]
  /external/llvm/tools/llvm-readobj/
ObjDumper.h 75 std::error_code createCOFFDumper(const object::ObjectFile *Obj,
79 std::error_code createELFDumper(const object::ObjectFile *Obj,
83 std::error_code createMachODumper(const object::ObjectFile *Obj,
  /external/llvm/unittests/ExecutionEngine/Orc/
CompileOnDemandLayerTest.cpp 28 std::error_code createStub(StringRef StubName, TargetAddress InitAddr,
33 std::error_code createStubs(const StubInitsMap &StubInits) override {
45 std::error_code updatePointer(StringRef Name,
  /external/parameter-framework/upstream/asio/stub/
asio.hpp 84 struct error_code : dummy_base, std::error_code struct in namespace:asio
89 static const error_code eof{};
  /external/vboot_reference/tests/
utility_tests.c 67 int error_code = 0; local
73 error_code = 255;
75 return error_code;
  /frameworks/compile/mclinker/lib/Support/
FileOutputBuffer.cpp 25 std::error_code
29 std::error_code ec;
46 return std::error_code();
  /system/weaved/libweaved/
command.cc 143 bool Command::Abort(const std::string& error_code,
146 return StatusToError(binder_proxy_->abort(ToString16(error_code),
153 std::string error_code = "_" + command_error->GetCode(); local
154 return Abort(error_code, command_error->GetMessage(), error);
159 std::string error_code = BinderExceptionString(status.exceptionCode()); local
160 return Abort(error_code, status.exceptionMessage().string(), error);
171 bool Command::SetError(const std::string& error_code,
174 return StatusToError(binder_proxy_->setError(ToString16(error_code),
181 std::string error_code = "_" + command_error->GetCode(); local
182 return SetError(error_code, command_error->GetMessage(), error)
187 std::string error_code = BinderExceptionString(status.exceptionCode()); local
    [all...]
  /packages/apps/Test/connectivity/sl4n/utils/
command_receiver.cpp 55 int error_code; local
56 std::tie(name, error_code) = bt_binder.BluetoothBinderGetName();
57 if (error_code == sl4n_error_codes::kFailInt) {
75 int error_code; local
76 std::tie(init_result, error_code) = bt_binder.BluetoothBinderInitInterface();
77 if (error_code == sl4n_error_codes::kFailInt) {
101 int error_code; local
102 std::tie(set_result, error_code) = bt_binder.BluetoothBinderSetName(name);
103 if (error_code == sl4n_error_codes::kFailInt) {
120 int error_code; local
140 int error_code; local
157 int error_code; local
213 int error_code; local
    [all...]
  /external/autotest/client/tests/kvm/deps/
finish.cpp 29 int error_code; local
32 error_code = WSAGetLastError();
34 error_code = GetLastError();
40 error_code,
50 message, error_code, (char *)system_message);
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
reactive_socket_service.hpp 110 asio::error_code open(implementation_type& impl,
111 const protocol_type& protocol, asio::error_code& ec)
120 asio::error_code assign(implementation_type& impl,
122 asio::error_code& ec)
136 asio::error_code bind(implementation_type& impl,
137 const endpoint_type& endpoint, asio::error_code& ec)
145 asio::error_code set_option(implementation_type& impl,
146 const Option& option, asio::error_code& ec)
156 asio::error_code get_option(const implementation_type& impl,
157 Option& option, asio::error_code& ec) cons
    [all...]
  /external/tcpdump/
print-vqp.c 49 uint8_t error_code; member in struct:vqp_common_header_t
131 tok2str(vqp_error_code_values, "unknown (%u)",vqp_common_header->error_code),
132 vqp_common_header->error_code,
142 tok2str(vqp_error_code_values, "unknown (%u)",vqp_common_header->error_code),
143 vqp_common_header->error_code,
  /external/llvm/lib/ProfileData/
SampleProfWriter.cpp 40 std::error_code SampleProfileWriterText::write(StringRef FName,
77 if (std::error_code EC = write(Loc.CalleeName, CalleeSamples))
85 std::error_code SampleProfileWriterBinary::writeNameIdx(StringRef FName) {
115 std::error_code SampleProfileWriterBinary::writeHeader(
139 std::error_code SampleProfileWriterBinary::writeBody(StringRef FName,
143 if (std::error_code EC = writeNameIdx(FName))
160 if (std::error_code EC = writeNameIdx(Callee))
173 if (std::error_code EC = writeBody(Loc.CalleeName, CalleeSamples))
183 std::error_code SampleProfileWriterBinary::write(StringRef FName,
200 std::error_code EC
    [all...]
  /external/llvm/include/llvm/ExecutionEngine/Orc/
IndirectionUtils.h 149 std::error_code EC;
179 std::error_code EC;
222 virtual std::error_code createStub(StringRef StubName, TargetAddress StubAddr,
227 virtual std::error_code createStubs(const StubInitsMap &StubInits) = 0;
238 virtual std::error_code updatePointer(StringRef Name, TargetAddress NewAddr) = 0;
249 std::error_code createStub(StringRef StubName, TargetAddress StubAddr,
256 return std::error_code();
259 std::error_code createStubs(const StubInitsMap &StubInits) override {
267 return std::error_code();
297 std::error_code updatePointer(StringRef Name, TargetAddress NewAddr) override
    [all...]
  /external/libchrome/base/json/
json_value_serializer_unittest.cc 97 int error_code = 0; local
100 str_deserializer.Deserialize(&error_code, &error_message);
102 ASSERT_EQ(0, error_code);
116 int error_code = 0; local
119 str_deserializer.Deserialize(&error_code, &error_message);
121 ASSERT_EQ(0, error_code);
133 int error_code = 0; local
136 str_deserializer.Deserialize(&error_code, &error_message);
138 ASSERT_NE(0, error_code);
142 value = str_deserializer.Deserialize(&error_code, &error_message)
161 int error_code = 0; local
186 int error_code = 0; local
    [all...]
  /external/clang/include/clang/Basic/
VirtualFileSystem.h 98 virtual std::error_code close() = 0;
107 /// or returns a system-defined \c error_code.
108 virtual std::error_code increment() = 0;
129 directory_iterator &increment(std::error_code &EC) {
163 std::error_code &EC);
168 recursive_directory_iterator &increment(std::error_code &EC);
201 std::error_code &EC) = 0;
205 virtual std::error_code setCurrentWorkingDirectory(const Twine &Path) = 0;
222 /// platform-specific error_code.
223 std::error_code makeAbsolute(SmallVectorImpl<char> &Path) const
    [all...]

Completed in 1752 milliseconds

1 2 3 4 5 6 78 91011>>