HomeSort by relevance Sort by last modified time
    Searched refs:reason (Results 76 - 100 of 1591) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/content/browser/renderer_host/
memory_benchmark_message_filter.h 23 void OnHeapProfilerDump(const std::string& reason);
memory_benchmark_message_filter.cc 36 const std::string& reason) {
37 ::HeapProfilerDump(reason.c_str());
  /external/chromium_org/content/public/browser/
download_destination_observer.h 30 virtual void DestinationError(DownloadInterruptReason reason) = 0;
power_save_blocker.h 39 // |reason| may be provided to the underlying system APIs on some platforms.
41 const std::string& reason);
  /external/chromium_org/jingle/notifier/listener/
push_client_observer.h 34 // Called when notifications are disabled, with the reason (not
35 // equal to NO_ERROR) in |reason|.
37 NotificationsDisabledReason reason) = 0;
  /external/chromium_org/net/http/
http_status_code.h 15 #define HTTP_STATUS(label, code, reason) HTTP_ ## label = code,
21 // Returns the corresponding HTTP status description to use in the Reason-Phrase
  /external/chromium_org/rlz/win/dll/
dll_main.cc 12 BOOL APIENTRY DllMain(HANDLE module, DWORD reason, LPVOID reserved) {
  /external/chromium_org/sync/internal_api/public/util/
sync_string_conversions.h 18 PassphraseRequiredReason reason);
  /external/chromium_org/third_party/WebKit/Source/core/testing/
InternalProfilers.h 48 void dumpHeapProfiling(const String& reason);
InternalProfilers.cpp 51 void InternalProfilers::dumpHeapProfiling(const String& reason)
53 WebKit::Platform::current()->dumpHeapProfiling(reason);
  /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/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
RpcController.java 91 * Causes {@code failed()} to return true on the client side. {@code reason}
97 void setFailed(String reason);
  /external/dhcpcd/
configure.h 39 #define run_script(ifp) run_script_reason(ifp, (ifp)->state->reason);
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/
ClientStateListener.java 65 public String reason; field in class:ClientStateListener.DisconnectInfo
  /external/protobuf/java/src/main/java/com/google/protobuf/
RpcController.java 91 * Causes {@code failed()} to return true on the client side. {@code reason}
97 void setFailed(String reason);
  /development/host/windows/usb/winusb/
AdbWinUsbApi.cpp 30 DWORD reason,
32 return _AtlModule.DllMain(reason, reserved);
  /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...]
  /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/chromium_org/third_party/WebKit/Source/modules/websockets/
CloseEvent.idl 36 [InitializedByEventConstructor] readonly attribute DOMString reason;
  /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...]
  /frameworks/volley/src/com/android/volley/
VolleyError.java 39 public VolleyError(String exceptionMessage, Throwable reason) {
40 super(exceptionMessage, reason);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
CRLReason.java 110 int reason)
112 value = new ASN1Enumerated(reason);
118 int reason = getValue().intValue(); local
119 if (reason < 0 || reason > 10)
125 str = reasonString[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/chromium_org/chrome/browser/chromeos/login/
login_status_consumer.h 40 explicit LoginFailure(FailureReason reason)
41 : reason_(reason),
43 DCHECK(reason != NETWORK_AUTH_FAILED);
95 const FailureReason& reason() const { return reason_; } function in class:chromeos::LoginFailure
98 LoginFailure(FailureReason reason, GoogleServiceAuthError error)
99 : reason_(reason),
  /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);

Completed in 1507 milliseconds

1 2 34 5 6 7 8 91011>>