HomeSort by relevance Sort by last modified time
    Searched refs:reason (Results 51 - 75 of 1482) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/x509/
CRLReason.java 112 int reason)
114 value = new ASN1Enumerated(reason);
120 int reason = getValue().intValue(); local
121 if (reason < 0 || reason > 10)
127 str = reasonString[reason];
  /external/libchrome/mojo/public/cpp/bindings/lib/
pipe_control_message_proxy.cc 40 const base::Optional<DisconnectReason>& reason) {
41 Message message(ConstructPeerEndpointClosedMessage(id, reason));
48 const base::Optional<DisconnectReason>& reason) {
51 if (reason) {
53 event->disconnect_reason->custom_reason = reason->custom_reason;
54 event->disconnect_reason->description = reason->description;
  /external/python/cpython3/Lib/urllib/
error.py 25 def __init__(self, reason, filename=None):
26 self.args = reason,
27 self.reason = reason
32 return '<urlopen error %s>' % self.reason
58 # since URLError specifies a .reason attribute, HTTPError should also
61 def reason(self): member in class:HTTPError
  /cts/hostsidetests/appsecurity/src/android/appsecurity/cts/
SplitTests.java 105 @AppModeFull(reason = "'full' portion of the hostside test")
110 @AppModeInstant(reason = "'instant' portion of the hostside test")
120 @AppModeFull(reason = "'full' portion of the hostside test")
125 @AppModeInstant(reason = "'instant' portion of the hostside test")
135 @AppModeFull(reason = "'full' portion of the hostside test")
140 @AppModeInstant(reason = "'instant' portion of the hostside test")
155 @AppModeFull(reason = "'full' portion of the hostside test")
160 @AppModeInstant(reason = "'instant' portion of the hostside test")
178 @AppModeFull(reason = "'full' portion of the hostside test")
183 @AppModeInstant(reason = "'instant' portion of the hostside test"
    [all...]
  /external/ImageMagick/MagickCore/
exception.c 155 if (p->reason != (char *) NULL)
156 p->reason=DestroyString(p->reason);
173 exception->reason=(char *) NULL;
225 MagickWarning(p->severity,p->reason,p->description);
227 MagickError(p->severity,p->reason,p->description);
229 MagickFatalError(p->severity,p->reason,p->description);
283 % DefaultErrorHandler() displays an error reason.
287 % void MagickError(const ExceptionType severity,const char *reason,
294 % o reason: Specifies the reason to display before terminating th
292 const char *reason,const char *description) variable
376 const char *reason,const char *description) variable
1031 reason[MagickPathExtent]; local
    [all...]
  /external/python/google-api-python-client/googleapiclient/
errors.py 47 """Calculate the reason for the error from the response content."""
48 reason = self.resp.reason
52 reason = data['error']['message']
57 reason = first_error['error']['message']
62 if reason is None:
63 reason = ''
64 return reason
67 reason = self._get_reason()
70 (self.resp.status, self.uri, reason.strip(), self.error_details
    [all...]
  /external/autotest/client/site_tests/cellular_SafetyDance/
cellular_SafetyDance.py 49 def _ignoring(self, reason):
50 if ('AlreadyConnected' in reason or
51 'Not connected' in reason or
52 'Bearer already being connected' in reason or
53 'Bearer already being disconnected' in reason or
54 'InProgress' in reason):
56 if 'NotSupported' in reason:
71 success, reason = self._filterexns(lambda:
76 if not success and not self._ignoring(reason):
77 raise error.TestFail('Could not connect: %s' % reason)
    [all...]
  /external/apache-http/src/org/apache/http/message/
BasicHttpResponse.java 72 * @param catalog the reason phrase catalog, or
74 * reason phrase lookup
75 * @param locale the locale for looking up reason phrases, or
92 * The response will not have a reason phrase catalog and
103 * The response will not have a reason phrase catalog and
108 * @param reason the reason phrase to the status code, or
113 final String reason) {
114 this(new BasicStatusLine(ver, code, reason), null, null);
154 final String reason) {
    [all...]
  /external/chromium-trace/catapult/common/py_utils/py_utils/
expectations_parser.py 13 def __init__(self, reason, test, conditions, results):
17 reason: String that indicates the reason for disabling.
23 assert isinstance(reason, basestring) or reason is None
24 self._reason = reason
33 return (self.reason == other.reason and
39 def reason(self): member in class:Expectation
108 reason, raw_conditions, test, results, _ = match.groups(
    [all...]
  /external/autotest/client/tests/tsc/
tsc.py 30 ## reason of failure and to raise an appropriate exception.
31 ## For this test we qualify the reason of failure if the
38 ## Set as a reason the line that contains max abs(delta)
45 reason = ''
53 reason = ln
55 reason = "Latency %s exceeds threshold %d" % (reason,
57 raise error.TestFail(reason)
59 ## If we are here, we failed to qualify the reason of test failre
  /external/autotest/server/cros/dynamic_suite/
comparators.py 11 def CreateFromStrings(status=None, test_name=None, reason=None):
14 reason_comp = mox.StrContains(reason) if reason else mox.IgnoreArg()
19 reason=mox.IgnoreArg()):
27 @param reason: expected reason
31 self._reason = reason
  /external/libunwind/src/unwind/
RaiseException.c 35 _Unwind_Reason_Code reason; local
72 reason = (*personality) (_U_VERSION, _UA_SEARCH_PHASE,
75 if (reason != _URC_CONTINUE_UNWIND)
77 if (reason == _URC_HANDLER_FOUND)
81 Debug (1, "personality returned %d\n", reason);
unwind-internal.h 68 _Unwind_Reason_Code reason; local
100 reason = (*stop) (_U_VERSION, actions, exception_class,
102 if (reason != _URC_NO_REASON)
133 reason = (*personality) (_U_VERSION, actions, exception_class,
135 if (reason != _URC_CONTINUE_UNWIND)
137 if (reason == _URC_INSTALL_CONTEXT)
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
ErrorHandling.h 27 const std::string& reason,
72 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const char *reason,
74 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const std::string &reason,
76 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(StringRef reason,
78 LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const Twine &reason,
117 void report_bad_alloc_error(const char *Reason, bool GenCrashDiag = true);
  /external/u-boot/drivers/fastboot/
fb_common.c 33 * fastboot_response() - Writes a response of the form "$tag$reason".
55 * fastboot_fail() - Write a FAIL response of the form "FAIL$reason".
57 * @reason: Pointer to returned reason string
60 void fastboot_fail(const char *reason, char *response)
62 fastboot_response("FAIL", response, "%s", reason);
66 * fastboot_okay() - Write an OKAY response of the form "OKAY$reason".
68 * @reason: Pointer to returned reason string, or NULL to send a bare "OKAY"
71 void fastboot_okay(const char *reason, char *response
    [all...]
  /art/runtime/jni/
java_vm_ext_test.cc 89 const char* reason = __PRETTY_FUNCTION__; local
93 nullptr), reason);
95 CHECK_PTHREAD_CALL(pthread_join, (pthread, &ret_val), reason);
101 const char* reason = __PRETTY_FUNCTION__; local
105 nullptr), reason);
107 CHECK_PTHREAD_CALL(pthread_join, (pthread, &ret_val), reason);
115 const char* reason = __PRETTY_FUNCTION__; local
118 CHECK_PTHREAD_CALL(pthread_attr_init, (&attr), reason);
119 CHECK_PTHREAD_CALL(pthread_attr_setstacksize, (&attr, PTHREAD_STACK_MIN), reason);
121 nullptr), reason);
    [all...]
  /development/host/windows/usb/api/
AdbWinApi.cpp 102 DWORD reason,
108 if (DLL_PROCESS_ATTACH == reason) {
111 return _AtlModule.DllMain(reason, reserved);
  /external/deqp-deps/SPIRV-Tools/source/val/
validate_execution_limitations.cpp 44 std::string reason; local
45 if (!func->IsCompatibleWithExecutionModel(model, &reason)) {
52 << reason;
  /external/grpc-grpc/src/core/lib/channel/
channel_stack.h 227 #define GRPC_CALL_STACK_REF(call_stack, reason) \
228 grpc_stream_ref(&(call_stack)->refcount, reason)
229 #define GRPC_CALL_STACK_UNREF(call_stack, reason) \
230 grpc_stream_unref(&(call_stack)->refcount, reason)
231 #define GRPC_CHANNEL_STACK_REF(channel_stack, reason) \
232 grpc_stream_ref(&(channel_stack)->refcount, reason)
233 #define GRPC_CHANNEL_STACK_UNREF(channel_stack, reason) \
234 grpc_stream_unref(&(channel_stack)->refcount, reason)
236 #define GRPC_CALL_STACK_REF(call_stack, reason) \
238 #define GRPC_CALL_STACK_UNREF(call_stack, reason) \
    [all...]
  /external/libchrome/mojo/public/js/lib/
pipe_control_message_proxy.js 30 interfaceId, reason) {
31 var message = this.constructPeerEndpointClosedMessage(interfaceId, reason);
36 function(interfaceId, reason) {
39 if (reason) {
41 customReason: reason.customReason,
42 description: reason.description});
  /external/skia/src/ports/
SkTLS_win.cpp 52 void NTAPI onTLSCallback(PVOID unused, DWORD reason, PVOID unused2) {
53 if ((DLL_THREAD_DETACH == reason || DLL_PROCESS_DETACH == reason) && gOnce) {
  /external/skqp/src/ports/
SkTLS_win.cpp 52 void NTAPI onTLSCallback(PVOID unused, DWORD reason, PVOID unused2) {
53 if ((DLL_THREAD_DETACH == reason || DLL_PROCESS_DETACH == reason) && gOnce) {
  /external/swiftshader/third_party/SPIRV-Tools/source/val/
validate_execution_limitations.cpp 44 std::string reason; local
45 if (!func->IsCompatibleWithExecutionModel(model, &reason)) {
52 << reason;
  /build/kati/testcase/
semicolon.mk 2 # are silently ignored, for some reason.
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/unicode/
listcodecs.py 25 except Exception, reason:
30 (name, reason)

Completed in 2289 milliseconds

1 23 4 5 6 7 8 91011>>