Searched refs:mojoResult (Results 1 – 1 of 1) sorted by relevance
204 int mojoResult = nativeClose(mojoHandle); in close() local205 if (mojoResult != MojoResult.OK) { in close()206 throw new MojoException(mojoResult); in close()231 int mojoResult = nativeWriteMessage(pipeHandle.getMojoHandle(), bytes, in writeMessage() local233 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() argument437 return new ResultAnd<>(mojoResult, buffer); in newResultAndBuffer()452 int mojoResult, byte[] data, int[] rawHandles) { in newReadMessageResult() argument454 if (mojoResult == MojoResult.OK) { in newReadMessageResult()[all …]