Home
last modified time | relevance | path

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

/external/libchrome/mojo/public/java/system/src/org/chromium/mojo/system/impl/
DCoreImpl.java204 int mojoResult = nativeClose(mojoHandle); in close() local
205 if (mojoResult != MojoResult.OK) { in close()
206 throw new MojoException(mojoResult); in close()
231 int mojoResult = nativeWriteMessage(pipeHandle.getMojoHandle(), bytes, in writeMessage() local
233 if (mojoResult != MojoResult.OK) { in writeMessage()
234 throw new MojoException(mojoResult); in writeMessage()
436 private static ResultAnd<ByteBuffer> newResultAndBuffer(int mojoResult, ByteBuffer buffer) { in newResultAndBuffer() argument
437 return new ResultAnd<>(mojoResult, buffer); in newResultAndBuffer()
452 int mojoResult, byte[] data, int[] rawHandles) { in newReadMessageResult() argument
454 if (mojoResult == MojoResult.OK) { in newReadMessageResult()
[all …]