HomeSort by relevance Sort by last modified time
    Searched defs:reason (Results 26 - 50 of 967) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/libnfc-nxp/src/
phOsalNfc.h 83 * OSAL Exception structure containing exception type and reason.
88 uint16_t reason; member in struct:phOsalNfc_Exception
123 * \param[in] reason additional reason value that gives a vendor specific reason
129 uint16_t reason);
  /external/libunwind/src/unwind/
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/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...]
  /packages/apps/Camera2/src/com/android/camera/
FatalErrorHandlerImpl.java 44 Reason reason = Reason.MEDIA_STORAGE_FAILURE; local
45 boolean finishActivity = reason.doesFinishActivity();
46 CameraUtil.showError(mActivity, reason.getDialogMsgId(), reason.getFeedbackMsgId(),
60 Reason reason = Reason.CANNOT_CONNECT_TO_CAMERA; local
61 boolean finishActivity = reason.doesFinishActivity()
76 Reason reason = Reason.CANNOT_CONNECT_TO_CAMERA; local
92 Reason reason = Reason.CANNOT_CONNECT_TO_CAMERA; local
109 Reason reason = Reason.CAMERA_DISABLED_BY_SECURITY_POLICY; local
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/
FetchMatchingAlarmsAction.java 87 final String reason = mContext.getString(R.string.invalid_time, hour, minutes, local
89 notifyFailureAndLog(reason, mActivity);
102 final String reason = mContext.getString(R.string.no_alarm_at, hour24, minutes);
103 notifyFailureAndLog(reason, mActivity);
124 final String reason = mContext.getString(R.string.no_scheduled_alarms);
125 notifyFailureAndLog(reason, mActivity);
143 final String reason = mContext.getString(R.string.no_label_specified);
144 notifyFailureAndLog(reason, mActivity);
156 final String reason = mContext.getString(R.string.no_alarms_with_label);
157 notifyFailureAndLog(reason, mActivity)
    [all...]
  /system/core/crash_reporter/
kernel_warning_collector.cc 60 std::string reason = "normal collection"; local
63 reason = "always collect from developer builds";
66 reason = "no user consent";
70 LOG(INFO) << "Processing kernel warning: " << reason;
  /device/google/contexthub/util/nanotool/
nanopacket.cpp 67 NanoPacket::NanoPacket(uint32_t sequence_number, PacketReason reason,
72 reason_ = static_cast<uint32_t>(reason);
91 packet_buffer_[5] = static_cast<uint32_t>(reason);
92 packet_buffer_[6] = static_cast<uint32_t>(reason) >> 8;
93 packet_buffer_[7] = static_cast<uint32_t>(reason) >> 16;
94 packet_buffer_[8] = static_cast<uint32_t>(reason) >> 24;
133 uint32_t NanoPacket::reason() const { function in class:android::NanoPacket
  /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...]
  /external/libunwind/src/ia64/
Ginit.c 132 uint16_t reason; local
135 __uc_get_reason (uc, &reason);
175 else if (reg == UNW_IA64_AR_PFS && reason == REASON_SYSCALL)
  /external/libunwind/tests/
Gtest-bt.c 182 uint16_t reason; local
185 __uc_get_reason (uc, &reason);
187 printf (" @ %lx (reason=%d)", ip, reason);
Gtest-trace.c 194 uint16_t reason; local
197 __uc_get_reason (uc, &reason);
199 printf (" @ %lx (reason=%d)", ip, reason);
  /external/libvncserver/libvncserver/
auth.c 33 void rfbClientSendString(rfbClientPtr cl, const char *reason);
237 * if count is 0, we need to send the reason and close the connection.
240 /* This means total count is Zero and so reason msg should be sent */
242 char* reason = "No authentication mode is registered!"; local
244 rfbClientSendString(cl, reason);
387 /* support RFB 3.8 clients, they expect a reason *why* it was disconnected */
  /external/v8/tools/
trace-maps-processor.py 39 def __init__(self, from_map, to_map, reason):
42 self.reason = reason
63 def AddTransition(from_map, to_map, reason):
72 old_reason = targets[to_map].reason
76 if reason in []:
77 targets[to_map].reason = reason
80 print("// warning: already have a transition from %s to %s, reason: %s" %
81 (from_map, to_map, targets[to_map].reason))
110 reason = "%s: %s" % (event, words[7]) variable
113 reason = "%s: %s" % (event, words[7]) variable
115 reason = "%s_%s" % (reason, words[8]) variable
117 reason = event variable
162 reason = transitions[s][t].reason variable
    [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...]
  /libcore/ojluni/src/main/java/javax/net/ssl/
SSLServerSocketFactory.java 184 private final Exception reason; field in class:DefaultSSLServerSocketFactory
186 DefaultSSLServerSocketFactory(Exception reason) {
187 this.reason = reason;
192 new SocketException(reason.toString()).initCause(reason);
  /ndk/sources/cxx-stl/gabi++/src/
dwarf_helper.h 76 _Unwind_Reason_Code reason; // One of _URC_FATAL_PHASE1_ERROR, member in struct:__cxxabiv1::ScanResultInternal
  /packages/apps/Camera2/src/com/android/camera/stats/profiler/
ProfileBase.java 53 public final void mark(String reason) {
55 onMark(getTotalMillis(time), getTimeFromLastMillis(time), reason); local
67 public final void stop(String reason) {
69 onStop(getTotalMillis(time), getTimeFromLastMillis(time), reason); local
86 * and a string reason at the end.
88 protected final String format(double totalMillis, String event, String reason) {
94 reason);
99 * a time since last event, and a string reason.
101 protected final String format(double totalMillis, String event, double lastMillis, String reason) {
108 reason);
    [all...]
  /system/bt/stack/mcap/
mca_l2c.c 464 UINT16 reason = L2CAP_DISC_TIMEOUT; local
479 reason = L2CAP_DISC_OK;
480 mca_tc_close_ind(p_tbl, reason);
  /system/connectivity/shill/dbus/
chromeos_dhcpcd_listener.cc 118 string reason; local
124 &reason,
129 sender, pid, reason, configurations));
154 const string& reason,
170 config->ProcessEventSignal(reason, configuration_store);
chromeos_modem_proxy.cc 87 uint32_t old, uint32_t _new, uint32_t reason) {
89 << ", " << _new << ", " << reason << ")"; local
93 state_changed_callback_.Run(old, _new, reason);
  /system/core/adb/
adb_client.cpp 143 std::string reason; local
145 fd = network_connect(__adb_server_name, __adb_server_port, SOCK_STREAM, 0, &reason);
149 reason.c_str());
153 fd = network_loopback_client(__adb_server_port, SOCK_STREAM, &reason);
156 reason.c_str());
  /art/runtime/
thread_pool.cc 49 const char* reason = "new thread pool worker thread"; local
51 CHECK_PTHREAD_CALL(pthread_attr_init, (&attr), reason);
52 CHECK_PTHREAD_CALL(pthread_attr_setstack, (&attr, stack_->Begin(), stack_->Size()), reason);
53 CHECK_PTHREAD_CALL(pthread_create, (&pthread_, &attr, &Callback, this), reason);
54 CHECK_PTHREAD_CALL(pthread_attr_destroy, (&attr), reason);
  /cts/tests/tests/permission2/src/android/permission2/cts/
NoReceiveSmsPermissionTest.java 151 String reason = getErrorReason(resultCode); local
152 Log.e(LOG_TAG, String.format("message %1$s failed: %2$s", action, reason));
  /external/apache-http/src/org/apache/http/message/
BasicLineFormatter.java 269 final String reason = statline.getReasonPhrase(); local
270 if (reason != null) {
271 len += reason.length();
278 buffer.append(' '); // keep whitespace even if reason phrase is empty
279 if (reason != null) {
280 buffer.append(reason);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
CRLReason.java 110 int reason)
112 value = new ASN1Enumerated(reason);
118 int reason = getValue().intValue(); local
119 if (reason < 0 || reason > 10)
125 str = reasonString[reason];

Completed in 611 milliseconds

12 3 4 5 6 7 8 91011>>