Searched refs:error_code (Results 1 - 25 of 752) sorted by relevance

1234567891011>>

/external/libcxx/test/diagnostics/syserr/syserr.errcat/syserr.errcat.virtuals/
H A Dequivalent_error_code_int.pass.cpp14 // virtual bool equivalent(const error_code& code, int condition) const;
22 assert(e_cat.equivalent(std::error_code(5, e_cat), 5));
23 assert(!e_cat.equivalent(std::error_code(5, e_cat), 6));
/external/libcxx/test/diagnostics/syserr/syserr.errcode/syserr.errcode.nonmembers/
H A Dlt.pass.cpp12 // class error_code
14 // bool operator<(const error_code& lhs, const error_code& rhs);
23 const std::error_code ec1(6, std::generic_category());
24 const std::error_code ec2(7, std::generic_category());
/external/libcxx/test/diagnostics/syserr/syserr.errcode/syserr.errcode.observers/
H A Dbool.pass.cpp12 // class error_code
23 const std::error_code ec(6, std::generic_category());
27 const std::error_code ec(0, std::generic_category());
H A Dcategory.pass.cpp12 // class error_code
21 const std::error_code ec(6, std::generic_category());
H A Dvalue.pass.cpp12 // class error_code
21 const std::error_code ec(6, std::system_category());
H A Ddefault_error_condition.pass.cpp12 // class error_code
22 const std::error_code ec(6, std::generic_category());
27 const std::error_code ec(6, std::system_category());
/external/libcxx/test/thread/futures/futures.errors/
H A Dequivalent_error_code_int.pass.cpp14 // virtual bool equivalent(const error_code& code, int condition) const;
22 assert(e_cat.equivalent(std::error_code(5, e_cat), 5));
23 assert(!e_cat.equivalent(std::error_code(5, e_cat), 6));
/external/llvm/include/llvm/Support/
H A DWindowsError.h16 std::error_code mapWindowsError(unsigned EV);
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
H A DReplyPacket.java37 private short error_code; field in class:ReplyPacket
56 error_code = (short) super.readFromByteArray(p, ERROR_CODE_INDEX,
67 error_code = val;
76 return error_code;
88 super.writeAtByteArray(error_code, res, ERROR_CODE_INDEX,
/external/chromium_org/chrome/tools/profile_reset/
H A Djtl_compiler.h49 CompileError() : line_number(0), error_code(ERROR_NONE) {}
52 ErrorCode error_code)
53 : line_number(line_number), context(context), error_code(error_code) {}
57 ErrorCode error_code; member in struct:JtlCompiler::CompileError
50 CompileError(size_t line_number, const std::string& context, ErrorCode error_code) argument
/external/chromium_org/ppapi/native_client/src/trusted/plugin/
H A Dplugin_error.h27 void SetReport(PP_NaClError error_code, const std::string& message) { argument
28 error_code_ = error_code;
32 PP_NaClError error_code() const { function in class:plugin::ErrorInfo
/external/libcxx/test/diagnostics/syserr/syserr.errcode/syserr.errcode.constructors/
H A DErrorCodeEnum.pass.cpp12 // class error_code
14 // template <ErrorCodeEnum E> error_code(E e);
31 std::error_code
34 return std::error_code(static_cast<int>(x), std::generic_category());
40 std::error_code ec(two);
H A Ddefault.pass.cpp12 // class error_code
14 // error_code();
21 std::error_code ec;
H A Dint_error_category.pass.cpp12 // class error_code
14 // error_code(int val, const error_category& cat);
22 std::error_code ec(6, std::system_category());
27 std::error_code ec(8, std::generic_category());
/external/libcxx/test/diagnostics/syserr/syserr.errcode/syserr.errcode.modifiers/
H A DErrorCodeEnum.pass.cpp12 // class error_code
14 // template <ErrorCodeEnum E> error_code& operator=(E e);
31 std::error_code
34 return std::error_code(static_cast<int>(x), std::generic_category());
40 std::error_code ec;
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
H A Derroroutput.py33 error_code = '%04d' % error.code
35 error_code = 'New Error ' + error_code
36 return '%s:%s:(%s) %s' % (filename, line, error_code, error.message)
/external/chromium_org/third_party/closure_linter/closure_linter/common/
H A Derroroutput.py33 error_code = '%04d' % error.code
35 error_code = 'New Error ' + error_code
36 return '%s:%s:(%s) %s' % (filename, line, error_code, error.message)
/external/llvm/include/llvm/Object/
H A DObjectFile.h49 std::error_code getAddress(uint64_t &Result) const;
50 std::error_code getOffset(uint64_t &Result) const;
52 std::error_code getType(uint64_t &Result) const;
57 std::error_code getHidden(bool &Result) const;
62 std::error_code getTypeName(SmallVectorImpl<char> &Result) const;
68 std::error_code getValueString(SmallVectorImpl<char> &Result) const;
95 std::error_code getName(StringRef &Result) const;
96 std::error_code getAddress(uint64_t &Result) const;
97 std::error_code getSize(uint64_t &Result) const;
98 std::error_code getContent
[all...]
/external/chromium_org/cloud_print/gcp20/prototype/
H A Dprinter_unittest.cc14 int error_code; local
19 &error_code, &error_msg));
/external/libcxx/test/diagnostics/syserr/syserr.hash/
H A DAndroid.mk19 test_name := diagnostics/syserr/syserr.hash/error_code
20 test_src := error_code.pass.cpp
/external/llvm/tools/obj2yaml/
H A DError.h25 inline std::error_code make_error_code(obj2yaml_error e) {
26 return std::error_code(static_cast<int>(e), obj2yaml_category());
H A Dobj2yaml.h20 std::error_code coff2yaml(llvm::raw_ostream &Out,
22 std::error_code elf2yaml(llvm::raw_ostream &Out,
/external/chromium_org/net/ssl/
H A Dopenssl_ssl_util.cc59 int MapOpenSSLErrorSSL(uint32_t error_code) { argument
60 DCHECK_EQ(ERR_LIB_SSL, ERR_GET_LIB(error_code));
62 DVLOG(1) << "OpenSSL SSL error, reason: " << ERR_GET_REASON(error_code)
63 << ", name: " << ERR_error_string(error_code, NULL);
64 switch (ERR_GET_REASON(error_code)) {
145 LOG(WARNING) << "Unmapped error reason: " << ERR_GET_REASON(error_code);
157 if (error_info.error_code != 0) {
158 dict->SetInteger("error_lib", ERR_GET_LIB(error_info.error_code));
159 dict->SetInteger("error_reason", ERR_GET_REASON(error_info.error_code));
203 uint32_t error_code; local
[all...]
/external/chromium_org/gpu/gles2_conform_support/egl/
H A Degl.cc24 void SetCurrentError(EGLint error_code) { argument
28 T EglError(EGLint error_code, T return_value) { argument
29 SetCurrentError(error_code);
51 EGLint error_code = ValidateDisplay(dpy); local
52 if (error_code != EGL_SUCCESS)
53 return error_code;
63 EGLint error_code = ValidateDisplay(dpy); local
64 if (error_code != EGL_SUCCESS)
65 return error_code;
75 EGLint error_code local
118 EGLint error_code = ValidateDisplay(dpy); local
129 EGLint error_code = ValidateDisplay(dpy); local
152 EGLint error_code = ValidateDisplay(dpy); local
170 EGLint error_code = ValidateDisplay(dpy); local
188 EGLint error_code = ValidateDisplayConfig(dpy, config); local
203 EGLint error_code = ValidateDisplayConfig(dpy, config); local
233 EGLint error_code = ValidateDisplaySurface(dpy, surface); local
300 EGLint error_code = ValidateDisplayConfig(dpy, config); local
320 EGLint error_code = ValidateDisplayContext(dpy, ctx); local
334 EGLint error_code = ValidateDisplaySurface(dpy, draw); local
384 EGLint error_code = ValidateDisplaySurface(dpy, surface); local
[all...]
/external/qemu/target-i386/
H A Dexcp_helper.c48 static int check_exception(CPUX86State *env, int intno, int *error_code) argument
75 *error_code = 0;
92 int intno, int is_int, int error_code,
96 helper_svm_check_intercept_param(env, SVM_EXIT_EXCP_BASE + intno, error_code);
97 intno = check_exception(env, intno, &error_code);
103 env->error_code = error_code;
112 int exception_index, int error_code)
114 raise_interrupt(env, exception_index, 0, error_code, 0);
91 raise_interrupt(CPUX86State *env, int intno, int is_int, int error_code, int next_eip_addend) argument
111 raise_exception_err(CPUX86State *env, int exception_index, int error_code) argument

Completed in 6671 milliseconds

1234567891011>>