HomeSort by relevance Sort by last modified time
    Searched refs:error (Results 176 - 200 of 22890) sorted by null

1 2 3 4 5 6 78 91011>>

  /frameworks/base/core/java/android/database/sqlite/
SQLiteFullException.java 25 public SQLiteFullException(String error) {
26 super(error);
SQLiteMisuseException.java 20 * This error can occur if the application creates a SQLiteStatement object and allows multiple
22 * Sqlite returns this error if bind and execute methods on this object occur at the same time
34 public SQLiteMisuseException(String error) {
35 super(error);
SQLiteOutOfMemoryException.java 22 public SQLiteOutOfMemoryException(String error) {
23 super(error);
SQLiteReadOnlyDatabaseException.java 22 public SQLiteReadOnlyDatabaseException(String error) {
23 super(error);
SQLiteTableLockedException.java 22 public SQLiteTableLockedException(String error) {
23 super(error);
  /frameworks/base/opengl/java/android/opengl/
GLException.java 25 public GLException(final int error) {
26 super(getErrorString(error));
27 mError = error;
30 public GLException(final int error, final String string) {
32 mError = error;
35 private static String getErrorString(int error) {
36 String errorString = GLU.gluErrorString(error);
38 errorString = "Unknown error 0x" + Integer.toHexString(error);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/selftest/
test_macros.pass.cpp 15 #error TEST_STD_VER must be defined
19 #error TEST_NOEXCEPT must be defined
23 #error LIBCPP_ASSERT must be defined
27 #error LIBCPP_STATIC_ASSERT must be defined
40 # error "TEST_EXTENDED_CONSTEXPR mismatch (1)"
44 # error "TEST_EXTENDED_CONSTEXPR mismatch (2)"
51 # error "TEST_VARIABLE_TEMPLATES mismatch (1)"
55 # error "TEST_VARIABLE_TEMPLATES mismatch (2)"
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arc/
relocs-errors.d 0 #error-output: relocs-errors.err
textinsn-errors.d 0 #error-output: textinsn-errors.err
  /external/llvm/test/MC/AsmParser/
directive-err.s 4 // CHECK: error: .err encountered
11 // CHECK: error: .err encountered
18 // CHECK-NOT: error: .err encountered
20 .error "This is my error. There are many like it, but this one is mine."
21 // CHECK: error: This is my error. There are many like it, but this one is mine.
24 .error "My error is my best friend."
26 // CHECK-NOT: error: My error is my best friend
    [all...]
hash-directive.s 2 error label
3 # CHECK: hash-directive.s:[[@LINE-1]]:1: error
5 error label
6 # CHECK: FILE1:3:1: error
8 error label
9 # CHECK: hash-directive.s:[[@LINE-1]]:1: error
11 error label
12 # CHECK: hash-directive.s:[[@LINE-1]]:1: error
14 error label
15 # CHECK: hash-directive.s:[[@LINE-1]]:1: error
18 error label
22 error label
    [all...]
  /frameworks/native/services/vr/performanced/
performance_service_tests.cpp 40 const int error = file ? 0 : errno; local
41 return {std::move(file), error};
45 int error; local
48 std::tie(file, error) = OpenTaskFile(task_id, "cpuset");
50 return std::string("errno:") + strerror(error);
63 int error; local
66 error = dvrSetCpuPartition(0, "/application/background");
67 EXPECT_EQ(0, error);
69 error = dvrSetCpuPartition(0, "/application/performance");
70 EXPECT_EQ(0, error);
117 int error; local
138 int error; local
180 int error = dvrSetSchedulerPolicy(0, "vr:app:render"); local
201 int error; local
220 int error; local
251 int error; local
    [all...]
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutex_getprioceiling/
3-2.c 37 int error, prioceiling; local
39 error = pthread_mutexattr_init(&mutex_attr);
40 if (error) {
41 printf("pthread_mutexattr_init failed: %s\n", strerror(error));
49 error = pthread_mutexattr_setprotocol(&mutex_attr, PTHREAD_PRIO_NONE);
50 if (error) {
52 strerror(error));
57 error = pthread_mutex_init(&mutex, &mutex_attr);
58 if (error) {
59 printf("pthread_mutex_init failed: %s\n", strerror(error));
    [all...]
3-3.c 38 int error, prioceiling; local
40 error = pthread_mutexattr_init(&mutex_attr);
41 if (error) {
42 printf("pthread_mutexattr_init failed: %s\n", strerror(error));
50 error = pthread_mutexattr_setprotocol(&mutex_attr,
52 if (error) {
54 strerror(error));
59 error = pthread_mutex_init(&mutex, &mutex_attr);
60 if (error) {
61 printf("pthread_mutex_init failed: %s\n", strerror(error));
    [all...]
1-1.c 33 int error, prioceiling; local
35 error = pthread_mutexattr_init(&mutex_attr);
36 if (error) {
37 printf("pthread_mutexattr_init failed: %s\n", strerror(error));
45 error = pthread_mutexattr_setprotocol(&mutex_attr,
47 if (error) {
49 strerror(error));
54 error = pthread_mutex_init(&mutex, &mutex_attr);
55 if (error) {
56 printf("pthread_mutex_init failed: %s\n", strerror(error));
    [all...]
3-1.c 37 int error, prioceiling; local
45 error = pthread_mutex_init(&mutex, NULL);
46 if (error) {
47 printf("pthread_mutex_init failed: %s\n", strerror(error));
52 error = pthread_mutex_getprioceiling(&mutex, &prioceiling);
53 if (error) {
54 if (error == EINVAL) {
59 "expected: %s\n", strerror(error));
66 return (error == EINVAL ? PTS_PASS : PTS_FAIL);
  /external/clang/test/Lexer/
cxx-features.cpp 23 #error "wrong value for __cpp_binary_literals"
27 #error "wrong value for __cpp_digit_separators"
31 #error "wrong value for __cpp_init_captures"
35 #error "wrong value for __cpp_generic_lambdas"
39 #error "wrong value for __cpp_sized_deallocation"
43 #error "wrong value for __cpp_constexpr"
47 #error "wrong value for __cpp_decltype_auto"
51 #error "wrong value for __cpp_return_type_deduction"
55 #error "wrong value for __cpp_runtime_arrays"
59 #error "wrong value for __cpp_aggregate_nsdmi
    [all...]
  /external/ltp/testcases/open_posix_testsuite/conformance/definitions/sys/shm_h/
12-1-buildonly.c 23 #error IPC_CREAT not defined
27 #error IPC_EXCL not defined
31 #error IPC_NOWAIT not defined
35 #error IPC_PRIVATE not defined
39 #error IPC_RMID not defined
43 #error IPC_SET not defined
47 #error IPC_STAT not defined
  /external/libcxx/test/std/depr/depr.c.headers/
inttypes_h.pass.cpp 16 #error INT8_MIN not defined
20 #error INT16_MIN not defined
24 #error INT32_MIN not defined
28 #error INT64_MIN not defined
32 #error INT8_MAX not defined
36 #error INT16_MAX not defined
40 #error INT32_MAX not defined
44 #error INT64_MAX not defined
48 #error UINT8_MAX not defined
52 #error UINT16_MAX not define
    [all...]
  /external/libcxx/test/std/input.output/file.streams/c.files/
cinttypes.pass.cpp 16 #error INT8_MIN not defined
20 #error INT16_MIN not defined
24 #error INT32_MIN not defined
28 #error INT64_MIN not defined
32 #error INT8_MAX not defined
36 #error INT16_MAX not defined
40 #error INT32_MAX not defined
44 #error INT64_MAX not defined
48 #error UINT8_MAX not defined
52 #error UINT16_MAX not define
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/depr/depr.c.headers/
inttypes_h.pass.cpp 16 #error INT8_MIN not defined
20 #error INT16_MIN not defined
24 #error INT32_MIN not defined
28 #error INT64_MIN not defined
32 #error INT8_MAX not defined
36 #error INT16_MAX not defined
40 #error INT32_MAX not defined
44 #error INT64_MAX not defined
48 #error UINT8_MAX not defined
52 #error UINT16_MAX not define
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/input.output/file.streams/c.files/
cinttypes.pass.cpp 16 #error INT8_MIN not defined
20 #error INT16_MIN not defined
24 #error INT32_MIN not defined
28 #error INT64_MIN not defined
32 #error INT8_MAX not defined
36 #error INT16_MAX not defined
40 #error INT32_MAX not defined
44 #error INT64_MAX not defined
48 #error UINT8_MAX not defined
52 #error UINT16_MAX not define
    [all...]
  /frameworks/base/core/java/android/net/http/
SslError.java 52 * A generic error occurred
62 // Update if you add a new SSL error!!!
67 * The SSL error set bitfield (each individual error is a bit index;
73 * The SSL certificate associated with the error set
78 * The URL associated with the error set.
83 * Creates a new SslError object using the supplied error and certificate.
85 * @param error The SSL error
90 public SslError(int error, SslCertificate certificate)
    [all...]
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutex_setprioceiling/
1-1.c 33 int error, prioceiling; local
35 error = pthread_mutexattr_init(&mutex_attr);
36 if (error) {
37 printf("pthread_mutexattr_init failed: %s\n", strerror(error));
45 error = pthread_mutexattr_setprotocol(&mutex_attr,
47 if (error) {
49 strerror(error));
54 error = pthread_mutex_init(&mutex, &mutex_attr);
55 if (error) {
56 printf("pthread_mutex_init failed: %s\n", strerror(error));
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
AbstractMethodErrorTest.java 29 Error error = new AbstractMethodError(); local
30 assertNull(error.getCause());
31 assertNull(error.getMessage());
39 Error error = new AbstractMethodError(null); local
40 assertNull(error.getMessage());
41 assertNull(error.getCause());
43 error = new AbstractMethodError("msg");
44 assertEquals("msg", error.getMessage())
    [all...]

Completed in 1915 milliseconds

1 2 3 4 5 6 78 91011>>