HomeSort by relevance Sort by last modified time
    Searched refs:mojoResult (Results 1 - 3 of 3) sorted by null

  /external/libmojo/mojo/public/java/system/src/org/chromium/mojo/system/
Core.java 138 * |MojoResult.OK| if some signal in |signals| was satisfied (or is already satisfied).
140 * |MojoResult.DEADLINE_EXCEEDED| if the deadline has passed without any of the signals
143 * |MojoResult.CANCELLED| if |handle| is closed concurrently by another thread.
145 * |MojoResult.FAILED_PRECONDITION| if it is or becomes impossible that any flag in
156 * Returns the mojoResult.
163 * @param mojoResult the mojoResult to set
165 public void setMojoResult(int mojoResult) {
166 mMojoResult = mojoResult;
203 * If |mojoResult| is |MojoResult.OK|, |handleIndex| is the index of the handle for whic
    [all...]
  /external/libmojo/mojo/android/system/src/org/chromium/mojo/system/impl/
CoreImpl.java 18 import org.chromium.mojo.system.MojoResult;
118 if (result.getMojoResult() != MojoResult.INVALID_ARGUMENT
119 && result.getMojoResult() != MojoResult.RESOURCE_EXHAUSTED) {
161 if (result.getMojoResult() != MojoResult.OK) {
183 if (result.getMojoResult() != MojoResult.OK) {
204 if (result.getMojoResult() != MojoResult.OK) {
232 throw new MojoException(MojoResult.FAILED_PRECONDITION);
268 int mojoResult = nativeClose(mojoHandle);
269 if (mojoResult != MojoResult.OK)
    [all...]
  /external/libmojo/mojo/public/js/
support.js 20 * @param {function (mojoResult)} callback Called with the result the wait is
41 * @param {function (mojoResult)} calback Called with a result any time

Completed in 301 milliseconds