HomeSort by relevance Sort by last modified time
    Searched refs:reason (Results 351 - 375 of 1482) sorted by null

<<11121314151617181920>>

  /external/v8/src/runtime/
runtime-promise.cc 45 CONVERT_ARG_HANDLE_CHECKED(Object, reason, 1);
46 isolate->ReportPromiseReject(promise, reason,
185 CONVERT_ARG_HANDLE_CHECKED(Object, reason, 1);
187 return *JSPromise::Reject(promise, reason,
  /external/v8/tools/clang/translation_unit/
TranslationUnitGenerator.cpp 55 clang::PPCallbacks::FileChangeReason reason,
122 clang::PPCallbacks::FileChangeReason reason,
125 if (reason == clang::PPCallbacks::EnterFile) {
133 } else if (reason == ExitFile) {
  /external/vboot_reference/firmware/2lib/include/
2api.h 272 * @param reason Recovery reason
275 void vb2api_fail(struct vb2_context *ctx, uint8_t reason, uint8_t subcode);
  /external/webrtc/webrtc/libjingle/xmpp/
xmpplogintask.h 63 bool Failure(XmppEngine::Error reason);
  /frameworks/av/media/libstagefright/
SurfaceUtils.cpp 280 status_t nativeWindowConnect(ANativeWindow *surface, const char *reason) {
281 ALOGD("connecting to surface %p, reason %s", surface, reason);
289 status_t nativeWindowDisconnect(ANativeWindow *surface, const char *reason) {
290 ALOGD("disconnecting from surface %p, reason %s", surface, reason);
  /frameworks/av/services/audioflinger/
FastMixer.h 62 enum Reason {
68 void updateMixerTrack(int index, Reason reason);
  /external/cldr/tools/java/org/unicode/cldr/util/
XEquivalenceClass.java 71 * Create class with comparator, and default reason.
79 * Create class with comparator, and default reason.
88 * Add two equivalent items, with NO_REASON for the reason.
95 * Add two equivalent items, with NO_REASON for the reason.
97 public XEquivalenceClass add(T a, T b, R reason) {
98 return add(a, b, reason, reason);
102 * Add two equivalent items, plus a reason. The reason is only used for getReasons
143 for (R reason : reasons)
    [all...]
  /external/deqp/framework/qphelper/
qpCrashHandler.c 164 const char* reason = DE_NULL; local
195 reason = "Access violation";
200 reason = "Array bounds exceeded";
205 reason = "Illegal instruction";
210 reason = "Stack overflow";
216 reason = "";
220 /* Store reason. */
221 qpCrashInfo_set(&g_crashHandler->crashInfo, crashType, reason, __FILE__, __LINE__);
  /external/mesa3d/src/gallium/state_trackers/dri/
dri_drawable.c 468 * \param throttle_reason the reason for throttling, 0 = no throttling
474 enum __DRI2throttleReason reason)
508 reason == __DRI2_THROTTLE_SWAPBUFFER) {
543 if (reason == __DRI2_THROTTLE_SWAPBUFFER)
549 (reason == __DRI2_THROTTLE_SWAPBUFFER ||
550 reason == __DRI2_THROTTLE_FLUSHFRONT)) {
609 enum __DRI2throttleReason reason)
611 dri_flush(cPriv, dPriv, 0, reason);
  /cts/tests/autofillservice/src/android/autofillservice/cts/
VirtualContainerActivityTest.java 116 @AppModeFull(reason = "testAutofillSync() is enough")
254 @AppModeFull(reason = "testAutofillSync() is enough")
327 @AppModeFull(reason = "testAutofillManuallyOneDataset() is enough")
333 @AppModeFull(reason = "testAutofillManuallyOneDataset() is enough")
405 @AppModeFull(reason = "testAutofillCallbacks() is enough")
419 @AppModeFull(reason = "testAutofillCallbacks() is enough")
440 @AppModeFull(reason = "testAutofillCallbacks() is enough")
631 @AppModeFull(reason = "testSaveNotShown_noUserInput() is enough")
656 @AppModeFull(reason = "testSaveNotShown_noUserInput() is enough")
687 @AppModeFull(reason = "testSaveNotShown_noUserInput() is enough"
    [all...]
DatasetFilteringTest.java 243 @AppModeFull(reason = "testFilter() is enough")
296 @AppModeFull(reason = "testFilter() is enough")
338 @AppModeFull(reason = "testFilter() is enough")
394 @AppModeFull(reason = "testFilter() is enough")
457 @AppModeFull(reason = "testFilter() is enough")
509 @AppModeFull(reason = "testFilter_usingKeyboard() is enough")
561 @AppModeFull(reason = "testFilter() is enough")
567 @AppModeFull(reason = "testFilter() is enough")
573 @AppModeFull(reason = "testFilter() is enough")
  /external/grpc-grpc-java/core/src/main/java/io/grpc/inprocess/
InProcessTransport.java 184 public synchronized void shutdown(Status reason) {
189 shutdownStatus = reason;
190 notifyShutdown(reason);
202 public void shutdownNow(Status reason) {
203 checkNotNull(reason, "reason");
206 shutdown(reason);
213 stream.clientStream.cancel(reason);
344 // This method is the only reason we have to synchronize field accesses.
535 // This method is the only reason we have to synchronize field accesses
    [all...]
  /external/iproute2/examples/
dhcp-client-script 19 echo dhc-script $* reason=$reason
335 case $reason in
380 "$reason" = "BOUND" -o "$reason" = "REBOOT" ]; then
  /external/v8/src/compiler/
instruction-selector.h 58 DeoptimizeReason reason,
61 return FlagsContinuation(kFlags_deoptimize, condition, kind, reason,
67 FlagsCondition condition, DeoptimizeKind kind, DeoptimizeReason reason,
70 reason, feedback, frame_state);
105 DeoptimizeReason reason() const { function in class:v8::internal::compiler::final
194 DeoptimizeKind kind, DeoptimizeReason reason,
199 reason_(reason),
350 DeoptimizeReason reason,
490 DeoptimizeKind kind, DeoptimizeReason reason,
616 void VisitDeoptimize(DeoptimizeKind kind, DeoptimizeReason reason,
    [all...]
  /external/autotest/server/cros/dynamic_suite/
job_status.py 189 yield Status(s.status, s.test_name, s.reason,
198 s.reason, s.test_started_time,
244 def __init__(self, status, test_name, reason='', begin_time_str=None,
252 @param reason: message explaining failure, if any; Optional.
268 self._reason = reason
427 def reason(self): member in class:Status
428 """ Reason the job corresponding to this status failed. """
  /external/grpc-grpc-java/okhttp/src/main/java/io/grpc/okhttp/
OkHttpClientStream.java 176 public void cancel(Status reason) {
178 state.cancel(reason, true, null);
338 private void cancel(Status reason, boolean stopDelivery, Metadata trailers) {
352 transportReportStatus(reason, true, trailers != null ? trailers : new Metadata());
357 id(), reason, PROCESSED, stopDelivery, ErrorCode.CANCEL, trailers); local
  /frameworks/base/cmds/incident/
main.cpp 215 fprintf(out, " -r REASON human readable description of why the report is taken.\n");
229 string reason; local
260 if (reason.size() > 0) {
264 reason = optarg;
318 if (reason.size() > 0) {
320 proto.write(/* reason field id */ 2 | FIELD_TYPE_STRING | FIELD_COUNT_SINGLE, reason);
  /external/python/cpython3/Objects/
exceptions.c     [all...]
  /device/google/contexthub/firmware/os/core/
hostIntf.c 174 enum hostIntfIntErrReason reason; member in struct:hostIntfIntErrMsg
179 static void hostIntfTxPacket(uint32_t reason, uint8_t len, uint32_t seq,
218 osLog(msg->level, "%s failed with: %d\n", msg->func, msg->reason);
222 static void hostIntfDeferErrLog(enum LogLevel level, enum hostIntfIntErrReason reason, const char *func)
229 mIntErrMsg[mIntErrMsgIdx].reason = reason;
274 packetReason = le32toh(packet->reason);
296 static void hostIntfTxPacket(__le32 reason, uint8_t len, uint32_t seq,
300 txPacket->reason = reason;
1180 uint32_t reason; local
    [all...]
  /external/grpc-grpc/src/core/lib/iomgr/
ev_poll_posix.cc 160 static void fd_ref(grpc_fd* fd, const char* reason, const char* file, int line);
161 static void fd_unref(grpc_fd* fd, const char* reason, const char* file,
163 #define GRPC_FD_REF(fd, reason) fd_ref(fd, reason, __FILE__, __LINE__)
164 #define GRPC_FD_UNREF(fd, reason) fd_unref(fd, reason, __FILE__, __LINE__)
168 #define GRPC_FD_REF(fd, reason) fd_ref(fd)
169 #define GRPC_FD_UNREF(fd, reason) fd_unref(fd)
366 #define REF_BY(fd, n, reason) ref_by(fd, n, reason, __FILE__, __LINE__
    [all...]
  /external/libchrome/mojo/public/js/lib/
router.js 244 reason) {
251 if (reason) {
252 endpoint.disconnectReason = reason;
257 setTimeout(endpoint.client.notifyError.bind(endpoint.client, reason),
281 Router.prototype.closeEndpointHandle = function(interfaceId, reason) {
293 if (!internal.isMasterInterfaceId(interfaceId) || reason) {
294 this.controlMessageProxy_.notifyPeerEndpointClosed(interfaceId, reason);
  /cts/tests/signature/lib/common/src/android/signature/cts/
ApiComplianceChecker.java 83 String reason; local
84 if ((reason = checkClassModifiersCompliance(classDescription, runtimeClass)) != null) {
88 classDescription.toSignatureString(), reason));
121 * @return null if modifiers are compliant otherwise a reason why they are not.
508 String reason; local
509 if ((reason = areMethodsModifierCompatible(
514 methodDescription.toSignatureString(), reason));
527 * @return null if the method modifiers are compatible otherwise the reason why not.
  /external/grpc-grpc/src/core/ext/filters/client_channel/lb_policy/
subchannel_list.h 134 void CancelConnectivityWatchLocked(const char* reason);
161 virtual void UnrefSubchannelLocked(const char* reason);
301 UnrefSubchannelLocked(const char* reason) {
311 GRPC_SUBCHANNEL_UNREF(subchannel_, reason);
383 CancelConnectivityWatchLocked(const char* reason) {
390 subchannel_, reason);
  /external/libchrome/mojo/public/js/
bindings.js 91 InterfacePtrController.prototype.resetWithReason = function(reason) {
94 this.interfaceEndpointClient_.close(reason);
238 Binding.prototype.closeWithReason = function(reason) {
240 this.interfaceEndpointClient_.close(reason);
272 this.binding_.setConnectionErrorHandler(function(reason) {
273 this.bindingSet_.onConnectionError(bindingId, reason);
311 BindingSet.prototype.onConnectionError = function(bindingId, reason) {
315 this.errorHandler_(reason);
402 reason) {
404 this.interfaceEndpointClient_.close(reason);
    [all...]
  /external/v8/src/builtins/
builtins-async-iterator-gen.cc 407 Node* const reason = Parameter(Descriptor::kReason); local
414 context, iterator, reason, factory()->throw_string(), if_throw_undefined,
416 reason);
422 Node* const reason = Parameter(Descriptor::kReason); local
429 context, iterator, reason, factory()->throw_string(), if_throw_undefined,
431 reason);

Completed in 2603 milliseconds

<<11121314151617181920>>