HomeSort by relevance Sort by last modified time
    Searched defs:ErrorCode (Results 1 - 25 of 41) sorted by null

1 2

  /external/chromium_org/sandbox/linux/seccomp-bpf/
errorcode.cc 6 #include "sandbox/linux/seccomp-bpf/errorcode.h"
10 ErrorCode::ErrorCode(int err) {
21 SANDBOX_DIE("Invalid use of ErrorCode object");
25 ErrorCode::ErrorCode(Trap::TrapFnc fnc, const void* aux, bool safe, uint16_t id)
32 ErrorCode::ErrorCode(int argno,
36 const ErrorCode* passed,
37 const ErrorCode* failed
    [all...]
errorcode.h 17 // We can either wrap a symbolic ErrorCode (i.e. ERR_XXX enum values), an
21 // that is using the ErrorCode class typically operates on a single 32bit
23 class ErrorCode {
110 // We allow the default constructor, as it makes the ErrorCode class
111 // much easier to use. But if we ever encounter an invalid ErrorCode
115 ErrorCode() : error_type_(ET_INVALID), err_(SECCOMP_RET_INVALID) {}
116 explicit ErrorCode(int err);
126 ~ErrorCode() {}
128 bool Equals(const ErrorCode& err) const;
129 bool LessThan(const ErrorCode& err) const
    [all...]
  /external/lzma/CPP/Common/
MyException.h 10 HRESULT ErrorCode;
11 CSystemException(HRESULT errorCode): ErrorCode(errorCode) {}
  /external/icu4c/common/
errorcode.cpp 8 * file name: errorcode.cpp
18 #include "unicode/errorcode.h"
22 ErrorCode::~ErrorCode() {}
24 UErrorCode ErrorCode::reset() {
25 UErrorCode code = errorCode;
26 errorCode = U_ZERO_ERROR;
30 void ErrorCode::assertSuccess() const {
36 const char* ErrorCode::errorName() const {
37 return u_errorName(errorCode);
    [all...]
  /external/chromium_org/third_party/icu/source/common/unicode/
errorcode.h 8 * file name: errorcode.h
22 * \brief C++ API: ErrorCode class intended to make it easier to use
50 * The ErrorCode base class destructor does nothing.
58 * class IcuErrorCode: public icu::ErrorCode {
66 * log_failure(u_errorName(errorCode));
67 * exit(errorCode);
79 class U_COMMON_API ErrorCode: public UMemory {
85 ErrorCode() : errorCode(U_ZERO_ERROR) {}
87 virtual ~ErrorCode() {}
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/applescript/
error_applescript.h 12 enum ErrorCode {
38 void SetError(ErrorCode errorCode);
  /external/chromium_org/chrome/browser/ui/cocoa/applescript/
error_applescript.h 12 enum ErrorCode {
38 void SetError(ErrorCode errorCode);
  /external/chromium_org/chrome/tools/profile_reset/
jtl_compiler.h 39 enum ErrorCode {
52 ErrorCode error_code)
57 ErrorCode error_code;
  /external/chromium_org/remoting/protocol/
errors.h 14 enum ErrorCode {
  /external/chromium_org/third_party/WebKit/Source/modules/geolocation/
GeolocationError.h 38 enum ErrorCode {
43 static PassRefPtr<GeolocationError> create(ErrorCode code, const String& message) { return adoptRef(new GeolocationError(code, message)); }
45 ErrorCode code() const { return m_code; }
49 GeolocationError(ErrorCode code, const String& message)
55 ErrorCode m_code;
PositionError.h 38 enum ErrorCode {
44 static PassRefPtr<PositionError> create(ErrorCode code, const String& message) { return adoptRef(new PositionError(code, message)); }
46 ErrorCode code() const { return m_code; }
52 PositionError(ErrorCode code, const String& message)
60 ErrorCode m_code;
  /external/chromium_org/third_party/WebKit/public/web/
WebSpeechRecognizerClient.h 40 enum ErrorCode {
83 virtual void didReceiveError(const WebSpeechRecognitionHandle&, const WebString& message, ErrorCode) = 0;
  /external/icu4c/common/unicode/
errorcode.h 8 * file name: errorcode.h
22 * \brief C++ API: ErrorCode class intended to make it easier to use
50 * The ErrorCode base class destructor does nothing.
58 * class IcuErrorCode: public icu::ErrorCode {
66 * log_failure(u_errorName(errorCode));
67 * exit(errorCode);
79 class U_COMMON_API ErrorCode: public UMemory {
85 ErrorCode() : errorCode(U_ZERO_ERROR) {}
87 virtual ~ErrorCode();
    [all...]
  /external/chromium_org/content/public/common/
geoposition.h 23 enum ErrorCode {
59 ErrorCode error_code;
  /external/chromium_org/third_party/WebKit/Source/modules/speech/
SpeechRecognitionError.h 44 enum ErrorCode {
58 static PassRefPtr<SpeechRecognitionError> create(ErrorCode, const String&);
  /external/chromium_org/third_party/angle/src/compiler/
DetectCallDepth.h 21 enum ErrorCode {
35 ErrorCode detectCallDepth();
65 ErrorCode detectCallDepthForFunction(FunctionNode* func);
  /external/lzma/CPP/7zip/Common/
InBuffer.h 13 CInBufferException(HRESULT errorCode): CSystemException(errorCode) {}
32 HRESULT ErrorCode;
OutBuffer.h 13 COutBufferException(HRESULT errorCode): CSystemException(errorCode) {}
33 HRESULT ErrorCode;
  /external/chromium/chrome/browser/policy/
device_management_backend.h 25 enum ErrorCode {
53 virtual void OnError(ErrorCode code) = 0;
67 virtual void OnError(ErrorCode code) = 0;
82 virtual void OnError(ErrorCode code) = 0;
  /external/chromium_org/third_party/skia/include/xml/
SkXMLParser.h 22 enum ErrorCode {
34 ErrorCode getErrorCode() const { return fCode; }
41 void setCode(ErrorCode code) { fCode = code; }
46 ErrorCode fCode;
  /external/clang/include/clang/Serialization/
GlobalModuleIndex.h 127 enum ErrorCode {
146 static std::pair<GlobalModuleIndex *, ErrorCode>
194 static ErrorCode writeIndex(FileManager &FileMgr, StringRef Path);
  /external/skia/include/xml/
SkXMLParser.h 22 enum ErrorCode {
34 ErrorCode getErrorCode() const { return fCode; }
41 void setCode(ErrorCode code) { fCode = code; }
46 ErrorCode fCode;
  /frameworks/compile/mclinker/tools/mcld/include/alone/
Linker.h 38 enum ErrorCode {
54 static const char *GetErrorString(enum ErrorCode pErrCode);
72 enum ErrorCode config(const LinkerConfig& pConfig);
74 enum ErrorCode addNameSpec(const std::string &pNameSpec);
76 enum ErrorCode addObject(const std::string &pObjectPath);
78 enum ErrorCode addObject(void* pMemory, size_t pSize);
80 enum ErrorCode addCode(void* pMemory, size_t pSize);
82 enum ErrorCode setOutput(const std::string &pPath);
84 enum ErrorCode setOutput(int pFileHandler);
86 enum ErrorCode link()
    [all...]
  /external/chromium_org/chrome/browser/chromeos/login/managed/
locally_managed_user_creation_controller.h 42 enum ErrorCode {
55 virtual void OnCreationError(ErrorCode code) = 0;
  /external/chromium_org/chrome/browser/value_store/
value_store.h 19 enum ErrorCode {
42 // Bundles an ErrorCode with further metadata.
44 Error(ErrorCode code,
49 static scoped_ptr<Error> Create(ErrorCode code,
56 const ErrorCode code;

Completed in 983 milliseconds

1 2