HomeSort by relevance Sort by last modified time
    Searched refs:exception (Results 2001 - 2025 of 4445) sorted by null

<<81828384858687888990>>

  /prebuilts/ndk/current/platforms/android-24/arch-x86_64/usr/include/asm/
kvm.h 264 __u32 exception; member in struct:kvm_debug_exit_arch
311 } exception; member in struct:kvm_vcpu_events
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/nios2/
selftest.s 26 wrctl exception,r2, 0x100171fa
91 rdctl r2,exception,0x000531fa
  /tools/test/connectivity/acts/tests/google/wifi/
WifiSoftApTest.py 75 self.log.exception("Failed to restart wifi: current state = %s",
88 # self.log.exception("Failed to restart wifi: current state = %s", curr_state)
181 self.log.exception("Failed to fully start/stop softap mode: current state = %s",
  /frameworks/opt/net/voip/src/java/com/android/server/sip/
SipSessionGroup.java 176 } catch (Exception e) {
198 } catch (Exception e) {
413 private Throwable getRootCause(Throwable exception) {
414 Throwable cause = exception.getCause();
416 exception = cause;
417 cause = exception.getCause();
419 return exception;
    [all...]
  /external/deqp/execserver/
xsWin32TestProcess.cpp 178 catch (const std::exception& e)
321 catch (const std::exception& e)
687 catch (const std::exception& e)
713 catch (const std::exception& e)
744 catch (const std::exception& e)
762 return 0; // \todo [2013-08-13 pyry] Throw exception?
  /external/testng/src/main/java/org/testng/reporters/
EmailableReporter.java 263 Throwable exception=ans.getThrowable(); local
264 boolean hasThrowable = exception!=null;
288 +(wantsMinimalOutput?"Expected Exception":"Failure")
291 generateExceptionReport(exception,method);
305 protected void generateExceptionReport(Throwable exception,ITestNGMethod method) {
307 m_out.print(Utils.stackTrace(exception, true)[0]);
  /frameworks/base/packages/MtpDocumentsProvider/src/com/android/mtp/
MtpDocumentsProvider.java 226 } catch (BusyDeviceException exception) {
228 } catch (IOException exception) {
229 Log.e(MtpDocumentsProvider.TAG, "queryChildDocuments", exception);
230 throw new FileNotFoundException(exception.getMessage());
252 } catch (UnsupportedOperationException exception) {
496 // It should fail unit tests by throwing runtime exception.
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
ProxyController.java 224 // Check if there is any ongoing transaction and throw an exception if there
342 if (ar.exception != null) {
344 logd("onStartRadioCapabilityResponse got exception=" + ar.exception);
359 if (((AsyncResult) msg.obj).exception != null) {
415 if (((AsyncResult) msg.obj).exception != null) {
449 if ((((AsyncResult) msg.obj).exception != null) ||
  /tools/test/connectivity/acts/framework/acts/controllers/
android_device.py 81 ad.log.exception("Failed to clean up properly.")
98 ad.log.exception("Failed to start some services, abort!")
334 self.log.exception("Failed to start adb logcat!")
341 self.log.exception("Failed to start sl4a!")
726 self.log.exception(msg)
  /external/ImageMagick/MagickCore/
string.c 46 #include "MagickCore/exception.h"
47 #include "MagickCore/exception-private.h"
582 % ExceptionInfo *exception)
    [all...]
resource.c 47 #include "MagickCore/exception.h"
48 #include "MagickCore/exception-private.h"
404 *exception;
414 exception=AcquireExceptionInfo();
416 exception);
417 exception=DestroyExceptionInfo(exception);
772 % ExceptionInfo *exception)
778 % o exception: return any errors or warnings in this structure.
782 ExceptionInfo *magick_unused(exception))
398 *exception; local
    [all...]
  /external/llvm/test/Object/
coff-archive.test 23 CHECKIDX: ??_R1A@?0A@EA@exception@std@@8 in Debug\mymath.obj
78 CHECKIDX: U ?what@exception@std@@UBEPBDXZ
87 CHECKIDX: U __imp_??0exception@std@@QAE@ABQBD@Z
88 CHECKIDX: U __imp_??1exception@std@@UAE@XZ
177 CHECKIDX: 00000000 R ??_R1A@?0A@EA@exception@std@@8
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmMmiCode.java 224 //Is a country-specific exception to short codes as defined in TS 22.030, 6.5.3.2
278 Rlog.e(LOG_TAG, "Class Cast Exception in parsing SS Data : " + ex);
280 Rlog.e(LOG_TAG, "Null Pointer Exception in parsing SS Data : " + ex);
684 * Exception (1) to Call initiation is: If the user of the device is already in a call
    [all...]
  /prebuilts/tools/common/m2/repository/org/eclipse/aether/aether-impl/1.0.2.v20150114/
aether-impl-1.0.2.v20150114.jar 
  /external/v8/test/mjsunit/es6/
reflect-define-property.js 34 // Check that an exception is thrown when null is passed as object.
35 var exception = false; variable
39 exception = true;
42 assertTrue(exception);
44 // Check that an exception is thrown when undefined is passed as object.
45 exception = false;
49 exception = true;
52 assertTrue(exception);
54 // Check that an exception is thrown when non-object is passed as object.
55 exception = false
    [all...]
  /frameworks/data-binding/compilerCommon/src/main/grammar-gen/android/databinding/parser/
BindingExpressionParser.java 148 _localctx.exception = re;
199 _localctx.exception = re;
275 _localctx.exception = re;
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Perl5/
Perl5.stg 147 backtracking=1; <! means we won't throw slow exception !>
296 <name>_fragment(); // can never throw exception
363 my $exception = $EVAL_ERROR;
364 if (ref $exception && $exception->isa('ANTLR::Runtime::RecognitionException')) {
365 $self->report_error($exception);
366 $self->recover($self->input, $exception);
367 $exception = undef;
376 if ($exception) {
377 croak $exception;
    [all...]
  /art/runtime/
thread.h 354 return tlsPtr_.exception != nullptr;
358 return tlsPtr_.exception;
369 tlsPtr_.exception = nullptr;
372 // Find catch block and perform long jump to appropriate exception handle
381 // exception such as a result of class loading. So there can be nested
382 // cases of exception handling and multiple contexts being used.
397 // Returns whether the given exception was thrown by the current Java method being executed
399 bool IsExceptionThrownByCurrentMethod(mirror::Throwable* exception) const
419 // If 'msg' is null, no detail message is set. An exception must be pending, and will be
420 // used as the new exception's cause
1369 mirror::Throwable* exception; variable
    [all...]
  /art/runtime/entrypoints/
entrypoint_utils.cc 203 // In the case of checked exceptions that aren't declared, the exception must be wrapped by
205 mirror::Throwable* exception = soa.Self()->GetException(); local
206 if (exception->IsCheckedException()) {
222 mirror::Class* exception_class = exception->GetClass();
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/interpolation/
TricubicSplineInterpolatingFunction.java 20 import org.apache.commons.math.exception.DimensionMismatchException;
21 import org.apache.commons.math.exception.NoDataException;
22 import org.apache.commons.math.exception.OutOfRangeException;
  /external/autotest/server/
autotest_unittest.py 56 self.god.stub_function(logging, "exception")
278 Exception('log copy failure'))
279 logging.exception.expect_call(mock.is_string_comparator())
288 Exception('fifo failure'))
289 logging.exception.expect_call(mock.is_string_comparator())
308 Exception('fifo failure'))
309 logging.exception.expect_call(mock.is_string_comparator())
site_gtest_runner.py 114 logging.exception('Failed to created test directory: %s',
133 logging.exception('Failed to created log directory: %s',
140 logging.exception('Failed to open log file: %s', fail_log_path)
  /external/chromium-trace/catapult/telemetry/telemetry/internal/browser/
browser.py 60 except Exception:
62 logging.exception('Failure while starting browser backend.')
65 except Exception:
67 msg='Exception raised while closing platform backend')
100 raise Exception("No foreground tab found")
349 except Exception:
350 logging.exception('Failed to get browser standard output:')
356 except Exception:
357 logging.exception('Failed to get browser log:')
  /external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/
rdata.py 30 import dns.exception namespace
324 raise dns.exception.SyntaxError(r'generic rdata does not start with \#')
335 raise dns.exception.SyntaxError('generic rdata hex data has wrong length')
  /external/chromium-trace/catapult/third_party/gsutil/gslib/
boto_resumable_upload.py 55 from boto.exception import ResumableTransferDisposition
56 from boto.exception import ResumableUploadException
57 from gslib.exception import InvalidUrlError
227 # (and raise an exception if they tried to pass one, since it's
570 self.logger.debug('Caught exception (%s)', e.__repr__())

Completed in 2337 milliseconds

<<81828384858687888990>>