Searched defs:__THROW (Results 1 - 25 of 26) sorted by relevance

12

/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dtcmalloc.h48 // __THROW is defined in glibc systems. It means, counter-intuitively,
51 #ifndef __THROW // I guess we're not on a glibc system
52 # define __THROW // __THROW is just an optimization, so ok to make it "" macro
56 extern "C" void cfree(void* ptr) __THROW;
59 extern "C" int posix_memalign(void** ptr, size_t align, size_t size) __THROW;
62 extern "C" void* memalign(size_t __alignment, size_t __size) __THROW;
65 extern "C" void* valloc(size_t __size) __THROW;
68 extern "C" void* pvalloc(size_t __size) __THROW;
H A Dlibc_override_gcc_and_weak.h42 #include <sys/cdefs.h> // for __THROW
46 #ifndef __THROW // I guess we're not on a glibc-like system
47 # define __THROW // __THROW is just an optimization, so ok to make it "" macro
65 void operator delete(void* p) __THROW
69 void operator delete[](void* p) __THROW
71 void* operator new(size_t size, const std::nothrow_t& nt) __THROW
73 void* operator new[](size_t size, const std::nothrow_t& nt) __THROW
75 void operator delete(void* p, const std::nothrow_t& nt) __THROW
77 void operator delete[](void* p, const std::nothrow_t& nt) __THROW
[all...]
H A Dmaybe_threads.cc51 // __THROW is defined in glibc systems. It means, counter-intuitively,
54 #ifndef __THROW // I guess we're not on a glibc system
55 # define __THROW // __THROW is just an optimization, so ok to make it "" macro
61 __THROW ATTRIBUTE_WEAK;
63 __THROW ATTRIBUTE_WEAK;
65 __THROW ATTRIBUTE_WEAK;
H A Dlibc_override_redefine.h45 #include <sys/cdefs.h> // for __THROW
48 #ifndef __THROW // I guess we're not on a glibc-like system
49 # define __THROW // __THROW is just an optimization, so ok to make it "" macro
53 void operator delete(void* p) __THROW { tc_delete(p); }
55 void operator delete[](void* p) __THROW { tc_deletearray(p); }
56 void* operator new(size_t size, const std::nothrow_t& nt) __THROW {
59 void* operator new[](size_t size, const std::nothrow_t& nt) __THROW {
62 void operator delete(void* ptr, const std::nothrow_t& nt) __THROW {
65 void operator delete[](void* ptr, const std::nothrow_t& nt) __THROW {
[all...]
H A Ddebugallocation.cc82 // __THROW is defined in glibc systems. It means, counter-intuitively,
85 #ifndef __THROW // I guess we're not on a glibc system
86 # define __THROW // __THROW is just an optimization, so ok to make it "" macro
1166 extern "C" PERFTOOLS_DLL_DECL void* tc_malloc(size_t size) __THROW {
1172 extern "C" PERFTOOLS_DLL_DECL void tc_free(void* ptr) __THROW {
1177 extern "C" PERFTOOLS_DLL_DECL void* tc_calloc(size_t count, size_t size) __THROW {
1188 extern "C" PERFTOOLS_DLL_DECL void tc_cfree(void* ptr) __THROW {
1193 extern "C" PERFTOOLS_DLL_DECL void* tc_realloc(void* ptr, size_t size) __THROW {
1235 extern "C" PERFTOOLS_DLL_DECL void* tc_new_nothrow(size_t size, const std::nothrow_t&) __THROW {
[all...]
H A Dmalloc_hook.cc64 // __THROW is defined in glibc systems. It means, counter-intuitively,
67 #ifndef __THROW // I guess we're not on a glibc system
68 # define __THROW // __THROW is just an optimization, so ok to make it "" macro
H A Dtcmalloc.cc94 #include <sys/cdefs.h> // for __THROW
149 // __THROW is defined in glibc (via <sys/cdefs.h>). It means,
153 #ifndef __THROW // I guess we're not on a glibc system
154 # define __THROW // __THROW is just an optimization, so ok to make it "" macro
213 void* tc_malloc(size_t size) __THROW
215 void tc_free(void* ptr) __THROW
217 void* tc_realloc(void* ptr, size_t size) __THROW
219 void* tc_calloc(size_t nmemb, size_t size) __THROW
221 void tc_cfree(void* ptr) __THROW
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dtcmalloc.h48 // __THROW is defined in glibc systems. It means, counter-intuitively,
51 #ifndef __THROW // I guess we're not on a glibc system
52 # define __THROW // __THROW is just an optimization, so ok to make it "" macro
56 extern "C" void cfree(void* ptr) __THROW;
59 extern "C" int posix_memalign(void** ptr, size_t align, size_t size) __THROW;
62 extern "C" void* memalign(size_t __alignment, size_t __size) __THROW;
65 extern "C" void* valloc(size_t __size) __THROW;
68 extern "C" void* pvalloc(size_t __size) __THROW;
H A Dlibc_override_gcc_and_weak.h42 #include <sys/cdefs.h> // for __THROW
46 #ifndef __THROW // I guess we're not on a glibc-like system
47 # define __THROW // __THROW is just an optimization, so ok to make it "" macro
58 void operator delete(void* p) __THROW
62 void operator delete[](void* p) __THROW
64 void* operator new(size_t size, const std::nothrow_t& nt) __THROW
66 void* operator new[](size_t size, const std::nothrow_t& nt) __THROW
68 void operator delete(void* p, const std::nothrow_t& nt) __THROW
70 void operator delete[](void* p, const std::nothrow_t& nt) __THROW
[all...]
H A Dmaybe_threads.cc51 // __THROW is defined in glibc systems. It means, counter-intuitively,
54 #ifndef __THROW // I guess we're not on a glibc system
55 # define __THROW // __THROW is just an optimization, so ok to make it "" macro
61 __THROW ATTRIBUTE_WEAK;
63 __THROW ATTRIBUTE_WEAK;
65 __THROW ATTRIBUTE_WEAK;
H A Dlibc_override_redefine.h45 #include <sys/cdefs.h> // for __THROW
48 #ifndef __THROW // I guess we're not on a glibc-like system
49 # define __THROW // __THROW is just an optimization, so ok to make it "" macro
53 void operator delete(void* p) __THROW { tc_delete(p); }
55 void operator delete[](void* p) __THROW { tc_deletearray(p); }
56 void* operator new(size_t size, const std::nothrow_t& nt) __THROW {
59 void* operator new[](size_t size, const std::nothrow_t& nt) __THROW {
62 void operator delete(void* ptr, const std::nothrow_t& nt) __THROW {
65 void operator delete[](void* ptr, const std::nothrow_t& nt) __THROW {
[all...]
H A Ddebugallocation.cc81 // __THROW is defined in glibc systems. It means, counter-intuitively,
84 #ifndef __THROW // I guess we're not on a glibc system
85 # define __THROW // __THROW is just an optimization, so ok to make it "" macro
1159 extern "C" PERFTOOLS_DLL_DECL void* tc_malloc(size_t size) __THROW {
1165 extern "C" PERFTOOLS_DLL_DECL void tc_free(void* ptr) __THROW {
1170 extern "C" PERFTOOLS_DLL_DECL void* tc_calloc(size_t count, size_t size) __THROW {
1181 extern "C" PERFTOOLS_DLL_DECL void tc_cfree(void* ptr) __THROW {
1186 extern "C" PERFTOOLS_DLL_DECL void* tc_realloc(void* ptr, size_t size) __THROW {
1223 extern "C" PERFTOOLS_DLL_DECL void* tc_new_nothrow(size_t size, const std::nothrow_t&) __THROW {
[all...]
H A Dmalloc_hook.cc64 // __THROW is defined in glibc systems. It means, counter-intuitively,
67 #ifndef __THROW // I guess we're not on a glibc system
68 # define __THROW // __THROW is just an optimization, so ok to make it "" macro
/external/chromium_org/third_party/tcmalloc/chromium/src/gperftools/
H A Dtcmalloc.h40 #include <sys/cdefs.h> // where glibc defines __THROW
43 // __THROW is defined in glibc systems. It means, counter-intuitively,
46 #ifndef __THROW /* I guess we're not on a glibc system */
47 # define __THROW /* __THROW is just an optimization, so ok to make it "" */ macro
88 const char** patch) __THROW;
90 PERFTOOLS_DLL_DECL void* tc_malloc(size_t size) __THROW;
91 PERFTOOLS_DLL_DECL void tc_free(void* ptr) __THROW;
92 PERFTOOLS_DLL_DECL void* tc_realloc(void* ptr, size_t size) __THROW;
93 PERFTOOLS_DLL_DECL void* tc_calloc(size_t nmemb, size_t size) __THROW;
[all...]
/external/chromium_org/third_party/tcmalloc/chromium/src/windows/gperftools/
H A Dtcmalloc.h40 #include <sys/cdefs.h> // where glibc defines __THROW
43 // __THROW is defined in glibc systems. It means, counter-intuitively,
46 #ifndef __THROW /* I guess we're not on a glibc system */
47 # define __THROW /* __THROW is just an optimization, so ok to make it "" */ macro
78 const char** patch) __THROW;
80 PERFTOOLS_DLL_DECL void* tc_malloc(size_t size) __THROW;
81 PERFTOOLS_DLL_DECL void tc_free(void* ptr) __THROW;
82 PERFTOOLS_DLL_DECL void* tc_realloc(void* ptr, size_t size) __THROW;
83 PERFTOOLS_DLL_DECL void* tc_calloc(size_t nmemb, size_t size) __THROW;
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/windows/gperftools/
H A Dtcmalloc.h40 #include <sys/cdefs.h> // where glibc defines __THROW
43 // __THROW is defined in glibc systems. It means, counter-intuitively,
46 #ifndef __THROW /* I guess we're not on a glibc system */
47 # define __THROW /* __THROW is just an optimization, so ok to make it "" */ macro
78 const char** patch) __THROW;
80 PERFTOOLS_DLL_DECL void* tc_malloc(size_t size) __THROW;
81 PERFTOOLS_DLL_DECL void tc_free(void* ptr) __THROW;
82 PERFTOOLS_DLL_DECL void* tc_realloc(void* ptr, size_t size) __THROW;
83 PERFTOOLS_DLL_DECL void* tc_calloc(size_t nmemb, size_t size) __THROW;
[all...]
/external/bison/darwin-lib/
H A Dgetopt.h115 #ifndef __THROW
120 # define __THROW throw () macro
122 # define __THROW macro
242 __THROW _GL_ARG_NONNULL ((2, 3));
248 __THROW _GL_ARG_NONNULL ((2, 3));
252 __THROW _GL_ARG_NONNULL ((2, 3));
H A Dspawn.h43 #ifndef __THROW
44 # define __THROW macro
484 marked with __THROW. */
536 marked with __THROW. */
584 __THROW _GL_ARG_NONNULL ((1)));
589 __THROW _GL_ARG_NONNULL ((1)));
609 __THROW _GL_ARG_NONNULL ((1)));
614 __THROW _GL_ARG_NONNULL ((1)));
638 __THROW _GL_ARG_NONNULL ((1, 2)));
647 __THROW _GL_ARG_NONNUL
[all...]
/external/bison/lib/
H A Dgetopt.in.h114 #ifndef __THROW
119 # define __THROW throw () macro
121 # define __THROW
231 __THROW _GL_ARG_NONNULL ((2, 3));
237 __THROW _GL_ARG_NONNULL ((2, 3));
241 __THROW _GL_ARG_NONNULL ((2, 3));
H A Dspawn.in.h42 #ifndef __THROW
43 # define __THROW macro
172 marked with __THROW. */
224 marked with __THROW. */
272 __THROW _GL_ARG_NONNULL ((1)));
277 __THROW _GL_ARG_NONNULL ((1)));
297 __THROW _GL_ARG_NONNULL ((1)));
302 __THROW _GL_ARG_NONNULL ((1)));
326 __THROW _GL_ARG_NONNULL ((1, 2)));
335 __THROW _GL_ARG_NONNUL
[all...]
/external/bison/linux-lib/
H A Dspawn.h43 #ifndef __THROW
44 # define __THROW macro
484 marked with __THROW. */
536 marked with __THROW. */
584 __THROW _GL_ARG_NONNULL ((1)));
589 __THROW _GL_ARG_NONNULL ((1)));
609 __THROW _GL_ARG_NONNULL ((1)));
614 __THROW _GL_ARG_NONNULL ((1)));
638 __THROW _GL_ARG_NONNULL ((1, 2)));
647 __THROW _GL_ARG_NONNUL
[all...]
/external/chromium_org/third_party/tcmalloc/chromium/src/windows/
H A Dpatch_functions.cc266 static void* Perftools_malloc(size_t size) __THROW; member in class:__anon15581::LibcInfoWithPatchFunctions
267 static void Perftools_free(void* ptr) __THROW; member in class:__anon15581::LibcInfoWithPatchFunctions
268 static void* Perftools_realloc(void* ptr, size_t size) __THROW; member in class:__anon15581::LibcInfoWithPatchFunctions
269 static void* Perftools_calloc(size_t nmemb, size_t size) __THROW; member in class:__anon15581::LibcInfoWithPatchFunctions
275 const std::nothrow_t&) __THROW; member in class:__anon15581::LibcInfoWithPatchFunctions
277 const std::nothrow_t&) __THROW; member in class:__anon15581::LibcInfoWithPatchFunctions
279 const std::nothrow_t&) __THROW; member in class:__anon15581::LibcInfoWithPatchFunctions
281 const std::nothrow_t&) __THROW; member in class:__anon15581::LibcInfoWithPatchFunctions
282 static size_t Perftools__msize(void *ptr) __THROW; member in class:__anon15581::LibcInfoWithPatchFunctions
283 static void* Perftools__expand(void *ptr, size_t size) __THROW; member in class:__anon15581::LibcInfoWithPatchFunctions
[all...]
H A Dport.h457 #define __THROW throw() macro
/external/chromium_org/third_party/tcmalloc/vendor/src/windows/
H A Dpatch_functions.cc266 static void* Perftools_malloc(size_t size) __THROW; member in class:__anon15630::LibcInfoWithPatchFunctions
267 static void Perftools_free(void* ptr) __THROW; member in class:__anon15630::LibcInfoWithPatchFunctions
268 static void* Perftools_realloc(void* ptr, size_t size) __THROW; member in class:__anon15630::LibcInfoWithPatchFunctions
269 static void* Perftools_calloc(size_t nmemb, size_t size) __THROW; member in class:__anon15630::LibcInfoWithPatchFunctions
275 const std::nothrow_t&) __THROW; member in class:__anon15630::LibcInfoWithPatchFunctions
277 const std::nothrow_t&) __THROW; member in class:__anon15630::LibcInfoWithPatchFunctions
279 const std::nothrow_t&) __THROW; member in class:__anon15630::LibcInfoWithPatchFunctions
281 const std::nothrow_t&) __THROW; member in class:__anon15630::LibcInfoWithPatchFunctions
282 static size_t Perftools__msize(void *ptr) __THROW; member in class:__anon15630::LibcInfoWithPatchFunctions
283 static void* Perftools__expand(void *ptr, size_t size) __THROW; member in class:__anon15630::LibcInfoWithPatchFunctions
[all...]
H A Dport.h452 #define __THROW throw() macro

Completed in 335 milliseconds

12