Home | History | Annotate | Download | only in m_syswrap

Lines Matching refs:bytecount

516 SysRes read_ldt ( ThreadId tid, UChar* ptr, UInt bytecount )
523 VG_(printf)("read_ldt: tid = %u, ptr = %p, bytecount = %u\n",
524 tid, ptr, bytecount );
536 if (size > bytecount)
537 size = bytecount;
549 SysRes write_ldt ( ThreadId tid, void* ptr, UInt bytecount, Int oldmode )
557 "bytecount = %u, oldmode = %d\n",
558 tid, ptr, bytecount, oldmode );
567 if (bytecount != sizeof(vki_modify_ldt_t))
597 Int func, void* ptr, UInt bytecount )
603 ret = read_ldt(tid, ptr, bytecount);
606 ret = write_ldt(tid, ptr, bytecount, 1);
611 /* ret = read_default_ldt(ptr, bytecount); */
615 ret = write_ldt(tid, ptr, bytecount, 0);
1026 unsigned long, bytecount);