| 2805 | } |
| 2806 | |
| 2807 | ResultType BufferObject::Resize(size_t aNewSize) |
| 2808 | { |
| 2809 | auto new_data = realloc(mData, aNewSize); |
| 2810 | if (!new_data) |
| 2811 | return FAIL; |
| 2812 | mData = new_data; |
| 2813 | mSize = aNewSize; |
| 2814 | return OK; |
| 2815 | } |
| 2816 | |
| 2817 | |
| 2818 | ResultType ClipboardAll::__New(ResultToken &aResultToken, int aID, int aFlags, ExprTokenType *aParam[], int aParamCount) |
nothing calls this directly
no outgoing calls
no test coverage detected