HomeSort by relevance Sort by last modified time
    Searched defs:Reason (Results 1 - 25 of 50) sorted by null

1 2

  /device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/Pk/
CryptRsaExt.c 271 UINTN Reason;
281 Reason = ERR_GET_REASON (ERR_peek_last_error ());
282 if (Reason == RSA_R_P_NOT_PRIME ||
283 Reason == RSA_R_Q_NOT_PRIME ||
284 Reason == RSA_R_N_DOES_NOT_EQUAL_P_Q ||
285 Reason == RSA_R_D_E_NOT_CONGRUENT_TO_1) {
  /external/nist-sip/java/gov/nist/javax/sip/
DialogTimeoutEvent.java 34 public enum Reason {AckNotReceived, AckNotSent,ReInviteTimeout};
42 public DialogTimeoutEvent(Object source, Dialog dialog, Reason reason) {
45 m_reason = reason;
62 * The reason for the Dialog Timeout Event being delivered to the application.
64 * @return the reason for the timeout event.
66 public Reason getReason() {
72 private Reason m_reason = null;
  /external/swiftshader/third_party/LLVM/lib/Support/
ErrorHandling.cpp 52 void llvm::report_fatal_error(const char *Reason) {
53 report_fatal_error(Twine(Reason));
56 void llvm::report_fatal_error(const std::string &Reason) {
57 report_fatal_error(Twine(Reason));
60 void llvm::report_fatal_error(StringRef Reason) {
61 report_fatal_error(Twine(Reason));
64 void llvm::report_fatal_error(const Twine &Reason) {
66 ErrorHandler(ErrorHandlerUserData, Reason.str());
73 OS << "LLVM ERROR: " << Reason << "\n";
  /external/llvm/lib/Support/
ErrorHandling.cpp 62 void llvm::report_fatal_error(const char *Reason, bool GenCrashDiag) {
63 report_fatal_error(Twine(Reason), GenCrashDiag);
66 void llvm::report_fatal_error(const std::string &Reason, bool GenCrashDiag) {
67 report_fatal_error(Twine(Reason), GenCrashDiag);
70 void llvm::report_fatal_error(StringRef Reason, bool GenCrashDiag) {
71 report_fatal_error(Twine(Reason), GenCrashDiag);
74 void llvm::report_fatal_error(const Twine &Reason, bool GenCrashDiag) {
86 handler(handlerData, Reason.str(), GenCrashDiag);
93 OS << "LLVM ERROR: " << Reason << "\n";
126 static void bindingsErrorHandler(void *user_data, const std::string& reason,
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
Reason.java 27 * Reason.java
28 * Reason = "Reason" HCOLON reason-value *(COMMA reason-value)
29 * reason-value = protocol *(SEMI reason-params)
31 * reason-params = protocol-cause / reason-text
32 * / reason-extensio
    [all...]
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
ErrorHandling.cpp 62 void llvm::report_fatal_error(const char *Reason, bool GenCrashDiag) {
63 report_fatal_error(Twine(Reason), GenCrashDiag);
66 void llvm::report_fatal_error(const std::string &Reason, bool GenCrashDiag) {
67 report_fatal_error(Twine(Reason), GenCrashDiag);
70 void llvm::report_fatal_error(StringRef Reason, bool GenCrashDiag) {
71 report_fatal_error(Twine(Reason), GenCrashDiag);
74 void llvm::report_fatal_error(const Twine &Reason, bool GenCrashDiag) {
86 handler(handlerData, Reason.str(), GenCrashDiag);
93 OS << "LLVM ERROR: " << Reason << "\n";
126 static void bindingsErrorHandler(void *user_data, const std::string& reason,
    [all...]
  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/
SoapFault12.java 44 public Node Reason;
65 this.faultstring = Reason.getElement(SoapEnvelope.ENV2003, "Text").getText(0);
79 } else if (name.equals("Reason")) {
80 this.Reason = new Node();
81 this.Reason.parse(parser);
111 xw.startTag(SoapEnvelope.ENV2003, "Reason");
112 this.Reason.write(xw);
113 xw.endTag(SoapEnvelope.ENV2003, "Reason");
138 return Reason.getElement(SoapEnvelope.ENV2003, "Text").getText(0);
143 String reason = Reason.getElement(SoapEnvelope.ENV2003, "Text").getText(0) local
    [all...]
  /libcore/ojluni/src/main/java/java/security/cert/
CertPathValidatorException.java 44 * exception to be thrown, and the reason that caused the failure. Use the
79 * @serial the reason the validation failed
81 private Reason reason = BasicReason.UNSPECIFIED; field in class:CertPathValidatorException
156 * detail message, cause, certification path, index, and reason.
165 * @param reason the reason the validation failed
171 * @throws NullPointerException if {@code reason} is {@code null}
176 CertPath certPath, int index, Reason reason) {
    [all...]
  /packages/apps/Camera2/src/com/android/camera/
FatalErrorHandler.java 30 * fatalErrorHandler.handleFatalError(Reason.CANNOT_CONNECT_TO_CAMERA);
35 public static enum Reason {
66 Reason(int dialogMsgId, int feedbackMsgId, boolean finishActivity) {
98 * Creates a new Reason based on an error code for
103 * @return The appropriate Reason.
105 public static Reason fromCamera2CameraDeviceStateCallbackError(int error) {
106 // TODO Use a more descriptive reason to distinguish between
154 public void handleFatalError(Reason reason);
  /external/swiftshader/third_party/subzero/src/
IceCompileServer.cpp 119 void reportFatalErrorThenExitSuccess(void *UserData, const std::string &Reason,
131 OS << "LLVM ERROR: " << Reason << "\n";
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ioevent.h 22 ULONG Reason;
qos2.h 66 QOS_FLOWRATE_REASON Reason;
  /external/deqp/external/vulkancts/framework/vulkan/
vkAllocationCallbackUtil.hpp 186 enum Reason
202 Reason reason; member in struct:vk::AllocationCallbackViolation
205 : reason(REASON_LAST)
208 AllocationCallbackViolation (const AllocationCallbackRecord& record_, Reason reason_)
210 , reason(reason_)
  /external/llvm/lib/Transforms/Instrumentation/
IndirectCallPromotion.cpp 294 const char *Reason = StatusToString(Status);
295 DEBUG(dbgs() << " Not promote: " << Reason << "\n");
300 Twine(" with count of ") + Twine(Count) + ": " + Reason);
  /external/r8/src/main/java/com/android/tools/r8/ir/optimize/
Inliner.java 152 public enum Reason {
163 public final Reason reason; field in class:Inliner.InlineAction
165 public InlineAction(DexEncodedMethod target, Invoke invoke, Reason reason) {
168 this.reason = reason;
172 return reason != Reason.SIMPLE;
275 boolean forceInline = result.reason == Reason.FORCE
    [all...]
  /external/llvm/lib/Target/AMDGPU/
SIMachineScheduler.h 36 // The reason for this candidate.
37 SIScheduleCandReason Reason;
43 : Reason(NoCand), RepeatReasonSet(0) {}
179 assert(Best.Reason != NoCand && "uninitialized Sched candidate");
181 Reason = Best.Reason;
370 assert(Best.Reason != NoCand && "uninitialized Sched candidate");
372 Reason = Best.Reason;
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/CodeGen/
MachineScheduler.h 771 static const char *getReasonStr(GenericSchedulerBase::CandReason Reason);
819 // The reason for this candidate.
820 CandReason Reason;
837 Reason = NoCand;
847 assert(Best.Reason != NoCand && "uninitialized Sched candidate");
849 Reason = Best.Reason;
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/CodeGen/
MachineScheduler.h 771 static const char *getReasonStr(GenericSchedulerBase::CandReason Reason);
819 // The reason for this candidate.
820 CandReason Reason;
837 Reason = NoCand;
847 assert(Best.Reason != NoCand && "uninitialized Sched candidate");
849 Reason = Best.Reason;
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/CodeGen/
MachineScheduler.h 771 static const char *getReasonStr(GenericSchedulerBase::CandReason Reason);
819 // The reason for this candidate.
820 CandReason Reason;
837 Reason = NoCand;
847 assert(Best.Reason != NoCand && "uninitialized Sched candidate");
849 Reason = Best.Reason;
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
MachineScheduler.h 771 static const char *getReasonStr(GenericSchedulerBase::CandReason Reason);
819 // The reason for this candidate.
820 CandReason Reason;
837 Reason = NoCand;
847 assert(Best.Reason != NoCand && "uninitialized Sched candidate");
849 Reason = Best.Reason;
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/CodeGen/
MachineScheduler.h 771 static const char *getReasonStr(GenericSchedulerBase::CandReason Reason);
819 // The reason for this candidate.
820 CandReason Reason;
837 Reason = NoCand;
847 assert(Best.Reason != NoCand && "uninitialized Sched candidate");
849 Reason = Best.Reason;
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/CodeGen/
MachineScheduler.h 771 static const char *getReasonStr(GenericSchedulerBase::CandReason Reason);
819 // The reason for this candidate.
820 CandReason Reason;
837 Reason = NoCand;
847 assert(Best.Reason != NoCand && "uninitialized Sched candidate");
849 Reason = Best.Reason;
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/CodeGen/
MachineScheduler.h 771 static const char *getReasonStr(GenericSchedulerBase::CandReason Reason);
819 // The reason for this candidate.
820 CandReason Reason;
837 Reason = NoCand;
847 assert(Best.Reason != NoCand && "uninitialized Sched candidate");
849 Reason = Best.Reason;
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
MachineScheduler.h 771 static const char *getReasonStr(GenericSchedulerBase::CandReason Reason);
819 // The reason for this candidate.
820 CandReason Reason;
837 Reason = NoCand;
847 assert(Best.Reason != NoCand && "uninitialized Sched candidate");
849 Reason = Best.Reason;
    [all...]
  /external/clang/lib/Lex/
PPDirectives.cpp     [all...]

Completed in 796 milliseconds

1 2