Searched refs:data_bytes (Results 1 - 4 of 4) sorted by relevance

/external/lldb/source/Core/
H A DDataEncoder.cpp134 const uint8_t * data_bytes = data->GetBytes(); local
135 if (data_bytes != NULL)
137 assert(m_start >= data_bytes);
138 return m_start - data_bytes;
H A DDataExtractor.cpp239 const uint8_t * data_bytes = data->GetBytes(); local
240 if (data_bytes != NULL)
242 assert(m_start >= data_bytes);
243 return m_start - data_bytes;
/external/mdnsresponder/mDNSShared/
H A Duds_daemon.c146 mDNSu32 data_bytes; // bytes of message data already read member in struct:request_state
3597 if (req->hdr_bytes == sizeof(ipc_msg_hdr) && req->data_bytes < req->hdr.datalen)
3599 mDNSu32 nleft = req->hdr.datalen - req->data_bytes;
3602 struct iovec vec = { req->msgbuf + req->data_bytes, nleft }; // Tell recvmsg where we want the bytes put
3615 nread = udsSupportReadFD(req->sd, (char *)req->msgbuf + req->data_bytes, nleft, 0, req->platform_data);
3619 req->data_bytes += nread;
3620 if (req->data_bytes > req->hdr.datalen)
3649 if (req->data_bytes < req->hdr.datalen)
3651 LogMsg("%3d: Client sent error socket %d via SCM_RIGHTS with req->data_bytes %d < req->hdr.datalen %d",
3652 req->sd, req->errsd, req->data_bytes, re
[all...]
/external/lldb/source/Expression/
H A DIRForTarget.cpp2038 uint8_t *data_bytes = data.GetBytes(); local
2044 data_bytes[index] = operand_raw_data[operand_data_size - (1 + index)];

Completed in 213 milliseconds