HomeSort by relevance Sort by last modified time
    Searched defs:error (Results 51 - 75 of 5380) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/webrtc/talk/app/webrtc/objctests/
RTCSessionDescriptionSyncObserver.h 39 // Error string. May be nil.
40 @property(atomic, copy) NSString *error; variable
  /hardware/interfaces/light/utils/
main.cpp 23 void error(const std::string& msg) { function
24 LOG(ERROR) << msg;
40 error("Could not retrieve light service.");
52 error("Failed to shut off screen for type " +
  /libcore/ojluni/src/main/native/
UnixAsynchronousSocketChannelImpl.c 42 int error = 0; local
43 socklen_t arglen = sizeof(error);
46 result = getsockopt(fd, SOL_SOCKET, SO_ERROR, &error, &arglen);
50 if (error)
51 handleSocketError(env, error);
  /prebuilts/gdb/darwin-x86/lib/python2.7/
dbhash.py 13 __all__ = ["error","open"]
15 error = bsddb.error # Exported for anydbm variable
  /prebuilts/gdb/linux-x86/lib/python2.7/
dbhash.py 13 __all__ = ["error","open"]
15 error = bsddb.error # Exported for anydbm variable
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
dbhash.py 13 __all__ = ["error","open"]
15 error = bsddb.error # Exported for anydbm variable
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
dbhash.py 13 __all__ = ["error","open"]
15 error = bsddb.error # Exported for anydbm variable
  /system/core/adb/
socket_spec_test.cpp 24 std::string hostname, error; local
26 EXPECT_TRUE(parse_tcp_socket_spec("tcp:5037", &hostname, &port, &error));
31 EXPECT_FALSE(parse_tcp_socket_spec("tcp:", &hostname, &port, &error));
32 EXPECT_FALSE(parse_tcp_socket_spec("tcp:-1", &hostname, &port, &error));
33 EXPECT_FALSE(parse_tcp_socket_spec("tcp:65536", &hostname, &port, &error));
35 EXPECT_TRUE(parse_tcp_socket_spec("tcp:localhost:1234", &hostname, &port, &error));
39 EXPECT_FALSE(parse_tcp_socket_spec("tcp:localhost", &hostname, &port, &error));
40 EXPECT_FALSE(parse_tcp_socket_spec("tcp:localhost:", &hostname, &port, &error));
41 EXPECT_FALSE(parse_tcp_socket_spec("tcp:localhost:-1", &hostname, &port, &error));
42 EXPECT_FALSE(parse_tcp_socket_spec("tcp:localhost:65536", &hostname, &port, &error));
    [all...]
  /toolchain/binutils/binutils-2.27/gold/
nacl.cc 33 // Copied from object.cc:Object::error.
35 Sniff_file::error(const char* format, ...) const function in class:gold::Sniff_file
  /bionic/tools/relocation_packer/src/
debug_unittest.cc 15 std::ostringstream error; local
16 Logger::SetStreams(&info, &error);
20 LOG(ERROR) << "ERROR log message";
24 "ERROR: ERROR log message\n", error.str());
31 std::ostringstream error; local
32 Logger::SetStreams(&info, &error);
38 LOG_IF(ERROR, true) << "ERROR log message"
51 std::ostringstream error; local
76 std::ostringstream error; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
syntax.py 26 for each error rather than raising a SyntaxError for the
32 def error(self, node, msg): member in class:SyntaxErrorChecker
46 ## self.error(target, "can't assign to list comprehension")
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Makefiles/
NmakeSubdirs.bat 28 goto error
39 :error label
43 ECHO Error while making %1!
  /external/freetype/src/base/
ftbdf.c 33 FT_Error error; local
46 error = service->get_charset_id( face, &encoding, &registry );
48 error = FT_THROW( Invalid_Argument );
56 return error;
67 FT_Error error; local
83 error = service->get_property( face, prop_name, aproperty );
85 error = FT_THROW( Invalid_Argument );
87 return error;
ftotval.c 38 FT_Error error; local
43 error = FT_THROW( Invalid_Face_Handle );
53 error = FT_THROW( Invalid_Argument );
60 error = service->validate( face,
68 error = FT_THROW( Unimplemented_Feature );
71 return error;
  /external/libbrillo/brillo/dbus/
dbus_method_invoker.cc 13 ErrorPtr error; local
16 if (ExtractMessageParameters(&reader, &error, &error_message))
17 AddDBusError(&error, resp->GetErrorName(), error_message);
18 callback.Run(error.get());
  /external/libxml2/python/tests/
tstmem.py 6 def error(msg, data): function
18 libxml2mod.xmlSetValidErrors(ctxt._o, error, error)
22 print("error doing DTD validation")
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutex_getprioceiling/
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-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...]
  /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...]
  /external/python/cpython2/Lib/compiler/
syntax.py 26 for each error rather than raising a SyntaxError for the
32 def error(self, node, msg): member in class:SyntaxErrorChecker
46 ## self.error(target, "can't assign to list comprehension")
  /external/python/cpython2/Lib/
sunaudio.py 10 class error(Exception): class in inherits:Exception
22 raise error, 'gethdr: bad magic word'
30 raise error, 'gethdr: bad hdr_size'
  /external/syslinux/com32/modules/
kbdmap.c 19 static inline void error(const char *msg) function
31 error("Usage: kbdmap mapfile\n");
36 error("Syslinux core version mismatch\n");
41 error("Keyboard map file load error\n");
46 error("Keyboard map file format error\n");
  /external/valgrind/coregrind/m_gdbserver/
utils.c 27 /* Print the system error message for sr.
33 VG_(umsg) ("error %lu %s\n", sr_Err(sr), VG_(strerror) (sr_Err(sr)));
35 VG_(umsg) ("sr_perror called with no error!!!\n");
41 /* Print an error message and return to command level.
42 STRING is the error message, used as a fprintf string,
45 void error (const char *string,...) function
54 /* Print an error message and exit reporting failure.
55 This is for a error that we cannot continue from.
  /external/valgrind/drd/tests/
dlopen_main.c 11 const char *error; local
20 error = dlerror();
21 if (error) {
22 fputs(error, stderr);

Completed in 347 milliseconds

1 23 4 5 6 7 8 91011>>