HomeSort by relevance Sort by last modified time
    Searched refs:DexStringCache (Results 1 - 2 of 2) sorted by null

  /dalvik/libdex/
DexProto.h 31 * time the same DexStringCache is used.
33 struct DexStringCache {
43 void dexStringCacheAlloc(DexStringCache* pCache, size_t length);
46 * Initialize the given DexStringCache. Use this function before passing
49 void dexStringCacheInit(DexStringCache* pCache);
52 * Release the allocated contents of the given DexStringCache, if any.
53 * Use this function after your last use of a DexStringCache.
55 void dexStringCacheRelease(DexStringCache* pCache);
58 * If the given DexStringCache doesn't already point at the given value,
62 * sometimes doesn't populate a DexStringCache
    [all...]
DexProto.cpp 36 void dexStringCacheAlloc(DexStringCache* pCache, size_t length) {
54 * Initialize the given DexStringCache. Use this function before passing
57 void dexStringCacheInit(DexStringCache* pCache) {
64 * Release the allocated contents of the given DexStringCache, if any.
65 * Use this function after your last use of a DexStringCache.
67 void dexStringCacheRelease(DexStringCache* pCache) {
76 * If the given DexStringCache doesn't already point at the given value,
80 * sometimes doesn't populate a DexStringCache.
82 char* dexStringCacheEnsureCopy(DexStringCache* pCache, const char* value) {
93 * Abandon the given DexStringCache, and return a writable copy of th
    [all...]

Completed in 33 milliseconds