MCPcopy Create free account
hub / github.com/defold/defold / UnmapFile

Function UnmapFile

engine/resource/src/mount/mount_android.cpp:110–117  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

108 }
109
110 Result UnmapFile(void*& map, uint32_t size)
111 {
112 if (map != 0x0)
113 {
114 munmap(map, size);
115 }
116 return RESULT_OK;
117 }
118
119 Result MountManifest(const char* manifest_filename, void*& out_map, uint32_t& out_size)
120 {

Callers 3

UnmountManifestFunction · 0.70
MountArchiveInternalFunction · 0.70
UnmountArchiveInternalFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected