Lines Matching refs:UINT64
54 virtual RT_BOOL remove(UINT64 key);
56 virtual RT_BOOL setCString(UINT64 key, const char *value);
57 virtual RT_BOOL setInt32(UINT64 key, INT32 value);
58 virtual RT_BOOL setInt64(UINT64 key, INT64 value);
59 virtual RT_BOOL setFloat(UINT64 key, float value);
60 virtual RT_BOOL setPointer(UINT64 key, RT_PTR value, RTMetaValueFree freeFunc = RT_NULL);
61 virtual RT_BOOL setStructData(UINT64 key, const void *value, UINT32 size);
63 virtual RT_BOOL findCString(UINT64 key, const char **value) const;
64 virtual RT_BOOL findInt32(UINT64 key, INT32 *value) const;
65 virtual RT_BOOL findInt64(UINT64 key, INT64 *value) const;
66 virtual RT_BOOL findFloat(UINT64 key, float *value) const;
67 virtual RT_BOOL findPointer(UINT64 key, RT_PTR *value) const;
68 virtual RT_BOOL findStructData(UINT64 key, const void **value, UINT32 size) const;
83 UINT64 key, UINT32 type, const void *data, UINT32 size, RTMetaValueFree freeFunc = RT_NULL);
85 virtual RT_BOOL findData(UINT64 key, UINT32 *type,
88 virtual RT_BOOL hasData(UINT64 key) const;
95 std::map<UINT64, void *> mDataMaps;