HomeSort by relevance Sort by last modified time
    Searched defs:error (Results 876 - 900 of 3032) sorted by null

<<31323334353637383940>>

  /system/netd/client/
NetdClient.cpp 46 int closeFdAndSetErrno(int fd, int error) {
48 errno = -error;
68 if (int error = FwmarkClient().send(&command, acceptedSocket)) {
69 return closeFdAndSetErrno(acceptedSocket, error);
78 if (int error = FwmarkClient().send(&command, sockfd)) {
79 errno = -error;
93 if (int error = setNetworkForSocket(netId, socketFd)) {
94 return closeFdAndSetErrno(socketFd, error);
128 int error = setNetworkForSocket(netId, socketFd); local
129 if (!error) {
    [all...]
  /external/apache-http/android/src/android/net/http/
Connection.java 157 int error = EventHandler.OK; local
234 error = EventHandler.ERROR;
237 error = EventHandler.ERROR_IO;
240 error = EventHandler.ERROR_IO;
243 if (httpFailure(req, error, exception) &&
282 error = EventHandler.ERROR_IO;
285 error = EventHandler.ERROR_IO;
288 error = EventHandler.ERROR_IO;
291 if (httpFailure(req, error, exception) &
348 int error = EventHandler.OK; local
434 String error; local
    [all...]
Request.java 324 as we do truncated non-gzipped content: no error */
503 * Handles SSL error(s) on the way down from the user (the user
514 * Helper: calls error() on eventhandler with appropriate message
517 void error(int errorId, String errorMessage) { method in class:Request
518 mEventHandler.error(errorId, errorMessage);
  /external/doclava/test/doclava/
ApiCheckTest.java 20 import com.google.doclava.Errors.Error;
35 for (Errors.Error error : Errors.ERRORS) {
36 Errors.setErrorLevel(error.code, Errors.ERROR);
52 assertEquals(Errors.CHANGED_TYPE, report.errors().iterator().next().error());
64 assertNotSame(m1.error(), m2.error());
65 assertTrue(m1.error().equals(Errors.ADDED_METHOD) || m1.error().equals(Errors.REMOVED_METHOD))
    [all...]
  /external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
CharsetBOCU1.java 610 ByteBuffer error = ByteBuffer.wrap(errorBuffer); local
622 error.put((byte)(diff>>16));
624 error.put((byte)(diff>>8));
626 error.put((byte)diff);
766 * @return new delta for diff including b - <0 indicates an error
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/shaping/
ArabicShapingRegTest.java 52 public Class error; field in class:ArabicShapingRegTest.TestData
56 public static final int ERROR = 2;
66 public static TestData error(String source, int flags, Class error) { method in class:ArabicShapingRegTest.TestData
67 return new TestData(ERROR, source, flags, null, 0, error);
70 private TestData(int type, String source, int flags, String result, int length, Class error) {
76 this.error = error;
79 private static final String[] typenames = { "standard", "preflight", "error" };
    [all...]
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
maven-plugin-api-3.2.1.jar 
slf4j-api-1.7.5.jar 
  /external/jetty/lib/
slf4j-api-1.6.1.jar 
slf4j-jdk14-1.6.1.jar 
  /external/slf4j/integration/lib/
slf4j-api-1.5.11.jar 
slf4j-api-1.6.6.jar 
slf4j-api-1.6.99.jar 
slf4j-api-2.0.99.jar 
slf4j-simple-1.4.2.jar 
slf4j-simple-1.5.0.jar 
slf4j-simple-1.5.11.jar 
slf4j-simple-1.5.4-SNAPSHOT.jar 
slf4j-simple-1.6.6.jar 
slf4j-simple-1.6.99.jar 
  /prebuilts/tools/common/m2/repository/org/slf4j/slf4j-api/1.5.10/
slf4j-api-1.5.10.jar 
  /prebuilts/tools/common/m2/repository/org/slf4j/slf4j-api/1.7.2/
slf4j-api-1.7.2.jar 
  /prebuilts/tools/common/m2/repository/org/slf4j/slf4j-api/1.7.5/
slf4j-api-1.7.5.jar 
  /art/compiler/jit/
jit_compiler.cc 132 std::string error; local
133 if (verifier::MethodVerifier::VerifyMethod(method, true, &error) ==
136 << " due to verification failure " << error;
  /build/tools/atree/
files.cpp 130 bool* error) {
160 *error = true;
225 fprintf(stderr, "error reading file %s. (%s)\n",
276 errstr = "Error: you can only specifiy 'rm' or 'strip' once per line.";
282 errstr = "Error: you can only specifiy 'rm' or 'strip' once per line.";
287 bool error = false; local
288 paths[pcount++] = replace_variables(word, variables, &error);
289 if (error) {
294 errstr = "Error: More than 2 paths per line.";
300 errstr = "Error: No path found on line."
    [all...]

Completed in 74 milliseconds

<<31323334353637383940>>