/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...] |
/libcore/luni/src/main/java/java/sql/ |
BatchUpdateException.java | 49 * <i>reason</i>, <i>SQLState</i>, and <i>update counts</i> set to {@code 57 * Creates an BatchUpdateException object. The reason is set to 61 * @param cause the Throwable object for the underlying reason this SQLException 70 * Creates an BatchUpdateException object. The Reason string is set to the 75 * @param cause the Throwable object for the underlying reason this SQLException 89 * @param cause the Throwable object for the underlying reason this SQLException 93 public BatchUpdateException(String reason, int[] updateCounts, 95 super(reason, cause); 105 * @param cause the Throwable object for the underlying reason this SQLException 109 public BatchUpdateException(String reason, String SQLState [all...] |
SQLException.java | 51 * Creates an {@code SQLException} object. The reason string is set to 60 * Creates an {@code SQLException} object. The reason string is set to the given 61 * reason string, the {@code SQLState} string is set to {@code null} and the error code is 65 * the string to use as the Reason string 72 * Creates an {@code SQLException} object. The reason string is set to the 73 * given reason string, the {@code SQLState} string is set to the given 77 * the string to use as the reason string. 86 * Creates an {@code SQLException} object. The reason string is set to the 87 * given reason string, the {@code SQLState} string is set to the given 92 * the string to use as the reason string [all...] |
/external/dhcpcd/dhcpcd-hooks/ |
95-configured | 6 setprop dhcp.${interface}.reason "${reason}" 8 case "${reason}" in
|
30-hostname | 26 case "${reason}" in
|
/external/icu4c/samples/ucnv/ |
flagcb.c | 35 UConverterCallbackReason reason, 38 /* First step - based on the reason code, take action */ 40 if(reason == UCNV_UNASSIGNED) { /* whatever set should be trapped here */ 44 if(reason == UCNV_CLONE) { 94 length, codePoint, reason, err); 113 reason != UCNV_CLONE) { 119 reason, 124 if(reason == UCNV_CLOSE) { 177 UConverterCallbackReason reason, 184 printf("debugCB_fromU: Context %p:%d called, reason %d on cnv %p [err=%s]\n", ctx, ctx->serial, reason, fromUArgs->converter, u_errorName(*err)) [all...] |
flagcb.h | 37 UConverterCallbackReason reason, 55 UConverterCallbackReason reason,
|
/external/nist-sip/java/javax/sip/header/ |
ReasonHeader.java | 7 String NAME = "Reason";
|
/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
|
PhoneNotifier.java | 36 public void notifyDataConnection(Phone sender, String reason); 38 public void notifyDataConnectionFailed(Phone sender, String reason);
|
/external/apache-http/src/org/apache/http/message/ |
BasicHttpResponse.java | 67 * @param catalog the reason phrase catalog, or 69 * reason phrase lookup 70 * @param locale the locale for looking up reason phrases, or 87 * The response will not have a reason phrase catalog and 98 * The response will not have a reason phrase catalog and 103 * @param reason the reason phrase to the status code, or 108 final String reason) { 109 this(new BasicStatusLine(ver, code, reason), null, null); 149 final String reason) { [all...] |
/libcore/luni/src/main/java/javax/net/ssl/ |
SSLException.java | 29 * Creates a new {@code SSLException} with the specified reason. 31 * @param reason 32 * the reason for the exception. 34 public SSLException(String reason) { 35 super(reason);
|
SSLHandshakeException.java | 31 * @param reason 34 public SSLHandshakeException(String reason) { 35 super(reason);
|
SSLKeyException.java | 30 * @param reason 33 public SSLKeyException(String reason) { 34 super(reason);
|
/external/webkit/JavaScriptCore/wtf/ |
RefCountedLeakCounter.cpp | 47 void RefCountedLeakCounter::suppressMessages(const char* reason) 51 leakMessageSuppressionReasons->add(reason); 54 void RefCountedLeakCounter::cancelMessageSuppression(const char* reason) 57 ASSERT(leakMessageSuppressionReasons->contains(reason)); 58 leakMessageSuppressionReasons->remove(reason); 73 // This logs only one reason. Later we could change it so we log all the reasons.
|
/external/webkit/WebCore/bindings/objc/ |
ExceptionHandlers.mm | 63 NSString *reason; 65 reason = [[NSString alloc] initWithFormat:@"*** %s: %@ %d", description.name, exceptionName, description.code]; 67 reason = [[NSString alloc] initWithFormat:@"*** %@ %d", exceptionName, description.code]; 71 NSException *exception = [NSException exceptionWithName:exceptionName reason:reason userInfo:userInfo]; 73 [reason release];
|
/external/apache-http/src/org/apache/http/ |
HttpResponse.java | 68 * The reason phrase will be determined based on the current 77 * Sets the status line of this response with a reason phrase. 81 * @param reason the reason phrase, or <code>null</code> to omit 83 void setStatusLine(ProtocolVersion ver, int code, String reason); 90 * The reason phrase will be updated according to the new status code, 107 * Updates the status line of this response with a new reason phrase. 111 * @param reason the new reason phrase as a single-line string, or 112 * <code>null</code> to unset the reason phras [all...] |
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/ |
CdmaDataConnectionTracker.java | 93 private static final String INTENT_RECONNECT_ALARM_EXTRA_REASON = "reason"; 137 String reason = intent.getStringExtra(INTENT_RECONNECT_ALARM_EXTRA_REASON); 139 cleanUpConnection(false, reason); 141 trySetupData(reason); 313 private boolean trySetupData(String reason) { 314 if (DBG) log("***trySetupData due to " + (reason == null ? "(unspecified)" : reason)); 320 phone.notifyDataConnection(reason); 341 return setupData(reason); 371 * @param reason reason for the clean up 720 String reason = null; local 746 String reason = null; local 779 String reason = null; local [all...] |
/external/clearsilver/python/ |
upload.py | 35 except Exception, Reason: 36 log ("Python Exception: %s" % (str(repr(Reason))))
|
/frameworks/base/core/java/android/os/ |
ParcelFormatException.java | 28 public ParcelFormatException(String reason) { 29 super(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/qemu/distrib/sdl-1.2.12/src/video/Xext/ |
README | 2 The reason these libraries are built outside of the standard XFree86
|
/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/ |
mlme.h | 26 int ieee80211_sta_deauthenticate(struct wpa_supplicant *wpa_s, u16 reason); 27 int ieee80211_sta_disassociate(struct wpa_supplicant *wpa_s, u16 reason); 58 u16 reason) 64 u16 reason)
|
/sdk/ddms/libs/ddmlib/src/com/android/ddmlib/ |
HandleWait.java | 76 byte reason; 78 reason = data.get(); 80 Log.d("ddm-wait", "WAIT: reason=" + reason);
|