/external/openssl/crypto/ec/ |
ectest.c | 103 #define ABORT do { \ 105 fprintf(stderr, "%s:%d: ABORT\n", __FILE__, __LINE__); \ 128 if (s == NULL) ABORT; 131 if (!EC_GROUP_get_order(group, s, ctx)) ABORT; 136 if (P == NULL) ABORT; 141 if ((r[i] = BN_new()) == NULL) ABORT; 142 if (!BN_pseudo_rand(r[i], BN_num_bits(s), 0, 0)) ABORT; 145 if ((r0[i] = BN_new()) == NULL) ABORT; 146 if (!BN_pseudo_rand(r0[i], BN_num_bits(s), 0, 0)) ABORT; 156 (type != TIMING_BASE_PT) ? P : NULL, (type != TIMING_BASE_PT) ? r0[i] : NULL, ctx)) ABORT; [all...] |
/bionic/libstdc++/src/ |
pure_virtual.cpp | 8 abort();
|
new.cpp | 10 // abort(); 19 // abort();
|
/dalvik/tests/030-bad-finalizer/ |
info.txt | 2 this situation and abort the VM (so you will likely see a "deadd00d"
|
/external/kernel-headers/original/asm-arm/ |
glue.h | 29 * Data Abort Model 35 * v4_early - ARMv4 without Thumb early abort handler 36 * v4t_late - ARMv4 with Thumb late abort handler 37 * v4t_early - ARMv4 with Thumb early abort handler 38 * v5tej_early - ARMv5 with Thumb and Java early abort handler 40 * v6_early - ARMv6 generic early abort handler 110 #error Unknown data abort handler type
|
/frameworks/base/core/java/android/database/sqlite/ |
SQLiteAbortException.java | 21 * This can happen either through a call to ABORT in a trigger, 22 * or as the result of using the ABORT conflict clause.
|
/cts/tests/src/android/content/cts/ |
MockReceiverAbort.java | 31 public static final String RESULT_DATA = "abort"; 32 public static final String RESULT_EXTRAS_ABORT_KEY = "abort"; 33 public static final String RESULT_EXTRAS_ABORT_VALUE = "abort value";
|
/external/bison/lib/ |
xalloc-die.c | 41 xalloc_die does not return, call abort. Also, the abort is a 43 abort ();
|
/external/opencore/oscl/oscl/osclio/src/ |
oscl_socket_method.h | 56 void Abort() 122 void Abort() 129 iContainer.Abort(); 177 Abort(); 179 iSocketRequestAO->Abort(); 185 Abort(); 192 iSocketRequestAO->Abort();
|
oscl_dns_method.cpp | 51 iDNSMethod->Abort(); 110 void OsclDNSMethod::Abort() 118 Abort(); 120 iDNSRequestAO->Abort(); 144 iDNSRequestAO->Abort(); 151 Abort();
|
/external/clearsilver/util/ |
wildmat.c | 12 ** Special thanks to Lars Mathiesen <thorinn@diku.dk> for the ABORT code. 18 ** the ABORT code, it takes 22310 calls to fail. Ugh. The following 22 ** '\0'.) The last return has ABORT instead of FALSE to avoid quadratic 24 ** FALSE, each star-loop has to run to the end of the text; with ABORT 28 ** instance will return either TRUE or ABORT, and any calling instance 33 ** loss of clarity (and the ABORT stuff seems to be unclear enough by 44 #define ABORT -1 56 ** Match text and p, return TRUE, FALSE, or ABORT. 67 return ABORT; 90 return ABORT; [all...] |
/dalvik/libcore/luni/src/main/java/java/net/ |
CacheRequest.java | 26 * data into the cache. It also allows the user to interrupt and abort the 27 * current store operation by calling the method {@code abort}. If an {@code 47 public abstract void abort(); method in class:CacheRequest
|
/dalvik/libcore/luni/src/test/java/tests/api/java/net/ |
CacheRequestTest.java | 38 method = "abort", 50 mcr.abort(); 79 public void abort() { method in class:CacheRequestTest.MockCacheRequest
|
/external/qemu/ |
qemu-malloc.c | 30 abort(); 48 abort(); 62 abort();
|
/bionic/libc/unistd/ |
abort.c | 1 /* $OpenBSD: abort.c,v 1.14 2005/08/08 08:05:36 espie Exp $ */ 40 __libc_android_log_print(ANDROID_LOG_DEBUG, "libc-abort", (format), ##__VA_ARGS__ ) 47 abort(void) 58 * any errors -- X311J doesn't allow abort to return anyway. 67 * POSIX requires we flush stdio buffers on abort 108 * abort() does not return, which gcc interprets to mean that it doesn't 111 * which function called abort(). 117 * the side-effect of replacing abort() with __libc_android_abort() in 124 abort(void) function
|
/dalvik/libcore/sql/src/main/java/SQLite/ |
Authorizer.java | 19 * for abort SQL statement with error.
|
/external/iptables/extensions/ |
libipt_sctp.man | 10 Chunk types: DATA INIT INIT_ACK SACK HEARTBEAT HEARTBEAT_ACK ABORT SHUTDOWN SHUTDOWN_ACK ERROR COOKIE_ECHO COOKIE_ACK ECN_ECNE ECN_CWR SHUTDOWN_COMPLETE ASCONF ASCONF_ACK 16 ABORT T t
|
/external/dhcpcd/ |
dhcpcd.c | 700 goto abort; 706 goto abort; 709 goto abort; 724 goto abort; 732 goto abort; 736 goto abort; 782 goto abort; 787 goto abort; 852 goto abort; 872 goto abort; [all...] |
/system/core/debuggerd/ |
crasher.c | 88 if(!strcmp(argv[1],"abort")) maybeabort(); 104 if(time(0) != 42) abort();
|
/bootable/recovery/edify/ |
main.c | 104 expect("\"\" && abort()", "", &errors); // test short-circuiting 105 expect("t && abort()", NULL, &errors); 112 expect("a || abort()", "a", &errors); // test short-circuiting 113 expect("\"\" || abort()", NULL, &errors); 138 expect("ifelse(t, yes, abort())", "yes", &errors); 139 expect("ifelse(!t, abort(), no)", "no", &errors);
|
/external/webkit/WebCore/plugins/gtk/ |
PluginPackageGtk.cpp | 126 goto abort; 139 goto abort; 144 abort:
|
/external/webkit/WebCore/plugins/qt/ |
PluginPackageQt.cpp | 117 goto abort; 136 goto abort; 141 abort:
|
/frameworks/base/awt/java/awt/image/ |
ImageObserver.java | 74 * The Constant ABORT indicates that the image producing is aborted. 76 public static final int ABORT = 128; 86 * the bitwise OR combination of information flags: ABORT,
|
/system/core/include/cutils/ |
abort_socket.h | 25 * Calling close() on a regular POSIX socket does not abort blocked syscalls on 60 int abort_fd[2]; /* pipe used to abort */ 88 /* Abort above calls and shutdown socket.
|
/bionic/libc/stdlib/ |
assert.c | 42 abort(); 52 abort();
|