HomeSort by relevance Sort by last modified time
    Searched refs:reason (Results 126 - 150 of 2048) sorted by null

1 2 3 4 56 7 8 91011>>

  /system/connectivity/shill/dhcp/
mock_dhcp_config.cc 34 void MockDHCPConfig::ProcessEventSignal(const std::string& reason,
  /system/connectivity/shill/vpn/
mock_openvpn_driver.h 33 MOCK_METHOD1(OnReconnecting, void(ReconnectReason reason));
  /toolchain/binutils/binutils-2.25/gold/
reduced_debug_output.h 65 failed(std::string reason)
67 gold_warning("%s", reason.c_str());
84 // Whether or not the debug reduction has failed for any reason
111 failed(std::string reason)
113 gold_warning("%s", reason.c_str());
134 // Whether or not the debug reduction has failed for any reason
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRRuntimeException.h 41 + (ANTLRRuntimeException *) newException:(NSString *)aName reason:(NSString *)aReason;
42 + (ANTLRRuntimeException *) newException:(NSString *)aName reason:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
47 - (id) initWithName:(NSString *)aName reason:(NSString *)aReason;
48 - (id) initWithName:(NSString *)aName reason:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
98 - (id) initWithName:(NSString *)aName reason:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
107 - (id) initWithName:(NSString *)aName reason:(NSString *)aReason;
108 - (id) initWithName:(NSString *)aMsg reason:(NSString *)aCause userInfo:(NSDictionary *)userInfo;
  /system/connectivity/shill/ethernet/
ethernet_service.cc 84 void EthernetService::Connect(Error* error, const char* reason) {
85 Service::Connect(error, reason);
90 void EthernetService::Disconnect(Error* error, const char* reason) {
91 Service::Disconnect(error, reason);
132 bool EthernetService::IsAutoConnectable(const char** reason) const {
133 if (!Service::IsAutoConnectable(reason)) {
138 *reason = kAutoConnNoCarrier;
  /cts/tests/tests/tv/src/android/media/tv/cts/
BundledTvInputServiceTest.java 69 public void onVideoUnavailable(String inputId, int reason) {
71 mVideoUnavailableReasonMap.put(inputId, reason);
147 Integer reason = mCallback.getVideoUnavailableReason(info.getId()); local
148 return reason != null
149 && reason != TvInputManager.VIDEO_UNAVAILABLE_REASON_TUNING
150 && reason != TvInputManager.VIDEO_UNAVAILABLE_REASON_BUFFERING;
179 Integer reason = mCallback.getVideoUnavailableReason(info.getId()); local
180 return reason != null
181 && reason != TvInputManager.VIDEO_UNAVAILABLE_REASON_TUNING
182 && reason != TvInputManager.VIDEO_UNAVAILABLE_REASON_BUFFERING
    [all...]
  /frameworks/base/telecomm/java/android/telecom/
DisconnectCause.java 30 * the label and description. It also may contain a reason for the disconnect, which is intended for
35 /** Disconnected because of an unknown or unspecified reason. */
59 /** Disconnected for reason not described by other disconnect codes. */
99 * @param reason The reason for the disconnect.
101 public DisconnectCause(int code, String reason) {
102 this(code, null, null, reason, ToneGenerator.TONE_UNKNOWN);
111 * @param reason The reason for the disconnect.
113 public DisconnectCause(int code, CharSequence label, CharSequence description, String reason) {
287 String reason = mDisconnectReason == null ? "" : mDisconnectReason; local
    [all...]
  /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/autotest/tko/parsers/
version_1.py 19 # If for some reason we can't read the status code, assume disaster.
176 def __init__(self, indent, status, subdir, testname, reason,
182 self.status = self.subdir = self.testname = self.reason = None
187 testname, reason,
244 def make_dummy_abort(indent, subdir, testname, timestamp, reason):
252 @param reason: The reason string.
269 return msg % (subdir, testname, timestamp_field, reason)
274 line_buffer, line, indent, subdir, timestamp, reason):
283 @param reason: The reason string
    [all...]
  /frameworks/base/services/core/java/com/android/server/content/
SyncOperation.java 71 public final int reason; field in class:SyncOperation
101 int reason, int source, String provider, Bundle extras,
104 reason, source, extras, allowParallelSyncs);
108 int reason, int source, Bundle extras, boolean allowParallelSyncs) {
109 this(info, owningUid, owningPackage, reason, source, extras, allowParallelSyncs, false,
114 this(op.target, op.owningUid, op.owningPackage, op.reason, op.syncSource,
120 int reason, int source, Bundle extras, boolean allowParallelSyncs,
126 this.reason = reason;
143 SyncOperation op = new SyncOperation(target, owningUid, owningPackage, reason, syncSource
243 int reason, source; local
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/swf/
test_layer1_workflow_execution.py 66 reason=event['activityTaskFailedEventAttributes']['reason'],
70 reason='unhandled decision task type; %r' % (event['eventType'],))
98 reason = None
102 reason = 'an exception was raised'
104 if reason is None:
109 atask['taskToken'], reason=reason, details=details)
171 reason = r['workflowExecutionFailedEventAttributes']['reason']
    [all...]
  /external/icu/icu4c/source/samples/ucnv/
flagcb.c 35 UConverterCallbackReason reason,
38 /* First step - based on the reason code, take action */
40 if(reason == UCNV_UNASSIGNED) { /* whatever set should be trapped here */
44 if(reason == UCNV_CLONE) {
94 length, codePoint, reason, err);
113 reason != UCNV_CLONE) {
119 reason,
124 if(reason == UCNV_CLOSE) {
177 UConverterCallbackReason reason,
184 printf("debugCB_fromU: Context %p:%d called, reason %d on cnv %p [err=%s]\n", ctx, ctx->serial, reason, fromUArgs->converter, u_errorName(*err))
    [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);
  /system/nativepower/daemon/
BnPowerManager.cc 70 int32_t reason = data.readInt32(); local
72 return goToSleep(event_time_ms, reason, flags);
77 String16 reason = data.readString16(); local
79 return reboot(confirm, reason, wait);
84 String16 reason = data.readString16(); local
86 return shutdown(confirm, reason, wait);
  /system/nativepower/include/nativepower/
power_manager_stub.h 48 int reason,
89 status_t goToSleep(int64_t event_time_ms, int reason, int flags) override;
90 status_t reboot(bool confirm, const String16& reason, bool wait) override;
91 status_t shutdown(bool confirm, const String16& reason, bool wait) override;
97 SuspendRequest(int64_t uptime_ms, int reason, int flags);
100 int reason; member in struct:android::PowerManagerStub::SuspendRequest
  /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...]
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/ocsp/
RevokedStatus.java 25 int reason)
27 this.info = new RevokedInfo(new ASN1GeneralizedTime(revocationDate), CRLReason.lookup(reason));
41 * return the revocation reason. Note: this field is optional, test for it
43 * @return the revocation reason value.
44 * @exception IllegalStateException if a reason is asked for and none is avaliable
50 throw new IllegalStateException("attempt to get a reason where none is available");
  /external/chromium-trace/catapult/third_party/coverage/coverage/ctracer/
filedisp.c 14 Py_XDECREF(self->reason);
33 { "reason", T_OBJECT, offsetof(CFileDisposition, reason), 0,
  /external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/processors/
HidePublicClasses.java 32 public HidePublicClasses(List<TypeLocator> whitelist, String reason) {
33 super("@hide " + reason);
  /external/jetty/src/java/org/eclipse/jetty/client/
CachedExchange.java 59 protected synchronized void onResponseStatus(Buffer version, int status, Buffer reason) throws IOException
62 super.onResponseStatus(version, status, reason);
  /external/jetty/src/java/org/eclipse/jetty/client/webdav/
MkcolExchange.java 43 protected void onResponseStatus(Buffer version, int status, Buffer reason) throws IOException
57 super.onResponseStatus(version, status, reason);
PropfindExchange.java 38 protected void onResponseStatus(Buffer version, int status, Buffer reason) throws IOException
50 super.onResponseStatus(version, status, reason);
  /external/jetty/src/java/org/eclipse/jetty/http/
Generator.java 74 void sendError(int code, String reason, String content, boolean close) throws IOException;
80 void setResponse(int status, String reason);
  /external/libmicrohttpd/src/include/
autoinit_funcs.h 208 BOOL WINAPI DllMain(HINSTANCE hinst,DWORD reason,LPVOID unused) \
209 { if(DLL_PROCESS_ATTACH==reason) {(void)(FI)();} \
210 else if(DLL_PROCESS_DETACH==reason) {(void)(FD)();} \
215 BOOL WINAPI usr_DllMain(HINSTANCE hinst,DWORD reason,LPVOID unused); \
216 BOOL WINAPI DllMain(HINSTANCE hinst,DWORD reason,LPVOID unused) \
217 { if(DLL_PROCESS_ATTACH==reason) {(void)(FI)();} \
218 else if(DLL_PROCESS_DETACH==reason) {(void)(FD)();} \
219 return usr_DllMain(hinst,reason,unused); \
  /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);

Completed in 2321 milliseconds

1 2 3 4 56 7 8 91011>>