HomeSort by relevance Sort by last modified time
    Searched refs:error_code (Results 101 - 125 of 959) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/ndk/9/platforms/android-3/arch-arm/usr/include/asm/
sigcontext.h 17 unsigned long error_code; member in struct:sigcontext
  /prebuilts/ndk/9/platforms/android-4/arch-arm/usr/include/asm/
sigcontext.h 17 unsigned long error_code; member in struct:sigcontext
  /prebuilts/ndk/9/platforms/android-5/arch-arm/usr/include/asm/
sigcontext.h 17 unsigned long error_code; member in struct:sigcontext
  /prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/asm/
sigcontext.h 17 unsigned long error_code; member in struct:sigcontext
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/asm/
sigcontext.h 17 unsigned long error_code; member in struct:sigcontext
  /external/llvm/lib/Object/
COFFObjectFile.cpp 34 bool checkSize(const MemoryBuffer *m, error_code &ec, uint64_t size) {
45 error_code getObject(const T *&Obj, const MemoryBuffer *M, const uint8_t *Ptr,
93 error_code COFFObjectFile::getSymbolNext(DataRefImpl Symb,
102 error_code COFFObjectFile::getSymbolName(DataRefImpl Symb,
108 error_code COFFObjectFile::getSymbolFileOffset(DataRefImpl Symb,
112 if (error_code ec = getSection(symb->SectionNumber, Section))
115 if (error_code ec = getSymbolNMTypeChar(Symb, Type))
126 error_code COFFObjectFile::getSymbolAddress(DataRefImpl Symb,
130 if (error_code ec = getSection(symb->SectionNumber, Section))
133 if (error_code ec = getSymbolNMTypeChar(Symb, Type)
    [all...]
  /external/chromium_org/base/json/
json_reader.cc 68 *error_code_out = parser.error_code();
76 std::string JSONReader::ErrorCodeToString(JsonParseError error_code) {
77 switch (error_code) {
106 JSONReader::JsonParseError JSONReader::error_code() const { function in class:JSONReader
107 return parser_->error_code();
json_parser_unittest.cc 205 int error_code = 0; local
208 &error_code, &error_message));
210 EXPECT_EQ(0, error_code);
216 &error_code, &error_message));
220 EXPECT_EQ(JSONReader::JSON_SYNTAX_ERROR, error_code);
222 error_code = 0;
229 &error_code, &error_message));
233 EXPECT_EQ(JSONReader::JSON_SYNTAX_ERROR, error_code);
237 &error_code, &error_message));
241 EXPECT_EQ(JSONReader::JSON_UNEXPECTED_DATA_AFTER_ROOT, error_code);
311 int error_code = 0; local
    [all...]
json_file_value_serializer.h 43 // value is NULL, and if |error_code| is non-null, |error_code| will
48 virtual base::Value* Deserialize(int* error_code,
66 // Convert an error code into an error message. |error_code| is assumed to
68 static const char* GetErrorMessageForCode(int error_code);
json_reader.h 116 // Returns an empty string if error_code is JSON_NO_ERROR.
117 static std::string ErrorCodeToString(JsonParseError error_code);
124 JsonParseError error_code() const;
json_string_value_serializer.cc 39 Value* JSONStringValueSerializer::Deserialize(int* error_code,
47 error_code, error_str);
  /external/chromium_org/content/child/fileapi/
webfilewriter_base.cc 66 void WebFileWriterBase::DidFinish(base::PlatformFileError error_code) {
67 if (error_code == base::PLATFORM_FILE_OK)
70 DidFail(error_code);
120 void WebFileWriterBase::DidFail(base::PlatformFileError error_code) {
126 client_->didFail(PlatformFileErrorToWebFileError(error_code));
webfilewriter_base.h 32 // This calls DidSucceed() or DidFail() based on the value of |error_code|.
33 void DidFinish(base::PlatformFileError error_code);
37 void DidFail(base::PlatformFileError error_code);
  /external/chromium_org/ppapi/native_client/src/trusted/plugin/
plugin_error.h 116 void SetReport(PluginErrorCode error_code, const std::string& message) {
117 error_code_ = error_code;
127 void SetReportWithConsoleOnlyError(PluginErrorCode error_code,
130 error_code_ = error_code;
135 PluginErrorCode error_code() const { function in class:plugin::ErrorInfo
  /external/llvm/lib/Support/
FileOutputBuffer.cpp 35 error_code FileOutputBuffer::create(StringRef FilePath,
41 error_code EC = sys::fs::status(FilePath, Stat);
87 return error_code::success();
90 error_code FileOutputBuffer::commit(int64_t NewSmallerSize) {
96 error_code EC = sys::fs::resize_file(Twine(TempPath), NewSmallerSize);
  /external/llvm/unittests/Support/
MemoryTest.cpp 60 error_code EC;
62 EXPECT_EQ(error_code::success(), EC);
71 error_code EC;
73 EXPECT_EQ(error_code::success(), EC);
75 EXPECT_EQ(error_code::success(), EC);
77 EXPECT_EQ(error_code::success(), EC);
93 EXPECT_EQ(error_code::success(), EC);
106 error_code EC;
108 EXPECT_EQ(error_code::success(), EC);
125 error_code EC
    [all...]
  /external/chromium_org/tools/memory_watcher/
preamble_patcher.cc 37 SideStepError error_code = RawPatchWithStub(target_function, local
42 if (SIDESTEP_SUCCESS != error_code) {
44 return error_code;
112 SideStepError error_code = RawPatchWithStubAndProtections(target_function, local
117 if (SIDESTEP_SUCCESS != error_code) {
120 return error_code;
  /external/chromium_org/webkit/browser/fileapi/
sandbox_file_system_backend.cc 92 base::PlatformFileError* error_code) {
93 DCHECK(error_code);
94 *error_code = base::PLATFORM_FILE_OK;
101 base::PlatformFileError* error_code) const {
103 DCHECK(error_code);
107 delegate_->CreateFileSystemOperationContext(url, context, error_code);
  /external/llvm/include/llvm/Support/
system_error.h 39 virtual bool equivalent(const error_code& code, int condition) const;
56 class error_code
60 error_code();
61 error_code(int val, const error_category& cat);
63 error_code(ErrorCodeEnum e);
68 error_code& operator=(ErrorCodeEnum e);
80 bool operator<(const error_code& lhs, const error_code& rhs);
83 operator<<(basic_ostream<charT,traits>& os, const error_code& ec);
113 system_error(error_code ec, const std::string& what_arg)
726 class error_code { class in namespace:llvm
730 error_code() : _val_(0), _cat_(&system_category()) {} function in class:llvm::error_code
736 error_code(int _val, const error_category& _cat) function in class:llvm::error_code
740 error_code(E _e, typename enable_if_c< function in class:llvm::error_code
    [all...]
  /bionic/libc/arch-arm/cortex-a15/bionic/
memcpy.S 99 ldr r1, error_code
103 error_code: label
  /bionic/libc/arch-arm/cortex-a9/bionic/
memcpy.S 79 ldr r1, error_code
83 error_code: label
  /bionic/libc/arch-arm/krait/bionic/
memcpy.S 79 ldr r1, error_code
83 error_code: label
  /external/chromium/net/tools/flip_server/
balsa_enums.h 96 static const char* ParseStateToString(ParseState error_code);
97 static const char* ErrorCodeToString(ErrorCode error_code);
  /external/chromium_org/chrome/browser/ssl/
ssl_tab_helper.h 38 scoped_refptr<SSLAddCertHandler> handler, int error_code);
51 scoped_refptr<SSLAddCertHandler> handler, int error_code);
  /external/chromium_org/chrome/installer/gcapi/
gcapi.cc 629 DWORD* error_code) {
630 DCHECK(error_code);
633 if (error_code)
634 *error_code = REACTIVATE_ERROR_INVALID_INPUT;
641 if (error_code)
642 *error_code = REACTIVATE_ERROR_NOTDORMANT;
653 if (error_code)
654 *error_code = REACTIVATE_ERROR_NOTINSTALLED;
659 if (error_code)
660 *error_code = REACTIVATE_ERROR_ALREADY_REACTIVATED
    [all...]

Completed in 468 milliseconds

1 2 3 45 6 7 8 91011>>