HomeSort by relevance Sort by last modified time
    Searched defs:panic (Results 1 - 22 of 22) sorted by null

  /system/core/adb/
test_track_devices.c 10 panic( const char* msg ) function
12 fprintf(stderr, "PANIC: %s: %s\n", msg, strerror(errno));
68 if (ret < 0) panic( "could not connect to server" );
73 panic( "could not send request" );
77 panic( "could not read request" );
86 panic("could not read length");
89 panic("could not decode length");
92 panic("could not read data");
test_track_jdwp.c 10 panic( const char* msg ) function
12 fprintf(stderr, "PANIC: %s: %s\n", msg, strerror(errno));
68 if (ret < 0) panic( "could not connect to server" );
73 panic( "could not send request" );
77 panic( "could not read request" );
86 panic("could not read length");
89 panic("could not decode length");
92 panic("could not read data");
  /system/core/run-as/
run-as.c 90 panic(const char* format, ...) function
115 panic("only 'shell' or 'root' users can run this program\n");
121 panic("Package '%s' is unknown\n", pkgname);
127 panic("Package '%s' is not an application\n", pkgname);
133 panic("Package '%s' is not debuggable\n", pkgname);
139 panic("Package '%s' has corrupt installation\n", pkgname);
151 panic("Could not cd to package's data directory: %s\n", strerror(errno));
161 panic("Permission denied\n");
168 panic("exec failed for %s Error:%s\n", argv[2], strerror(errno));
176 panic("exec failed\n")
    [all...]
  /system/extras/tests/bionic/libc/bionic/
test_mutex.c 35 static void panic( const char* format, ... ) function
44 #define assert(cond) do { if ( !(cond) ) panic( "%s:%d: assertion failure: %s\n", __FILE__, __LINE__, #cond ); } while (0)
50 panic( "%s:%d: call returned %d instead of %d: %s\n", \
  /external/ipsec-tools/src/racoon/missing/crypto/rijndael/
rijndael-api-fst.c 37 #define panic(a) err(1, (a)) macro
232 panic("rijndael_padEncrypt(ECB)");
253 panic("rijndael_padEncrypt(CBC)");
rijndael-alg-fst.c 34 #define panic(a) err(1, (a)) macro
  /bionic/libc/netbsd/resolv/
res_state.c 199 static int panic = NETDB_INTERNAL; local
201 return rt ? &rt->_h_errno : &panic;
  /external/valgrind/main/coregrind/
m_libcassert.c 187 // state. Could cause problems if we got the panic/exception within the
271 static void panic ( Char* name, Char* report, Char* str, function
282 panic("valgrind", VG_BUGS_TO, str, startRegs);
292 panic(VG_(details).name, VG_(details).bug_reports_to, str, NULL);
  /bionic/libc/kernel/tools/
utils.py 11 def panic(msg): function
  /external/valgrind/main/auxprogs/
valgrind-listener.c 67 static void panic ( Char* str ) function
112 panic("set_nonblocking");
123 panic("set_blocking");
269 panic("main -- create socket");
278 panic("main -- enable address reuse");
289 panic("main -- bind port");
295 panic("main -- listen");
319 panic("main -- accept connection");
331 panic("main -- too many concurrent connections");
358 panic("poll(main) failed")
    [all...]
  /ndk/build/core/
ndk-common.sh 152 panic () function
624 panic "Cannot unpack archive with unknown extension: $ARCHIVE"
671 panic "Unsupported archive format: $ARCHIVE"
686 panic "Can't copy from non-directory: $SRCDIR"
702 panic "Can't copy from non-directory: $SRCDIR"
721 panic "Cant' copy from non-directory: $SRCDIR"
746 panic "Invalid maximum log file versions '$tmpmax' invalid; defaulting to $MAXVER"
  /external/ipsec-tools/src/libipsec/
key_debug.c 103 #define panic(param) { printf(param); exit(1); } macro
119 panic("kdebug_sadb: NULL pointer was passed.\n");
230 panic("kdebug_sadb_prop: NULL pointer was passed.\n");
279 panic("kdebug_sadb_identity: NULL pointer was passed.\n");
323 panic("kdebug_sadb_supported: NULL pointer was passed.\n");
368 panic("kdebug_sadb_sa: NULL pointer was passed.\n");
387 panic("kdebug_sadb_address: NULL pointer was passed.\n");
407 panic("kdebug_sadb_key: NULL pointer was passed.\n");
435 panic("kdebug_sadb_x_sa2: NULL pointer was passed.\n");
455 panic("kdebug_sadb_x_policy: NULL pointer was passed.\n")
    [all...]
  /external/valgrind/main/coregrind/m_replacemalloc/
vg_replace_malloc.c 749 static void panic(const char *str) function
756 #define PANIC(soname, fnname) \
761 panic(#fnname); \
764 PANIC(VG_Z_LIBC_SONAME, pvalloc);
765 PANIC(VG_Z_LIBC_SONAME, malloc_get_state);
766 PANIC(VG_Z_LIBC_SONAME, malloc_set_state);
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/sed/
utils.c 66 panic(const char *str, ...) function
151 /* Panic on failing fopen */
164 panic(_("couldn't open file %s: %s"), name, strerror(errno));
173 /* Panic on failing fdopen */
187 panic(_("couldn't attach to %s: %s"), name, strerror(errno));
228 panic(_("couldn't open temporary file %s: %s"), template, strerror(errno));
236 /* Panic on failing fwrite */
246 panic(ngettext("couldn't write %d item to %s: %s",
251 /* Panic on failing fread */
261 panic(_("read error on %s: %s"), utils_fp_name(stream), strerror(errno))
    [all...]
  /system/extras/tests/bionic/libc/common/
test_pthread_mutex.c 47 panic(const char* func, const char* format, ...) function
58 #define PANIC(...) panic(__FUNCTION__,__VA_ARGS__)
102 { if (!(cond)) PANIC("%d:%s", __LINE__, #cond); }
105 { if (!!(cond)) PANIC("%d:%s", __LINE__, #cond); }
108 { int _ret = (cond); if (_ret != (val)) PANIC("%d:%s returned %d (%d expected)", __LINE__, #cond, _ret, (val)); }
test_pthread_rwlock.c 46 panic(const char* func, const char* format, ...) function
57 #define PANIC(...) panic(__FUNCTION__,__VA_ARGS__)
101 { if (!(cond)) PANIC("%d:%s", __LINE__, #cond); }
104 { if (!!(cond)) PANIC("%d:%s", __LINE__, #cond); }
107 { int _ret = (cond); if (_ret != (val)) PANIC("%d:%s returned %d (%d expected)", __LINE__, #cond, _ret, (val)); }
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/
build-hardy-toolchain.sh 374 panic () function
485 panic "Can't copy from non-directory: $SRCDIR"
596 panic "Unsupported archive format: $ARCHIVE"
    [all...]
  /external/ipsec-tools/src/racoon/missing/crypto/sha2/
sha2.c 57 #define panic(a) err(1, (a)) macro
    [all...]
  /external/qemu/android/skin/
region.c 1233 panic(void) function
1245 panic();
1252 panic();
1262 panic();
1276 panic();
1285 panic();
1294 panic();
1306 panic();
1319 panic();
1333 panic();
    [all...]
  /external/bzip2/
bzip2.c 213 static void panic ( const Char* ) NORETURN;
422 panic ( "compress:unexpected error" );
425 panic ( "compress:end" );
471 if (bzerr != BZ_OK) panic ( "decompress:bzReadGetUnused" );
477 if (bzerr != BZ_OK) panic ( "decompress:bzReadGetUnused" );
544 panic ( "decompress:unexpected error" );
547 panic ( "decompress:end" );
586 if (bzerr != BZ_OK) panic ( "test:bzReadGetUnused" );
592 if (bzerr != BZ_OK) panic ( "test:bzReadGetUnused" );
637 panic ( "test:unexpected error" )
746 void panic ( const Char* s ) function
    [all...]
  /cts/tools/signature-tools/lib/
antlr-2.7.7.jar 
  /prebuilt/common/groovy/
groovy-all-1.7.0.jar 

Completed in 1339 milliseconds