HomeSort by relevance Sort by last modified time
    Searched refs:reason (Results 176 - 200 of 2970) sorted by null

1 2 3 4 5 6 78 91011>>

  /platform_testing/libraries/annotations/src/android/platform/test/annotations/
AppModeFull.java 31 * The reason why the test has to be run in full mode
33 String reason() default "";
AppModeInstant.java 31 * The reason why the test has to be run in instant mode
33 String reason() default "";
  /system/bt/embdrv/sbc/decoder/include/
oi_assert.h 49 void OI_AssertFail(char* file, int line, char* reason);
  /system/core/init/
reboot.h 30 * reason Reason string like "reboot", "shutdown,userrequested"
35 void DoReboot(unsigned int cmd, const std::string& reason, const std::string& rebootTarget,
  /toolchain/binutils/binutils-2.27/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
  /cts/hostsidetests/net/app/src/com/android/cts/net/hostside/
MyNotificationListenerService.java 87 private void send(String reason, PendingIntent pendingIntent) {
90 Log.v(TAG, "Not sending null pending intent for " + reason);
98 + ") for reason '" + mReason + "' when requested another for '" + reason
101 Log.i(TAG, "Sending pending intent for " + reason + ":" + pendingIntent);
105 mReason = reason;
111 private void send(String reason, Bundle extras) {
116 send(reason + " with key '" + key + "'", (PendingIntent) value);
  /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;
  /cts/tests/tests/tv/src/android/media/tv/cts/
BundledTvInputServiceTest.java 69 public void onVideoUnavailable(String inputId, int reason) {
71 mVideoUnavailableReasonMap.put(inputId, reason);
148 Integer reason = mCallback.getVideoUnavailableReason(info.getId()); local
149 return reason != null
150 && reason != TvInputManager.VIDEO_UNAVAILABLE_REASON_TUNING
151 && reason != TvInputManager.VIDEO_UNAVAILABLE_REASON_BUFFERING;
183 Integer reason = mCallback.getVideoUnavailableReason(info.getId()); local
184 return reason != null
185 && reason != TvInputManager.VIDEO_UNAVAILABLE_REASON_TUNING
186 && 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. */
80 * Reason code (returned via {@link #getReason()}) which indicates that a call could not be
88 * Reason code (returned via {@link #getReason()}), which indicates that the video telephony
113 * @param reason The reason for the disconnect.
115 public DisconnectCause(int code, String reason) {
116 this(code, null, null, reason, ToneGenerator.TONE_UNKNOWN);
125 * @param reason The reason for the disconnect
307 String reason = mDisconnectReason == null ? "" : mDisconnectReason; local
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/stackdivider/
ForcedResizableInfoActivityController.java 68 int reason; field in class:ForcedResizableInfoActivityController.PendingTaskRecord
70 PendingTaskRecord(int taskId, int reason) {
72 this.reason = reason;
83 int reason) {
84 activityForcedResizable(packageName, taskId, reason);
121 private void activityForcedResizable(String packageName, int taskId, int reason) {
125 mPendingTasks.add(new PendingTaskRecord(taskId, reason));
149 intent.putExtra(EXTRA_FORCED_RESIZEABLE_REASON, pendingRecord.reason);
  /external/icu/icu4c/source/samples/ucnv/
flagcb.c 39 UConverterCallbackReason reason,
42 /* First step - based on the reason code, take action */
44 if(reason == UCNV_UNASSIGNED) { /* whatever set should be trapped here */
48 if(reason == UCNV_CLONE) {
98 length, codePoint, reason, err);
117 reason != UCNV_CLONE) {
123 reason,
128 if(reason == UCNV_CLOSE) {
181 UConverterCallbackReason reason,
188 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...]
  /external/iptables/
iptables-test.py 42 def print_error(reason, filename=None, lineno=None):
47 Colors.ENDC + ": line %d (%s)" % (lineno, reason))
57 reason = "cannot delete: " + iptables + " -I " + rule
58 print_error(reason, filename, lineno)
86 reason = "cannot load: " + cmd
87 print_error(reason, filename, lineno)
94 reason = "should fail: " + cmd
95 print_error(reason, filename, lineno)
120 reason = "iptables-save segfaults: " + cmd
121 print_error(reason, filename, lineno
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/companion/
CompanionDeviceTestActivity.java 85 private void fail(Throwable reason) {
86 Log.e(LOG_TAG, "Test failed", reason);
87 fail(reason.getMessage());
90 private void fail(CharSequence reason) {
91 Toast.makeText(this, reason, Toast.LENGTH_LONG).show();
92 Log.e(LOG_TAG, reason.toString());
  /frameworks/base/core/java/com/android/internal/view/
InputMethodClient.java 47 public static String getStartInputReason(@StartInputReason final int reason) {
48 switch (reason) {
70 return "Unknown=" + reason;
88 public static String getUnbindReason(@UnbindReason final int reason) {
89 switch (reason) {
105 return "Unknown=" + reason;
  /libcore/ojluni/src/main/java/javax/net/ssl/
SSLServerSocketFactory.java 185 private final Exception reason; field in class:DefaultSSLServerSocketFactory
187 DefaultSSLServerSocketFactory(Exception reason) {
188 this.reason = reason;
193 new SocketException(reason.toString()).initCause(reason);
  /packages/apps/DeskClock/src/com/android/deskclock/
FetchMatchingAlarmsAction.java 85 final String reason = mContext.getString(R.string.invalid_time, hour, minutes, local
87 notifyFailureAndLog(reason, mActivity);
100 final String reason = mContext.getString(R.string.no_alarm_at, hour24, minutes);
101 notifyFailureAndLog(reason, mActivity);
122 final String reason = mContext.getString(R.string.no_scheduled_alarms);
123 notifyFailureAndLog(reason, mActivity);
141 final String reason = mContext.getString(R.string.no_label_specified);
142 notifyFailureAndLog(reason, mActivity);
154 final String reason = mContext.getString(R.string.no_alarms_with_label);
155 notifyFailureAndLog(reason, mActivity)
    [all...]
  /external/icu/icu4c/source/common/
ucnv_err.cpp 107 UConverterCallbackReason reason,
114 if (reason == UCNV_UNASSIGNED && IS_DEFAULT_IGNORABLE_CODE_POINT(codePoint))
133 UConverterCallbackReason reason,
137 (void)context; (void)toUArgs; (void)codePoints; (void)length; (void)reason; (void)err;
148 UConverterCallbackReason reason,
154 if (reason <= UCNV_IRREGULAR)
156 if (reason == UCNV_UNASSIGNED && IS_DEFAULT_IGNORABLE_CODE_POINT(codePoint))
163 else if (context == NULL || (*((char*)context) == UCNV_PRV_STOP_ON_ILLEGAL && reason == UCNV_UNASSIGNED))
179 UConverterCallbackReason reason,
184 if (reason <= UCNV_IRREGULAR
    [all...]
  /cts/hostsidetests/appsecurity/src/android/appsecurity/cts/
ApplicationVisibilityTest.java 65 @AppModeFull(reason = "instant applications cannot be granted INTERACT_ACROSS_USERS")
96 @AppModeFull(reason = "instant applications cannot see any other application")
123 @AppModeFull(reason = "instant applications cannot be granted INTERACT_ACROSS_USERS")
151 @AppModeFull(reason = "instant applications cannot see any other application")
175 @AppModeFull(reason = "instant applications cannot be granted INTERACT_ACROSS_USERS")
206 @AppModeFull(reason = "instant applications cannot see any other application")
233 @AppModeFull(reason = "instant applications cannot be granted INTERACT_ACROSS_USERS")
261 @AppModeFull(reason = "instant applications cannot see any other application")
  /device/google/marlin/telephony/ims/src/org/codeaurora/ims/internal/
IQtiImsExtListener.aidl 52 * @param reason is one of the valid call forwarding
61 int endMinute, int reason, int status, String number, int serviceClass);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/unicode/
comparecodecs.py 21 except UnicodeError, reason:
25 except UnicodeError, reason:
  /external/autotest/server/cros/dynamic_suite/
reporting.py 43 and reason for issue.
49 self.reason = result.reason
56 # reason field need lab attention. Lab bugs for the aborted case
88 'Build: %(build)s.\n\nReason:\n%(reason)s.\n'
104 'reason': self.reason,
116 # TO-DO(shuqianz) Fix the dedupe failing issue because reason contains
129 reason = self.reason
    [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/deqp/framework/common/
tcuApp.hpp 80 void onWatchdogTimeout (qpTimeoutReason reason);
83 static void onWatchdogTimeout (qpWatchDog* watchDog, void* userPtr, qpTimeoutReason reason);
  /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/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); \

Completed in 915 milliseconds

1 2 3 4 5 6 78 91011>>