style nit for myself retroactively: throwOnFailure -> throw_on_failure

BUG=
R=reed@google.com

Author: mtklein@google.com

Review URL: https://codereview.chromium.org/26298002

git-svn-id: http://skia.googlecode.com/svn/trunk@11635 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
commit-bot@chromium.org 2013-10-07 17:59:04 +00:00
parent b120bd986e
commit dd6cde5235

View File

@ -9,7 +9,7 @@
#include <stdio.h>
#include <stdlib.h>
static inline void* throwOnFailure(size_t size, void* p) {
static inline void* throw_on_failure(size_t size, void* p) {
if (size > 0 && p == NULL) {
// If we've got a NULL here, the only reason we should have failed is running out of RAM.
sk_out_of_memory();
@ -32,7 +32,7 @@ void* sk_malloc_throw(size_t size) {
}
void* sk_realloc_throw(void* addr, size_t size) {
return throwOnFailure(size, realloc(addr, size));
return throw_on_failure(size, realloc(addr, size));
}
void sk_free(void* p) {
@ -44,7 +44,7 @@ void sk_free(void* p) {
void* sk_malloc_flags(size_t size, unsigned flags) {
void* p = malloc(size);
if (flags & SK_MALLOC_THROW) {
return throwOnFailure(size, p);
return throw_on_failure(size, p);
} else {
return p;
}
@ -55,5 +55,5 @@ void* sk_calloc(size_t size) {
}
void* sk_calloc_throw(size_t size) {
return throwOnFailure(size, sk_calloc(size));
return throw_on_failure(size, sk_calloc(size));
}