HomeSort by relevance Sort by last modified time
    Searched refs:ABORT (Results 1 - 23 of 23) sorted by null

  /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...]
  /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...]
  /packages/providers/ContactsProvider/tests/assets/testUnsynced/
legacy_contacts.sql 91 CREATE TRIGGER contact_methods_INSERT_typeAndLabel AFTER INSERT ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
92 CREATE TRIGGER contact_methods_UPDATE_typeAndLabel AFTER UPDATE ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
104 CREATE TRIGGER organizations_INSERT_typeAndLabel AFTER INSERT ON organizations WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
105 CREATE TRIGGER organizations_UPDATE_typeAndLabel AFTER UPDATE ON organizations WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
115 CREATE TRIGGER phones_INSERT_typeAndLabel AFTER INSERT ON phones WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
116 CREATE TRIGGER phones_UPDATE_typeAndLabel AFTER UPDATE ON phones WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
  /bionic/libc/include/arpa/
telnet.h 48 #define AO 245 /* abort output--but let prog finish */
55 #define ABORT 238 /* Abort process */
63 "EOF", "SUSP", "ABORT", "EOR",
203 "ABORT", "EOF", "SUSP", "EC", "EL", "EW", "RP", \
  /development/ndk/platforms/android-9/include/arpa/
telnet.h 48 #define AO 245 /* abort output--but let prog finish */
55 #define ABORT 238 /* Abort process */
63 "EOF", "SUSP", "ABORT", "EOR",
203 "ABORT", "EOF", "SUSP", "EC", "EL", "EW", "RP", \
  /external/tcpdump/
telnet.h 56 #define AO 245 /* abort output--but let prog finish */
63 #define ABORT 238 /* Abort process */
71 "EOF", "SUSP", "ABORT", "EOR",
223 "ABORT", "EOF", "SUSP", "EC", "EL", "EW", "RP", \
  /packages/providers/ContactsProvider/tests/assets/test1/
legacy_contacts.sql 123 CREATE TRIGGER contact_methods_INSERT_typeAndLabel AFTER INSERT ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
124 CREATE TRIGGER contact_methods_UPDATE_typeAndLabel AFTER UPDATE ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
136 CREATE TRIGGER organizations_INSERT_typeAndLabel AFTER INSERT ON organizations WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
137 CREATE TRIGGER organizations_UPDATE_typeAndLabel AFTER UPDATE ON organizations WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
147 CREATE TRIGGER phones_INSERT_typeAndLabel AFTER INSERT ON phones WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
148 CREATE TRIGGER phones_UPDATE_typeAndLabel AFTER UPDATE ON phones WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
  /packages/providers/ContactsProvider/tests/assets/testSynced/
legacy_contacts.sql 147 CREATE TRIGGER contact_methods_INSERT_typeAndLabel AFTER INSERT ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
148 CREATE TRIGGER contact_methods_UPDATE_typeAndLabel AFTER UPDATE ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
160 CREATE TRIGGER organizations_INSERT_typeAndLabel AFTER INSERT ON organizations WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
161 CREATE TRIGGER organizations_UPDATE_typeAndLabel AFTER UPDATE ON organizations WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
171 CREATE TRIGGER phones_INSERT_typeAndLabel AFTER INSERT ON phones WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
172 CREATE TRIGGER phones_UPDATE_typeAndLabel AFTER UPDATE ON phones WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
  /external/e2fsprogs/ext2ed/
dir_com.c 90 ABORT - Current dir entry is returned.
94 If the last entry is reached, it is returned, along with an ABORT status.
112 if (return_code==ABORT || return_code==FOUND)
144 *status=ABORT;return (info); /* There was no match */
ext2ed.h 374 #define ABORT 0
  /external/chromium/net/base/
telnet_server.cc 53 AO = 245, // Abort output--but let prog finish.
60 ABORT = 238, // Abort process.
  /external/grub/netboot/
sis900.h 198 ABORT = 0x04000000,
sis900.c 966 if (tx_status & (ABORT | UNDERRUN | OWCOLL)) {
1008 if (rx_status & (ABORT|OVERRUN|TOOLONG|RUNT|RXISERR|CRCERR|FAERR)) {
  /external/libffi/src/
dlmalloc.c 91 By default detected errors cause the program to abort (calling
92 "abort()"). You can override this to instead proceed past
244 ABORT default: defined as abort()
245 Defines how to abort on failed checks. On most systems, a failed
249 abort(). It's not very useful to do more than this because many
252 abort. Also, most compilers know that abort() does not return, so
264 generates slower code than the default abort policy.
281 ABORT_ON_ASSERT_FAILURE cause assertions failures to call abort(),
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/stdlib/
SDL_malloc.c 35 #define ABORT
127 By default detected errors cause the program to abort (calling
128 "abort()"). You can override this to instead proceed past
280 ABORT default: defined as abort()
281 Defines how to abort on failed checks. On most systems, a failed
285 abort(). It's not very useful to do more than this because many
288 abort. Also, most compilers know that abort() does not return, so
300 generates slower code than the default abort policy
    [all...]
  /bionic/libc/bionic/
dlmalloc.c 118 By default detected errors cause the program to abort (calling
119 "abort()"). You can override this to instead proceed past
271 ABORT default: defined as abort()
272 Defines how to abort on failed checks. On most systems, a failed
276 abort(). It's not very useful to do more than this because many
279 abort. Also, most compilers know that abort() does not return, so
291 generates slower code than the default abort policy.
308 ABORT_ON_ASSERT_FAILURE cause assertions failures to call abort(),
    [all...]
  /prebuilt/darwin-x86/swt/
swt.jar 
  /external/jdiff/
xerces.jar 
  /prebuilt/darwin-x86_64/swt/
swt.jar 
  /prebuilt/linux-x86/swt/
swt.jar 
  /prebuilt/linux-x86_64/swt/
swt.jar 
  /prebuilt/windows/swt/
swt.jar 
  /prebuilt/windows-x86_64/swt/
swt.jar 

Completed in 193 milliseconds