MCPcopy Create free account
hub / github.com/android/ndk-samples / CleanUp

Function CleanUp

endless-tunnel/app/src/main/cpp/util.hpp:24–29  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

22// Clean up a resource (delete and set to null).
23template <typename T>
24void CleanUp(T** pptr) {
25 if (*pptr) {
26 delete *pptr;
27 *pptr = NULL;
28 }
29}
30
31int Random(int uboundExclusive);
32int Random(int lbound, int uboundExclusive);

Callers 7

~UiSceneMethod · 0.85
OnKillGraphicsMethod · 0.85
~ShapeRendererMethod · 0.85
~TextRendererMethod · 0.85
~UiWidgetMethod · 0.85
KillGraphicsMethod · 0.85
OnKillGraphicsMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected