コード例 #1
0
        public static UInt64 FromMremapFlags(MremapFlags value)
        {
            UInt64 rval;

            if (FromMremapFlags(value, out rval) == -1)
            {
                ThrowArgumentException(value);
            }
            return(rval);
        }
コード例 #2
0
		public static bool TryToMremapFlags (UInt64 value, out MremapFlags rval)
		{
			return ToMremapFlags (value, out rval) == 0;
		}
コード例 #3
0
		private static extern int ToMremapFlags (UInt64 value, out MremapFlags rval);
コード例 #4
0
		public static UInt64 FromMremapFlags (MremapFlags value)
		{
			UInt64 rval;
			if (FromMremapFlags (value, out rval) == -1)
				ThrowArgumentException (value);
			return rval;
		}
コード例 #5
0
		public static bool TryFromMremapFlags (MremapFlags value, out UInt64 rval)
		{
			return FromMremapFlags (value, out rval) == 0;
		}
コード例 #6
0
		private static extern int FromMremapFlags (MremapFlags value, out UInt64 rval);
コード例 #7
0
 public static bool TryToMremapFlags(UInt64 value, out MremapFlags rval)
 {
     return(ToMremapFlags(value, out rval) == 0);
 }
コード例 #8
0
		public static extern IntPtr mremap (IntPtr old_address, ulong old_size, 
				ulong new_size, MremapFlags flags);
コード例 #9
0
 public static bool TryFromMremapFlags(MremapFlags value, out UInt64 rval)
 {
     return(FromMremapFlags(value, out rval) == 0);
 }
コード例 #10
0
		private static int ToMremapFlags (UInt64 value, out MremapFlags rval)
		{
			throw new System.NotImplementedException();
		}
コード例 #11
0
 private static extern int FromMremapFlags(MremapFlags value, out UInt64 rval);
コード例 #12
0
		private static int FromMremapFlags (MremapFlags value, out UInt64 rval)
		{
			throw new System.NotImplementedException();
		}
コード例 #13
0
 public static extern IntPtr mremap(IntPtr old_address, ulong old_size, ulong new_size, MremapFlags flags, IntPtr new_address);
コード例 #14
0
		public static IntPtr mremap (IntPtr old_address, ulong old_size,
		ulong new_size, MremapFlags flags)
		{
			throw new System.NotImplementedException();
		}
コード例 #15
0
 private static int FromMremapFlags(MremapFlags value, out UInt64 rval)
 {
     throw new System.NotImplementedException();
 }
コード例 #16
0
 private static extern int ToMremapFlags(UInt64 value, out MremapFlags rval);
コード例 #17
0
 private static int ToMremapFlags(UInt64 value, out MremapFlags rval)
 {
     throw new System.NotImplementedException();
 }
コード例 #18
0
 public static IntPtr mremap(IntPtr old_address, ulong old_size,
                             ulong new_size, MremapFlags flags)
 {
     throw new System.NotImplementedException();
 }