/external/chromium_org/content/browser/ |
power_save_blocker_impl.cc | 14 const std::string& reason) { 15 return scoped_ptr<PowerSaveBlocker>(new PowerSaveBlockerImpl(type, reason));
|
/external/chromium_org/net/http/ |
http_status_code.cc | 14 #define HTTP_STATUS(label, code, reason) case HTTP_ ## label: return reason;
|
/external/nist-sip/java/gov/nist/javax/sip/ |
DialogTimeoutEvent.java | 34 public enum Reason {AckNotReceived, AckNotSent,ReInviteTimeout}; 42 public DialogTimeoutEvent(Object source, Dialog dialog, Reason reason) { 45 m_reason = reason; 62 * The reason for the Dialog Timeout Event being delivered to the application. 64 * @return the reason for the timeout event. 66 public Reason getReason() { 72 private Reason m_reason = null;
|
/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);
|
/libcore/crypto/src/main/java/org/conscrypt/ |
Message.java | 55 * @param reason 57 protected void fatalAlert(byte description, String reason) { 58 throw new AlertException(description, new SSLHandshakeException(reason)); 64 * @param reason 67 protected void fatalAlert(byte description, String reason, Throwable cause) { 68 throw new AlertException(description, new SSLException(reason, cause));
|
/libcore/luni/src/main/java/java/sql/ |
SQLWarning.java | 30 * Creates an {@code SQLWarning} object. The reason string is set to {@code 38 * Creates an {@code SQLWarning} object. The reason string is set to the 39 * given reason string, the {@code SQLState} string is set to {@code null} 43 * the reason why this warning is issued. 50 * Creates an {@code SQLWarning} object. The reason string is set to the 51 * given reason string, the {@code SQLState} string is set to the given 55 * the reason why this warning is issued. 64 * Creates an {@code SQLWarning} object. The reason string is set to the 65 * given reason string, the {@code SQLState} string is set to the given 70 * the reason why this warning is issued [all...] |
BatchUpdateException.java | 49 * <i>reason</i>, <i>SQLState</i>, and <i>update counts</i> set to {@code 56 * Creates an BatchUpdateException object. The reason is set to 60 * @param cause the Throwable object for the underlying reason this SQLException 69 * Creates an BatchUpdateException object. The Reason string is set to the 74 * @param cause the Throwable object for the underlying reason this SQLException 88 * @param cause the Throwable object for the underlying reason this SQLException 92 public BatchUpdateException(String reason, int[] updateCounts, 94 super(reason, cause); 104 * @param cause the Throwable object for the underlying reason this SQLException 108 public BatchUpdateException(String reason, String SQLState [all...] |
SQLException.java | 51 * Creates an {@code SQLException} object. The reason string is set to 59 * Creates an {@code SQLException} object. The reason string is set to the given 60 * reason string, the {@code SQLState} string is set to {@code null} and the error code is 64 * the string to use as the Reason string 71 * Creates an {@code SQLException} object. The reason string is set to the 72 * given reason string, the {@code SQLState} string is set to the given 76 * the string to use as the reason string. 85 * Creates an {@code SQLException} object. The reason string is set to the 86 * given reason string, the {@code SQLState} string is set to the given 91 * the string to use as the reason string [all...] |
/external/chromium_org/third_party/cld/base/ |
crash.h | 31 // Stores "reason" as an explanation for why the process is about to 32 // crash. The reason and its contents must remain live for the life 33 // of the process. Only the first reason is kept. 34 void SetCrashReason(const CrashReason* reason); 36 // Returns first reason passed to SetCrashReason(), or NULL.
|
/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/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/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;
|
/external/dhcpcd/dhcpcd-hooks/ |
95-configured | 13 setprop dhcp.${intf}.reason "${reason}" 15 case "${reason}" in
|
/external/chromium/chrome/browser/ui/ |
crypto_module_password_dialog.h | 27 // An enum to describe the reason for the password request. 40 // |module|. |reason| describes the purpose of the authentication and 45 CryptoModulePasswordReason reason, 53 CryptoModulePasswordReason reason, 60 browser::CryptoModulePasswordReason reason, 68 browser::CryptoModulePasswordReason reason,
|
crypto_module_password_dialog_openssl.cc | 12 browser::CryptoModulePasswordReason reason, 20 browser::CryptoModulePasswordReason reason,
|
/external/chromium_org/chrome/browser/ui/ |
crypto_module_password_dialog.h | 26 // An enum to describe the reason for the password request. 39 // |module|. |reason| describes the purpose of the authentication and 45 CryptoModulePasswordReason reason, 52 NewCryptoModuleBlockingDialogDelegate(CryptoModulePasswordReason reason, 59 CryptoModulePasswordReason reason, 67 CryptoModulePasswordReason reason,
|
crypto_module_password_dialog_openssl.cc | 12 CryptoModulePasswordReason reason, 20 CryptoModulePasswordReason reason,
|
/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/chromium-trace/trace-viewer/third_party/pywebsocket/src/example/ |
close_wsh.py | 45 code, reason = line.split(' ', 1) 46 if code is None or reason is None: 48 request.ws_stream.close_connection(int(code), reason) 50 # and reason. If you want to send a broken close frame for a test, 52 # > data = struct.pack('!H', int(code)) + reason.encode('UTF-8') 60 code, reason = request.ws_close_code, request.ws_close_reason 65 reason = '' 66 return code, reason
|
/external/chromium_org/jingle/notifier/listener/ |
fake_push_client_observer.cc | 19 NotificationsDisabledReason reason) { 20 last_notifications_disabled_reason_ = reason;
|
/external/chromium_org/net/data/websocket/ |
close-code-and-reason_wsh.py | 23 code, reason = line.split(' ', 1) 24 data = struct.pack('!H', int(code)) + reason.encode('utf-8')
|
/external/smack/src/org/jivesoftware/smackx/workgroup/packet/ |
OfferRevokeProvider.java | 38 String reason = null;
local 45 if ((eventType == XmlPullParser.START_TAG) && parser.getName().equals("reason")) {
46 reason = parser.nextText();
63 return new OfferRevokePacket(userJID, userID, reason, sessionID);
71 private String reason;
field in class:OfferRevokeProvider.OfferRevokePacket 76 this.reason = cause;
89 return this.reason;
99 if (reason != null) {
100 buf.append("<reason>").append(reason).append("</reason>"); [all...] |
/development/samples/training/threadsample/res/values/ |
bools.xml | 3 The reason this is done is that on tablets (>= sw600) , hiding the navigation has no function,
|
/external/chromium_org/chrome/app/theme/ |
README | 4 If this script does not work for some reason, at least pngcrush the files:
|