/external/clang/test/SemaCXX/ |
PR9461.cpp | 31 struct system_error:runtime_error{ // expected-note {{to match}} struct in inherits:runtime_error 32 system_error():time_error("" // expected-error 3 {{expected}} expected-note {{to match}}
|
/system/security/keystore/ |
keystore_client.cpp | 30 return SYSTEM_ERROR; 35 return SYSTEM_ERROR; 47 return SYSTEM_ERROR; 56 return SYSTEM_ERROR; 67 return SYSTEM_ERROR; 83 code = SYSTEM_ERROR; 91 code = SYSTEM_ERROR; 100 : mCode(SYSTEM_ERROR)
|
keystore.cpp | 351 return SYSTEM_ERROR; 381 return SYSTEM_ERROR; 385 return SYSTEM_ERROR; 389 return SYSTEM_ERROR; 391 return (rename(tmpFileName, filename) == 0) ? NO_ERROR : SYSTEM_ERROR; 397 return (errno == ENOENT) ? KEY_NOT_FOUND : SYSTEM_ERROR; 404 return SYSTEM_ERROR; 477 return SYSTEM_ERROR; 499 return SYSTEM_ERROR; 507 return SYSTEM_ERROR; [all...] |
/external/llvm/lib/Support/ |
system_error.cpp | 1 //===---------------------- system_error.cpp ------------------------------===// 14 #include "llvm/Support/system_error.h" 88 // Is in Platform/system_error.inc 91 // Is in Platform/system_error.inc 126 #include "Unix/system_error.inc" 129 #include "Windows/system_error.inc"
|
CMakeLists.txt | 82 system_error.cpp 97 Unix/system_error.inc 110 Windows/system_error.inc
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ |
system_error | 0 // <system_error> -*- C++ -*- 25 /** @file system_error 48 class system_error; 314 class system_error : public std::runtime_error 320 system_error(error_code __ec = error_code()) 323 system_error(error_code __ec, const string& __what) 329 * system_error(error_code __ec, const char* __what) 332 * system_error(int __v, const error_category& __ecat, const char* __what) 336 system_error(int __v, const error_category& __ecat) 339 system_error(int __v, const error_category& __ecat, const string& __what [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ |
system_error | 0 // <system_error> -*- C++ -*- 25 /** @file include/system_error 50 class system_error; 307 class system_error : public std::runtime_error 313 system_error(error_code __ec = error_code()) 316 system_error(error_code __ec, const string& __what) 322 * system_error(error_code __ec, const char* __what) 325 * system_error(int __v, const error_category& __ecat, const char* __what) 330 system_error(int __v, const error_category& __ecat) 334 system_error(int __v, const error_category& __ecat, const string& __what [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ |
system_error | 0 // <system_error> -*- C++ -*- 25 /** @file include/system_error 50 class system_error; 307 class system_error : public std::runtime_error 313 system_error(error_code __ec = error_code()) 316 system_error(error_code __ec, const string& __what) 322 * system_error(error_code __ec, const char* __what) 325 * system_error(int __v, const error_category& __ecat, const char* __what) 330 system_error(int __v, const error_category& __ecat) 334 system_error(int __v, const error_category& __ecat, const string& __what [all...] |
/prebuilts/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ |
system_error | 0 // <system_error> -*- C++ -*- 25 /** @file system_error 48 class system_error; 314 class system_error : public std::runtime_error 320 system_error(error_code __ec = error_code()) 323 system_error(error_code __ec, const string& __what) 329 * system_error(error_code __ec, const char* __what) 332 * system_error(int __v, const error_category& __ecat, const char* __what) 336 system_error(int __v, const error_category& __ecat) 339 system_error(int __v, const error_category& __ecat, const string& __what [all...] |
/prebuilts/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/ |
system_error | 0 // <system_error> -*- C++ -*- 25 /** @file system_error 48 class system_error; 314 class system_error : public std::runtime_error 320 system_error(error_code __ec = error_code()) 323 system_error(error_code __ec, const string& __what) 329 * system_error(error_code __ec, const char* __what) 332 * system_error(int __v, const error_category& __ecat, const char* __what) 336 system_error(int __v, const error_category& __ecat) 339 system_error(int __v, const error_category& __ecat, const string& __what [all...] |
/prebuilts/ndk/android-ndk-r7/sources/cxx-stl/gnu-libstdc++/include/ |
system_error | 0 // <system_error> -*- C++ -*- 25 /** @file system_error 48 class system_error; 314 class system_error : public std::runtime_error 320 system_error(error_code __ec = error_code()) 323 system_error(error_code __ec, const string& __what) 329 * system_error(error_code __ec, const char* __what) 332 * system_error(int __v, const error_category& __ecat, const char* __what) 336 system_error(int __v, const error_category& __ecat) 339 system_error(int __v, const error_category& __ecat, const string& __what [all...] |
/frameworks/base/services/jni/ |
com_android_server_connectivity_Vpn.cpp | 53 #define SYSTEM_ERROR -1 88 return SYSTEM_ERROR; 96 return SYSTEM_ERROR; 108 return SYSTEM_ERROR; 148 count = (errno == EINVAL) ? BAD_ARGUMENT : SYSTEM_ERROR; 163 count = (errno == EINVAL) ? BAD_ARGUMENT : SYSTEM_ERROR; 170 count = (errno == EINVAL) ? BAD_ARGUMENT : SYSTEM_ERROR; 180 } else if (count == SYSTEM_ERROR) { 227 count = (errno == EINVAL) ? BAD_ARGUMENT : SYSTEM_ERROR; 235 count = SYSTEM_ERROR; [all...] |
/external/llvm/include/llvm/Object/ |
Error.h | 1 //===- Error.h - system_error extensions for Object -------------*- C++ -*-===// 17 #include "llvm/Support/system_error.h"
|
/external/mtpd/ |
mtpd.c | 113 exit(SYSTEM_ERROR); 124 exit(SYSTEM_ERROR); 139 exit(SYSTEM_ERROR); 170 exit(SYSTEM_ERROR); 194 exit(SYSTEM_ERROR); 315 exit(SYSTEM_ERROR);
|
mtpd.h | 24 SYSTEM_ERROR = 1,
|
/external/clang/INPUTS/ |
all-std-headers.cpp | 77 #include <system_error>
|
/frameworks/compile/mclinker/include/mcld/LD/ |
DynObjReader.h | 15 #include <llvm/Support/system_error.h>
|
DynObjWriter.h | 16 #include <llvm/Support/system_error.h>
|
ObjectWriter.h | 14 #include <llvm/Support/system_error.h>
|
ELFDynObjReader.h | 15 #include <llvm/Support/system_error.h>
|
ELFObjectReader.h | 16 #include <llvm/Support/system_error.h>
|
ELFObjectWriter.h | 14 #include <llvm/Support/system_error.h>
|
ObjectReader.h | 15 #include <llvm/Support/system_error.h>
|
/external/llvm/include/llvm/Support/ |
system_error.h | 1 //===---------------------------- system_error ------------------*- C++ -*-===// 11 // system_error even though it does not define that class because that's what 12 // it's called in C++0x. We don't define system_error because it is only used 21 system_error synopsis 107 class system_error 111 system_error(error_code ec, const std::string& what_arg); 112 system_error(error_code ec, const char* what_arg); 113 system_error(error_code ec); 114 system_error(int ev, const error_category& ecat, const std::string& what_arg); 115 system_error(int ev, const error_category& ecat, const char* what_arg) [all...] |
LockFileManager.h | 15 #include "llvm/Support/system_error.h"
|