/external/qemu-pc-bios/vgabios/ |
vbe_display_api.txt | 53 - Added documentation about panic behaviour / current limits of the data values. 136 As a result, a PANIC can be generated if an incompatible vbebios/display code combination is detected. 137 This panic can be generated from the bochs display code (NOT the bios, see Notes). 143 It's illegal to set the XRES when the VBE is enabled (display code should generate PANIC). 145 If the value written exceeds VBE_DISPI_MAX_XRES, the display code needs to generate a PANIC. 151 It's illegal to set the YRES when the VBE is enabled (display code should generate PANIC). 153 If the value written exceeds VBE_DISPI_MAX_YRES, the display code needs to generate a PANIC. 159 It's illegal to set the BPP when the VBE is enabled (display code should generate PANIC). 161 If the value written is an incompatible BPP, the display code needs to generate a PANIC.
|
/external/ipsec-tools/src/libipsec/ |
key_debug.c | 99 #define panic(param) { printf(param); exit(1); } macro 115 panic("kdebug_sadb: NULL pointer was passed.\n"); 221 panic("kdebug_sadb_prop: NULL pointer was passed.\n"); 270 panic("kdebug_sadb_identity: NULL pointer was passed.\n"); 314 panic("kdebug_sadb_supported: NULL pointer was passed.\n"); 359 panic("kdebug_sadb_sa: NULL pointer was passed.\n"); 378 panic("kdebug_sadb_address: NULL pointer was passed.\n"); 398 panic("kdebug_sadb_key: NULL pointer was passed.\n"); 426 panic("kdebug_sadb_x_sa2: NULL pointer was passed.\n"); 446 panic("kdebug_sadb_x_policy: NULL pointer was passed.\n") [all...] |
/external/qemu/android/utils/ |
system.c | 35 fprintf(stderr, "PANIC: not enough memory\n"); 52 fprintf(stderr, "PANIC: not enough memory\n"); 70 fprintf(stderr, "PANIC: not enough memory to reallocate %zu bytes\n", size);
|
assert.c | 13 #include "android/utils/panic.h"
|
/external/qemu/ |
vl-android.c | 422 #define PANIC(...) android_core_init_failure(__VA_ARGS__) 424 #define PANIC(...) do { fprintf(stderr, __VA_ARGS__); \ [all...] |
/ndk/build/tools/ |
build-gdb-stub.sh | 42 panic "GDB executable $GDB_EXECUTABLE_PATH doesn't exist!" 46 panic "Python prefix dir $PYTHON_PREFIX_DIR doesn't exist!" 50 panic "Please specify an existing MinGW-w64 cross compiler with --mingw-w64-gcc=<program>"
|
build-host-python.sh | 80 panic "This script doesn't take parameters, only options. See --help" 84 panic "Please use --toolchain-src-dir=<path> to select toolchain source directory." 157 panic "Unknown archive type: $PKG_NAME" 176 panic "Unknown archive type: $PKG_NAME" 213 panic "Missing source directory: $PYTHON_SRCDIR" 239 panic "Missing configure script in $SRCDIR" 308 # and panic if either are found. 312 panic "Installed qemu(s) ($(which qemu-$QEMU_HOST_ARCH 2>/dev/null) $(which qemu-$QEMU_HOST_ARCH-static 2>/dev/null))" \
|
/ndk/tests/standalone/ |
run.sh | 36 panic () { function 41 if [ $? != 0 ]; then panic "$@"; fi 86 panic "Unknown option '$opt'. See --help for list of valid ones." 250 panic "Please define PREFIX in your environment, or use --prefix=<prefix> option." 267 panic "Missing compiler, please fix your prefix definition: $GCC" 272 panic "Bad compiler path: ${PREFIX}gcc" 298 panic "Missing compiler, please fix your prefix definition: $CLANG" 313 panic "Missing linker in the same directory as clang/clang++: $CLANGDIR" 341 panic "Unknown target architecture '$CC_TARGET', please use --abi=<name> to manually specify ABI." 357 panic "Sysroot directory does not exist: $SYSROOT [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", \
|
/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)); }
|
/bionic/libc/kernel/tools/ |
update_all.py | 37 panic( "Not a directory: %s\n" % original_dir ) 41 panic( "Missing directory, please specify one through command-line: %s\n" % original_dir )
|
clean_header.py | 19 panic( "file does not exist: '%s'\n" % path ) 25 panic( "path is not a file: '%s'\n" % path ) 31 panic( "file is not in 'original' directory: %s\n" % path ); 40 panic( "oops, internal error, can't extract correct relative path\n" )
|
/cts/libs/deviceutil/src/android/cts/util/ |
WatchDog.java | 27 * panic if watch-dog is not reset over certain amount of time 72 /** resets watch-dog, thus prevent it from panic */
|
/external/chromium_org/chrome/tools/convert_dict/ |
aff_reader.cc | 49 void Panic(const char* fmt, ...) { 131 Panic("We don't support the IGNORE command yet. This would change how " 134 Panic("We don't support the COMPLEXPREFIXES command yet. This would " 263 Panic("Found 0 terms after slash in affix rule '%s', " 286 Panic("Cannot encode affix rule part '%s' to utf8.", part.c_str()); 306 Panic("Cannot encode replacement rule '%s' to utf8.", rule->c_str()); 311 Panic("Did not find a space in '%s'.", utf8rule.c_str()); 332 Panic("Cannot encode command '%s' to utf8.", line.c_str());
|
/external/compiler-rt/lib/ |
int_util.c | 26 extern void panic(const char *, ...) __attribute__((noreturn)); 31 panic("%s:%d: abort in %s", file, line, function);
|
/external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA1/ |
SDL_epocvideo.cpp | 824 User::Panic(_L("damn"), e); 861 User::Panic(_L("damned"), e); 937 __ASSERT_DEBUG(screenMemory < (screenBuffer + Private->EPOC_ScreenSize.iWidth * Private->EPOC_ScreenSize.iHeight), User::Panic(_L("SDL"), KErrCorrupt)); 938 __ASSERT_DEBUG(screenMemory >= screenBuffer, User::Panic(_L("SDL"), KErrCorrupt)); 939 __ASSERT_DEBUG(bitmapLine < ((TUint16*)_this->screen->pixels + (_this->screen->w * _this->screen->h)), User::Panic(_L("SDL"), KErrCorrupt)); 940 __ASSERT_DEBUG(bitmapLine >= (TUint16*)_this->screen->pixels, User::Panic(_L("SDL"), KErrCorrupt)); [all...] |
/external/kernel-headers/original/asm-mips/ |
debug.h | 31 panic("assertion failed at %s:%d: %s", __FILE__, __LINE__, #x); }
|
/external/qemu/distrib/sdl-1.2.15/src/main/symbian/EKA2/ |
SDL_main.cpp | 47 TInt Panic(TInt aErr, TInt aLine) 51 User::Panic(b, aErr); 256 PANIC(KErrNotSupported); 263 iAppThread.Panic(RThread().Name(), aReason); 268 iAppThread.Panic(aInfo, aReason); 384 PANIC(KErrNotSupported); 404 __ASSERT_DEBUG(gEpocEnv != NULL, PANIC(KErrNotReady)); 417 __ASSERT_DEBUG(gEpocEnv != NULL, PANIC(KErrNotReady)); 424 __ASSERT_DEBUG(gEpocEnv != NULL, PANIC(KErrNotReady)); 431 __ASSERT_DEBUG(gEpocEnv != NULL, PANIC(KErrNotReady)) [all...] |
vectorbuffer.cpp | 16 User::Panic(b, aErr);
|
/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...] |
/frameworks/base/services/common_time/ |
clock_recovery.cpp | 170 // conversion is suddenly invalid, it is a good reason to panic. 221 // is less than the panic threshold, we can probably eat the jitter with the 231 // Compute the error then clamp to the panic threshold. If we ever 232 // exceed this amt of error, its time to panic and reset the system. 234 // high as the RTT of the data point, we don't actually panic until 235 // the implied error (delta) is greater than the absolute panic 236 // threashold plus the RTT. IOW - we don't panic until we are 238 // panic threshold. 242 // PANIC!!!
|
/external/valgrind/main/VEX/useful/ |
hd_fpu.c | 216 if (flagno < 0 || flagno > 15) panic("fp_get_statusword_flag"); 224 if (flagno < 0 || flagno > 15) panic("fp_get_controlword_flag"); 233 if (flagno < 0 || flagno > 15) panic("fp_set_statusword_flag_to"); 262 if (tos < 0 || tos > 7) panic("fp_set_tos"); 306 if (regno < 0 || regno > 7) panic("fp_get_tag"); 314 if (stregno < 0 || stregno > 7) panic("fp_get_tag_ST"); 323 val < 0 || val > 3) panic("fp_get_tag"); 332 if (stregno < 0 || stregno > 7) panic("fp_set_tag_ST"); 341 if (r < 0 || r > 7) panic("fp_set_reg"); 352 if (str < 0 || str > 7) panic("fp_set_reg_ST") [all...] |
/external/chromium_org/build/android/ |
adb_gdb | 52 panic () { function 58 if [ $? != 0 ]; then panic "$@"; fi 197 panic "Unknown option $OPT, see --help." >&2 201 panic "You can only provide a single package name as argument!\ 341 panic "Please specify a package name on the command line. See --help." 346 panic "Can't find NDK directory, please source \ 351 panic "Invalid directory: $NDK_DIR" 354 panic "Not a valid NDK directory: $NDK_DIR" 360 panic "Unknown --script file: $GDBINIT" 400 *) panic "You can't run this script on this system: $HOST_OS"; [all...] |
/cts/suite/audio_quality/lib/src/ |
RWBuffer.h | 63 assertWriteCapacity(0); // damage already done, but detect and panic if happened
|