OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright 2014 Google Inc. | 2 * Copyright 2014 Google Inc. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 | 7 |
8 // EXPERIMENTAL EXPERIMENTAL EXPERIMENTAL EXPERIMENTAL | 8 // EXPERIMENTAL EXPERIMENTAL EXPERIMENTAL EXPERIMENTAL |
9 // DO NOT USE -- FOR INTERNAL TESTING ONLY | 9 // DO NOT USE -- FOR INTERNAL TESTING ONLY |
10 | 10 |
11 #ifndef sk_data_DEFINED | 11 #ifndef sk_data_DEFINED |
12 #define sk_data_DEFINED | 12 #define sk_data_DEFINED |
13 | 13 |
14 #include "sk_types.h" | 14 #include "sk_types.h" |
15 | 15 |
16 SK_C_PLUS_PLUS_BEGIN_GUARD | 16 SK_C_PLUS_PLUS_BEGIN_GUARD |
17 | 17 |
18 /** | |
19 Returns a new empty sk_data_t. It must be unref'ed. | |
20 */ | |
18 SK_API sk_data_t* sk_data_new_empty(); | 21 SK_API sk_data_t* sk_data_new_empty(); |
22 /** | |
23 Returns a new sk_data_t by copying the specified source data. | |
reed1
2015/09/01 17:35:15
+= balance with a call to sk_data_unref(...)
hal.canary
2015/09/01 17:39:53
Done.
| |
24 */ | |
19 SK_API sk_data_t* sk_data_new_with_copy(const void* src, size_t length); | 25 SK_API sk_data_t* sk_data_new_with_copy(const void* src, size_t length); |
26 /** | |
27 Pass ownership of the given memory to a new sk_data_t, which will | |
28 call free() when the refernce count of the data goes to zero. For | |
29 example: | |
30 size_t length = 1024; | |
31 void* buffer = malloc(length); | |
32 memset(buffer, 'X', length); | |
33 sk_data_t* data = sk_data_new_from_malloc(buffer, length); | |
34 */ | |
20 SK_API sk_data_t* sk_data_new_from_malloc(const void* memory, size_t length); | 35 SK_API sk_data_t* sk_data_new_from_malloc(const void* memory, size_t length); |
36 /** | |
37 Returns a new sk_data_t using a subset of the data in the | |
38 specified source sk_data_t, | |
39 */ | |
21 SK_API sk_data_t* sk_data_new_subset(const sk_data_t* src, size_t offset, size_t length); | 40 SK_API sk_data_t* sk_data_new_subset(const sk_data_t* src, size_t offset, size_t length); |
22 | 41 |
42 /** | |
43 Increment the reference count on the given sk_data_t. Must be | |
44 balanced by a call to sk_data_unref(). | |
45 */ | |
23 SK_API void sk_data_ref(const sk_data_t*); | 46 SK_API void sk_data_ref(const sk_data_t*); |
47 /** | |
48 Decrement the reference count. If the reference count is 1 before | |
49 the decrement, then release both the memory holding the sk_data_t | |
50 and the memory it is managing. New sk_data_t are created with a | |
51 reference count of 1. | |
52 */ | |
24 SK_API void sk_data_unref(const sk_data_t*); | 53 SK_API void sk_data_unref(const sk_data_t*); |
25 | 54 |
55 /** | |
56 Returns the number of bytes stored. | |
57 */ | |
26 SK_API size_t sk_data_get_size(const sk_data_t*); | 58 SK_API size_t sk_data_get_size(const sk_data_t*); |
59 /** | |
60 Returns the pointer to the data. | |
61 */ | |
27 SK_API const void* sk_data_get_data(const sk_data_t*); | 62 SK_API const void* sk_data_get_data(const sk_data_t*); |
28 | 63 |
29 SK_C_PLUS_PLUS_END_GUARD | 64 SK_C_PLUS_PLUS_END_GUARD |
30 | 65 |
31 #endif | 66 #endif |
OLD | NEW |