From: Dongsun Lee Date: Wed, 18 Oct 2017 06:15:37 +0000 (+0900) Subject: change privilege level to partner for RegisteredMemoryReference and SharedMemory X-Git-Tag: preview1-00323^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F42%2F156342%2F2;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git change privilege level to partner for RegisteredMemoryReference and SharedMemory Change-Id: I74b2b867ab3a790d67916ad2b64e21f16409915a Signed-off-by: Dongsun Lee --- diff --git a/src/Tizen.Security.TEEC/Tizen.Security.TEEC/Libteec.cs b/src/Tizen.Security.TEEC/Tizen.Security.TEEC/Libteec.cs index 52c612b..858097f 100644 --- a/src/Tizen.Security.TEEC/Tizen.Security.TEEC/Libteec.cs +++ b/src/Tizen.Security.TEEC/Tizen.Security.TEEC/Libteec.cs @@ -114,6 +114,8 @@ namespace Tizen.Security.TEEC /// This property represents the shared memory size in bytes. /// /// 3 + /// http://tizen.org/privilege/tee.client + /// partner public UInt32 Size { get { return shm.size; } @@ -122,6 +124,8 @@ namespace Tizen.Security.TEEC /// This property represents the start address of the shared memory block. /// /// 3 + /// http://tizen.org/privilege/tee.client + /// partner public IntPtr Address { get { return shm.buffer; } @@ -132,6 +136,8 @@ namespace Tizen.Security.TEEC /// For large buffers, the direct address should be used. /// /// 3 + /// http://tizen.org/privilege/tee.client + /// partner /// The source data buffer to copy data from. /// The starting offset in the destination shared memory. /// The operation is invalid. @@ -145,6 +151,8 @@ namespace Tizen.Security.TEEC /// For large buffers, the direct address should be used. /// /// 3 + /// http://tizen.org/privilege/tee.client + /// partner /// The destination data buffer to copy data into. /// The starting offset in the source shared memory. /// The operation is invalid. @@ -229,6 +237,8 @@ namespace Tizen.Security.TEEC /// Constructs a parameter object which holds information about the registered memory shared with TA. /// /// 3 + /// http://tizen.org/privilege/tee.client + /// partner /// The shared memory - registered or allocated. /// The size of the buffer part. /// The offset of the buffer in the shared memory. @@ -244,16 +254,22 @@ namespace Tizen.Security.TEEC /// This property represents the shared memory that is referred to. /// /// 3 + /// http://tizen.org/privilege/tee.client + /// partner public SharedMemory Parent { get; } /// /// This property represents the size (in bytes) of the shared memory. /// /// 3 + /// http://tizen.org/privilege/tee.client + /// partner public uint Size { get; internal set; } /// /// This property represents the offset (in bytes) from the start of the shared memory. /// /// 3 + /// http://tizen.org/privilege/tee.client + /// partner public uint Offset { get; } };