HomeSort by relevance Sort by last modified time
    Searched full:error_code (Results 526 - 550 of 1123) sorted by null

<<21222324252627282930>>

  /external/llvm/lib/Support/
LockFileManager.cpp 86 if (error_code EC
121 error_code EC
  /external/llvm/tools/llvm-objdump/
llvm-objdump.cpp 144 bool llvm::error(error_code ec) {
365 error_code ec;
517 error_code ec;
549 error_code ec;
573 error_code ec;
668 error_code ec;
779 if (error_code ec = i->getAsBinary(child)) {
809 if (error_code ec = createBinary(file, binary)) {
  /external/oprofile/module/x86/
op_syscalls.c 291 asmlinkage long my_sys_exit(int error_code)
307 return old_sys_exit(error_code);
  /external/chromium_org/third_party/libusb/src/libusb/os/
wince_usb.c 65 uint32_t error_code, format_error; local
67 error_code = retval?retval:GetLastError();
69 safe_stprintf(wErr_string, ERR_BUFFER_SIZE, _T("[%d] "), error_code);
71 size = FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM, NULL, error_code,
78 _T("Windows error code %u (FormatMessage error code %u)"), error_code, format_error);
80 safe_stprintf(wErr_string, ERR_BUFFER_SIZE, _T("Unknown error code %u"), error_code);
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/windows/
preamble_patcher.cc 173 SideStepError error_code = RawPatchWithStub(target_function, local
195 if (SIDESTEP_SUCCESS != error_code) { // Testing RawPatchWithStub, above
197 return error_code;
255 SideStepError error_code = RawPatchWithStubAndProtections( local
259 if (SIDESTEP_SUCCESS != error_code) {
261 return error_code;
  /external/chromium_org/third_party/tcmalloc/vendor/src/windows/
preamble_patcher.cc 173 SideStepError error_code = RawPatchWithStub(target_function, local
195 if (SIDESTEP_SUCCESS != error_code) { // Testing RawPatchWithStub, above
197 return error_code;
255 SideStepError error_code = RawPatchWithStubAndProtections( local
259 if (SIDESTEP_SUCCESS != error_code) {
261 return error_code;
  /external/chromium_org/content/browser/loader/
resource_dispatcher_host_unittest.cc 846 int error_code; local
850 EXPECT_TRUE(IPC::ReadParam(&messages[failure_index], &iter, &error_code));
851 EXPECT_EQ(expected_error, error_code);
879 int error_code; local
883 ASSERT_TRUE(IPC::ReadParam(&message, &iter, &error_code));
885 EXPECT_EQ(net::ERR_ABORTED, error_code);
1040 int error_code; local
1571 int error_code; local
1876 int error_code; local
    [all...]
  /external/bluetooth/bluedroid/stack/avdt/
avdt_api.c 537 UINT16 AVDT_ConfigRsp(UINT8 handle, UINT8 label, UINT8 error_code, UINT8 category)
561 evt.msg.hdr.err_code = error_code;
564 if (error_code == 0)
782 UINT16 AVDT_ReconfigRsp(UINT8 handle, UINT8 label, UINT8 error_code, UINT8 category)
798 evt.msg.hdr.err_code = error_code;
858 UINT16 AVDT_SecurityRsp(UINT8 handle, UINT8 label, UINT8 error_code,
875 evt.msg.security_rsp.hdr.err_code = error_code;
    [all...]
  /external/chromium/chrome/browser/ui/views/
about_chrome_view.cc 686 GoogleUpdateErrorCode error_code,
694 UpdateStatus(result, error_code);
700 GoogleUpdateErrorCode error_code) {
806 if (error_code != GOOGLE_UPDATE_DISABLED_BY_POLICY) {
808 l10n_util::GetStringFUTF16Int(IDS_UPGRADE_ERROR, error_code)));
    [all...]
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
relayserver.cc 74 const talk_base::SocketAddress& remote_addr, int error_code,
89 err_code->SetErrorClass(error_code / 100);
90 err_code->SetNumber(error_code % 100);
656 const StunMessage& request, int error_code, const char* error_desc) {
661 request, socket_, addr_pair_.source(), error_code, error_desc,
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
relayserver.cc 74 const talk_base::SocketAddress& remote_addr, int error_code,
91 err_code->SetClass(error_code / 100);
92 err_code->SetNumber(error_code % 100);
646 const StunMessage& request, int error_code, const char* error_desc) {
651 request, socket_, addr_pair_.source(), error_code, error_desc,
  /external/chromium_org/ui/base/ime/win/
tsf_text_store_unittest.cc 185 const string16& text, HRESULT error_code) {
187 ASSERT_EQ(error_code,
190 if (error_code == S_OK) {
218 void GetTextErrorTest(LONG acp_start, LONG acp_end, HRESULT error_code) {
224 EXPECT_EQ(error_code,
    [all...]
  /external/chromium_org/webkit/browser/database/
database_tracker_unittest.cc 165 base::PlatformFileError error_code(base::PLATFORM_FILE_ERROR_FAILED);
171 &error_code);
172 if (error_code != base::PLATFORM_FILE_OK)
175 error_code = base::PLATFORM_FILE_ERROR_FAILED;
177 return error_code == base::PLATFORM_FILE_OK;
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
ios 206 error_code make_error_code(io_errc e);
394 error_code
397 return error_code(static_cast<int>(__e), iostream_category());
411 explicit failure(const string& __msg, const error_code& __ec = io_errc::stream);
412 explicit failure(const char* __msg, const error_code& __ec = io_errc::stream);
  /external/qemu/target-i386/
op_helper.c 657 static void do_interrupt_protected(int intno, int is_int, int error_code,
702 stl_kernel(ssp, error_code);
704 stw_kernel(ssp, error_code);
801 PUSHL(ssp, esp, sp_mask, error_code);
818 PUSHW(ssp, esp, sp_mask, error_code);
882 static void do_interrupt64(int intno, int is_int, int error_code,
974 PUSHQ(esp, error_code);
    [all...]
  /external/chromium/base/json/
json_reader.cc 106 *error_code_out = reader.error_code();
114 std::string JSONReader::ErrorCodeToString(JsonParseError error_code) {
115 switch (error_code) {
  /external/chromium/third_party/libjingle/source/talk/base/
thread.cc 285 int error_code = pthread_create(&thread_, &attr, PreRun, init); local
286 if (0 != error_code) {
287 LOG(LS_ERROR) << "Unable to create pthread, error " << error_code;
  /external/chromium_org/chrome/renderer/
chrome_render_process_observer.cc 79 int error_code) OVERRIDE {
90 if (error_code == net::ERR_ABORTED) {
96 resource_type, current_peer, error_code);
  /external/chromium_org/components/autofill/content/browser/risk/
fingerprint.cc 350 geoposition_.error_code != content::Geoposition::ERROR_CODE_NONE);
386 geoposition_.error_code != content::Geoposition::ERROR_CODE_NONE)) {
433 if (geoposition_.error_code == content::Geoposition::ERROR_CODE_NONE) {
  /external/chromium_org/remoting/host/win/
rdp_client_window.cc 450 HRESULT RdpClientWindow::OnFatalError(long error_code) {
451 LOG(ERROR) << "RDP: an error occured: error_code="
452 << error_code;
  /external/chromium_org/third_party/libjingle/source/talk/base/
thread.cc 283 int error_code = pthread_create(&thread_, &attr, PreRun, init); local
284 if (0 != error_code) {
285 LOG(LS_ERROR) << "Unable to create pthread, error " << error_code;
  /external/chromium_org/third_party/openssl/openssl/ssl/
s2_lib.c 508 s->error_code=err;
521 buf[1]=(s->error_code>>8)&0xff;
522 buf[2]=(s->error_code)&0xff;
  /external/chromium_org/webkit/browser/blob/
blob_url_request_job.cc 465 void BlobURLRequestJob::NotifyFailure(int error_code) {
472 error_code));
477 switch (error_code) {
  /external/libvpx/libvpx/vpx/internal/
vpx_codec_internal.h 448 vpx_codec_err_t error_code; member in struct:vpx_internal_error_info
461 info->error_code = error;
475 longjmp(info->jmp, info->error_code);
  /external/llvm/lib/Support/Unix/
Program.inc 406 error_code sys::ChangeStdinToBinary(){
411 error_code sys::ChangeStdoutToBinary(){
416 error_code sys::ChangeStderrToBinary(){

Completed in 914 milliseconds

<<21222324252627282930>>