HomeSort by relevance Sort by last modified time
    Searched full:reason (Results 176 - 200 of 6774) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/content/test/plugin/
plugin_get_javascript_url_test.h 28 virtual NPError DestroyStream(NPStream *stream, NPError reason) OVERRIDE;
30 NPReason reason,
  /external/chromium_org/jingle/notifier/listener/
fake_push_client.cc 48 NotificationsDisabledReason reason) {
50 OnNotificationsDisabled(reason));
  /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/third_party/angle_dx11/src/compiler/
Diagnostics.cpp 26 const std::string& reason,
50 sink << "'" << token << "' : " << reason << " " << extra << "\n";
  /external/dhcpcd/dhcpcd-hooks/
50-dhcpcd-compat 27 case "$reason" in
32 if [ "$reason" != "down" ]; then
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
ConnectionMonitor.java 34 * @param reason Includes an indication why the socket was closed.
36 public void connectionLost(Throwable reason);
  /external/smack/src/org/jivesoftware/smackx/muc/
DefaultParticipantStatusListener.java 40 public void kicked(String participant, String actor, String reason) {
49 public void banned(String participant, String actor, String reason) {
DefaultUserStatusListener.java 34 public void kicked(String actor, String reason) {
43 public void banned(String actor, String reason) {
  /frameworks/base/telephony/java/com/android/internal/telephony/
ITelephonyRegistry.aidl 38 String reason, String apn, String apnType, in LinkProperties linkProperties,
40 void notifyDataConnectionFailed(String reason, String apnType);
  /frameworks/volley/src/com/android/volley/
AuthFailureError.java 46 public AuthFailureError(String message, Exception reason) {
47 super(message, reason);
VolleyError.java 39 public VolleyError(String exceptionMessage, Throwable reason) {
40 super(exceptionMessage, reason);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/
add_pointer.hpp 23 // For some reason this implementation stops Borlands compiler
25 // to arrays for some reason though (shrug...) (JM 20021104)
  /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/apache-http/src/org/apache/http/
ReasonPhraseCatalog.java 38 * Interface for obtaining reason phrases for HTTP status codes.
51 * Obtains the reason phrase for a status code.
53 * the language for the reason phrase.
56 * @param loc the preferred locale for the reason phrase
58 * @return the reason phrase, or <code>null</code> if unknown
  /external/chromium_org/chromeos/dbus/
power_policy_controller.h 82 // inactivity and sends an updated policy. |reason| is a human-readable
83 // description of the reason the lock was created. Returns a unique ID
85 int AddScreenWakeLock(const std::string& reason);
86 int AddSystemWakeLock(const std::string& reason);
121 // to the reason for the request.
  /external/clang/lib/Frontend/
HeaderIncludeGen.cpp 42 virtual void FileChanged(SourceLocation Loc, FileChangeReason Reason,
76 FileChangeReason Reason,
86 if (Reason == PPCallbacks::EnterFile) {
88 } else if (Reason == PPCallbacks::ExitFile) {
109 if (ShowHeader && Reason == PPCallbacks::EnterFile) {
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/
TokenMgrError.java 46 * Indicates the reason why the exception is thrown. It will have
140 public TokenMgrError(String message, int reason) {
142 errorCode = reason;
145 public TokenMgrError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar, int reason) {
146 this(LexicalError(EOFSeen, lexState, errorLine, errorColumn, errorAfter, curChar), reason);
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/contenttype/parser/
TokenMgrError.java 46 * Indicates the reason why the exception is thrown. It will have
140 public TokenMgrError(String message, int reason) {
142 errorCode = reason;
145 public TokenMgrError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar, int reason) {
146 this(LexicalError(EOFSeen, lexState, errorLine, errorColumn, errorAfter, curChar), reason);
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/datetime/parser/
TokenMgrError.java 46 * Indicates the reason why the exception is thrown. It will have
140 public TokenMgrError(String message, int reason) {
142 errorCode = reason;
145 public TokenMgrError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar, int reason) {
146 this(LexicalError(EOFSeen, lexState, errorLine, errorColumn, errorAfter, curChar), reason);
  /external/chromium_org/content/browser/gpu/
gpu_data_manager_impl_private_unittest.cc 139 std::string reason; local
140 EXPECT_TRUE(manager->GpuAccessAllowed(&reason));
141 EXPECT_TRUE(reason.empty());
173 EXPECT_TRUE(manager->GpuAccessAllowed(&reason));
174 EXPECT_TRUE(reason.empty());
181 EXPECT_FALSE(manager->GpuAccessAllowed(&reason));
182 EXPECT_FALSE(reason.empty());
234 std::string reason; local
235 EXPECT_TRUE(manager->GpuAccessAllowed(&reason));
236 EXPECT_TRUE(reason.empty())
625 std::string reason; local
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
_stream_hybi.py 370 def create_closing_handshake_body(code, reason):
381 encoded_reason = reason.encode('utf-8')
615 # Status code is optional. We can have status reason only if we
616 # have status code. Status reason can be empty string. So,
618 # - no application data: no code no reason
619 # - 2 octet of application data: has code but no reason
620 # - 3 or more octet of application data: both code and reason
635 'Received close frame (code=%d, reason=%r)',
652 reason = ''
655 code, reason = dispatcher.passive_closing_handshake
    [all...]
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/example/
console.html 130 // code and reason are present only for
135 if ('reason' in event) {
136 logMessage += ', reason = ' + event.reason;
181 reasonBox = document.getElementById('reason');
233 Reason <input type="text" id="reason" size="20">
  /external/chromium_org/base/win/
dllmain.cc 43 static void NTAPI on_callback(PVOID h, DWORD reason, PVOID reserved);
94 BOOL WINAPI DllMain(PVOID h, DWORD reason, PVOID reserved) {
95 if (DLL_PROCESS_DETACH == reason && base::win::ShouldCrashOnProcessDetach())
98 if (DLL_THREAD_DETACH != reason && DLL_PROCESS_DETACH != reason)
107 (*it)(h, reason, reserved);
112 static void NTAPI on_callback(PVOID h, DWORD reason, PVOID reserved) {
  /external/chromium_org/chrome/browser/ui/
crypto_module_password_dialog_nss.cc 35 chrome::CryptoModulePasswordReason reason,
54 chrome::CryptoModulePasswordReason reason,
59 reason_(reason),
139 chrome::CryptoModulePasswordReason reason,
145 (new SlotUnlocker(modules, reason, host, callback))->Start();
153 chrome::CryptoModulePasswordReason reason,
159 UnlockSlotsIfNecessary(modules, reason, host, callback);
  /external/chromium_org/chrome/browser/ui/views/
crypto_module_password_dialog_view.cc 25 CryptoModulePasswordReason reason,
29 Init(server, slot_name, reason);
83 CryptoModulePasswordReason reason) {
84 // Select an appropriate text for the reason.
88 switch (reason) {
154 CryptoModulePasswordReason reason,
158 new CryptoModulePasswordDialogView(slot_name, reason, server, callback);

Completed in 583 milliseconds

1 2 3 4 5 6 78 91011>>