HomeSort by relevance Sort by last modified time
    Searched defs:reason (Results 1 - 25 of 102) sorted by null

1 2 3 4 5

  /external/webkit/WebKit/chromium/public/
WebURLError.h 44 // A namespace for "reason" to support various layers generating
49 // A numeric error code detailing the reason for this error. A value
53 int reason; member in struct:WebKit::WebURLError
58 WebURLError() : reason(0) { }
  /external/wpa_supplicant/tests/
test_x509v3.c 29 int i, reason; local
62 if (x509_certificate_chain_validate(last, certs, &reason) < 0) {
63 printf("\nCertificate chain validation failed: %d\n", reason);
  /external/wpa_supplicant_6/wpa_supplicant/tests/
test_x509v3.c 29 int i, reason; local
62 if (x509_certificate_chain_validate(last, certs, &reason) < 0) {
63 printf("\nCertificate chain validation failed: %d\n", reason);
  /external/apache-http/src/org/apache/http/impl/
DefaultHttpResponseFactory.java 57 /** The catalog for looking up reason phrases. */
64 * @param catalog the catalog of reason phrases
69 ("Reason phrase catalog must not be null.");
92 final String reason = reasonCatalog.getReason(status, loc); local
93 StatusLine statusline = new BasicStatusLine(ver, status, reason);
EnglishReasonPhraseCatalog.java 41 * English reason phrases for HTTP status codes.
54 // static array with english reason phrases defined below
75 * Obtains the reason phrase for a status code.
80 * @return the reason phrase, or <code>null</code>
91 String reason = null; local
93 reason = REASON_PHRASES[category][subcode];
95 return reason;
99 /** Reason phrases lookup table. */
112 * Stores the given reason phrase, by status code.
116 * @param reason the reason phrase for this status cod
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
ReasonParser.java 33 * Parser for Reason header.
46 * @param reason the header to parse
48 public ReasonParser(String reason) {
49 super(reason);
71 headerName(TokenTypes.REASON);
74 Reason reason = new Reason(); local
79 reason.setProtocol(value);
80 super.parse(reason);
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
CallForwardInfo.java 28 public int reason; /* from TS 27.007 7.11 "reason" */ field in class:CallForwardInfo
36 + " reason: " + reason
  /libcore/luni/src/main/java/java/net/
URISyntaxException.java 39 * @param reason
40 * the reason why the exception occurred.
44 * if one of the arguments {@code input} or {@code reason} is
49 public URISyntaxException(String input, String reason, int index) {
50 super(reason);
52 if (input == null || reason == null) {
70 * @param reason
71 * the reason why the exception occurred.
73 * if one of the arguments {@code input} or {@code reason} is
76 public URISyntaxException(String input, String reason) {
125 String reason = super.getMessage(); local
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
AlertException.java 30 private final SSLException reason; field in class:AlertException
38 * @param reason The SSLException to be thrown to application side after alert processing
42 protected AlertException(byte description, SSLException reason) {
43 super(reason);
44 this.reason = reason;
49 * Returns the reason of alert. This reason should be rethrown after alert processing.
51 * @return the reason of alert.
54 return reason;
    [all...]
  /dalvik/vm/native/
java_lang_Runtime.c 77 char* reason = NULL; local
83 success = dvmLoadNativeCode(fileName, classLoader, &reason);
85 const char* msg = (reason != NULL) ? reason : "unknown failure";
90 free(reason);
  /external/libnfc-nxp/src/
phOsalNfc.h 83 * OSAL Exception structure containing exception type and reason.
88 uint16_t reason; member in struct:phOsalNfc_Exception
123 * \param[in] reason additional reason value that gives a vendor specific reason
129 uint16_t reason);
  /external/proguard/src/proguard/shrink/
ShortestUsageMark.java 39 private final String reason; field in class:ShortestUsageMark
47 * @param reason the reason for this mark.
49 public ShortestUsageMark(String reason)
52 this.reason = reason;
60 * @param reason the reason for this mark.
64 String reason,
68 this(previousUsageMark, reason, cost, clazz, null)
    [all...]
  /packages/apps/Mms/src/com/android/mms/transaction/
SmsRejectedReceiver.java 46 int reason = intent.getIntExtra("result", -1); local
47 boolean outOfMemory = reason == Telephony.Sms.Intents.RESULT_SMS_OUT_OF_MEMORY;
  /external/openssl/crypto/dsa/
dsa_ossl.c 137 int reason=ERR_R_BN_LIB; local
145 reason=DSA_R_MISSING_PARAMETERS;
156 reason=DSA_R_DATA_TOO_LARGE_FOR_KEY_SIZE;
199 DSAerr(DSA_F_DSA_DO_SIGN,reason);
  /external/qemu/
cbuffer.c 31 const char* reason = NULL; local
34 reason = "rpos is out of bounds";
37 reason = "count is incorrect";
39 if (!reason)
43 file, lineno, reason, cb->rpos, cb->count, cb->size);
  /cts/tests/tests/permission2/src/android/permission2/cts/
NoReceiveSmsPermissionTest.java 140 String reason = getErrorReason(resultCode); local
141 Log.e(LOG_TAG, String.format("message %1$s failed: %2$s", action, reason));
  /external/apache-http/src/org/apache/http/message/
BasicLineFormatter.java 264 final String reason = statline.getReasonPhrase(); local
265 if (reason != null) {
266 len += reason.length();
273 buffer.append(' '); // keep whitespace even if reason phrase is empty
274 if (reason != null) {
275 buffer.append(reason);
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/
CRLReason.java 86 int reason)
88 super(reason);
92 DEREnumerated reason)
94 super(reason.getValue().intValue());
100 int reason = getValue().intValue(); local
101 if (reason < 0 || reason > 10)
107 str = reasonString[reason];
  /external/grub/netboot/
3c595.c 386 char *reason, *warning; local
395 reason = "default";
400 reason = "forced";
407 printf("selected %s. (%s)\n", conn_tab[i].name, reason);
  /external/libpcap/
grammar.y 94 pfreason_to_num(const char *reason)
100 if (pcap_strcasecmp(reason, reasons[i]) == 0)
103 bpf_error("unknown PF reason");
123 pfreason_to_num(const char *reason)
199 %type <i> NUM action reason
397 | PF_REASON reason { $$ = gen_pf_reason($2); }
401 reason: NUM { $$ = $1; } label
  /external/openssl/crypto/ec/
eck_prn.c 151 int ret=0, reason=ERR_R_BIO_LIB; local
165 reason = ERR_R_PASSED_NULL_PARAMETER;
172 reason = ERR_R_MALLOC_FAILURE;
207 reason = ERR_R_MALLOC_FAILURE;
215 reason = ERR_R_EC_LIB;
223 reason = ERR_R_EC_LIB;
230 reason = ERR_R_EC_LIB;
236 reason = ERR_R_EC_LIB;
245 reason = ERR_R_EC_LIB;
267 reason = ERR_R_MALLOC_FAILURE
    [all...]
  /external/openssl/include/openssl/
kssl.h 121 int reason; member in struct:kssl_err_st
164 void kssl_err_set(KSSL_ERR *kssl_err, int reason, char *text);
  /external/openssl/ssl/
kssl.h 121 int reason; member in struct:kssl_err_st
164 void kssl_err_set(KSSL_ERR *kssl_err, int reason, char *text);
  /external/webkit/WebKit/gtk/webkit/
webkitwebnavigationaction.cpp 44 WebKitWebNavigationReason reason; member in struct:_WebKitWebNavigationActionPrivate
150 * WebKitWebNavigationAction:reason:
152 * The reason why this navigation is occuring.
157 g_param_spec_enum("reason",
158 _("Reason"),
159 _("The reason why this navigation is occurring"),
234 * Returns the reason why WebKit is requesting a navigation.
244 return navigationAction->priv->reason;
250 * @reason: a #WebKitWebNavigationReason
252 * Sets the reason why WebKit is requesting a navigation
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/tls/
tlsv1_client_read.c 220 int reason; local
368 &reason) < 0) {
371 "validation failed (reason=%d)", reason);
372 switch (reason) {

Completed in 418 milliseconds

1 2 3 4 5