HomeSort by relevance Sort by last modified time
    Searched defs:ERR (Results 1 - 25 of 118) sorted by null

1 2 3 4 5

  /device/generic/goldfish-opengl/shared/OpenglCodecCommon/
ErrorLog.h 21 # define ERR(...) ALOGE(__VA_ARGS__)
29 # define ERR(...) fprintf(stderr, __VA_ARGS__)
  /external/kmod/tools/
log.h 31 #define ERR(...) log_printf(LOG_ERR, __VA_ARGS__)
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/
TestLog.java 24 // void err(String message);
38 public static final int ERR = 2;
  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/
TestLog.java 23 // void err(String message);
37 public static final int ERR = 2;
  /external/selinux/libsemanage/src/
debug.h 50 #define ERR(handle, ...) \
  /external/selinux/libsepol/src/
debug.h 50 #define ERR(handle, ...) \
  /external/swiftshader/src/Common/
DebugAndroid.hpp 55 #define ERR(format, ...) \
57 ALOGE("badness: err %s %s:%d (" format ")", __FUNCTION__, __FILE__, \
  /external/swiftshader/src/OpenGL/common/
debug.h 52 #define ERR(message, ...) (void(0))
54 #define ERR(message, ...) do {es::trace("err: %s(%d): " message "\n", __FUNCTION__, __LINE__, ##__VA_ARGS__); assert(false);} while(false)
62 ERR("\t! Assert failed in %s(%d): "#expression"\n", __FUNCTION__, __LINE__); \
84 ERR("\t! Unreachable case reached: %s(%d). %s: %d\n", __FUNCTION__, __LINE__, #value, value); \
88 #define UNREACHABLE(value) ERR("\t! Unreachable reached: %s(%d). %s: %d\n", __FUNCTION__, __LINE__, #value, value)
  /system/core/adb/sysdeps/win32/
errno.cpp 25 char* adb_strerror(int err) {
37 errmsg = strerror(err);
44 switch (err) {
45 #pragma push_macro("ERR")
46 #undef ERR
47 #define ERR(errnum, desc) case errnum: custom_msg = desc; break
51 ERR(ECONNRESET, "Connection reset by peer");
52 ERR(EHOSTUNREACH, "No route to host");
53 ERR(ENETDOWN, "Network is down");
54 ERR(ENETRESET, "Network dropped connection because of reset")
    [all...]
  /cts/hostsidetests/security/securityPatch/CVE-2016-8431/
poc.c 26 #define ERR(fmt, ...) printf(fmt " %d %s\n", ##__VA_ARGS__, errno, strerror(errno))
  /external/kmod/testsuite/
test-blacklist.c 35 #undef ERR
43 int err; local
54 err = kmod_module_new_from_name(ctx, *name, &mod);
55 if (err < 0)
60 err = kmod_module_apply_filter(ctx, KMOD_FILTER_BLACKLIST, list,
62 if (err < 0) {
63 ERR("Could not filter: %s\n", strerror(-err));
67 ERR("All modules were filtered out!\n");
  /external/ltp/testcases/kernel/io/disktest/
sfunc.h 110 START, END, STAT, INFO, DBUG, WARN, ERR
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/
SAXNotRecognizedExceptionTest.java 25 public static final String ERR = "Houston, we have a problem";
33 SAXNotRecognizedException e = new SAXNotRecognizedException(ERR);
34 assertEquals(ERR, e.getMessage());
SAXNotSupportedExceptionTest.java 25 public static final String ERR = "Houston, we have a problem";
33 SAXNotSupportedException e = new SAXNotSupportedException(ERR);
34 assertEquals(ERR, e.getMessage());
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
Solaris.h 37 #undef ERR
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Support/Solaris/sys/
regset.h 36 #undef ERR
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Support/Solaris/sys/
regset.h 36 #undef ERR
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Support/Solaris/sys/
regset.h 36 #undef ERR
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Support/Solaris/sys/
regset.h 36 #undef ERR
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Support/Solaris/sys/
regset.h 36 #undef ERR
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Support/Solaris/sys/
regset.h 36 #undef ERR
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Support/Solaris/sys/
regset.h 36 #undef ERR
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Support/Solaris/sys/
regset.h 36 #undef ERR
  /cts/hostsidetests/security/securityPatch/CVE-2016-8425/
poc.c 31 #define ERR(fmt, ...) printf(fmt ": %d(%s)\n", ##__VA_ARGS__, errno, strerror(errno))
93 ERR("[-] open failed");
102 ERR("[-] ioctl failed");
  /cts/hostsidetests/security/securityPatch/CVE-2016-8426/
poc.c 31 #define ERR(fmt, ...) printf(fmt ": %d(%s)\n", ##__VA_ARGS__, errno, strerror(errno))
93 ERR("[-] open failed");
102 ERR("[-] ioctl failed");
129 ERR("[-] ioctl failed");

Completed in 462 milliseconds

1 2 3 4 5