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

1 2 3 4 5 6 7 8 91011>>

  /external/autotest/tko/
reason_qualifier.py 29 # each reason in the list may be a combination
35 for reason in reasons:
36 reason_reduced = reason.strip()
44 # reduce numbers included into reason descriptor
49 reason_htable[reason_reduced] = reason_counter(reason)
52 ## reason if it occured once
53 ## if reason occured more then once, reason_counter
display.py 220 for reason in aggregated_reasons_list:
224 reason = reason.replace('<br>','\n')
225 reason = reason.replace('<','[').replace('>',']')
226 reason = reason.replace('|','\n').replace('&',' AND ')
227 reason = reason.replace('\n','<br>')
228 html += '<br>' + reason
    [all...]
  /external/libmojo/mojo/public/cpp/bindings/lib/
pipe_control_message_handler.cc 77 base::Optional<DisconnectReason> reason; local
79 reason.emplace(event->disconnect_reason->custom_reason,
82 return delegate_->OnPeerAssociatedEndpointClosed(event->id, reason);
  /external/libmojo/third_party/catapult/devil/devil/android/
device_blacklist.py 46 def Extend(self, devices, reason='unknown'):
51 reason: string specifying the reason for blacklist (eg: 'unauthorized')
56 'reason': reason,
59 logging.info('Adding %s to blacklist %s for reason: %s',
60 ','.join(devices), self._path, reason)
  /external/okhttp/okhttp-ws-tests/src/test/java/com/squareup/okhttp/ws/
WebSocketRecorder.java 70 @Override public void onClose(int code, String reason) {
71 events.add(new Close(code, reason));
126 public void assertClose(int code, String reason) throws IOException {
131 assertEquals(new Close(code, reason), actual);
222 public final String reason; field in class:WebSocketRecorder.Close
224 private Close(int code, String reason) {
226 this.reason = reason;
230 return "Close[" + code + " " + reason + "]";
234 return code * 37 + reason.hashCode()
    [all...]
  /frameworks/base/services/core/java/com/android/server/notification/
ZenLog.java 69 public static void traceIntercepted(NotificationRecord record, String reason) {
71 append(TYPE_INTERCEPTED, record.getKey() + "," + reason);
74 public static void traceNotIntercepted(NotificationRecord record, String reason) {
76 append(TYPE_NOT_INTERCEPTED, record.getKey() + "," + reason);
101 public static void traceSetZenMode(int zenMode, String reason) {
102 append(TYPE_SET_ZEN_MODE, zenModeToString(zenMode) + "," + reason);
109 public static void traceExitCondition(Condition c, ComponentName component, String reason) {
110 append(TYPE_EXIT_CONDITION, c + "," + componentToString(component) + "," + reason);
127 public static void traceConfig(String reason, ZenModeConfig oldConfig,
129 append(TYPE_CONFIG, reason
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
PhoneNotifier.java 42 /** TODO - reason should never be null */
43 public void notifyDataConnection(Phone sender, String reason, String apnType,
46 public void notifyDataConnectionFailed(Phone sender, String reason, String apnType);
61 public void notifyPreciseDataConnectionFailed(Phone sender, String reason, String apnType,
  /packages/apps/TV/tuner/src/com/android/tv/tuner/tvinput/
TunerRecordingSession.java 97 public void onError(int reason) {
98 Log.w(TAG, "Notifying recording error: " + reason);
99 notifyError(reason);
  /test/vts/runners/host/
asserts.py 173 def skip(reason, extras=None):
177 reason: The reason this test is skipped.
184 raise signals.TestSkip(reason, extras)
187 def skipIf(expr, reason, extras=None):
192 reason: The reason this test is skipped.
197 skip(reason, extras)
200 def abortClass(reason, extras=None):
208 reason: The reason to abort
    [all...]
  /tools/test/connectivity/acts/framework/acts/
asserts.py 171 def skip(reason, extras=None):
175 reason: The reason this test is skipped.
182 raise signals.TestSkip(reason, extras)
185 def skip_if(expr, reason, extras=None):
190 reason: The reason this test is skipped.
195 skip(reason, extras)
198 def abort_class(reason, extras=None):
206 reason: The reason to abort
    [all...]
  /external/dhcpcd-6.8.2/
script.c 68 "reason",
223 make_env(const struct interface *ifp, const char *reason, char ***argv)
249 if (strcmp(reason, "TEST") == 0) {
263 else if (reason[strlen(reason) - 1] == '6')
265 else if (strcmp(reason, "ROUTERADVERT") == 0)
268 else if (strcmp(reason, "PREINIT") == 0 ||
269 strcmp(reason, "CARRIER") == 0 ||
270 strcmp(reason, "NOCARRIER") == 0 ||
271 strcmp(reason, "UNKNOWN") == 0 |
572 const char *reason; local
    [all...]
  /external/libvncserver/libvncserver/tightvnc-filetransfer/
filetransfermsg.c 405 FileTransferMsg CreateFileDownloadErrMsg(char* reason, unsigned int reasonLen);
414 char reason[] = "An internal error on the server caused download failure"; local
415 int reasonLen = strlen(reason);
419 fileDownloadErrMsg = CreateFileDownloadErrMsg(reason, reasonLen);
428 char reason[] = "Cannot open file, perhaps it is absent or is a directory"; local
429 int reasonLen = strlen(reason);
431 return CreateFileDownloadErrMsg(reason, reasonLen);
439 char reason [] = "Path length exceeds PATH_MAX (4096) bytes"; local
440 int reasonLen = strlen(reason);
442 return CreateFileDownloadErrMsg(reason, reasonLen)
493 char reason[] = "Cannot open file, perhaps it is absent or is not a regular file"; local
620 char reason [] = "Path length exceeds PATH_MAX (4096) bytes"; local
638 char reason[] = "Could not create file"; local
652 char reason[] = "Server does not support data compression on upload"; local
670 char reason[] = "Error writing file data"; local
    [all...]
  /external/apache-http/src/org/apache/http/impl/
EnglishReasonPhraseCatalog.java 41 * English reason phrases for HTTP status codes.
59 // static array with english reason phrases defined below
80 * Obtains the reason phrase for a status code.
85 * @return the reason phrase, or <code>null</code>
96 String reason = null; local
98 reason = REASON_PHRASES[category][subcode];
100 return reason;
104 /** Reason phrases lookup table. */
117 * Stores the given reason phrase, by status code.
121 * @param reason the reason phrase for this status cod
    [all...]
  /frameworks/base/core/java/android/app/
ClientTransactionHandler.java 83 boolean getNonConfigInstance, String reason);
87 int configChanges, PendingTransactionActions pendingActions, String reason);
95 * @param reason Reason for performing this operation.
98 boolean isForward, String reason);
109 * @param reason Reason for performing this operation.
112 PendingTransactionActions pendingActions, boolean finalStateRequest, String reason);
125 public abstract void handleSendResult(IBinder token, List<ResultInfo> results, String reason);
  /external/okhttp/okhttp-ws/src/main/java/com/squareup/okhttp/internal/ws/
RealWebSocket.java 80 @Override public void onClose(final int code, final String reason) {
84 peerClose(code, reason);
163 @Override public void close(int code, String reason) throws IOException {
168 writer.writeClose(code, reason);
182 private void peerClose(int code, String reason) {
185 writer.writeClose(code, reason);
197 listener.onClose(code, reason);
  /external/webrtc/webrtc/modules/rtp_rtcp/source/rtcp_packet/
bye_unittest.cc 57 EXPECT_TRUE(parsed_bye.reason().empty());
64 EXPECT_TRUE(bye.reason().empty());
67 EXPECT_EQ(16u, packet->Length()); // Header: 4, 3xSRCs: 12, Reason: 0.
73 EXPECT_TRUE(parsed_bye.reason().empty());
77 const std::string kReason = "Some Reason";
85 EXPECT_EQ(28u, packet->Length()); // Header: 4, 3xSRCs: 12, Reason: 12.
91 EXPECT_EQ(kReason, parsed_bye.reason());
104 const std::string kReason = "Some Random Reason";
114 EXPECT_EQ(kReason, parsed_bye.reason());
128 EXPECT_EQ(kReason, parsed_bye.reason());
    [all...]
  /libcore/ojluni/src/main/java/java/security/cert/
CertificateRevokedException.java 44 * certificate was revoked and the reason it was revoked.
59 * @serial the revocation reason
61 private final CRLReason reason; field in class:CertificateRevokedException
72 * the specified revocation date, reason code, authority name, and map
77 * @param reason the revocation reason
85 * {@code reason}, {@code authority}, or
88 public CertificateRevokedException(Date revocationDate, CRLReason reason,
90 if (revocationDate == null || reason == null || authority == null ||
95 this.reason = reason
    [all...]
  /system/core/bootstat/
bootstat.cpp 99 " --record_boot_reason Record the reason why the device booted\n"
137 // A mapping from boot reason string, as read from the ro.boot.bootreason
292 // Converts a string value representing the reason the system booted to an
305 LOG(INFO) << "Unknown boot reason: " << boot_reason;
328 // Returns true if the supplied reason prefix is considered detailed enough.
340 // Returns true if the supplied reason prefix is associated with the kernel.
352 // Returns true if the supplied reason prefix is considered known.
363 // If the reboot reason should be improved, report true if is too blunt.
470 bool correctForBer(std::string& reason, const std::string& needle) {
472 if (reason.length() < needle.length()) return corrected
    [all...]
  /external/autotest/tko/parsers/
version_1.py 26 # If for some reason we can't read the status code, assume disaster.
183 def __init__(self, indent, status, subdir, testname, reason,
189 self.status = self.subdir = self.testname = self.reason = None
194 testname, reason,
251 def make_dummy_abort(indent, subdir, testname, timestamp, reason):
259 @param reason: The reason string.
276 return msg % (subdir, testname, timestamp_field, reason)
281 line_buffer, line, indent, subdir, testname, timestamp, reason):
291 @param reason: The reason string
    [all...]
  /frameworks/base/services/core/java/com/android/server/content/
SyncOperation.java 73 public final int reason; field in class:SyncOperation
106 int reason, int source, String provider, Bundle extras,
109 reason, source, extras, allowParallelSyncs, syncExemptionFlag);
113 int reason, int source, Bundle extras, boolean allowParallelSyncs,
115 this(info, owningUid, owningPackage, reason, source, extras, allowParallelSyncs, false,
120 this(op.target, op.owningUid, op.owningPackage, op.reason, op.syncSource,
126 int reason, int source, Bundle extras, boolean allowParallelSyncs,
132 this.reason = reason;
150 SyncOperation op = new SyncOperation(target, owningUid, owningPackage, reason, syncSource
255 int reason, source; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
mailerdaemon.py 38 # (?P<reason>...) which should refer to the reason (error message).
39 # If no reason is present, the emparse_list_reason list is used to
40 # find a reason.
47 'error: (?P<reason>unresolvable): (?P<email>.+)',
53 '------- Failure Reasons --------\n\n(?P<reason>.*)\n(?P<email>.*)',
54 '^<(?P<email>.*)>:\n(?P<reason>.*)',
55 '^(?P<reason>User mailbox exceeds allowed size): (?P<email>.+)',
56 '^5\\d{2} <(?P<email>[^\n>]+)>\\.\\.\\. (?P<reason>.+)',
58 '^did not reach the following recipient\\(s\\):\n\n(?P<email>.*) on .*\n +(?P<reason>.*)',
    [all...]
  /external/python/cpython2/Tools/scripts/
mailerdaemon.py 39 # (?P<reason>...) which should refer to the reason (error message).
40 # If no reason is present, the emparse_list_reason list is used to
41 # find a reason.
48 'error: (?P<reason>unresolvable): (?P<email>.+)',
54 '------- Failure Reasons --------\n\n(?P<reason>.*)\n(?P<email>.*)',
55 '^<(?P<email>.*)>:\n(?P<reason>.*)',
56 '^(?P<reason>User mailbox exceeds allowed size): (?P<email>.+)',
57 '^5\\d{2} <(?P<email>[^\n>]+)>\\.\\.\\. (?P<reason>.+)',
59 '^did not reach the following recipient\\(s\\):\n\n(?P<email>.*) on .*\n +(?P<reason>.*)'
    [all...]
  /external/python/cpython3/Tools/scripts/
mailerdaemon.py 44 # (?P<reason>...) which should refer to the reason (error message).
45 # If no reason is present, the emparse_list_reason list is used to
46 # find a reason.
53 'error: (?P<reason>unresolvable): (?P<email>.+)',
59 '------- Failure Reasons --------\n\n(?P<reason>.*)\n(?P<email>.*)',
60 '^<(?P<email>.*)>:\n(?P<reason>.*)',
61 '^(?P<reason>User mailbox exceeds allowed size): (?P<email>.+)',
62 '^5\\d{2} <(?P<email>[^\n>]+)>\\.\\.\\. (?P<reason>.+)',
64 '^did not reach the following recipient\\(s\\):\n\n(?P<email>.*) on .*\n +(?P<reason>.*)'
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
ITelephonyRegistry.aidl 50 String reason, String apn, String apnType, in LinkProperties linkProperties,
53 String reason, String apn, String apnType, in LinkProperties linkProperties,
55 void notifyDataConnectionFailed(String reason, String apnType);
56 void notifyDataConnectionFailedForSubscriber(int subId, String reason, String apnType);
67 void notifyPreciseDataConnectionFailed(String reason, String apnType, String apn,
  /external/conscrypt/common/src/jni/main/cpp/conscrypt/
jniutil.cc 204 int throwForAsn1Error(JNIEnv* env, int reason, const char* message,
206 switch (reason) {
230 int throwForCipherError(JNIEnv* env, int reason, const char* message,
232 switch (reason) {
249 int throwForEvpError(JNIEnv* env, int reason, const char* message,
251 switch (reason) {
277 int throwForRsaError(JNIEnv* env, int reason, const char* message,
279 switch (reason) {
308 int throwForX509Error(JNIEnv* env, int reason, const char* message,
310 switch (reason) {
340 int reason = ERR_GET_REASON(error); local
    [all...]

Completed in 768 milliseconds

1 2 3 4 5 6 7 8 91011>>