Searched refs:message (Results 226 - 250 of 5913) sorted by path

1234567891011>>

/external/bison/src/
H A Dgram.h270 void grammar_rules_useless_report (const char *message);
H A Dparse-gram.c1677 /* Copy into *YYMSG, which is of size *YYMSG_ALLOC, an error message
1683 not large enough to hold the message. In that case, also set
1731 YYDPRINTF ((stderr, "Constructing syntax error message\n"));
2910 to an incorrect destructor call or verbose syntax error message
/external/blktrace/doc/
H A Dblktrace.tex541 \item[m -- message] Text message generated via kernel call to
729 \item[m -- message] The supplied message is appended to the end of
808 Adds a formatted message to the output stream. The total message
/external/bluetooth/bluedroid/stack/include/
H A Dwcassert.h38 extern "C" wc_assert(char *message, char *file, UINT32 line);
40 void wc_assert(char *message, char *file, UINT32 line);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DASN1Exception.java10 ASN1Exception(String message) argument
12 super(message);
15 ASN1Exception(String message, Throwable cause) argument
17 super(message);
H A DASN1ParsingException.java8 public ASN1ParsingException(String message) argument
10 super(message);
13 public ASN1ParsingException(String message, Throwable cause) argument
15 super(message);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
H A DCryptoException.java19 * create a CryptoException with the given message.
21 * @param message the message to be carried with the exception.
24 String message)
26 super(message);
30 * Create a CryptoException with the given message and underlying cause.
32 * @param message message describing exception.
36 String message,
39 super(message);
23 CryptoException( String message) argument
35 CryptoException( String message, Throwable cause) argument
[all...]
H A DDSA.java21 * sign the passed in message (usually the output of a hash function).
23 * @param message the message to be signed.
26 public BigInteger[] generateSignature(byte[] message); argument
29 * verify the message message against the signature values r and s.
31 * @param message the message that was supposed to have been signed.
35 public boolean verifySignature(byte[] message, BigInteger r, BigInteger s); argument
H A DDataLengthException.java20 * create a DataLengthException with the given message.
22 * @param message the message to be carried with the exception.
25 String message)
27 super(message);
24 DataLengthException( String message) argument
H A DInvalidCipherTextException.java5 * message.
18 * create a InvalidCipherTextException with the given message.
20 * @param message the message to be carried with the exception.
23 String message)
25 super(message);
29 * create a InvalidCipherTextException with the given message.
31 * @param message the message to be carried with the exception.
35 String message,
22 InvalidCipherTextException( String message) argument
34 InvalidCipherTextException( String message, Throwable cause) argument
[all...]
H A DRuntimeCryptoException.java17 * create a RuntimeCryptoException with the given message.
19 * @param message the message to be carried with the exception.
22 String message)
24 super(message);
21 RuntimeCryptoException( String message) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/signers/
H A DDSAKCalculator.java31 * @param message the message being signed.
33 void init(BigInteger n, BigInteger d, byte[] message); argument
H A DDSASigner.java70 * generate a signature for the given message using the key we were
71 * initialised with. For conventional DSA the message should be a SHA-1
72 * hash of the message of interest.
74 * @param message the message that will be verified later.
77 byte[] message)
80 BigInteger m = calculateE(params.getQ(), message);
84 kCalculator.init(params.getQ(), ((DSAPrivateKeyParameters)key).getX(), message);
110 * the passed in message for standard DSA the message shoul
76 generateSignature( byte[] message) argument
113 verifySignature( byte[] message, BigInteger r, BigInteger s) argument
145 calculateE(BigInteger n, byte[] message) argument
[all...]
H A DECDSASigner.java72 * generate a signature for the given message using the key we were
73 * initialised with. For conventional DSA the message should be a SHA-1
74 * hash of the message of interest.
76 * @param message the message that will be verified later.
79 byte[] message)
82 BigInteger e = calculateE(n, message);
88 kCalculator.init(n, ((ECPrivateKeyParameters)key).getD(), message);
130 * the passed in message (for standard DSA the message shoul
78 generateSignature( byte[] message) argument
133 verifySignature( byte[] message, BigInteger r, BigInteger s) argument
174 calculateE(BigInteger n, byte[] message) argument
[all...]
H A DRandomDSAKCalculator.java25 public void init(BigInteger n, BigInteger d, byte[] message) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/x509/
H A DExtCRLException.java10 ExtCRLException(String message, Throwable cause) argument
12 super(message);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/exception/
H A DExtCertPathBuilderException.java12 public ExtCertPathBuilderException(String message, Throwable cause) argument
14 super(message);
H A DExtCertPathValidatorException.java13 public ExtCertPathValidatorException(String message, Throwable cause) argument
15 super(message);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DExtCRLException.java10 ExtCRLException(String message, Throwable cause) argument
12 super(message);
H A DPKIXCertPathValidatorSpi.java93 // emulate CRL exception message in RFC3280CertPathUtilities.checkCRLs
94 String message = "Certificate revocation of serial 0x" + serial.toString(16);
95 System.out.println(message);
96 AnnotatedException e = new AnnotatedException(message);
280 // emulate CRL exception message in RFC3280CertPathUtilities.checkCRLs
281 String message = "Certificate revocation of public key " + workingPublicKey;
282 System.out.println(message);
283 AnnotatedException e = new AnnotatedException(message);
H A DRFC3280CertPathUtilities.java2007 String message = "Certificate revocation after " + certStatus.getRevocationDate();
2008 message += ", reason: " + crlReasons[certStatus.getCertStatus()];
2009 throw new AnnotatedException(message);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/pem/
H A DPemGenerationException.java10 public PemGenerationException(String message, Throwable cause) argument
12 super(message);
16 public PemGenerationException(String message) argument
18 super(message);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
H A DExtCertificateEncodingException.java10 ExtCertificateEncodingException(String message, Throwable cause) argument
12 super(message);
H A DNoSuchStoreException.java6 public NoSuchStoreException(String message) argument
8 super(message);
/external/bouncycastle/
H A Dimport_bouncycastle.sh34 declare -r message=$1
36 echo $message
41 declare -r message=$1
43 if [ ! "$message" = "" ]; then
44 echo $message

Completed in 807 milliseconds

1234567891011>>