/external/chromium_org/cc/base/ |
latency_info_swap_promise.cc | 11 cc::SwapPromise::DidNotSwapReason reason) { 12 switch (reason) { 40 void LatencyInfoSwapPromise::DidNotSwap(DidNotSwapReason reason) { 41 latency_.AddLatencyNumber(DidNotSwapReasonToLatencyComponentType(reason),
|
swap_promise.h | 45 virtual void DidNotSwap(DidNotSwapReason reason) = 0;
|
/external/chromium_org/content/browser/renderer_host/ |
memory_benchmark_message_filter.h | 22 void OnHeapProfilerDump(const std::string& reason);
|
memory_benchmark_message_filter.cc | 34 const std::string& reason) { 35 ::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/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/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/chrome/browser/policy/ |
policy_helpers.cc | 22 bool OverrideBlacklistForURL(const GURL& url, bool* block, int* reason) { 29 *reason = net::ERR_BLOCKED_ENROLLMENT_CHECK_PENDING;
|
/external/chromium_org/components/invalidation/ |
notifier_reason_util.cc | 12 notifier::NotificationsDisabledReason reason) { 13 switch (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/chromium_org/third_party/WebKit/Source/core/testing/ |
InternalProfilers.cpp | 51 void InternalProfilers::dumpHeapProfiling(const String& reason) 53 blink::Platform::current()->dumpHeapProfiling(reason);
|
/external/chromium_org/third_party/WebKit/Source/modules/websockets/ |
CloseEvent.idl | 36 [InitializedByEventConstructor] readonly attribute DOMString reason;
|
/external/chromium_org/third_party/WebKit/public/web/ |
WebSocketClient.h | 55 virtual void didClose(ClosingHandshakeCompletionStatus, unsigned short code, const WebString& reason) { } 60 virtual void didClose(unsigned long unhandledBufferedAmount, ClosingHandshakeCompletionStatus, unsigned short code, const WebString& 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/base/core/java/android/hardware/camera2/ |
CaptureFailure.java | 55 public CaptureFailure(CaptureRequest request, int reason, boolean dropped, int sequenceId, 58 mReason = reason;
|
/frameworks/volley/src/com/android/volley/ |
VolleyError.java | 39 public VolleyError(String exceptionMessage, Throwable reason) { 40 super(exceptionMessage, reason);
|