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

1234567891011>>

/external/llvm/include/llvm/Object/
H A DObjectFile.h65 content_iterator& increment(error_code &err) {
67 if (error_code ec = Current.getNext(next))
103 error_code getNext(RelocationRef &Result) const;
105 error_code getAddress(uint64_t &Result) const;
106 error_code getOffset(uint64_t &Result) const;
108 error_code getType(uint64_t &Result) const;
113 error_code getHidden(bool &Result) const;
118 error_code getTypeName(SmallVectorImpl<char> &Result) const;
124 error_code getValueString(SmallVectorImpl<char> &Result) const;
148 error_code getNex
[all...]
H A DMachO.h43 error_code getNext(DiceRef &Result) const;
45 error_code getOffset(uint32_t &Result) const;
46 error_code getLength(uint16_t &Result) const;
47 error_code getKind(uint16_t &Result) const;
62 error_code &ec);
64 virtual error_code getSymbolNext(DataRefImpl Symb, SymbolRef &Res) const;
65 virtual error_code getSymbolName(DataRefImpl Symb, StringRef &Res) const;
66 virtual error_code getSymbolAddress(DataRefImpl Symb, uint64_t &Res) const;
67 virtual error_code getSymbolFileOffset(DataRefImpl Symb, uint64_t &Res) const;
68 virtual error_code getSymbolAlignmen
[all...]
H A DCOFF.h207 error_code getString(uint32_t offset, StringRef &Res) const;
214 virtual error_code getSymbolNext(DataRefImpl Symb, SymbolRef &Res) const;
215 virtual error_code getSymbolName(DataRefImpl Symb, StringRef &Res) const;
216 virtual error_code getSymbolFileOffset(DataRefImpl Symb, uint64_t &Res) const;
217 virtual error_code getSymbolAddress(DataRefImpl Symb, uint64_t &Res) const;
218 virtual error_code getSymbolSize(DataRefImpl Symb, uint64_t &Res) const;
219 virtual error_code getSymbolNMTypeChar(DataRefImpl Symb, char &Res) const;
220 virtual error_code getSymbolFlags(DataRefImpl Symb, uint32_t &Res) const;
221 virtual error_code getSymbolType(DataRefImpl Symb, SymbolRef::Type &Res) const;
222 virtual error_code getSymbolSectio
[all...]
/external/chromium_org/device/bluetooth/
H A Dbluetooth_socket_win.cc19 std::string FormatErrorMessage(DWORD error_code) { argument
23 error_code,
60 DWORD error_code = WSAGetLastError(); local
61 if (status == 0 || error_code == WSAEINPROGRESS) {
67 << "(" << error_code << ")" << FormatErrorMessage(error_code);
87 DWORD error_code = WSAGetLastError(); local
88 if (bytes_read < 0 && error_code != WSAEWOULDBLOCK) {
89 error_message_ = FormatErrorMessage(error_code);
103 DWORD error_code local
[all...]
/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/Support/
H A DProgram.h22 class error_code;
45 error_code ChangeStdinToBinary();
46 error_code ChangeStdoutToBinary();
47 error_code ChangeStderrToBinary();
H A DMemoryBuffer.h25 class error_code;
69 static error_code getFile(StringRef Filename, OwningPtr<MemoryBuffer> &result,
72 static error_code getFile(const char *Filename,
80 static error_code getOpenFileSlice(int FD, const char *Filename,
86 static error_code getOpenFile(int FD, const char *Filename,
118 static error_code getSTDIN(OwningPtr<MemoryBuffer> &result);
124 static error_code getFileOrSTDIN(StringRef Filename,
H A DFileSystem.h14 // All functions return an error_code and their actual work via the last out
19 // this does not guarantee that error_code will be in the set of explicitly
21 // errors occur, the correct error_code will be used ]. All functions may
270 /// platform specific error_code.
271 error_code make_absolute(SmallVectorImpl<char> &path);
278 /// otherwise a platform specific error_code.
279 error_code create_directories(const Twine &path, bool &existed);
283 inline error_code create_directories(const Twine &Path) {
293 /// otherwise a platform specific error_code.
294 error_code create_director
[all...]
H A DFileOutputBuffer.h24 class error_code;
43 static error_code create(StringRef FilePath, size_t Size,
72 error_code commit(int64_t NewSmallerSize = -1);
/external/llvm/tools/obj2yaml/
H A Dobj2yaml.h20 llvm::error_code coff2yaml(llvm::raw_ostream &Out, llvm::MemoryBuffer *TheObj);
/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/chromium/net/base/
H A Dtest_root_certs_openssl.cc20 unsigned long error_code = ERR_peek_error(); local
21 if (ERR_GET_LIB(error_code) != ERR_LIB_X509 ||
22 ERR_GET_REASON(error_code) != X509_R_CERT_ALREADY_IN_HASH_TABLE) {
/external/chromium_org/net/cert/
H A Dtest_root_certs_openssl.cc20 unsigned long error_code = ERR_peek_error(); local
21 if (ERR_GET_LIB(error_code) != ERR_LIB_X509 ||
22 ERR_GET_REASON(error_code) != X509_R_CERT_ALREADY_IN_HASH_TABLE) {
/external/chromium_org/content/public/browser/
H A Dresource_controller.h21 virtual void CancelWithError(int error_code) = 0;
/external/chromium_org/third_party/cld/encodings/compact_lang_det/win/
H A Dcld_unicodetext.h24 // [out, optional] error_code - set to 0 in case of success, Windows
37 int* error_code, int* text_bytes);
/external/javasqlite/src/main/java/SQLite/
H A DVm.java19 protected int error_code = 0; field in class:Vm
/external/llvm/tools/llvm-readobj/
H A DObjDumper.h19 class error_code;
47 error_code createCOFFDumper(const object::ObjectFile *Obj,
51 error_code createELFDumper(const object::ObjectFile *Obj,
55 error_code createMachODumper(const object::ObjectFile *Obj,
/external/chromium_org/android_webview/browser/net/
H A Dinput_stream_reader.cc29 int error_code = VerifyRequestedRange(&verified_byte_range, &content_size); local
30 if (error_code != net::OK)
31 return error_code;
33 error_code = SkipToRequestedRange(verified_byte_range);
34 if (error_code != net::OK)
35 return error_code;
/external/chromium_org/chrome/installer/util/
H A Dself_reg_work_item.cc32 // Any number thus found will be returned in |error_code|. The "cleaned"
36 // not set then *error_code will be unchanged and the original HRESULT is
40 HRESULT UnMuxHRESULTErrorCode(HRESULT hr, int* error_code) { argument
41 DCHECK(error_code);
43 *error_code = (hr & 0x07800000) >> 23;
75 int error_code = 0; local
76 HRESULT unmuxed_hr = UnMuxHRESULTErrorCode(hr, &error_code);
80 << error_code;
/external/chromium/base/
H A Dplatform_file_posix.cc34 bool* created, PlatformFileError* error_code) {
48 *error_code = error_code ? PLATFORM_FILE_ERROR_FAILED : PLATFORM_FILE_OK;
97 if (error_code) {
99 *error_code = PLATFORM_FILE_OK;
106 *error_code = PLATFORM_FILE_ERROR_ACCESS_DENIED;
109 *error_code = PLATFORM_FILE_ERROR_IN_USE;
112 *error_code = PLATFORM_FILE_ERROR_EXISTS;
115 *error_code = PLATFORM_FILE_ERROR_NOT_FOUND;
118 *error_code
33 CreatePlatformFile(const FilePath& name, int flags, bool* created, PlatformFileError* error_code) argument
[all...]
/external/llvm/lib/Support/Windows/
H A DPath.inc50 error_code UTF8ToUTF16(StringRef utf8, SmallVectorImpl<wchar_t> &utf16) {
72 return error_code::success();
75 error_code UTF16ToUTF8(const wchar_t *utf16, size_t utf16_len,
102 return error_code::success();
105 error_code TempDir(SmallVectorImpl<wchar_t> &result) {
118 return error_code::success();
134 static error_code createUniqueEntity(const Twine &model, int &result_fd,
143 if (error_code ec = UTF8ToUTF16(m, model_utf16)) return ec;
151 if (error_code ec = TempDir(temp_dir)) return ec;
205 error_code e
[all...]
/external/chromium_org/chromeos/app_mode/
H A Dkiosk_oem_manifest_parser.cc31 int error_code = JSONFileValueSerializer::JSON_NO_ERROR; local
36 serializer->Deserialize(&error_code, &error_msg));
38 if (error_code != JSONFileValueSerializer::JSON_NO_ERROR ||
/external/llvm/lib/Support/
H A DDataStream.cpp66 error_code OpenFile(const std::string &Filename) {
70 return error_code::success();
83 if (error_code e = s->OpenFile(Filename)) {
/external/chromium_org/base/json/
H A Djson_file_value_serializer.cc66 const char* JSONFileValueSerializer::GetErrorMessageForCode(int error_code) { argument
67 switch (error_code) {
84 base::Value* JSONFileValueSerializer::Deserialize(int* error_code, argument
89 if (error_code)
90 *error_code = error;
98 return serializer.Deserialize(error_code, error_str);

Completed in 699 milliseconds

1234567891011>>