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

1 2 3 4 5 6 7 8 91011>>

  /external/google-breakpad/src/processor/
symbolic_constants_win.cc 46 std::string reason; local
53 // | sed -r 's@(0xC[0-9A-F]+) ([A-Z_0-9]+)@ case MD_NTSTATUS_WIN_\2:\n reason = "\2";\n break;@'
63 reason = "STATUS_UNSUCCESSFUL";
66 reason = "STATUS_NOT_IMPLEMENTED";
69 reason = "STATUS_INVALID_INFO_CLASS";
72 reason = "STATUS_INFO_LENGTH_MISMATCH";
75 reason = "STATUS_ACCESS_VIOLATION";
78 reason = "STATUS_IN_PAGE_ERROR";
81 reason = "STATUS_PAGEFILE_QUOTA";
84 reason = "STATUS_INVALID_HANDLE"
    [all...]
minidump_processor.cc 665 // The reason value is OS-specific and possibly CPU-specific. Set up
666 // sensible numeric defaults for the reason string in case we can't
674 string reason = reason_string; local
678 return reason;
687 reason = "EXC_BAD_ACCESS / ";
690 reason.append("KERN_INVALID_ADDRESS");
693 reason.append("KERN_PROTECTION_FAILURE");
696 reason.append("KERN_NO_ACCESS");
699 reason.append("KERN_MEMORY_FAILURE");
702 reason.append("KERN_MEMORY_ERROR")
    [all...]
  /external/iw/
reason.c 29 [32] = "Disassociated for unspecified QoS-related reason",
45 const char *get_reason_str(uint16_t reason)
47 if (reason < ARRAY_SIZE(reason_table) && reason_table[reason])
48 return reason_table[reason];
  /external/grpc-grpc-java/netty/src/main/java/io/grpc/netty/
CancelClientStreamCommand.java 28 @Nullable private final Status reason; field in class:CancelClientStreamCommand
30 CancelClientStreamCommand(NettyClientStream.TransportState stream, Status reason) {
33 reason == null || !reason.isOk(), "Should not cancel with OK status");
34 this.reason = reason;
42 Status reason() { method in class:CancelClientStreamCommand
43 return reason;
CancelServerStreamCommand.java 29 private final Status reason; field in class:CancelServerStreamCommand
31 CancelServerStreamCommand(NettyServerStream.TransportState stream, Status reason) {
33 this.reason = Preconditions.checkNotNull(reason, "reason");
40 Status reason() { method in class:CancelServerStreamCommand
41 return reason;
56 && Objects.equal(this.reason, that.reason);
61 return Objects.hashCode(stream, reason);
    [all...]
  /external/v8/src/
bailout-reason.cc 5 #include "src/bailout-reason.h"
13 const char* GetBailoutReason(BailoutReason reason) {
14 DCHECK_LT(reason, BailoutReason::kLastErrorMessage);
15 DCHECK_GE(reason, BailoutReason::kNoReason);
18 return error_messages_[static_cast<int>(reason)];
21 const char* GetAbortReason(AbortReason reason) {
22 DCHECK_LT(reason, AbortReason::kLastErrorMessage);
23 DCHECK_GE(reason, AbortReason::kNoReason);
26 return error_messages_[static_cast<int>(reason)];
deoptimize-reason.cc 5 #include "src/deoptimize-reason.h"
10 std::ostream& operator<<(std::ostream& os, DeoptimizeReason reason) {
11 switch (reason) {
21 size_t hash_value(DeoptimizeReason reason) {
22 return static_cast<uint8_t>(reason);
25 char const* DeoptimizeReasonToString(DeoptimizeReason reason) {
31 size_t const index = static_cast<size_t>(reason);
  /external/volley/src/main/java/com/android/volley/
NoConnectionError.java 26 public NoConnectionError(Throwable reason) {
27 super(reason);
  /external/strace/tests/
ioctl_kvm_run.c 6 print_KVM_RUN(const int fd, const char *const dev, const unsigned int reason)
  /external/strace/tests-m32/
ioctl_kvm_run.c 6 print_KVM_RUN(const int fd, const char *const dev, const unsigned int reason)
  /external/strace/tests-mx32/
ioctl_kvm_run.c 6 print_KVM_RUN(const int fd, const char *const dev, const unsigned int 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/mesa3d/src/gallium/drivers/llvmpipe/
lp_flush.h 40 const char *reason);
44 const char *reason );
53 const char *reason);
  /external/grpc-grpc/src/core/lib/iomgr/
call_combiner.h 58 #define GRPC_CALL_COMBINER_START(call_combiner, closure, error, reason) \
60 __LINE__, (reason))
61 #define GRPC_CALL_COMBINER_STOP(call_combiner, reason) \
62 grpc_call_combiner_stop((call_combiner), __FILE__, __LINE__, (reason))
66 const char* file, int line, const char* reason);
69 const char* file, int line, const char* reason);
71 #define GRPC_CALL_COMBINER_START(call_combiner, closure, error, reason) \
72 grpc_call_combiner_start((call_combiner), (closure), (error), (reason))
73 #define GRPC_CALL_COMBINER_STOP(call_combiner, reason) \
74 grpc_call_combiner_stop((call_combiner), (reason))
181 const char* reason; member in struct:grpc_core::CallCombinerClosureList::CallCombinerClosure
    [all...]
combiner.h 42 , const char *file, int line, const char *reason
43 #define GRPC_COMBINER_REF(combiner, reason) \
44 grpc_combiner_ref((combiner), __FILE__, __LINE__, (reason))
45 #define GRPC_COMBINER_UNREF(combiner, reason) \
46 grpc_combiner_unref((combiner), __FILE__, __LINE__, (reason))
49 #define GRPC_COMBINER_REF(combiner, reason) grpc_combiner_ref((combiner))
50 #define GRPC_COMBINER_UNREF(combiner, reason) grpc_combiner_unref((combiner))
cfstream_handle.h 49 void Ref(const char* file = "", int line = 0, const char* reason = nullptr);
50 void Unref(const char* file = "", int line = 0, const char* reason = nullptr);
69 #define CFSTREAM_HANDLE_REF(handle, reason) \
70 (handle)->Ref(__FILE__, __LINE__, (reason))
71 #define CFSTREAM_HANDLE_UNREF(handle, reason) \
72 (handle)->Unref(__FILE__, __LINE__, (reason))
74 #define CFSTREAM_HANDLE_REF(handle, reason) (handle)->Ref()
75 #define CFSTREAM_HANDLE_UNREF(handle, reason) (handle)->Unref()
  /external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/zip/
UnsupportedZipFeatureException.java 30 private final Feature reason; field in class:UnsupportedZipFeatureException
36 * @param reason the feature that is not supported
39 public UnsupportedZipFeatureException(final Feature reason,
41 super("unsupported feature " + reason + " used in entry "
43 this.reason = reason;
58 this.reason = Feature.METHOD;
66 * @param reason the feature that is not supported
69 public UnsupportedZipFeatureException(final Feature reason) {
70 super("unsupported feature " + reason + " used in archive.")
    [all...]
Zip64RequiredException.java 46 public Zip64RequiredException(final String reason) {
47 super(reason);
  /external/archive-patcher/generator/src/main/java/com/google/archivepatcher/generator/
QualifiedRecommendation.java 39 * The reason for the recommendation.
41 private final RecommendationReason reason; field in class:QualifiedRecommendation
48 * @param reason the reason for the recommendation
54 RecommendationReason reason) {
59 this.reason = reason;
87 * Returns the reason for the recommendation.
91 return reason;
100 result = prime * result + ((reason == null) ? 0 : reason.hashCode())
    [all...]
  /external/icu/icu4c/source/tools/icuinfo/
testplug.c 36 #define DECLARE_PLUGIN(x) U_CAPI UPlugTokenReturn U_EXPORT2 x (UPlugData *data, UPlugReason reason, UErrorCode *status)
53 UPlugReason reason,
56 fprintf(stderr,"MyPlugin: data=%p, reason=%s, status=%s\n", (void*)data, udbg_enumName(UDBG_UPlugReason,(int32_t)reason), u_errorName(*status));
58 if(reason==UPLUG_REASON_QUERY) {
70 UPlugReason reason,
72 fprintf(stderr,"MyPluginLow: data=%p, reason=%s, status=%s\n", (void*)data, udbg_enumName(UDBG_UPlugReason,(int32_t)reason), u_errorName(*status));
74 if(reason==UPLUG_REASON_QUERY) {
88 UPlugReason reason,
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
ReasonParser.java 33 * Parser for Reason header.
46 * @param reason the header to parse
48 public ReasonParser(String reason) {
49 super(reason);
71 headerName(TokenTypes.REASON);
74 Reason reason = new Reason(); local
79 reason.setProtocol(value);
80 super.parse(reason);
    [all...]
  /external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/
MatcherAssert.java 9 public static <T> void assertThat(String reason, T actual, Matcher<? super T> matcher) {
12 description.appendText(reason)
22 public static void assertThat(String reason, boolean assertion) {
24 throw new AssertionError(reason);
  /external/libchrome/mojo/public/cpp/bindings/
pipe_control_message_handler_delegate.h 21 const base::Optional<DisconnectReason>& reason) = 0;
  /external/python/setuptools/setuptools/tests/
__init__.py 6 fail_on_ascii = pytest.mark.xfail(is_ascii, reason="Test fails in this locale")
  /external/grpc-grpc/src/core/lib/surface/
channel.h 68 void grpc_channel_internal_ref(grpc_channel* channel, const char* reason);
69 void grpc_channel_internal_unref(grpc_channel* channel, const char* reason);
70 #define GRPC_CHANNEL_INTERNAL_REF(channel, reason) \
71 grpc_channel_internal_ref(channel, reason)
72 #define GRPC_CHANNEL_INTERNAL_UNREF(channel, reason) \
73 grpc_channel_internal_unref(channel, reason)
77 #define GRPC_CHANNEL_INTERNAL_REF(channel, reason) \
79 #define GRPC_CHANNEL_INTERNAL_UNREF(channel, reason) \

Completed in 2820 milliseconds

1 2 3 4 5 6 7 8 91011>>