@Implements(value=android.os.SharedMemory.class, minSdk=27, isInAndroidSdk=false) public class ShadowSharedMemory extends Object
SharedMemory
fake that uses a private temporary disk file for storage and Java's MappedByteBuffer
for the memory mappings.Constructor | Description |
---|---|
ShadowSharedMemory() |
Modifier and Type | Method | Description |
---|---|---|
protected ByteBuffer |
map(int prot,
int offset,
int length) |
Only works on
SharedMemory instances from SharedMemory.create(java.lang.String, int) . |
protected static FileDescriptor |
nCreate(String name,
int size) |
|
protected static int |
nGetSize(FileDescriptor fd) |
|
static void |
reset() |
|
static void |
setCreateShouldThrow(ErrnoException e) |
Causes subsequent calls to {@link SharedMemory#create)} to throw the specified exception, if
non-null.
|
protected static void |
unmap(ByteBuffer mappedBuf) |
@Resetter public static void reset()
@Implementation protected ByteBuffer map(int prot, int offset, int length) throws ErrnoException
SharedMemory
instances from SharedMemory.create(java.lang.String, int)
.
"prot" is ignored -- all mappings are read/write.
ErrnoException
@Implementation protected static void unmap(ByteBuffer mappedBuf) throws ErrnoException
ErrnoException
@Implementation protected static FileDescriptor nCreate(String name, int size) throws ErrnoException
ErrnoException
@Implementation protected static int nGetSize(FileDescriptor fd)
public static void setCreateShouldThrow(ErrnoException e)