Searched refs:m_err (Results 1 - 11 of 11) sorted by relevance

/external/lldb/tools/debugserver/source/
H A DDNBError.h38 m_err(err),
44 void Clear() { m_err = 0; m_flavor = Generic; m_str.clear(); }
45 ValueType Error() const { return m_err; }
50 m_err = err;
53 return m_err;
58 m_err = err;
65 m_err = errno;
72 m_err = err;
85 bool Success() const { return m_err == 0; }
86 bool Fail() const { return m_err !
90 ValueType m_err; member in class:DNBError
[all...]
H A DDNBError.cpp35 s = ::mach_error_string (m_err);
39 s = ::strerror (m_err);
45 CFStringRef statusStr = SBSApplicationLaunchingErrorString (m_err);
78 DNBLogThreaded ("error: %s err = %s (0x%8.8x)", arg_msg, err_str, m_err);
100 DNBLogThreaded ("error: %s err = %s (0x%8.8x)", arg_msg, err_str, m_err);
104 DNBLogThreaded ("%s err = 0x%8.8x", arg_msg, m_err);
/external/lldb/tools/debugserver/source/MacOSX/
H A DMachVMRegion.cpp22 m_err(),
44 m_err.Clear();
74 m_err = ::mach_vm_protect (m_task, addr, prot_size, 0, prot);
76 m_err.LogThreaded("::mach_vm_protect ( task = 0x%4.4x, addr = 0x%8.8llx, size = %llu, set_max = %i, prot = %u )", m_task, (uint64_t)addr, (uint64_t)prot_size, 0, prot);
77 if (m_err.Fail())
80 m_err = ::mach_vm_protect (m_task, addr, prot_size, 0, prot | VM_PROT_COPY);
81 if (DNBLogCheckLogBit(LOG_MEMORY_PROTECTIONS) || m_err.Fail())
82 m_err.LogThreaded("::mach_vm_protect ( task = 0x%4.4x, addr = 0x%8.8llx, size = %llu, set_max = %i, prot = %u )", m_task, (uint64_t)addr, (uint64_t)prot_size, 0, prot | VM_PROT_COPY);
84 if (m_err.Success())
106 m_err
[all...]
H A DMachVMRegion.h53 return m_err;
66 DNBError m_err; member in class:MachVMRegion
H A DMachVMMemory.cpp24 m_err (0)
56 m_err = ::host_page_size( ::mach_host_self(), &m_page_size);
57 if (m_err.Fail())
562 m_err = ::mach_vm_read (task, curr_addr, curr_size, &vm_memory, &curr_bytes_read);
565 m_err.LogThreaded("::mach_vm_read ( task = 0x%4.4x, addr = 0x%8.8llx, size = %llu, data => %8.8p, dataCnt => %i )", task, (uint64_t)curr_addr, (uint64_t)curr_size, vm_memory, curr_bytes_read);
567 if (m_err.Success())
572 m_err.LogThreaded("::mach_vm_read ( task = 0x%4.4x, addr = 0x%8.8llx, size = %llu, data => %8.8p, dataCnt=>%i ) only read %u of %llu bytes", task, (uint64_t)curr_addr, (uint64_t)curr_size, vm_memory, curr_bytes_read, curr_bytes_read, (uint64_t)curr_size);
656 m_err = ::mach_vm_write (task, curr_addr, (pointer_t) curr_data, curr_data_count);
657 if (DNBLogCheckLogBit(LOG_MEMORY) || m_err.Fail())
658 m_err
[all...]
H A DMachVMMemory.h44 DNBError m_err; member in class:MachVMMemory
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/jpeg/
H A DJPEGImageDecoder.cpp328 m_info.err = jpeg_std_error(&m_err.pub);
329 m_err.pub.error_exit = error_exit;
405 if (setjmp(m_err.setjmp_buffer))
639 decoder_error_mgr m_err; member in class:blink::JPEGImageReader
/external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
H A Dsctp_auth.c1681 struct mbuf *m_err; local
1692 m_err = sctp_get_mbuf_for_msg(sizeof(*err), 0, M_NOWAIT,
1694 if (m_err != NULL) {
1696 SCTP_BUF_RESV_UF(m_err, sizeof(struct sctp_chunkhdr));
1698 err = mtod(m_err, struct sctp_auth_invalid_hmac *);
1703 SCTP_BUF_LEN(m_err) = sizeof(*err);
1705 sctp_queue_op_err(stcb, m_err);
/external/lldb/examples/interposing/darwin/fd_interposing/
H A DFDInterposing.cpp190 m_err (err),
229 return m_err;
253 int m_err; member in class:fd_interposing::FDEvent
/external/lldb/source/Plugins/Process/FreeBSD/
H A DProcessMonitor.cpp537 : m_tid(tid), m_info(info), m_result(result), m_err(ptrace_err) { }
545 int &m_err; member in class:LwpInfoOperation
555 m_err = errno;
/external/lldb/source/Plugins/Process/Linux/
H A DProcessMonitor.cpp781 : m_tid(tid), m_info(info), m_result(result), m_err(ptrace_err) { }
789 int &m_err; member in class:SiginfoOperation
797 m_err = errno;

Completed in 203 milliseconds