HomeSort by relevance Sort by last modified time
    Searched full:exceptioncode (Results 1 - 25 of 88) sorted by null

1 2 3 4

  /frameworks/av/media/libmedia/
IMediaHTTPConnection.cpp 70 int32_t exceptionCode = reply.readExceptionCode();
72 if (exceptionCode) {
104 int32_t exceptionCode = reply.readExceptionCode();
106 if (exceptionCode) {
140 int32_t exceptionCode = reply.readExceptionCode();
142 if (exceptionCode) {
158 int32_t exceptionCode = reply.readExceptionCode();
160 if (exceptionCode) {
178 int32_t exceptionCode = reply.readExceptionCode();
180 if (exceptionCode) {
    [all...]
  /frameworks/native/libs/binder/
Status.cpp 26 Status Status::fromExceptionCode(int32_t exceptionCode) {
27 return Status(exceptionCode, OK);
30 Status Status::fromExceptionCode(int32_t exceptionCode,
32 return Status(exceptionCode, OK, message);
50 Status::Status(int32_t exceptionCode, int32_t errorCode)
51 : mException(exceptionCode),
54 Status::Status(int32_t exceptionCode, int32_t errorCode, const String8& message)
55 : mException(exceptionCode),
  /frameworks/av/media/libmediaplayerservice/
ActivityManager.cpp 43 int32_t exceptionCode = reply.readExceptionCode();
44 if (!exceptionCode) {
53 String8(uri).string(), exceptionCode);
  /external/llvm/test/CodeGen/X86/
seh-exception-code.ll 9 declare i32 @llvm.eh.exceptioncode(token)
24 %code = call i32 @llvm.eh.exceptioncode(token %pad)
seh-catch-all.ll 5 declare i32 @llvm.eh.exceptioncode(token)
23 %code = call i32 @llvm.eh.exceptioncode(token %p)
  /frameworks/native/include/binder/
Status.h 83 static Status fromExceptionCode(int32_t exceptionCode);
84 static Status fromExceptionCode(int32_t exceptionCode,
114 int32_t exceptionCode() const { return mException; }
129 Status(int32_t exceptionCode, int32_t errorCode);
130 Status(int32_t exceptionCode, int32_t errorCode, const String8& message);
  /system/tools/aidl/tests/
aidl_test_client_service_exceptions.cpp 37 if (status.exceptionCode() != Status::EX_SERVICE_SPECIFIC ||
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ntddchgr.h 155 /* CHANGER_ELEMENT_STATUS(_EX).ExceptionCode constants */
252 ULONG ExceptionCode;
264 ULONG ExceptionCode;
rpcasync.h 74 RPCRTAPI RPC_STATUS RPC_ENTRY RpcAsyncAbortCall(PRPC_ASYNC_STATE pAsync,unsigned __LONG32 ExceptionCode);
182 RPC_STATUS RPC_ENTRY I_RpcAsyncAbortCall(PRPC_ASYNC_STATE pAsync,unsigned __LONG32 ExceptionCode);
183 int RPC_ENTRY I_RpcExceptionFilter(unsigned __LONG32 ExceptionCode);
  /prebuilts/go/darwin-x86/src/runtime/
signal_windows.go 50 switch info.exceptioncode {
78 gp.sig = info.exceptioncode
126 print("Exception ", hex(info.exceptioncode), " ", hex(info.exceptioninformation[0]), " ", hex(info.exceptioninformation[1]), " ", hex(r.ip()), "\n")
defs_windows_386.go 56 exceptioncode uint32
  /prebuilts/go/linux-x86/src/runtime/
signal_windows.go 50 switch info.exceptioncode {
78 gp.sig = info.exceptioncode
126 print("Exception ", hex(info.exceptioncode), " ", hex(info.exceptioninformation[0]), " ", hex(info.exceptioninformation[1]), " ", hex(r.ip()), "\n")
defs_windows_386.go 56 exceptioncode uint32
  /external/llvm/utils/KillTheDoctor/
KillTheDoctor.cpp 267 static StringRef ExceptionCodeToString(DWORD ExceptionCode) {
268 switch(ExceptionCode) {
517 Exception.ExceptionRecord.ExceptionCode)
518 << " (" << Exception.ExceptionRecord.ExceptionCode << ")\n";
528 Exception.ExceptionRecord.ExceptionCode)
529 << " (" << Exception.ExceptionRecord.ExceptionCode
  /system/weaved/common/
binder_utils.cc 35 std::to_string(status.exceptionCode()),
  /packages/apps/Email/src/com/android/email/activity/setup/
CheckSettingsErrorDialogFragment.java 135 final int exceptionCode = ex.getExceptionType();
136 switch (exceptionCode) {
  /system/weaved/libweaved/
command.cc 159 std::string error_code = BinderExceptionString(status.exceptionCode());
187 std::string error_code = BinderExceptionString(status.exceptionCode());
  /external/compiler-rt/lib/asan/
asan_win.cc 203 if (exception_record->ExceptionCode == EXCEPTION_ACCESS_VIOLATION ||
204 exception_record->ExceptionCode == EXCEPTION_IN_PAGE_ERROR) {
206 (exception_record->ExceptionCode == EXCEPTION_ACCESS_VIOLATION)
  /external/bison/m4/
nocrash.m4 90 switch (ExceptionInfo->ExceptionRecord->ExceptionCode)
  /external/google-breakpad/src/testing/gtest/test/
gtest_break_on_failure_unittest_.cc 60 exit(exception_pointers->ExceptionRecord->ExceptionCode);
  /external/gtest/test/
gtest_break_on_failure_unittest_.cc 60 exit(exception_pointers->ExceptionRecord->ExceptionCode);
  /external/protobuf/gtest/test/
gtest_break_on_failure_unittest_.cc 60 exit(exception_pointers->ExceptionRecord->ExceptionCode);
  /external/vulkan-validation-layers/tests/gtest-1.7.0/test/
gtest_break_on_failure_unittest_.cc 60 exit(exception_pointers->ExceptionRecord->ExceptionCode);
  /ndk/sources/third_party/googletest/googletest/test/
gtest_break_on_failure_unittest_.cc 60 exit(exception_pointers->ExceptionRecord->ExceptionCode);
  /packages/services/Car/libvehiclenetwork/native/
IVehicleNetwork.cpp 131 int32_t exceptionCode = reply.readExceptionCode();
132 if (exceptionCode != NO_ERROR) {
133 if (exceptionCode == binder::Status::EX_SERVICE_SPECIFIC) {
136 return exceptionCode;

Completed in 2363 milliseconds

1 2 3 4