Home | History | Annotate | Download | only in coregrind

Lines Matching refs:sres

726       SysRes sres = VG_(open)(VG_(clo_memfs_malloc_path),
728 if (!sr_isError(sres)) {
729 memfs_fd = sr_Res(sres);
756 SysRes sres = VG_(am_mmap_file_float_valgrind_flags)
762 char *mem = (char*)sr_Res(sres);
767 if (sr_isError(sres)) {
770 VG_(printf)("... ok; res=%p\n", (void*)sr_Res(sres));
772 return sres;
785 SysRes sres;
816 sres = MemfsAlloc(cszB);
819 sres = VG_(am_mmap_anon_float_client)
822 sres = VG_(am_sbrk_anon_float_client)
825 if (sr_isError(sres))
827 sb = (Superblock*)(AddrH)sr_Res(sres);
837 sres = MemfsAlloc(cszB);
840 sres = VG_(am_mmap_anon_float_valgrind)( cszB );
842 sres = VG_(am_sbrk_anon_float_valgrind)( cszB );
844 if (sr_isError(sres)) {
849 sb = (Superblock*)(AddrH)sr_Res(sres);
874 SysRes sres;
909 sres = VG_(am_munmap_client)(&need_discard, (Addr) sb, cszB);
910 vg_assert2(! sr_isError(sres), "superblock client munmap failure\n");
924 sres = VG_(am_munmap_valgrind)((Addr) sb, cszB);
925 vg_assert2(! sr_isError(sres), "superblock valgrind munmap failure\n");
1573 SysRes sres = VG_(am_sbrk_anon_float_valgrind)(sizeof(Superblock *) *
1575 if (sr_isError(sres)) {
1580 array = (Superblock**)(AddrH)sr_Res(sres);