Home
last modified time | relevance | path

Searched refs:clientWritable (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/core/tests/utiltests/src/android/util/
DRemoteMemoryIntArrayService.java38 public void create(int size, boolean clientWritable) { in onBind()
41 mArray = new MemoryIntArray(size, clientWritable); in onBind()
DRemoteIntArray.java43 public RemoteIntArray(int size, boolean clientWritable) throws IOException, TimeoutException { in RemoteIntArray() argument
51 mRemoteInstance.create(size, clientWritable); in RemoteIntArray()
DIRemoteMemoryIntArray.aidl23 void create(int size, boolean clientWritable); in create() argument
/frameworks/base/core/java/android/util/
DMemoryIntArray.java67 public MemoryIntArray(int size, boolean clientWritable) throws IOException { in MemoryIntArray() argument
72 mClientWritable = clientWritable; in MemoryIntArray()
75 mMemoryAddr = nativeOpen(mFd.getFd(), true, clientWritable); in MemoryIntArray()