Home | History | Annotate | Download | only in core

Lines Matching defs:CreateProc

15  *  Maintains a per-thread cache, using a CreateProc as the key into that cache.
19 typedef void* (*CreateProc)();
23 * If Get() has previously been called with this CreateProc, then this
24 * returns its cached data, otherwise it returns NULL. The CreateProc is
28 static void* Find(CreateProc);
31 * Return the cached data that was returned by the CreateProc. This proc
33 * cached (per-thread), using the CreateProc as a key to look it up.
39 static void* Get(CreateProc, DeleteProc);
43 * the cached data associated with this CreateProc. If no associated cached
46 static void Delete(CreateProc);