MCPcopy Create free account
hub / github.com/CyanogenMod/android_frameworks_base / strcpy16_htod

Function strcpy16_htod

tools/aapt/StringPool.cpp:24–32  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

22#define NOISY(x) //x
23
24void strcpy16_htod(uint16_t* dst, const uint16_t* src)
25{
26 while (*src) {
27 char16_t s = htods(*src);
28 *dst++ = s;
29 src++;
30 }
31 *dst = 0;
32}
33
34void printStringPool(const ResStringPool* pool)
35{

Callers 2

flattenMethod · 0.85
writeStringBlockMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected