/external/dropbear/libtomcrypt/src/pk/dsa/ |
dsa_make_key.c | 27 @return CRYPT_OK if successful, upon error this function will free all allocated memory 62 if ((err = rand_prime(key->q, group_size, prng, wprng)) != CRYPT_OK) { goto error; } 65 if ((err = mp_add(key->q, key->q, tmp)) != CRYPT_OK) { goto error; } 70 goto error; 79 if ((err = mp_read_unsigned_bin(tmp2, buf, modulus_size - group_size)) != CRYPT_OK) { goto error; } 80 if ((err = mp_mul(key->q, tmp2, key->p)) != CRYPT_OK) { goto error; } 81 if ((err = mp_add_d(key->p, 1, key->p)) != CRYPT_OK) { goto error; } 85 if ((err = mp_prime_is_prime(key->p, 8, &res)) != CRYPT_OK) { goto error; } 89 if ((err = mp_add(tmp, key->p, key->p)) != CRYPT_OK) { goto error; } 90 if ((err = mp_add_d(tmp2, 2, tmp2)) != CRYPT_OK) { goto error; } [all...] |
/external/dropbear/libtomcrypt/src/pk/ecc/ |
ecc_import.c | 36 if ((err = mp_read_radix(prime, key->dp->prime, 16)) != CRYPT_OK) { goto error; } 37 if ((err = mp_read_radix(b, key->dp->B, 16)) != CRYPT_OK) { goto error; } 40 if ((err = mp_sqr(key->pubkey.y, t1)) != CRYPT_OK) { goto error; } 43 if ((err = mp_sqr(key->pubkey.x, t2)) != CRYPT_OK) { goto error; } 44 if ((err = mp_mod(t2, prime, t2)) != CRYPT_OK) { goto error; } 45 if ((err = mp_mul(key->pubkey.x, t2, t2)) != CRYPT_OK) { goto error; } 48 if ((err = mp_sub(t1, t2, t1)) != CRYPT_OK) { goto error; } 51 if ((err = mp_add(t1, key->pubkey.x, t1)) != CRYPT_OK) { goto error; } 52 if ((err = mp_add(t1, key->pubkey.x, t1)) != CRYPT_OK) { goto error; } 53 if ((err = mp_add(t1, key->pubkey.x, t1)) != CRYPT_OK) { goto error; } [all...] |
/external/e2fsprogs/include/nonunix/linux/ |
types.h | 5 #error _MSC_VER not defined
|
/external/e2fsprogs/lib/et/ |
com_err.pc.in | 7 Description: Common error description library
|
/external/elfutils/ |
config-compat-freebsd.h | 28 static inline void __attribute__((noreturn)) error(int status, int errnum, const char *fmt, ...) function 33 fprintf(stderr, "error %d: %s\n", errnum, strerror(errno)); 40 error(EXIT_FAILURE, 0, "%s not implemented!", __FUNCTION__); 62 error(EXIT_FAILURE, 0, "%s not implemented!", __FUNCTION__);
|
/external/freetype/src/pshinter/ |
pshpic.c | 45 FT_Error error = FT_Err_Ok; local 51 return error; 59 if(error) 61 return error;
|
/external/freetype/src/sfnt/ |
ttload.c | 122 /* FreeType error code. 0 means success. */ 131 FT_Error error; local 144 error = SFNT_Err_Table_Missing; 147 return error; 171 FT_Error error; local 239 error = SFNT_Err_Table_Missing; 251 error = SFNT_Err_Table_Missing; 269 error = SFNT_Err_Unknown_File_Format; 276 error = SFNT_Err_Ok; 287 error = SFNT_Err_Table_Missing 322 FT_Error error; local 464 FT_Error error; local 528 FT_Error error; local 617 FT_Error error; local 725 FT_Error error; local 900 FT_Error error; local 936 FT_Error error; local 1076 FT_Error error; local 1159 FT_Error error; local 1196 FT_Error error; local [all...] |
/external/icu4c/i18n/unicode/ |
measfmt.h | 49 * @param ec input-output error code 50 * @return a formatter object, or NULL upon error 59 * @param ec input-output error code 60 * @return a formatter object, or NULL upon error
|
/external/junit/src/junit/framework/ |
TestListener.java | 8 * An error occurred.
|
/external/opencore/oscl/oscl/osclbase/src/ |
oscl_singleton.h | 76 ** @param error (output) 0 for success or an error from TPVBaseErrorEnum 79 OSCL_IMPORT_REF static OsclAny* getInstance(uint32 ID, int32 &error); 83 ** @param error (output) 0 for success or an error from TPVBaseErrorEnum 86 OSCL_IMPORT_REF static void registerInstance(OsclAny* ptr, uint32 ID, int32 &error); 97 ** @param error (output) 0 for success or an error from TPVBaseErrorEnum 100 OSCL_IMPORT_REF static OsclAny* lockAndGetInstance(uint32 ID, int32& error); 105 ** @param error (output) 0 for success or an error from TPVBaseErrorEnu [all...] |
/external/openssl/crypto/0.9.9-dev/ |
README.android | 6 to avoid assembler error messages where needed.
|
/external/openssl/crypto/pkcs12/ |
pk12err.c | 65 /* BEGIN ERROR CODES */ 109 {ERR_REASON(PKCS12_R_DECODE_ERROR) ,"decode error"}, 110 {ERR_REASON(PKCS12_R_ENCODE_ERROR) ,"encode error"}, 111 {ERR_REASON(PKCS12_R_ENCRYPT_ERROR) ,"encrypt error"}, 112 {ERR_REASON(PKCS12_R_ERROR_SETTING_ENCRYPTED_DATA_TYPE),"error setting encrypted data type"}, 115 {ERR_REASON(PKCS12_R_IV_GEN_ERROR) ,"iv gen error"}, 116 {ERR_REASON(PKCS12_R_KEY_GEN_ERROR) ,"key gen error"}, 118 {ERR_REASON(PKCS12_R_MAC_GENERATION_ERROR),"mac generation error"}, 119 {ERR_REASON(PKCS12_R_MAC_SETUP_ERROR) ,"mac setup error"}, 120 {ERR_REASON(PKCS12_R_MAC_STRING_SET_ERROR),"mac string set error"}, [all...] |
/external/qemu/slirp/ |
if.h | 48 u_int out_errpkts; /* Output Error Packets */ 49 u_int out_errbytes; /* Output Error Bytes */ 52 u_int in_errpkts; /* Input Error Packets */ 53 u_int in_errbytes; /* Input Error Bytes */
|
/external/qemu/slirp-android/ |
if.h | 48 u_int out_errpkts; /* Output Error Packets */ 49 u_int out_errbytes; /* Output Error Bytes */ 52 u_int in_errpkts; /* Input Error Packets */ 53 u_int in_errbytes; /* Input Error Bytes */
|
/external/stlport/ |
libstlport.mk | 5 $(error STLPort not suitable for the simulator! $(LOCAL_PATH))
|
/external/stlport/stlport/ |
rlocks.h | 8 # error "This file is for SUN CC only. Please remove it if it causes any harm for other compilers."
|
stdiostream.h | 8 # error "This file is for SUN CC only. Please remove it if it causes any harm for other compilers."
|
/external/webkit/LayoutTests/fast/dom/Geolocation/resources/ |
callback-exception.js | 1 description("Tests that when an exception is thrown in the success callback, the error callback is not invoked. Note that this test throws an exception which is not caught."); 19 // Yield to allow for the error callback to be invoked. The timer 22 throw new Error('Exception in success callback'); 24 testFailed('Error callback invoked unexpectedly');
|
/external/webkit/LayoutTests/storage/domstorage/localstorage/ |
private-browsing-affects-storage-expected.txt | 3 Caught exception trying to change item: Error: QUOTA_EXCEEDED_ERR: DOM Exception 22
|
/external/webkit/LayoutTests/storage/domstorage/sessionstorage/ |
private-browsing-affects-storage-expected.txt | 3 Caught exception trying to change item: Error: QUOTA_EXCEEDED_ERR: DOM Exception 22
|
/external/webkit/LayoutTests/storage/ |
open-database-set-empty-version-expected.txt | 2 SUCCESS, an exception was thrown. Error: INVALID_STATE_ERR: DOM Exception 11
|
read-transactions-running-concurrently.html | 30 }, function(error) { 31 log("Read transaction failed: " + error.message); 53 }, function(error) { 54 log("Cannot create the Test table: " + error.message);
|
/external/webkit/WebCore/manual-tests/inspector/ |
display-sql-transaction-error.html | 18 <p>If the line of text you entered remains and an error line is output below 20 <p>If the line of text you entered disappears and no error line is output, you 22 <p>If the line of text you entered remains and no error line is output, then 23 the test has become invalid and needs to be modified to cause the error
|
/external/webkit/WebCore/platform/gtk/ |
SharedBufferGtk.cpp | 38 GError* error = 0; local 39 if (!g_file_get_contents(filename, &contents, &size, &error)) { 40 LOG_ERROR("Failed to fully read contents of file %s - %s", filenameForDisplay(filePath).utf8().data(), error->message); 41 g_error_free(error);
|
/external/webkit/WebKitTools/Scripts/webkitpy/style/ |
error_handlers_unittest.py | 62 """Check that count and error messages are initialized.""" 67 """Handle an error with the given error handler.""" 74 """Handle an error using a new error handler.""" 79 """Test __call__() method with a non-reportable error.""" 84 # Confirm the error is not reportable. 95 """Test __call__() method with a reportable error and emacs format.""" 107 """Test __call__() method with a reportable error and vs7 format.""" 119 """Test error report suppression in __call__() method."" [all...] |