OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DeleteProc
(Results
1 - 2
of
2
) sorted by null
/external/skia/src/core/
SkTLS.h
19
typedef void (*
DeleteProc
)(void*);
35
* if a
DeleteProc
was specified, it is passed the pointer to the cached
38
static void* Get(CreateProc,
DeleteProc
);
41
* Remove (optionally calling the
DeleteProc
if it was specificed in Get)
SkTLS.cpp
23
SkTLS::
DeleteProc
fDeleteProc;
58
void* SkTLS::Get(CreateProc createProc,
DeleteProc
deleteProc
) {
69
SkASSERT(rec->fDeleteProc ==
deleteProc
);
84
rec->fDeleteProc =
deleteProc
;
Completed in 221 milliseconds