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

1 2 3 4 5 6 7 8 91011

  /dalvik/vm/alloc/
Heap.h 30 const char *reason; member in struct:GcSpec
  /external/webkit/Source/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/javassist/src/main/javassist/compiler/
CompileError.java 23 private String reason; field in class:CompileError
26 reason = s;
31 reason = s;
46 return reason;
50 return "compile error: " + reason;
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/
ClientStateListener.java 65 public String reason; field in class:ClientStateListener.DisconnectInfo
  /external/libnfc-nci/src/nfc/llcp/
llcp_main.c 145 UINT8 reason; local
162 reason = LLCP_SAP_DISCONNECT_REASON_TIMEOUT;
163 llcp_dlsm_execute ((tLLCP_DLCB *) (p_tle->param), LLCP_DLC_EVENT_TIMEOUT, &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/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/
PacketDisconnect.java 18 int reason; field in class:PacketDisconnect
35 reason = tr.readUINT32();
40 public PacketDisconnect(int reason, String desc, String lang)
42 this.reason = reason;
53 tw.writeUINT32(reason);
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/message/
DisconnectMessage.java 50 private String reason; field in class:DisconnectMessage
54 return reason;
57 public void setReason(String reason) {
58 this.reason = reason;
  /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...]
  /external/smack/src/org/jivesoftware/smackx/provider/
DelayInformationProvider.java 62 String reason = parser.nextText(); local
65 * parser.nextText() returns empty string if there is no reason.
69 reason = "".equals(reason) ? null : reason;
70 delayInformation.setReason(reason);
  /external/smack/src/org/jivesoftware/smackx/workgroup/agent/
InvitationRequest.java 31 private String reason; field in class:InvitationRequest
33 public InvitationRequest(String inviter, String room, String reason) {
36 this.reason = reason;
48 return reason;
TransferRequest.java 31 private String reason; field in class:TransferRequest
33 public TransferRequest(String inviter, String room, String reason) {
36 this.reason = reason;
48 return reason;
RevokedOffer.java 26 * the reason, the workgroup, the userJID, and the timestamp which the message was received.<br>
36 private String reason; field in class:RevokedOffer
45 * @param reason the server issued message as to why this revocation was issued.
49 String reason, Date timestamp) {
56 this.reason = reason;
89 return this.reason;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
CallForwardInfo.java 28 public int reason; /* from TS 27.007 7.11 "reason" */ field in class:CallForwardInfo
37 + " 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);
54 } else if (reason == null) {
55 throw new NullPointerException("reason == null");
72 * @param reason
73 * the reason why the exception occurred.
75 * if one of the arguments {@code input} or {@code reason} i
129 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...]
  /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...]
  /external/wpa_supplicant_8/src/ap/
ctrl_iface_ap.c 149 " with minor reason code %u (stype=%u)",
192 u16 reason = WLAN_REASON_PREV_AUTH_NOT_VALID; local
232 pos = os_strstr(txtaddr, " reason=");
234 reason = atoi(pos + 8);
236 hostapd_drv_sta_deauth(hapd, addr, reason);
239 ap_sta_deauthenticate(hapd, sta, reason);
253 u16 reason = WLAN_REASON_PREV_AUTH_NOT_VALID; local
293 pos = os_strstr(txtaddr, " reason=");
295 reason = atoi(pos + 8);
297 hostapd_drv_sta_disassoc(hapd, addr, reason);
    [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;
  /dalvik/vm/native/
java_lang_Runtime.cpp 94 char* reason = NULL; local
95 bool success = dvmLoadNativeCode(fileName, classLoader, &reason);
97 const char* msg = (reason != NULL) ? reason : "unknown failure";
102 free(reason);
  /external/bluetooth/bluedroid/stack/mcap/
mca_l2c.c 459 UINT16 reason = L2CAP_DISC_TIMEOUT; local
474 reason = L2CAP_DISC_OK;
475 mca_tc_close_ind(p_tbl, reason);
  /external/chromium/chrome/browser/chromeos/login/
login_status_consumer.h 32 explicit LoginFailure(FailureReason reason)
33 : reason_(reason),
35 DCHECK(reason != NETWORK_AUTH_FAILED);
83 const FailureReason& reason() const { return reason_; } function in class:chromeos::LoginFailure
86 LoginFailure(FailureReason reason, GoogleServiceAuthError error)
87 : reason_(reason),
  /external/openssh/
auth2-hostbased.c 144 const char *resolvedname, *ipaddr, *lookup, *reason; local
179 key_cert_check_authority(key, 1, 0, lookup, &reason)) {
180 error("%s", reason);
181 auth_debug_add("%s", reason);

Completed in 1035 milliseconds

1 2 3 4 5 6 7 8 91011