Searched defs:bytes_read (Results 276 - 299 of 299) sorted by relevance

<<1112

/external/e2fsprogs/e2fsck/
H A De2fsck.h148 unsigned long long bytes_read; member in struct:resource_track
/external/gtest/src/
H A Dgtest-death-test.cc427 int bytes_read; local
434 bytes_read = posix::Read(read_fd(), &flag, 1);
435 } while (bytes_read == -1 && errno == EINTR);
437 if (bytes_read == 0) {
439 } else if (bytes_read == 1) {
/external/lldb/source/Core/
H A DModule.cpp268 const size_t bytes_read = process_sp->ReadMemory (header_addr, local
272 if (bytes_read == 512)
H A DValueObject.cpp928 size_t bytes_read = target->ReadMemory(so_addr, false, heap_buf_ptr->GetBytes(), bytes, error); local
932 return bytes_read;
945 size_t bytes_read = process->ReadMemory(addr + offset, heap_buf_ptr->GetBytes(), bytes, error); local
949 return bytes_read;
959 size_t bytes_read = std::min<uint64_t>(max_bytes - offset, bytes); local
960 heap_buf_ptr->CopyData((uint8_t*)(addr + offset), bytes_read);
962 return bytes_read;
1119 size_t bytes_read = 0; local
1169 if ((bytes_read = data.GetByteSize()) > 0)
1171 total_bytes_read = bytes_read;
[all...]
/external/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
H A DDynamicLoaderMacOSXDYLD.cpp749 const size_t bytes_read = m_process->ReadMemory (m_dyld_all_image_infos_addr, buf, count, error); local
750 if (bytes_read == count)
1028 const size_t bytes_read = m_process->ReadMemory (image_infos_addr, local
1032 if (bytes_read == count)
1146 size_t bytes_read = m_process->ReadMemory (addr, local
1150 if (bytes_read == sizeof(llvm::MachO::mach_header))
/external/lldb/source/Plugins/Process/Linux/
H A DProcessMonitor.cpp217 size_t bytes_read; local
229 for (bytes_read = 0; bytes_read < size; bytes_read += remainder)
238 return bytes_read;
241 remainder = size - bytes_read;
267 return bytes_read;
/external/lldb/tools/debugserver/source/
H A DDNB.cpp1404 nub_size_t bytes_read; local
1406 while ((bytes_read = DNBProcessMemoryRead(pid, str_addr, string_buf_len, &string_buf[0])) > 0)
1441 nub_size_t bytes_read = 0; local
1443 bytes_read = register_value.info.size;
1445 bytes_read = DNBProcessMemoryRead(pid, addr, buf.size(), &buf[0]);
1446 if (bytes_read > 0)
1449 total_bytes_read += bytes_read;
1451 if (bytes_read == byte_size)
1476 data.SetData(&buf[0], bytes_read);
H A DRNBRemote.cpp2723 int bytes_read = DNBProcessMemoryRead (m_ctx.ProcessID(), addr, length, buf); local
2724 if (bytes_read == 0)
2731 length = bytes_read;
/external/lldb/tools/debugserver/source/MacOSX/
H A DMachProcess.cpp578 nub_size_t bytes_read = m_task.ReadMemory(addr, size, buf); local
582 if (bytes_read > 0)
583 m_breakpoints.RemoveTrapsFromBuffer (addr, bytes_read, buf);
584 return bytes_read;
1332 int bytes_read = 0; local
1337 bytes_read = ::read (stdout_fd, s, sizeof(s)-1);
1338 if (bytes_read < 0)
1341 DNBLogThreadedIf(LOG_PROCESS, "read (stdout_fd, ) => %d errno: %d (%s)", bytes_read, read_errno, strerror(read_errno));
1343 else if (bytes_read == 0)
1346 DNBLogThreadedIf(LOG_PROCESS, "read (stdout_fd, ) => %d (reached EOF for child STDOUT)", bytes_read);
[all...]
/external/llvm/utils/unittest/googletest/src/
H A Dgtest-death-test.cc390 int bytes_read; local
397 bytes_read = posix::Read(read_fd(), &flag, 1);
398 } while (bytes_read == -1 && errno == EINTR);
400 if (bytes_read == 0) {
402 } else if (bytes_read == 1) {
/external/mesa3d/src/gallium/drivers/r600/
H A Dr600_shader.c262 unsigned * bytes_read)
267 out |= bytes[(*bytes_read)++] << (8 * i);
273 unsigned bytes_read, struct r600_bytecode_alu * alu, unsigned src_idx)
277 sel0 = bytes[bytes_read++];
278 sel1 = bytes[bytes_read++];
280 alu->src[src_idx].chan = bytes[bytes_read++];
281 alu->src[src_idx].neg = bytes[bytes_read++];
282 alu->src[src_idx].abs = bytes[bytes_read++];
283 alu->src[src_idx].rel = bytes[bytes_read++];
284 alu->src[src_idx].kc_bank = bytes[bytes_read
261 i32_from_byte_stream(unsigned char * bytes, unsigned * bytes_read) argument
272 r600_src_from_byte_stream(unsigned char * bytes, unsigned bytes_read, struct r600_bytecode_alu * alu, unsigned src_idx) argument
291 r600_alu_from_byte_stream(struct r600_shader_ctx *ctx, unsigned char * bytes, unsigned bytes_read) argument
373 r600_fc_from_byte_stream(struct r600_shader_ctx *ctx, unsigned char * bytes, unsigned bytes_read) argument
439 r600_tex_from_byte_stream(struct r600_shader_ctx *ctx, unsigned char * bytes, unsigned bytes_read) argument
473 r600_vtx_from_byte_stream(struct r600_shader_ctx *ctx, unsigned char * bytes, unsigned bytes_read) argument
519 unsigned bytes_read = 0; local
[all...]
/external/mesa3d/src/gtest/src/
H A Dgtest-death-test.cc387 int bytes_read; local
394 bytes_read = posix::Read(read_fd(), &flag, 1);
395 } while (bytes_read == -1 && errno == EINTR);
397 if (bytes_read == 0) {
399 } else if (bytes_read == 1) {
/external/bison/src/
H A Dscan-gram.c3530 size_t bytes_read = fread (buf, 1, size, fp); local
3531 if (bytes_read)
3533 char *w = memchr (buf, '\r', bytes_read);
3537 char const *lim = buf + bytes_read;
3566 return bytes_read;
/external/blktrace/
H A Dblktrace.c926 int bytes_read; local
930 bytes_read = __net_recv_data(nc->fd, bnh, sizeof(*bnh));
933 if (bytes_read == sizeof(*bnh))
935 else if (bytes_read == 0)
/external/chromium_org/net/spdy/
H A Dspdy_framer.cc535 size_t bytes_read = ProcessCommonHeader(data, len); local
536 len -= bytes_read;
537 data += bytes_read;
555 int bytes_read = ProcessControlFrameBeforeHeaderBlock(data, len); local
556 len -= bytes_read;
557 data += bytes_read;
562 int bytes_read = ProcessSettingsFramePayload(data, len); local
563 len -= bytes_read;
564 data += bytes_read;
569 int bytes_read local
577 size_t bytes_read = ProcessRstStreamFramePayload(data, len); local
584 size_t bytes_read = ProcessGoAwayFramePayload(data, len); local
591 size_t bytes_read = ProcessAltSvcFramePayload(data, len); local
598 size_t bytes_read = ProcessControlFramePayload(data, len); local
605 size_t bytes_read = ProcessFramePaddingLength(data, len); local
612 size_t bytes_read = ProcessFramePadding(data, len); local
619 size_t bytes_read = ProcessIgnoredControlFramePayload(/*data,*/ len); local
626 size_t bytes_read = ProcessDataFramePayload(data, len); local
1372 size_t bytes_read = UpdateCurrentFrameBuffer(&data, &len, local
1793 size_t bytes_read = UpdateCurrentFrameBuffer(&data, &len, local
[all...]
H A Dspdy_network_transaction_unittest.cc577 int bytes_read = 0; local
594 bytes_read += rv;
596 return bytes_read;
/external/libpcap/
H A Dpcap-linux.c517 ssize_t bytes_read; local
528 bytes_read = readlink(pathstr, phydev_path, phydev_max_pathlen);
529 if (bytes_read == -1) {
545 phydev_path[bytes_read] = '\0';
/external/lldb/source/API/
H A DSBTarget.cpp2312 const size_t bytes_read = target_sp->ReadMemory(*addr_ptr, local
2324 bytes_read,
/external/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp2997 size_t bytes_read = ReadMemory (label_addr, &dispatch_queue_name[0], dispatch_queue_offsets.dqo_label_size, error); local
2998 if (bytes_read < dispatch_queue_offsets.dqo_label_size)
2999 dispatch_queue_name.erase (bytes_read);
/external/stressapptest/src/
H A Dworker.cc3067 int64 bytes_read = 0; local
3100 (address * kSectorSize + bytes_read) / kSectorSize,
3104 address * kSectorSize + bytes_read,
3123 0, bytes_read)) {
3133 bytes_read += current_blocks * read_block_size_;
/external/chromium_org/net/url_request/
H A Durl_request_unittest.cc4113 int bytes_read) OVERRIDE {
4121 base::Unretained(this), request, bytes_read));
4141 void AfterReadCompletedLoggingComplete(URLRequest* request, int bytes_read) { argument
4143 TestDelegate::OnReadCompleted(request, bytes_read);
/external/lldb/source/Target/
H A DTarget.cpp1243 size_t bytes_read = objfile->ReadSectionData (section_sp.get(), local
1247 if (bytes_read > 0)
1248 return bytes_read;
1279 size_t bytes_read = 0; local
1309 bytes_read = ReadMemoryFromFileCache (resolved_addr, dst, dst_len, error);
1310 if (bytes_read > 0)
1311 return bytes_read;
1332 bytes_read = m_process_sp->ReadMemory(load_addr, dst, dst_len, error);
1333 if (bytes_read != dst_len)
1337 if (bytes_read
1413 size_t bytes_read = ReadMemory (address, false, curr_dst, bytes_to_read, error); local
1456 size_t bytes_read = ReadMemory (addr, prefer_file_cache, &uval, byte_size, error); local
[all...]
/external/netperf/
H A Dnetlib.c1238 int bytes_read;
1297 if (((bytes_read = (int)fread(bufptr,
1304 bufptr += bytes_read;
1305 bytes_left -= bytes_read;
1400 int bytes_read;
1493 if (((bytes_read = (int) fread (temp_link->buffer_ptr,
1500 bytes_left -= bytes_read;
1225 int bytes_read; local
1386 int bytes_read; local
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 8804 milliseconds

<<1112